Skip to content

Comments

Bump the support-dependencies group across 1 directory with 10 updates#289

Merged
chocolatkey merged 2 commits intodevelopfrom
dependabot/go_modules/support-dependencies-ba6b32cb0c
Feb 2, 2026
Merged

Bump the support-dependencies group across 1 directory with 10 updates#289
chocolatkey merged 2 commits intodevelopfrom
dependabot/go_modules/support-dependencies-ba6b32cb0c

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 1, 2026

Bumps the support-dependencies group with 8 updates in the / directory:

Package From To
cloud.google.com/go/storage 1.57.2 1.59.2
github.com/aws/aws-sdk-go-v2 1.40.0 1.41.1
github.com/aws/aws-sdk-go-v2/service/s3 1.92.1 1.96.0
github.com/bbrks/go-blurhash 1.1.1 1.2.0
github.com/go-viper/mapstructure/v2 2.4.0 2.5.0
golang.org/x/image 0.33.0 0.35.0
golang.org/x/net 0.47.0 0.49.0
google.golang.org/api 0.256.0 0.264.0

Updates cloud.google.com/go/storage from 1.57.2 to 1.59.2

Release notes

Sourced from cloud.google.com/go/storage's releases.

storage 1.59.2

1.59.2 (2026-01-28)

Bug Fixes

  • deadlock in event loop while coordinating channels (#13652) (ff6c8e78)

storage 1.59.1

1.59.1 (2026-01-14)

Bug Fixes

storage 1.59.0

1.59.0 (2026-01-09)

Features

  • add default checksums for appendable writer (excludes appendable takeover writer) (#13379) (647baf32)

Bug Fixes

  • refactor MultiRangeDownloader to resolve deadlock and race conditions (#13524) (1cfd100

storage 1.58.0

1.58.0 (2025-12-03)

Features

  • add object contexts in Go GCS SDK (#13390) (079c4d96)

  • calculate crc32c by default and pass checksum in trailing and per-chunk request (#13205) (2ab1c778)

  • add support for partial success in ListBuckets (#13320) (d91e47f2)

Bug Fixes

Commits
  • cf3fbcb chore: librarian release pull request: 20260128T111026Z (#13737)
  • ff6c8e7 fix(storage): deadlock in event loop while coordinating channels (#13652)
  • 5cd8007 chore: librarian release pull request: 20260114T061057Z (#13597)
  • 585cd82 feat(firestore): [PQ] add pipeline queries
  • 6752a49 fix: remove mandatory attrs response in MRD (#13585)
  • 1347004 chore: skip failing TestIntegration_WriterAppendEdgeCases (#13586)
  • e7723a0 test(storage): add test for MRD with read handle (#13591)
  • 7e730f1 test(datastore): fix flaky tests (#13587)
  • d23326b chore(spanner): add gorm data type names for PG types (#13584)
  • bc92500 fix: don't update global object's readhandle in MRD (#13575)
  • Additional commits viewable in compare view

Updates github.com/aws/aws-sdk-go-v2 from 1.40.0 to 1.41.1

Commits

Updates github.com/aws/aws-sdk-go-v2/service/s3 from 1.92.1 to 1.96.0

Commits

Updates github.com/aws/smithy-go from 1.23.2 to 1.24.0

Changelog

Sourced from github.com/aws/smithy-go's changelog.

Release (2025-12-01)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.24.0
    • Feature: Improve allocation footprint of the middleware stack. This should convey a ~10% reduction in allocations per SDK request.

Release (2025-11-03)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.23.2
    • Bug Fix: Adjust the initial sizes of each middleware phase to avoid some unnecessary reallocation.
    • Bug Fix: Avoid unnecessary allocation overhead from the metrics system when not in use.

Release (2025-10-15)

General Highlights

  • Dependency Update: Bump minimum go version to 1.23.
  • Dependency Update: Updated to the latest SDK module versions

Release (2025-09-18)

Module Highlights

  • github.com/aws/smithy-go/aws-http-auth: v1.1.0
    • Feature: Added support for SIG4/SIGV4A querystring authentication.

Release (2025-08-27)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.23.0
    • Feature: Sort map keys in JSON Document types.

Release (2025-07-24)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.22.5
    • Feature: Add HTTP interceptors.

Release (2025-06-16)

... (truncated)

Commits

Updates github.com/bbrks/go-blurhash from 1.1.1 to 1.2.0

Release notes

Sourced from github.com/bbrks/go-blurhash's releases.

v1.2.0

Hello people! It's been a while...

I've applied some very long-overdue TLC to this library and have some great news for anybody using this in the real-world. The old performance was so embarrassingly bad I'm surprised it was even usable. The new version very much is production-ready and much, much quicker.


v1.2.0 brings significant performance improvements and greatly reduced memory usage, along with a set of alloc-friendly Decoder/Encoder APIs, allowing efficient reuse of buffers for large batch jobs or long-running services.

Performance Highlights

Operation Improvement
Encode ~50-140x faster (41ms → 829µs and 75ms → 534µs)
Decode ~11x faster (332µs → 30µs)
Encode memory 99.4% reduction (3MB → 14KB)
Encode allocations 500,000 → 6 per operation

Reusable Encoder/Decoder APIs

New Encoder and Decoder types allow reusing internal buffers across multiple operations, allowing for near zero-alloc (amortized) batch processing:

enc := blurhash.NewEncoder()
for _, img := range images {
    hash, _ := enc.Encode(3, 4, img)
}
dec := blurhash.NewDecoder()
for _, hash := range hashes {
img, _ := dec.Decode(hash, 128, 128, 1)
}

Other Changes

  • A little modernization/cleanup for now widely available Go features
  • Removed the only dependency this library had, which was test-only anyway
  • Added fuzz testing (and found a few bugs with it!)

Benchmarks

goos: linux
goarch: amd64
pkg: github.com/bbrks/go-blurhash
cpu: AMD Ryzen 7 7800X3D 8-Core Processor           
</tr></table> 

... (truncated)

Commits

Updates github.com/go-viper/mapstructure/v2 from 2.4.0 to 2.5.0

Release notes

Sourced from github.com/go-viper/mapstructure/v2's releases.

v2.5.0

What's Changed

New Contributors

Full Changelog: go-viper/mapstructure@v2.4.0...v2.5.0

Commits
  • 9aa3f77 Merge pull request #166 from go-viper/unmarshal2
  • ae32a61 doc: add more documentation
  • 320c8c9 test: cover unmarshaler to map
  • 5b22829 feat: add unmarshaler interface
  • fd74c75 Merge pull request #137 from andreev-fn/opt-root-name
  • dee4661 Merge pull request #59 from DarkiT/main
  • 5605df4 chore: cover more test cases, fix edge cases, add docs
  • 6166631 fix(mapstructure): add multi-tag support and regression tests
  • 6471aa6 Merge pull request #149 from thespags/main
  • dbffaaa chore: add more tests and clarification to the documentation
  • Additional commits viewable in compare view

Updates golang.org/x/image from 0.33.0 to 0.35.0

Commits
  • bc7fe0b go.mod: update golang.org/x dependencies
  • c53c97f go.mod: update golang.org/x dependencies
  • 9032ff7 all: eliminate vet diagnostics
  • See full diff in compare view

Updates golang.org/x/net from 0.47.0 to 0.49.0

Commits
  • d977772 go.mod: update golang.org/x dependencies
  • eea413e internal/http3: use go1.25 synctest.Test instead of go1.24 synctest.Run
  • 9ace223 websocket: add missing call to resp.Body.Close
  • 7d3dbb0 http2: buffer the most recently received PRIORITY_UPDATE frame
  • 35e1306 go.mod: update golang.org/x dependencies
  • 7c36036 http2, webdav, websocket: fix %q verb uses with wrong type
  • ec11ecc trace: fix data race in RenderEvents
  • bff14c5 http2: don't PING a responsive server when resetting a stream
  • 88a6421 dns/dnsmessage: avoid use of "strings" and "math" in dns/dnsmessage
  • 123d099 http2: support net/http.Transport.NewClientConn
  • Additional commits viewable in compare view

Updates golang.org/x/text from 0.31.0 to 0.33.0

Commits
  • 536231a go.mod: update golang.org/x dependencies
  • 0dd57a6 go.mod: update golang.org/x dependencies
  • 087616b transform: fix %q verb use with wrong type
  • 16f85a7 all: eliminate vet diagnostics
  • See full diff in compare view

Updates google.golang.org/api from 0.256.0 to 0.264.0

Release notes

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

v0.264.0

0.264.0 (2026-01-29)

Features

v0.263.0

0.263.0 (2026-01-27)

Features

v0.262.0

0.262.0 (2026-01-22)

Features

Bug Fixes

  • internaloption: Add WithTelemetryAttributes (#3442) (2a5c807)

v0.261.0

0.261.0 (2026-01-20)

Features

v0.260.0

0.260.0 (2026-01-14)

... (truncated)

Changelog

Sourced from google.golang.org/api's changelog.

0.264.0 (2026-01-29)

Features

0.263.0 (2026-01-27)

Features

0.262.0 (2026-01-22)

Features

Bug Fixes

  • internaloption: Add WithTelemetryAttributes (#3442) (2a5c807)

0.261.0 (2026-01-20)

Features

0.260.0 (2026-01-14)

Features

... (truncated)

Commits

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

Bumps the support-dependencies group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) | `1.57.2` | `1.59.2` |
| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.40.0` | `1.41.1` |
| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.92.1` | `1.96.0` |
| [github.com/bbrks/go-blurhash](https://github.com/bbrks/go-blurhash) | `1.1.1` | `1.2.0` |
| [github.com/go-viper/mapstructure/v2](https://github.com/go-viper/mapstructure) | `2.4.0` | `2.5.0` |
| [golang.org/x/image](https://github.com/golang/image) | `0.33.0` | `0.35.0` |
| [golang.org/x/net](https://github.com/golang/net) | `0.47.0` | `0.49.0` |
| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.256.0` | `0.264.0` |



Updates `cloud.google.com/go/storage` from 1.57.2 to 1.59.2
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md)
- [Commits](googleapis/google-cloud-go@storage/v1.57.2...storage/v1.59.2)

Updates `github.com/aws/aws-sdk-go-v2` from 1.40.0 to 1.41.1
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@v1.40.0...v1.41.1)

Updates `github.com/aws/aws-sdk-go-v2/service/s3` from 1.92.1 to 1.96.0
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@service/s3/v1.92.1...service/s3/v1.96.0)

Updates `github.com/aws/smithy-go` from 1.23.2 to 1.24.0
- [Release notes](https://github.com/aws/smithy-go/releases)
- [Changelog](https://github.com/aws/smithy-go/blob/main/CHANGELOG.md)
- [Commits](aws/smithy-go@v1.23.2...v1.24.0)

Updates `github.com/bbrks/go-blurhash` from 1.1.1 to 1.2.0
- [Release notes](https://github.com/bbrks/go-blurhash/releases)
- [Commits](bbrks/go-blurhash@v1.1.1...v1.2.0)

Updates `github.com/go-viper/mapstructure/v2` from 2.4.0 to 2.5.0
- [Release notes](https://github.com/go-viper/mapstructure/releases)
- [Changelog](https://github.com/go-viper/mapstructure/blob/main/CHANGELOG.md)
- [Commits](go-viper/mapstructure@v2.4.0...v2.5.0)

Updates `golang.org/x/image` from 0.33.0 to 0.35.0
- [Commits](golang/image@v0.33.0...v0.35.0)

Updates `golang.org/x/net` from 0.47.0 to 0.49.0
- [Commits](golang/net@v0.47.0...v0.49.0)

Updates `golang.org/x/text` from 0.31.0 to 0.33.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.31.0...v0.33.0)

Updates `google.golang.org/api` from 0.256.0 to 0.264.0
- [Release notes](https://github.com/googleapis/google-api-go-client/releases)
- [Changelog](https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md)
- [Commits](googleapis/google-api-go-client@v0.256.0...v0.264.0)

---
updated-dependencies:
- dependency-name: cloud.google.com/go/storage
  dependency-version: 1.59.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: support-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2
  dependency-version: 1.41.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: support-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2/service/s3
  dependency-version: 1.96.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: support-dependencies
- dependency-name: github.com/aws/smithy-go
  dependency-version: 1.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: support-dependencies
- dependency-name: github.com/bbrks/go-blurhash
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: support-dependencies
- dependency-name: github.com/go-viper/mapstructure/v2
  dependency-version: 2.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: support-dependencies
- dependency-name: golang.org/x/image
  dependency-version: 0.35.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: support-dependencies
- dependency-name: golang.org/x/net
  dependency-version: 0.49.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: support-dependencies
- dependency-name: golang.org/x/text
  dependency-version: 0.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: support-dependencies
- dependency-name: google.golang.org/api
  dependency-version: 0.264.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: support-dependencies
...

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 Feb 1, 2026
@chocolatkey chocolatkey merged commit a21aeae into develop Feb 2, 2026
4 checks passed
@chocolatkey chocolatkey deleted the dependabot/go_modules/support-dependencies-ba6b32cb0c branch February 2, 2026 09:15
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