Skip to content
This repository was archived by the owner on Feb 18, 2026. It is now read-only.

Bump gofr.dev from 1.28.2 to 1.34.1 - #133

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/gofr.dev-1.34.1
Open

Bump gofr.dev from 1.28.2 to 1.34.1#133
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/gofr.dev-1.34.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Mar 3, 2025

Copy link
Copy Markdown
Contributor

Bumps gofr.dev from 1.28.2 to 1.34.1.

Release notes

Sourced from gofr.dev's releases.

v1.34.1

Release - v1.34.1

🛠 Fixes & Improvements

1. GoFr Now Runs on Go 1.24

GoFr is now powered by the latest Golang version 1.24, ensuring compatibility with the newest features and improvements.

2. Improved Retry Mechanism for MQTT Default Client

The MQTT Default Client now includes automatic retries and seamless reconnection, enhancing reliability and stability.

3. Fixed Command Routing in CLI Applications

CLI applications built with GoFr now correctly resolve the intended commands typed in the terminal, preventing unintended command execution.

v1.34.0

Release - v1.34.0

🚀 New Features

1. NATS-KV Store Support

GoFr now supports NATS-KV Store as a datastore. The supported methods include:

type KVStore interface {
    Get(ctx context.Context, key string) (string, error)
    Set(ctx context.Context, key, value string) error
    Delete(ctx context.Context, key string) error
    HealthCheck(ctx context.Context) (any, error)
}

To integrate NATSKV Store as a datastore, add the following configuration:

app.AddKVStore(nats.New(nats.Configs{
        Server: "nats://localhost:4222",
        Bucket: "persons",
    }))

Refer to the documentation for more details.

2. ArangoDB Migrations

Added migration support for ArangoDB, allowing users to perform schema changes seamlessly. The following methods are now available in migration:

// CreateDB creates a new database in ArangoDB.
CreateDB(ctx context.Context, database string) error
// DropDB deletes an existing database in ArangoDB.
DropDB(ctx context.Context, database string) error
</tr></table>

... (truncated)

Commits
  • 2edea0f Merge pull request #1528 from gofr-dev/release/v1.34.1
  • d5e4dfc change versiont to v1.34.1
  • 9b471aa Merge branch 'development' of github.com:gofr-dev/gofr into release/v1.34.1
  • b574630 Fix/mqtt default subscription (#1510)
  • 9f5c1fe Merge branch 'main' of github.com:gofr-dev/gofr into release/v1.34.1
  • 748f3bb Fix incorrect routing of commands to terminal execution when developing a CLI...
  • 6a9032f Update/go 1.24 (#1513)
  • 7344778 Update static server version to v0.0.5 and docker image name (#1517)
  • 9fd6f76 Bump github.com/prometheus/client_golang from 1.20.5 to 1.21.0 (#1521)
  • 073a98b Bump github.com/go-sql-driver/mysql from 1.8.1 to 1.9.0 (#1523)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [gofr.dev](https://github.com/gofr-dev/gofr) from 1.28.2 to 1.34.1.
- [Release notes](https://github.com/gofr-dev/gofr/releases)
- [Commits](gofr-dev/gofr@v1.28.2...v1.34.1)

---
updated-dependencies:
- dependency-name: gofr.dev
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Mar 3, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

dependencies Pull requests that update a dependency file go Pull requests that update Go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants