Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump the go-modules group with 4 updates #427

Merged
merged 1 commit into from
Feb 24, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 22, 2024

Bumps the go-modules group with 4 updates: github.com/bytedance/sonic, github.com/golang-module/carbon/v2, github.com/redis/go-redis/v9 and google.golang.org/grpc.

Updates github.com/bytedance/sonic from 1.10.2 to 1.11.0

Release notes

Sourced from github.com/bytedance/sonic's releases.

v1.11.0

Feature

  • #590 support go1.22
  • #558 (encoder) allow the disabling of the newline in the encoder
  • #577 (ast) always copy once after top Get

Bugfix

  • #540 (encoder) checked if a interface is empty by its value field instead of type field
  • #544 (ast) didn't pass non-exist value when call Node.Interface()
  • #547 (decoder) didn't fully reuse buffer memory
  • #569 (ast) Set on non-object node unexpectedly
  • #571 (ast) implement soft delete for Unset().
    • Break change : Unset()'s behavior will be compatible with versions <= 1.9.x, while being incompatible with versions on 1.10.x

Optimization

  • #550 (decoder) refactor streaming decoder to fully use buffer
  • #545 eliminate race test errors
  • #552 (loader) use lockfree to register new modules

New Contributors

Full Changelog: bytedance/sonic@v1.10.2...v1.11.0

v1.11.0-rc.2

Feature

  • #577 Get() will always COPY returned JSON from input JSON bytes, in order to reduce the possibility of OOM when caching ast.Node.
    • NOTICE: Meanwhile Get() won't copy entity input JSON bytes like before, for CPU performance. The panic may be more frequent for services that exist data-race on input JSON bytes.

Full Changelog: bytedance/sonic@v1.11.0-rc...v1.11.0-rc.2

v1.11.0-rc

Break Change

#571 (ast) implement soft delete for Unset()/UnsetByIndex(), which means the node Len() and Index() will change after Unset(). This change is in order to be in keeping with versions <= v1.9.2

Feature

  • #558 allow the disabling of the newline in the encoder
  • #567 perfect build tag for mmap_unix.go

Bugfix

  • #569Set on non-object node unexpectedly change node type

New Contributors

Full Changelog: bytedance/sonic@v1.10.3-rc...v1.11.0-rc

... (truncated)

Commits

Updates github.com/golang-module/carbon/v2 from 2.3.8 to 2.3.9

Release notes

Sourced from github.com/golang-module/carbon/v2's releases.

v2.3.9

  • Add DiffInDuration and DiffAbsInDuration methods
  • Add package comment for calendar/persian
  • Simplified code in calendar.go and constellation.go
  • Unified Unit Testing Method Naming Format
Commits

Updates github.com/redis/go-redis/v9 from 9.4.0 to 9.5.1

Release notes

Sourced from github.com/redis/go-redis/v9's releases.

9.5.1

Changes

Note: This release fixes the SETINFO issue from 9.5.0. This release restores connections to redis versions that do not have SETINFO. Thank you to our amazing community for their help with this issue

🐛 Bug Fixes

  • bug: Fix SETINFO ensuring it is set-and-forget (#2915)

🧰 Maintenance

  • docs: README update to highlight how to disable sending client identification (#2913)

Contributors

We'd like to thank all the contributors who worked on this release!

@​ofekshenawa

9.5.0

Changes

Note: This release implements SETINFO by default, and currently breaks with Redis versions prior to 7.2 due to the way the change was implemented. It should have failed silently, but did not. 9.5.1 will fix this. To disable this behaviour, with this release, please DisableIdentity: true in your RedisOptions struct.

🚀 New Features

  • Add object fraq command (#2844)
  • Speed up connections by sending SetInfo via a pipeline (#2880)
  • Add helpers to set libinfo without panic (#2724)

🧰 Maintenance

  • Remove unnecessary Node project definition file (#2863)
  • Add support for specifying bitcount unit as byte or bit, byte default (#2887)
  • fix ConnPool race in newConn (#2885)

📚 Documentation & Testing

  • Docs: update features (#2846)
  • Docs: add bytes in scan struct example (#2836)
  • Tests: add ut for util_test (#2840)

⚙️ Dependencies & Infrastructure

  • chore: update OpenTelemetry and Uptrace to the latest version (#2864)
  • chore(deps): bump release-drafter/release-drafter from 5 to 6 (#2883)
  • chore(deps): bump rojopolis/spellcheck-github-actions from 0.35.0 to 0.36.0 (#2889)
  • chore(deps): bump golangci/golangci-lint-action from 3 to 4 (#2890)
  • Change RE image to 7.2.4-108 (#2884)
  • Add CredentialsProvider to ClusterOptions (#2791)

Contributors

... (truncated)

Commits

Updates google.golang.org/grpc from 1.61.1 to 1.62.0

Release notes

Sourced from google.golang.org/grpc's releases.

Release 1.62.0

New Features

  • grpc: Add StaticMethod CallOption as a signal to stats handler that a method is safe to use as an instrument key (#6986)

Behavior Changes

  • grpc: Return canonical target string from ClientConn.Target() and resolver.Address.String() (#6923)

Bug Fixes

  • server: wait to close connection until incoming socket is drained (with timeout) to prevent data loss on client-side (#6977)

Performance Improvements

  • *: Allow building without x/net/trace by using grpcnotrace to enable dead code elimination (#6954)
  • rand: improve performance and simplify implementation of grpcrand by adopting math/rand's top-level functions for go version 1.21.0 and newer. (#6925)

Dependencies

  • *: Use google.golang.org/protobuf/proto instead of github.com/golang/protobuf. (#6919)

[!NOTE] The above change in proto library usage introduces a minor behavior change within those libraries. The old github.com/golang/protobuf library would error if given a nil message to Marshal, while the new google.golang.org/protobuf library will successfully output zero bytes in this case. This means server method handlers that did return nil, nil will now return an empty message and no error, while it used to return an error. This also affects the client side, where clients sending nil messages used to fail without sending the RPC, and now they will send an empty message.

Commits

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
github.com/redis/go-redis/v9 [< 9.4, > 9.3.0]

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@hwbrzzl
Copy link
Contributor

hwbrzzl commented Feb 24, 2024

@dependabot recreate

Bumps the go-modules group with 4 updates: [github.com/bytedance/sonic](https://github.com/bytedance/sonic), [github.com/golang-module/carbon/v2](https://github.com/golang-module/carbon), [github.com/redis/go-redis/v9](https://github.com/redis/go-redis) and [google.golang.org/grpc](https://github.com/grpc/grpc-go).


Updates `github.com/bytedance/sonic` from 1.10.2 to 1.11.0
- [Release notes](https://github.com/bytedance/sonic/releases)
- [Commits](bytedance/sonic@v1.10.2...v1.11.0)

Updates `github.com/golang-module/carbon/v2` from 2.3.8 to 2.3.9
- [Release notes](https://github.com/golang-module/carbon/releases)
- [Commits](golang-module/carbon@v2.3.8...v2.3.9)

Updates `github.com/redis/go-redis/v9` from 9.4.0 to 9.5.1
- [Release notes](https://github.com/redis/go-redis/releases)
- [Changelog](https://github.com/redis/go-redis/blob/master/CHANGELOG.md)
- [Commits](redis/go-redis@v9.4.0...v9.5.1)

Updates `google.golang.org/grpc` from 1.61.1 to 1.62.0
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.61.1...v1.62.0)

---
updated-dependencies:
- dependency-name: github.com/bytedance/sonic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: github.com/golang-module/carbon/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: github.com/redis/go-redis/v9
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: google.golang.org/grpc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-modules
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/go_modules/go-modules-6c8fad8626 branch from ebb323e to 837e722 Compare February 24, 2024 04:23
@hwbrzzl hwbrzzl merged commit 335621c into master Feb 24, 2024
8 checks passed
@hwbrzzl hwbrzzl deleted the dependabot/go_modules/go-modules-6c8fad8626 branch February 24, 2024 04:37
kkumar-gcc added a commit that referenced this pull request Jun 15, 2024
…e Command (#513)

* implement mailable

* chore: update mocks

* add test cases for make:mail command

* add test cases for queuing with mailable

* optimize

* chore: update mocks

---------

Co-authored-by: kkumar-gcc <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant