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 minor-and-patch group across 2 directories with 8 updates #1071

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 20, 2024

Bumps the minor-and-patch group with 5 updates in the /server/go directory:

Package From To
github.com/aws/aws-sdk-go 1.44.265 1.55.5
github.com/go-sql-driver/mysql 1.7.0 1.8.1
github.com/godaddy/asherah/go/appencryption 0.2.6 0.7.0
github.com/golang/protobuf 1.5.3 1.5.4
github.com/jessevdk/go-flags 1.5.0 1.6.1

Bumps the minor-and-patch group with 4 updates in the /tests/cross-language/go directory: github.com/aws/aws-sdk-go, github.com/go-sql-driver/mysql, github.com/godaddy/asherah/go/appencryption and github.com/cucumber/godog.

Updates github.com/aws/aws-sdk-go from 1.44.265 to 1.55.5

Release notes

Sourced from github.com/aws/aws-sdk-go's releases.

Release v1.55.5 (2024-07-30)

Service Client Updates

  • service/appstream: Updates service API and documentation
    • Added support for Red Hat Enterprise Linux 8 on Amazon AppStream 2.0
  • service/autoscaling: Updates service API and documentation
    • Increase the length limit for VPCZoneIdentifier from 2047 to 5000
  • service/codepipeline: Updates service API, documentation, and paginators
    • AWS CodePipeline V2 type pipelines now support stage level conditions to enable development teams to safely release changes that meet quality and compliance requirements.
  • service/elasticache: Updates service documentation
    • Doc only update for changes to deletion API.
  • service/elasticloadbalancing: Updates service API
  • service/eventbridge: Updates service API
  • service/logs: Updates service API
    • Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • service/models.lex.v2: Updates service API and documentation
  • service/rolesanywhere: Updates service API and documentation
  • service/tnb: Updates service API and documentation
  • service/workspaces: Updates service documentation
    • Removing multi-session as it isn't supported for pools

Release v1.55.4 (2024-07-29)

Service Client Updates

  • service/elasticache: Updates service documentation
    • Renaming full service name as it appears in developer documentation.
  • service/memorydb: Updates service API and documentation

Release v1.55.3 (2024-07-25)

Service Client Updates

  • service/application-autoscaling: Updates service API
  • service/application-signals: Updates service API and documentation
  • service/bedrock-runtime: Updates service API and documentation
  • service/codecommit: Updates service API and documentation
    • CreateRepository API now throws OperationNotAllowedException when the account has been restricted from creating a repository.
  • service/datazone: Updates service API and documentation
  • service/ec2: Updates service API and documentation
    • EC2 Fleet now supports using custom identifiers to reference Amazon Machine Images (AMI) in launch requests that are configured to choose from a diversified list of instance types.
  • service/ecr: Updates service API, documentation, paginators, and examples
    • API and documentation updates for Amazon ECR, adding support for creating, updating, describing and deleting ECR Repository Creation Template.
  • service/eks: Updates service API and documentation
  • service/elasticloadbalancingv2: Updates service API, documentation, and examples
  • service/network-firewall: Updates service API and documentation
  • service/outposts: Updates service API and documentation
  • service/states: Updates service API and documentation
    • This release adds support to customer managed KMS key encryption in AWS Step Functions.

... (truncated)

Commits

Updates github.com/go-sql-driver/mysql from 1.7.0 to 1.8.1

Release notes

Sourced from github.com/go-sql-driver/mysql's releases.

v1.8.1

What's Changed

Bugfixes:

  • fix race condition when context is canceled in #1562 and #1570

Full Changelog: go-sql-driver/mysql@v1.8.0...v1.8.1

v1.8.0

What's Changed

Major changes

  • Use SET NAMES charset COLLATE collation. by @​methane in go-sql-driver/mysql#1437

    • Older go-mysql-driver used collation_id in the handshake packet. But it caused collation mismatch in some situation.
    • If you don't specify charset nor collation, go-mysql-driver sends SET NAMES utf8mb4 for new connection. This uses server's default collation for utf8mb4.
    • If you specify charset, go-mysql-driver sends SET NAMES <charset>. This uses the server's default collation for <charset>.
    • If you specify collation and/or charset, go-mysql-driver sends SET NAMES charset COLLATE collation.
  • PathEscape dbname in DSN. by @​methane in go-sql-driver/mysql#1432

    • This is backward incompatible in rare case. Check your DSN.
  • Drop Go 1.13-17 support by @​methane in go-sql-driver/mysql#1420

    • Use Go 1.18+
  • Parse numbers on text protocol too by @​methane in go-sql-driver/mysql#1452

    • When text protocol is used, go-mysql-driver passed bare []byte to database/sql for avoid unnecessary allocation and conversion.
    • If user specified *any to Scan(), database/sql passed the []byte into the target variabe.
    • This confused users because most user doesn't know when text/binary protocol used.
    • go-mysql-driver 1.8 converts integer/float values into int64/double even in text protocol. This doesn't increase allocation compared to []byte and conversion cost is negilible.
  • New options start using the Functional Option Pattern to avoid increasing technical debt in the Config object. Future version may introduce Functional Option for existing options, but not for now.

Other changes

... (truncated)

Changelog

Sourced from github.com/go-sql-driver/mysql's changelog.

Version 1.8.1 (2024-03-26)

Bugfixes:

  • fix race condition when context is canceled in #1562 and #1570

Version 1.8.0 (2024-03-09)

Major Changes:

  • Use SET NAMES charset COLLATE collation. by @​methane in #1437
    • Older go-mysql-driver used collation_id in the handshake packet. But it caused collation mismatch in some situation.
    • If you don't specify charset nor collation, go-mysql-driver sends SET NAMES utf8mb4 for new connection. This uses server's default collation for utf8mb4.
    • If you specify charset, go-mysql-driver sends SET NAMES <charset>. This uses the server's default collation for <charset>.
    • If you specify collation and/or charset, go-mysql-driver sends SET NAMES charset COLLATE collation.
  • PathEscape dbname in DSN. by @​methane in #1432
    • This is backward incompatible in rare case. Check your DSN.
  • Drop Go 1.13-17 support by @​methane in #1420
    • Use Go 1.18+
  • Parse numbers on text protocol too by @​methane in #1452
    • When text protocol is used, go-mysql-driver passed bare []byte to database/sql for avoid unnecessary allocation and conversion.
    • If user specified *any to Scan(), database/sql passed the []byte into the target variable.
    • This confused users because most user doesn't know when text/binary protocol used.
    • go-mysql-driver 1.8 converts integer/float values into int64/double even in text protocol. This doesn't increase allocation compared to []byte and conversion cost is negatable.
  • New options start using the Functional Option Pattern to avoid increasing technical debt in the Config object. Future version may introduce Functional Option for existing options, but not for now.

Other changes:

Version 1.7.1 (2023-04-25)

Changes:

  • bump actions/checkout@v3 and actions/setup-go@v3 (#1375)
  • Add go1.20 and mariadb10.11 to the testing matrix (#1403)
  • Increase default maxAllowedPacket size. (#1411)

... (truncated)

Commits

Updates github.com/godaddy/asherah/go/appencryption from 0.2.6 to 0.7.0

Release notes

Sourced from github.com/godaddy/asherah/go/appencryption's releases.

[Go] AppEncryption v0.7.0

What's Changed

Full Changelog: go/appencryption/v0.6.0...go/appencryption/v0.7.0

[Go] AppEncryption v0.6.0

What's Changed

  • [Go] new key cache backend: "simple" by @​aka-bo in godaddy/asherah#1048

    SK and IK caching has been updated to utilize the "simple" cache backend by default. This lightweight cache implementation does not evict keys and provides a similar caching experience to that of previous versions of the SDK (<0.4.0).

Full Changelog: go/appencryption/v0.5.0...go/appencryption/v0.6.0

[Go] AppEncryption v0.5.0

What's Changed

Full Changelog: go/appencryption/v0.4.1...go/appencryption/v0.5.0

[Go] AppEncryption v0.4.1

What's Changed

Full Changelog: go/appencryption/v0.4.0...go/appencryption/v0.4.1

[Go] AppEncryption v0.4.0

What's Changed

Full Changelog: go/appencryption/v0.3.1...go/appencryption/v0.4.0

[Go] AppEncryption v0.3.1

What's Changed

  • dependency updates

Full Changelog: go/appencryption/v0.3.0...go/appencryption/v0.3.1

[Java] AppEncryption v0.3.1

What's Changed

  • dependency updates

Full Changelog: java/appencryption/v0.3.0...java/appencryption/v0.3.1

... (truncated)

Commits

Updates github.com/godaddy/asherah/go/securememory from 0.1.4 to 0.1.5

Release notes

Sourced from github.com/godaddy/asherah/go/securememory's releases.

[C#] AppEncryption v0.1.5

  • Updates StyleCop to a development dependency so that StyleCop doesn't trickle down to other projects as a transitive dependency.
  • Fixes a bug that resulted in successful cross-partition decrypt operations.
  • Adds cross-partition regression tests to verify that cross-partition decrypt operations fail.

[Go] AppEncryption v0.1.5

Changes

  • added extensive debug logging around session and key caching
  • added support for debug logging output to go perf test app
  • removed ristretto implementation of session cache, deprecated related options

Bug fixes

  • resolved multiple concurrency/memory leak issues in session & key (IK/SK) cache implementations
Commits
  • bf01d2a
  • 2292bcc Merge pull request #975 from godaddy/csharp-securememory-update
  • 4449ae4 [csharp securememory] migrate to .NET 6.0
  • 613dfd9 Merge pull request #974 from godaddy/csharp-logging-update
  • 60bc27d [csharp logging] migrate to .NET 6.0
  • 97469bb Merge pull request #973 from godaddy/snyk-upgrade-6b78ffae76e33b78ada6013cb64...
  • 0e73b9a fix: upgrade org.checkerframework:checker-qual from 3.38.0 to 3.39.0
  • bd56f9e Merge pull request #972 from godaddy/snyk-fix-89d60c1b778dcdd9a1824dcdbd331105
  • dc0a374 fix: java/app-encryption/pom.xml to reduce vulnerabilities
  • df07b14 Merge pull request #971 from godaddy/dependabot/go_modules/samples/go/aws/lam...
  • Additional commits viewable in compare view

Updates github.com/golang/protobuf from 1.5.3 to 1.5.4

Release notes

Sourced from github.com/golang/protobuf's releases.

v1.5.4

Notable changes

  • update descriptor.proto to latest version
Commits

Updates github.com/jessevdk/go-flags from 1.5.0 to 1.6.1

Release notes

Sourced from github.com/jessevdk/go-flags's releases.

v1.6.1

Full Changelog: jessevdk/go-flags@v1.6.0...v1.6.1

v1.6.0

What's Changed

New Contributors

Full Changelog: jessevdk/go-flags@v1.5.0...v1.6.0

Commits

Updates github.com/stretchr/testify from 1.8.1 to 1.9.0

Release notes

Sourced from github.com/stretchr/testify's releases.

v1.9.0

What's Changed

... (truncated)

Commits
  • bb548d0 Merge pull request #1552 from stretchr/dependabot/go_modules/github.com/stret...
  • 814075f build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2
  • e045612 Merge pull request #1339 from bogdandrutu/uintptr
  • 5b6926d Merge pull request #1385 from hslatman/not-implements
  • 9f97d67 Merge pull request #1550 from stretchr/release-notes
  • bcb0d3f Include the auto-release notes in releases
  • fb770f8 Merge pull request #1247 from ccoVeille/typos
  • 85d8bb6 fix typos in comments, tests and github templates
  • e2741fa Merge pull request #1548 from arjunmahishi/msgAndArgs
  • 6e59f20 http_assertions: assert that the msgAndArgs actually works in tests
  • Additional commits viewable in compare view

Updates github.com/aws/aws-sdk-go from 1.44.190 to 1.55.5

Release notes

Sourced from github.com/aws/aws-sdk-go's releases.

Release v1.55.5 (2024-07-30)

Service Client Updates

  • service/appstream: Updates service API and documentation
    • Added support for Red Hat Enterprise Linux 8 on Amazon AppStream 2.0
  • service/autoscaling: Updates service API and documentation
    • Increase the length limit for VPCZoneIdentifier from 2047 to 5000
  • service/codepipeline: Updates service API, documentation, and paginators
    • AWS CodePipeline V2 type pipelines now support stage level conditions to enable development teams to safely release changes that meet quality and compliance requirements.
  • service/elasticache: Updates service documentation
    • Doc only update for changes to deletion API.
  • service/elasticloadbalancing: Updates service API
  • service/eventbridge: Updates service API
  • service/logs: Updates service API
    • Add v2 smoke tests and smithy smokeTests trait for SDK testing.
  • service/models.lex.v2: Updates service API and documentation
  • service/rolesanywhere: Updates service API and documentation
  • service/tnb: Updates service API and documentation
  • service/workspaces: Updates service documentation
    • Removing multi-session as it isn't supported for pools

Release v1.55.4 (2024-07-29)

Service Client Updates

  • service/elasticache: Updates service documentation
    • Renaming full service name as it appears in developer documentation.
  • service/memorydb: Updates service API and documentation

Release v1.55.3 (2024-07-25)

Service Client Updates

  • service/application-autoscaling: Updates service API
  • service/application-signals: Updates service API and documentation
  • service/bedrock-runtime: Updates service API and documentation
  • service/codecommit: Updates service API and documentation
    • CreateRepository API now throws OperationNotAllowedException when the account has been restricted from creating a repository.
  • service/datazone: Updates service API and documentation
  • service/ec2: Updates service API and documentation
    • EC2 Fleet now supports using custom identifiers to reference Amazon Machine Images (AMI) in launch requests that are configured to choose from a diversified list of instance types.
  • service/ecr: Updates service API, documentation, paginators, and examples
    • API and documentation updates for Amazon ECR, adding support for creating, updating, describing and deleting ECR Repository Creation Template.
  • service/eks: Updates service API and documentation
  • service/elasticloadbalancingv2: Updates service API, documentation, and examples
  • service/network-firewall: Updates service API and documentation
  • service/outposts: Updates service API and documentation
  • service/states: Updates service API and documentation
    • This release adds support to customer managed KMS key encryption in AWS Step Functions.

... (truncated)

Commits

Updates github.com/go-sql-driver/mysql from 1.7.0 to 1.8.1

Release notes

Sourced from github.com/go-sql-driver/mysql's releases.

v1.8.1

What's Changed

Bugfixes:

  • fix race condition when context is canceled in #1562 and #1570

Full Changelog: go-sql-driver/mysql@v1.8.0...v1.8.1

v1.8.0

What's Changed

Major changes

  • Use SET NAMES charset COLLATE collation. by @​methane in go-sql-driver/mysql#1437

    • Older go-mysql-driver used collation_id in the handshake packet. But it caused collation mismatch in some situation.
    • If you don't specify charset nor collation, go-mysql-driver sends SET NAMES utf8mb4 for new connection. This uses server's default collation for utf8mb4.
    • If you specify charset, go-mysql-driver sends SET NAMES <charset>. This uses the server's default collation for <charset>.
    • If you specify collation and/or charset, go-mysql-driver sends SET NAMES charset COLLATE collation.
  • PathEscape dbname in DSN. by @​methane in go-sql-driver/mysql#1432

    • This is backward incompatible in rare case. Check your DSN.
  • Drop Go 1.13-17 support by @​methane in go-sql-driver/mysql#1420

    • Use Go 1.18+
  • Parse numbers on text protocol too by @​methane in go-sql-driver/mysql#1452

    • When text protocol is used, go-mysql-driver passed bare []byte to database/sql for avoid unnecessary allocation and conversion.
    • If user specified *any to Scan(), database/sql passed the []byte into the target variabe.
    • This confused users because most user doesn't know when text/binary protocol used.
    • go-mysql-driver 1.8 converts integer/float values into int64/double even in text protocol. This doesn't increase allocation compared to []byte and conversion cost is negilible.
  • New options start using the Functional Option Pattern to avoid increasing technical debt in the Config object. Future version may introduce Functional Option for existing options, but not for now.

Other changes

... (truncated)

Changelog

Sourced from github.com/go-sql-driver/mysql's changelog.

Version 1.8.1 (2024-03-26)

Bugfixes:

  • fix race condition when context is canceled in #1562 and #1570

Version 1.8.0 (2024-03-09)

Major Changes:

  • Use SET NAMES charset COLLATE collation. by Description has been truncated

@dependabot dependabot bot added dependencies Pull requests that update a dependency file go labels Nov 20, 2024
@aka-bo
Copy link
Contributor

aka-bo commented Nov 21, 2024

@dependabot rebase

@dependabot dependabot bot force-pushed the dependabot/go_modules/server/go/minor-and-patch-dab28bc042 branch from a115855 to a6ace78 Compare November 21, 2024 01:33
@aka-bo
Copy link
Contributor

aka-bo commented Nov 21, 2024

@dependabot rebase

… 8 updates

Bumps the minor-and-patch group with 5 updates in the /server/go directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.44.265` | `1.55.5` |
| [github.com/go-sql-driver/mysql](https://github.com/go-sql-driver/mysql) | `1.7.0` | `1.8.1` |
| [github.com/godaddy/asherah/go/appencryption](https://github.com/godaddy/asherah) | `0.2.6` | `0.7.0` |
| [github.com/golang/protobuf](https://github.com/golang/protobuf) | `1.5.3` | `1.5.4` |
| [github.com/jessevdk/go-flags](https://github.com/jessevdk/go-flags) | `1.5.0` | `1.6.1` |

Bumps the minor-and-patch group with 4 updates in the /tests/cross-language/go directory: [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go), [github.com/go-sql-driver/mysql](https://github.com/go-sql-driver/mysql), [github.com/godaddy/asherah/go/appencryption](https://github.com/godaddy/asherah) and [github.com/cucumber/godog](https://github.com/cucumber/godog).


Updates `github.com/aws/aws-sdk-go` from 1.44.265 to 1.55.5
- [Release notes](https://github.com/aws/aws-sdk-go/releases)
- [Commits](aws/aws-sdk-go@v1.44.265...v1.55.5)

Updates `github.com/go-sql-driver/mysql` from 1.7.0 to 1.8.1
- [Release notes](https://github.com/go-sql-driver/mysql/releases)
- [Changelog](https://github.com/go-sql-driver/mysql/blob/master/CHANGELOG.md)
- [Commits](go-sql-driver/mysql@v1.7.0...v1.8.1)

Updates `github.com/godaddy/asherah/go/appencryption` from 0.2.6 to 0.7.0
- [Release notes](https://github.com/godaddy/asherah/releases)
- [Commits](go/appencryption/v0.2.6...go/appencryption/v0.7.0)

Updates `github.com/godaddy/asherah/go/securememory` from 0.1.4 to 0.1.5
- [Release notes](https://github.com/godaddy/asherah/releases)
- [Commits](csharp/Logging/v0.1.4...csharp/Logging/v0.1.5)

Updates `github.com/golang/protobuf` from 1.5.3 to 1.5.4
- [Release notes](https://github.com/golang/protobuf/releases)
- [Commits](golang/protobuf@v1.5.3...v1.5.4)

Updates `github.com/jessevdk/go-flags` from 1.5.0 to 1.6.1
- [Release notes](https://github.com/jessevdk/go-flags/releases)
- [Commits](jessevdk/go-flags@v1.5.0...v1.6.1)

Updates `github.com/stretchr/testify` from 1.8.1 to 1.9.0
- [Release notes](https://github.com/stretchr/testify/releases)
- [Commits](stretchr/testify@v1.8.1...v1.9.0)

Updates `github.com/aws/aws-sdk-go` from 1.44.190 to 1.55.5
- [Release notes](https://github.com/aws/aws-sdk-go/releases)
- [Commits](aws/aws-sdk-go@v1.44.265...v1.55.5)

Updates `github.com/go-sql-driver/mysql` from 1.7.0 to 1.8.1
- [Release notes](https://github.com/go-sql-driver/mysql/releases)
- [Changelog](https://github.com/go-sql-driver/mysql/blob/master/CHANGELOG.md)
- [Commits](go-sql-driver/mysql@v1.7.0...v1.8.1)

Updates `github.com/godaddy/asherah/go/appencryption` from 0.2.6 to 0.7.0
- [Release notes](https://github.com/godaddy/asherah/releases)
- [Commits](go/appencryption/v0.2.6...go/appencryption/v0.7.0)

Updates `github.com/godaddy/asherah/go/securememory` from 0.1.4 to 0.1.5
- [Release notes](https://github.com/godaddy/asherah/releases)
- [Commits](csharp/Logging/v0.1.4...csharp/Logging/v0.1.5)

Updates `github.com/cucumber/godog` from 0.12.6 to 0.15.0
- [Release notes](https://github.com/cucumber/godog/releases)
- [Changelog](https://github.com/cucumber/godog/blob/main/CHANGELOG.md)
- [Commits](cucumber/godog@v0.12.6...v0.15.0)

---
updated-dependencies:
- dependency-name: github.com/aws/aws-sdk-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/go-sql-driver/mysql
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/godaddy/asherah/go/appencryption
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/godaddy/asherah/go/securememory
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/golang/protobuf
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/jessevdk/go-flags
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/stretchr/testify
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/aws/aws-sdk-go
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/go-sql-driver/mysql
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/godaddy/asherah/go/appencryption
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/godaddy/asherah/go/securememory
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/cucumber/godog
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/go_modules/server/go/minor-and-patch-dab28bc042 branch from a6ace78 to efa0832 Compare November 21, 2024 19:52
@aka-bo aka-bo merged commit 1dc4b38 into main Nov 21, 2024
11 checks passed
@aka-bo aka-bo deleted the dependabot/go_modules/server/go/minor-and-patch-dab28bc042 branch November 21, 2024 22:27
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant