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

Bump the go-mod group with 15 updates #2083

Merged
merged 2 commits into from
Oct 4, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 1, 2024

Bumps the go-mod group with 15 updates:

Package From To
cloud.google.com/go/spanner 1.67.0 1.68.0
github.com/authzed/authzed-go 0.15.1-0.20240916185322-dad4080470f3 0.16.0
github.com/aws/aws-sdk-go-v2 1.30.4 1.31.0
github.com/aws/aws-sdk-go-v2/config 1.27.31 1.27.39
github.com/aws/aws-sdk-go-v2/feature/rds/auth 1.4.16 1.4.18
github.com/jackc/pgx/v5 5.6.0 5.7.1
github.com/prometheus/client_golang 1.20.2 1.20.4
github.com/prometheus/common 0.57.0 0.60.0
github.com/schollz/progressbar/v3 3.14.6 3.16.0
go.opentelemetry.io/otel/sdk 1.29.0 1.30.0
google.golang.org/api 0.196.0 0.197.0
google.golang.org/genproto/googleapis/api 0.0.0-20240827150818-7e3bb234dfed 0.0.0-20240903143218-8af14fe29dc1
google.golang.org/grpc 1.66.2 1.67.1
resenje.org/singleflight 0.4.2 0.4.3
github.com/maypok86/otter 1.2.2 1.2.3

Updates cloud.google.com/go/spanner from 1.67.0 to 1.68.0

Release notes

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

spanner: v1.68.0

1.68.0 (2024-09-25)

Features

  • spanner: Add support for Go 1.23 iterators (84461c0)

Bug Fixes

  • spanner/test: Bump dependencies (2ddeb15)
  • spanner: Bump dependencies (2ddeb15)
  • spanner: Check errors in tests (#10738) (971bfb8)
  • spanner: Enable toStruct support for structs with proto message pointer fields (#10704) (42cdde6)
  • spanner: Ensure defers run at the right time in tests (#9759) (7ef0ded)
  • spanner: Increase spanner ping timeout to give backend more time to process executeSQL requests (#10874) (6997991)
  • spanner: Json null handling (#10660) (4c519e3)
  • spanner: Support custom encoding and decoding of protos (#10799) (d410907)
  • spanner: Unnecessary string formatting fixes (#10736) (1efe5c4)
  • spanner: Wait for things to complete (#10095) (7785cad)

Performance Improvements

Documentation

  • spanner: Fix Key related document code to add package name (#10711) (bbe7b9c)
Commits
  • e8e3ac3 chore(main): release spanner 1.68.0 (#10712)
  • 42cdde6 fix(spanner): enable toStruct support for structs with proto message pointer ...
  • c342f65 perf(spanner): better error handling (#10734)
  • bbe7b9c docs(spanner): fix Key related document code to add package name (#10711)
  • 971bfb8 fix(spanner): check errors in tests (#10738)
  • 6fbd687 chore(spanner): add support of client side native metrics collection and expo...
  • 36248ca chore(spanner): avoid deprecated ioutil (#10739)
  • d49da26 feat(storage/dataflux): add range_splitter #10748 (#10899)
  • 7daa1bd feat(storage/transfermanager): add SkipIfExists option (#10893)
  • 607534c feat(storage/transfermanager): add option to StripPrefix on directory downloa...
  • Additional commits viewable in compare view

Updates github.com/authzed/authzed-go from 0.15.1-0.20240916185322-dad4080470f3 to 0.16.0

Release notes

Sourced from github.com/authzed/authzed-go's releases.

v0.16.0

This release brings ImportBulk and ExportBulk into the PermissionsService.

What's Changed

New Contributors

Full Changelog: authzed/authzed-go@v0.15.0...v0.16.0

Commits

Updates github.com/aws/aws-sdk-go-v2 from 1.30.4 to 1.31.0

Commits

Updates github.com/aws/aws-sdk-go-v2/config from 1.27.31 to 1.27.39

Commits

Updates github.com/aws/aws-sdk-go-v2/feature/rds/auth from 1.4.16 to 1.4.18

Commits

Updates github.com/jackc/pgx/v5 from 5.6.0 to 5.7.1

Changelog

Sourced from github.com/jackc/pgx/v5's changelog.

5.7.1 (September 10, 2024)

  • Fix data race in tracelog.TraceLog
  • Update puddle to v2.2.2. This removes the import of nanotime via linkname.
  • Update golang.org/x/crypto and golang.org/x/text

5.7.0 (September 7, 2024)

  • Add support for sslrootcert=system (Yann Soubeyrand)
  • Add LoadTypes to load multiple types in a single SQL query (Nick Farrell)
  • Add XMLCodec supports encoding + scanning XML column type like json (nickcruess-soda)
  • Add MultiTrace (Stepan Rabotkin)
  • Add TraceLogConfig with customizable TimeKey (stringintech)
  • pgx.ErrNoRows wraps sql.ErrNoRows to aid in database/sql compatibility with native pgx functions (merlin)
  • Support scanning binary formatted uint32 into string / TextScanner (jennifersp)
  • Fix interval encoding to allow 0s and avoid extra spaces (Carlos Pérez-Aradros Herce)
  • Update pgservicefile - fixes panic when parsing invalid file
  • Better error message when reading past end of batch
  • Don't print url when url.Parse returns an error (Kevin Biju)
  • Fix snake case name normalization collision in RowToStructByName with db tag (nolandseigler)
  • Fix: Scan and encode types with underlying types of arrays
Commits
  • 672c4a3 Release v5.7.1
  • f8a5a5c Update golang.org/x/crypto and golang.org/x/text
  • ab36c2c Upgrade puddle to v2.2.2
  • ce66b1d Fix data race with TraceLog.Config initialization
  • d1205a6 Release v5.7.0
  • 97d20cc Merge pull request #2115 from ninedraft/sql-err-no-rows
  • e9bd382 Merge pull request #2114 from jennifersp/master
  • 603f233 Merge pull request #2113 from mateuszkowalke/master
  • 035bbbe Use sql.ErrNoRows as value for pgx.ErrNoRows
  • 73bbced add byte length check to uint32
  • Additional commits viewable in compare view

Updates github.com/prometheus/client_golang from 1.20.2 to 1.20.4

Release notes

Sourced from github.com/prometheus/client_golang's releases.

v1.20.4

  • [BUGFIX] histograms: Fix a possible data race when appending exemplars vs metrics gather. #1623

v1.20.3

  • [BUGFIX] histograms: Fix possible data race when appending exemplars. #1608
Changelog

Sourced from github.com/prometheus/client_golang's changelog.

Unreleased

  • [BUGFIX] histograms: Fix possible data race when appending exemplars vs metrics gather. #1623

1.20.3 / 2024-09-05

  • [BUGFIX] histograms: Fix possible data race when appending exemplars. #1608
Commits
  • 05fcde9 Merge pull request #1623 from krajorama/data-race-in-histogram-write
  • 209f4c0 Add changelog
  • 1e398cc native histogram: Fix race between Write and addExemplar
  • ef2f87e Merge pull request #1620 from prometheus/arthursens/prepare-1.20.3
  • 937ac63 Add changelog entry for 1.20.3
  • 6e9914d Merge pull request #1608 from krajorama/index-out-of-range-native-histogram-e...
  • d6b8c89 Update comments with more explanations
  • 504566f Use simplified solution from #1609 for the data race
  • dc8e9a4 fix: native histogram: Simplify and fix addExemplar
  • dc819ce Use a trivial solution to #1605
  • Additional commits viewable in compare view

Updates github.com/prometheus/common from 0.57.0 to 0.60.0

Release notes

Sourced from github.com/prometheus/common's releases.

v0.60.0

What's Changed

Full Changelog: prometheus/common@v0.59.1...v0.60.0

v0.59.1

What's Changed

Full Changelog: prometheus/common@v0.59.0...v0.59.1

v0.59.0

What's Changed

Full Changelog: prometheus/common@v0.58.0...v0.59.0

v0.58.0

What's Changed

Full Changelog: prometheus/common@v0.57.0...v0.58.0

Commits
  • dae848d Update supported Go versions (#700)
  • 63ff77e Bump golang.org/x/oauth2 from 0.22.0 to 0.23.0 (#698)
  • b7aa68c Bump golang.org/x/net from 0.28.0 to 0.29.0 (#699)
  • 4e3a6fd feat: add promslog.NewNopLogger() convenience func (#697)
  • d66e745 promslog: use UTC timestamps for go-kit log style (#696)
  • 14bac55 Merge pull request #695 from prometheus/repo_sync
  • 8bc4cd5 Update common Prometheus files
  • 40d6251 Merge pull request #694 from jkroepke/slog/writer
  • fa21dfd Update common Prometheus files (#692)
  • 5f9af24 slog: expose io.Writer
  • Additional commits viewable in compare view

Updates github.com/schollz/progressbar/v3 from 3.14.6 to 3.16.0

Release notes

Sourced from github.com/schollz/progressbar/v3's releases.

v3.16.0

What's Changed

Full Changelog: schollz/progressbar@v3.15.0...v3.16.0

v3.15.0

What's Changed

New Contributors

Full Changelog: schollz/progressbar@v3.14.6...v3.15.0

Commits
  • f1b3580 Merge pull request #199 from chengxilo/update-spinner
  • 3d93361 feat: update the test.Now the actual is what the output would be like in the ...
  • efe17f0 fix:according to renderProgressBar, only update spinner when ignore length.
  • fbe274c fix:check whether the progressbar is visible before start the spinner change ...
  • 12ba16a import virtualterm for testing.
  • 5ad50c6 feat: make progressbar could update according to an interval or update each t...
  • d773ff3 Merge pull request #193 from luo-cheng-xi/fix-change-max
  • 191b8ab update dependencies
  • dcb591b Merge pull request #196 from luo-cheng-xi/not-now
  • 4c1391b Merge pull request #194 from luo-cheng-xi/feature-scrolling-detail
  • Additional commits viewable in compare view

Updates go.opentelemetry.io/otel/sdk from 1.29.0 to 1.30.0

Changelog

Sourced from go.opentelemetry.io/otel/sdk's changelog.

[1.30.0/0.52.0/0.6.0/0.0.9] 2024-09-09

Added

  • Support OTEL_EXPORTER_OTLP_LOGS_INSECURE and OTEL_EXPORTER_OTLP_INSECURE environments in go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc. (#5739)
  • The WithResource option for NewMeterProvider now merges the provided resources with the ones from environment variables. (#5773)
  • The WithResource option for NewLoggerProvider now merges the provided resources with the ones from environment variables. (#5773)
  • Add UTF-8 support to go.opentelemetry.io/otel/exporters/prometheus. (#5755)

Fixed

  • Fix memory leak in the global MeterProvider when identical instruments are repeatedly created. (#5754)
  • Fix panic on instruments creation when setting meter provider. (#5758)
  • Fix an issue where SetMeterProvider in go.opentelemetry.io/otel might miss the delegation for instruments and registries. (#5780)

Removed

Commits
  • ed4fc75 Release v1.30.0/v0.52.0/v0.6.0/v0.0.9 (#5797)
  • cdd2dbb Drop support for Go 1.21 in dice example (#5800)
  • e9ac0d2 fix(deps): update module google.golang.org/grpc to v1.66.1 (#5798)
  • 4cc9fee fix(deps): update golang.org/x/exp digest to 701f63a (#5795)
  • 71b341f Add utf8 support to the prometheus exporter (#5755)
  • 506a9ba Fix typos (#5763)
  • b37e8a9 SetMeterProvider might miss the delegation for instruments and registries (...
  • 9e1b015 fix(metric, log): merge explicit resource with environment variables (#5773)
  • 8dca9cc Support OTEL_EXPORTER_OTLP_LOGS_INSECURE and OTEL_EXPORTER_OTLP_INSECURE envi...
  • fb7cc02 fix(deps): update module github.com/prometheus/client_golang to v1.20.3 (#5788)
  • Additional commits viewable in compare view

Updates google.golang.org/api from 0.196.0 to 0.197.0

Release notes

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

v0.197.0

0.197.0 (2024-09-10)

Features

Bug Fixes

  • transport: Set UniverseDomain in http.NewClient for new auth (#2773) (140d0a5)
Changelog

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

0.197.0 (2024-09-10)

Features

Bug Fixes

  • transport: Set UniverseDomain in http.NewClient for new auth (#2773) (140d0a5)
Commits

Updates google.golang.org/genproto/googleapis/api from 0.0.0-20240827150818-7e3bb234dfed to 0.0.0-20240903143218-8af14fe29dc1

Commits

Updates google.golang.org/grpc from 1.66.2 to 1.67.1

Release notes

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

Release 1.67.1

Bug Fixes

  • transport: Fix a bug causing stream failures due to miscalculation of the flow control window in both clients and servers. (#7667)
  • xds/server: Fix xDS Server memory leak. (#7681)

Release 1.67.0

Bug Fixes

  • ringhash: when used with multiple EDS priorities, fix bug that could prevent a higher priority from recovering from transient failure. (#7364)

Behavior Changes

  • In accordance with RFC 7540, clients and servers will now reject TLS connections that don't support ALPN. This can be disabled by setting the environment variable GRPC_ENFORCE_ALPN_ENABLED to false (case insensitive). Please file a bug if you encounter any issues with this behavior. The environment variable to revert this behavior will be removed in an upcoming release. (#7535)

Release 1.66.3

Bug Fixes

  • transport: Fix a bug causing stream failures due to miscalculation of the flow control window in both clients and servers. (#7667)
  • xds/server: Fix xDS Server memory leak. (#7681)
Commits

Updates resenje.org/singleflight from 0.4.2 to 0.4.3

Commits
  • 10a8876 fix duplicate key deletion when forget called (#14)
  • 62d056a Avoid checking for error in TestDo_panic linter-friendly way
  • See full diff in compare view

Updates github.com/maypok86/otter from 1.2.2 to 1.2.3

Release notes

Sourced from github.com/maypok86/otter's releases.

v1.2.3

1.2.3 - 2024-09-30

🐞 Bug Fixes

  • Added collection of eviction statistics for expired entries. (#108)
Changelog

Sourced from github.com/maypok86/otter's changelog.

1.2.3 - 2024-09-30

🐞 Bug Fixes

  • Added collection of eviction statistics for expired entries. (#108)
Commits
  • 5b6058f [Chore] Update CHANGELOG for v1.2.3 release
  • a35617e #108 Collect eviction statistics for expired entries
  • 507bc49 [Chore] Add fixes for linters
  • 23a97a1 [Chore] Use copyloopvar linter instead of exportloopref
  • See full diff in compare view

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 go-mod group with 15 updates:

| Package | From | To |
| --- | --- | --- |
| [cloud.google.com/go/spanner](https://github.com/googleapis/google-cloud-go) | `1.67.0` | `1.68.0` |
| [github.com/authzed/authzed-go](https://github.com/authzed/authzed-go) | `0.15.1-0.20240916185322-dad4080470f3` | `0.16.0` |
| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.30.4` | `1.31.0` |
| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.27.31` | `1.27.39` |
| [github.com/aws/aws-sdk-go-v2/feature/rds/auth](https://github.com/aws/aws-sdk-go-v2) | `1.4.16` | `1.4.18` |
| [github.com/jackc/pgx/v5](https://github.com/jackc/pgx) | `5.6.0` | `5.7.1` |
| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.20.2` | `1.20.4` |
| [github.com/prometheus/common](https://github.com/prometheus/common) | `0.57.0` | `0.60.0` |
| [github.com/schollz/progressbar/v3](https://github.com/schollz/progressbar) | `3.14.6` | `3.16.0` |
| [go.opentelemetry.io/otel/sdk](https://github.com/open-telemetry/opentelemetry-go) | `1.29.0` | `1.30.0` |
| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.196.0` | `0.197.0` |
| [google.golang.org/genproto/googleapis/api](https://github.com/googleapis/go-genproto) | `0.0.0-20240827150818-7e3bb234dfed` | `0.0.0-20240903143218-8af14fe29dc1` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.66.2` | `1.67.1` |
| [resenje.org/singleflight](https://github.com/janos/singleflight) | `0.4.2` | `0.4.3` |
| [github.com/maypok86/otter](https://github.com/maypok86/otter) | `1.2.2` | `1.2.3` |


Updates `cloud.google.com/go/spanner` from 1.67.0 to 1.68.0
- [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@spanner/v1.67.0...spanner/v1.68.0)

Updates `github.com/authzed/authzed-go` from 0.15.1-0.20240916185322-dad4080470f3 to 0.16.0
- [Release notes](https://github.com/authzed/authzed-go/releases)
- [Commits](https://github.com/authzed/authzed-go/commits/v0.16.0)

Updates `github.com/aws/aws-sdk-go-v2` from 1.30.4 to 1.31.0
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.30.4...v1.31.0)

Updates `github.com/aws/aws-sdk-go-v2/config` from 1.27.31 to 1.27.39
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@config/v1.27.31...config/v1.27.39)

Updates `github.com/aws/aws-sdk-go-v2/feature/rds/auth` from 1.4.16 to 1.4.18
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@feature/rds/auth/v1.4.16...feature/rds/auth/v1.4.18)

Updates `github.com/jackc/pgx/v5` from 5.6.0 to 5.7.1
- [Changelog](https://github.com/jackc/pgx/blob/master/CHANGELOG.md)
- [Commits](jackc/pgx@v5.6.0...v5.7.1)

Updates `github.com/prometheus/client_golang` from 1.20.2 to 1.20.4
- [Release notes](https://github.com/prometheus/client_golang/releases)
- [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md)
- [Commits](prometheus/client_golang@v1.20.2...v1.20.4)

Updates `github.com/prometheus/common` from 0.57.0 to 0.60.0
- [Release notes](https://github.com/prometheus/common/releases)
- [Changelog](https://github.com/prometheus/common/blob/main/RELEASE.md)
- [Commits](prometheus/common@v0.57.0...v0.60.0)

Updates `github.com/schollz/progressbar/v3` from 3.14.6 to 3.16.0
- [Release notes](https://github.com/schollz/progressbar/releases)
- [Commits](schollz/progressbar@v3.14.6...v3.16.0)

Updates `go.opentelemetry.io/otel/sdk` from 1.29.0 to 1.30.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.29.0...v1.30.0)

Updates `google.golang.org/api` from 0.196.0 to 0.197.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.196.0...v0.197.0)

Updates `google.golang.org/genproto/googleapis/api` from 0.0.0-20240827150818-7e3bb234dfed to 0.0.0-20240903143218-8af14fe29dc1
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `google.golang.org/grpc` from 1.66.2 to 1.67.1
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.66.2...v1.67.1)

Updates `resenje.org/singleflight` from 0.4.2 to 0.4.3
- [Release notes](https://github.com/janos/singleflight/releases)
- [Commits](janos/singleflight@v0.4.2...v0.4.3)

Updates `github.com/maypok86/otter` from 1.2.2 to 1.2.3
- [Release notes](https://github.com/maypok86/otter/releases)
- [Changelog](https://github.com/maypok86/otter/blob/main/CHANGELOG.md)
- [Commits](maypok86/otter@v1.2.2...v1.2.3)

---
updated-dependencies:
- dependency-name: cloud.google.com/go/spanner
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/authzed/authzed-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/aws/aws-sdk-go-v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/aws/aws-sdk-go-v2/config
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: github.com/aws/aws-sdk-go-v2/feature/rds/auth
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: github.com/jackc/pgx/v5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/prometheus/client_golang
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: github.com/prometheus/common
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/schollz/progressbar/v3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: go.opentelemetry.io/otel/sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: google.golang.org/api
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: google.golang.org/genproto/googleapis/api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: google.golang.org/grpc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: resenje.org/singleflight
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: github.com/maypok86/otter
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner October 1, 2024 18:29
@dependabot dependabot bot added the area/dependencies Affects dependencies label Oct 1, 2024
@josephschorr josephschorr added this pull request to the merge queue Oct 4, 2024
Merged via the queue into main with commit 9d87aa6 Oct 4, 2024
22 checks passed
@josephschorr josephschorr deleted the dependabot/go_modules/go-mod-5cb4a1a592 branch October 4, 2024 17:14
@github-actions github-actions bot locked and limited conversation to collaborators Oct 4, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
area/dependencies Affects dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant