Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 10, 2025

Bumps gofr.dev from 1.46.3 to 1.47.0.

Release notes

Sourced from gofr.dev's releases.

v1.47.0

Release v1.47.0

✨ Features

🔹 GCS File System Integration

Introduced Google Cloud Storage (GCS) File System as a new implementation of the GoFr FileSystem interface. This enables seamless integration with GCS while maintaining consistent behavior across existing backends like S3, FTP, and SFTP.

Supported Methods:

type FileSystem interface {
    Create(name string) (File, error)
    Mkdir(name string, perm os.FileMode) error
    MkdirAll(path string, perm os.FileMode) error
    Open(name string) (File, error)
    OpenFile(name string, flag int, perm os.FileMode) (File, error)
    Remove(name string) error
    RemoveAll(path string) error
    Rename(oldname string, newname string) error
    ReadDir(dir string) ([]FileInfo, error)
    Stat(name string) (FileInfo, error)
    ChDir(dirname string) error
    Getwd() (string, error)
}
  • Consistent and unified interface for GCS, S3, FTP, and SFTP file operations.
  • Plug-and-play compatibility with GoFr’s file abstraction layer.
  • Production-ready with proper error wrapping, retries, and structured logging.
  • Simplifies backend switching without changing application logic.

For detailed usage, visit 👉 GoFr Docs — GCS File System


🛠️ Bug Fixes

Remote Logger — Improper JSON Log Formatting

Previously, ANSI color codes and non-ASCII characters appeared in JSON logs, breaking downstream log parsers.

Example of affected log output:

{"level":"DEBUG","time":"2025-09-17T17:54:30.625115633Z","message":"\u001b[38;5;8m5460fd91feac021fd633b5989abdeb26 \u001b[38;5;34m200   \u001b[0m     5855\u001b[38;5;8mµs\u001b[0m GET https://myurl","gofrVersion":"v1.45.0"}

Fix Summary:

... (truncated)

Commits
  • 31f2242 update release version to v1.47.0
  • fd0ae56 Merge branch 'main' into release/v1.47.0
  • 9e61427 feat: add GCS support as file provider (#2013) (#2435)
  • 5860444 Merge pull request #2482 from NitinKumar004/ADD/Test-For-PubSub-Google
  • 6b64a2a Merge branch 'development' into ADD/Test-For-PubSub-Google
  • 5f7f283 fix-formatting-remote-debug-log2
  • 074cc71 add test for Prettyprint method
  • 993703c Merge branch 'development' into fix-formatting-remote-debug-log2
  • 2d46be7 Merge branch 'development' into ADD/Test-For-PubSub-Google
  • 77e61db Merge pull request #2499 from gofr-dev/fix/cli-doc-positioning
  • 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.46.3 to 1.47.0.
- [Release notes](https://github.com/gofr-dev/gofr/releases)
- [Commits](v1.46.3...v1.47.0)

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Nov 10, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

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.

1 participant