Update go.mod packages #579
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v9.18.0
->v9.19.0
v3.11.0
->v3.12.2
v5.6.0+incompatible
->v5.9.11+incompatible
v2.7.0
->v2.9.0
v1.4.2
->v1.4.3
v0.21.0
->v0.21.2
v0.20.2
->v0.21.0
v0.23.0
->v0.23.1
v0.6.8
->v0.7.0
v0.3.15
->v0.3.16
091c0ba
->5a60cdf
v1.14.0
->v1.14.4
v1.10.7
->v1.10.9
v0.7.7
->v0.9.0
v2.22.0
->v2.23.4
v1.22.0
->v1.23.0
v0.6.1
->v0.6.2
v0.62.0
->v0.65.0
v0.15.1
->v0.17.0
v1.3.1
->v1.4.0
v1.0.6-0.20210604193023-d5e0c0615ace
->v1.0.7
7394aeb
->278b42d
v0.37.0
->v0.41.0
v0.39.0
->v0.43.0
v0.32.0
->v0.35.0
v0.31.0
->v0.34.0
v0.24.0
->v0.28.0
v0.11.0
->v0.12.0
v1.36.5
->v1.36.7
v0.30.4
->v0.33.3
v0.32.2
->v0.33.3
v0.30.4
->v0.33.3
v0.32.2
->v0.33.3
32ad38e
->f3f2b99
3ea5e8c
->4c0f3b2
v0.16.2-0.20250422072120-cadf714c3055
->v0.16.2
6d7e2f9
->b5c2ba8
9aa6b5e
->2d32026
v4.4.2
->v4.7.0
v1.4.0
->v1.6.0
Warning
Some dependencies could not be looked up. Check the warning logs for more information.
Release Notes
doug-martin/goqu (github.com/doug-martin/goqu/v9)
v9.19.0
Compare Source
emicklei/go-restful (github.com/emicklei/go-restful/v3)
v3.12.2
Compare Source
v3.12.1
Compare Source
v3.12.0
Compare Source
v3.11.3
Compare Source
v3.11.2
Compare Source
v3.11.1
Compare Source
evanphx/json-patch (github.com/evanphx/json-patch)
v5.9.11+incompatible
Compare Source
v5.9.10+incompatible
Compare Source
v5.9.0+incompatible
Compare Source
v5.8.1+incompatible
Compare Source
v5.8.0+incompatible
Compare Source
v5.7.0+incompatible
Compare Source
fxamacker/cbor (github.com/fxamacker/cbor/v2)
v2.9.0
Compare Source
v2.9.0 adds new features, refactors tests, and improves docs. New features improve interoperability/transcoding between CBOR & JSON.
v2.9.0 passed fuzz tests and is production quality. However, the new
TextUnmarshaler
feature will continue being fuzz tested a bit longer due to recent changes. The recent changes are limited and don't affect other parts of the codec that passed ~2 billion execs fuzzing.What's Changed
Docs
CI
🔎 Details
Special Thanks
Many thanks to @benluddy for adding these new features! 🎉
New Contributors
Full Changelog: fxamacker/cbor@v2.8.0...v2.9.0
v2.8.0
Compare Source
v2.8.0 adds
omitzero
struct tag option, fixes and deprecates 3 functions, and bumps requirements to go 1.20+.Many thanks to @liggitt for contributing the
omitzero
support!This release fixes 3 functions (when called directly by user apps) to use same error handling on bad input as
cbor.Unmarshal()
:RawTag.UnmarshalCBOR()
(thanks @thomas-fossati for reporting this!)ByteString.UnmarshalCBOR()
SimpleValue.UnmarshalCBOR()
This release also deprecates those 3 functions because they were initially created for internal use. Please use
Unmarshal()
orUnmarshalFirst()
instead.To preserve backward compatibility, the deprecated functions were added to fuzz tests and will not be removed in v2.x.
What's Changed
interface{}
withany
by @fxamacker in https://github.com/fxamacker/cbor/pull/627reflect.Ptr
withreflect.Pointer
by @fxamacker in https://github.com/fxamacker/cbor/pull/628reflect.PtrTo
withreflect.PointerTo
by @fxamacker in https://github.com/fxamacker/cbor/pull/629RawTag.UnmarshalCBOR()
, etc. to matchcbor.Unmarshal()
by @fxamacker in https://github.com/fxamacker/cbor/pull/645UnmarshalCBOR()
forByteString
,RawTag
,SimpleValue
by @fxamacker in https://github.com/fxamacker/cbor/pull/647Other Changes
🔍 Details
New Contributors
Full Changelog: fxamacker/cbor@v2.7.0...v2.8.0
v2.7.1
Compare Source
v2.7.1 fixes 3 functions (when called directly by user apps) to use same error handling on bad inputs as
cbor.Unmarshal()
:ByteString.UnmarshalCBOR()
RawTag.UnmarshalCBOR()
SimpleValue.UnmarshalCBOR()
The above 3 fixed functions are deprecated because they were initially created for internal use. Please use
Unmarshal()
orUnmarshalFirst()
instead.To preserve backward compatibility, the deprecated functions were added to fuzz tests and will not be removed in v2.x.
Before Upgrading to v2.7.1
v2.8.0 is being fuzz tested and will be released later today. It adds support for
omitzero
struct tag option.v2.7.1 is the last version to support go 1.17-1.19. v2.8.0 and newer releases will require go 1.20+.
What's Changed
Special Thanks
Thanks @thomas-fossati for reporting the bug in
RawTag.UnmarshalCBOR()
when it is called directly by user apps providing bad input data!Full Changelog: fxamacker/cbor@v2.7.0...v2.7.1
go-logr/logr (github.com/go-logr/logr)
v1.4.3
Compare Source
Minor release.
What's Changed
New Contributors
Full Changelog: go-logr/logr@v1.4.2...v1.4.3
go-openapi/jsonpointer (github.com/go-openapi/jsonpointer)
v0.21.2
Compare Source
v0.21.1
Compare Source
go-openapi/jsonreference (github.com/go-openapi/jsonreference)
v0.21.0
Compare Source
v0.20.5
Compare Source
v0.20.4
Compare Source
v0.20.3
Compare Source
go-openapi/swag (github.com/go-openapi/swag)
v0.23.1
Compare Source
google/gnostic-models (github.com/google/gnostic-models)
v0.7.0
Compare Source
v0.6.9
Compare Source
imdario/mergo (github.com/imdario/mergo)
v0.3.16
: Announcement: v1.0.0 will be released on June 18thCompare Source
This release doesn't contain code changes.
After 10 years, with many corner cases covered, very few issues pending (at least, comparing them with the usage of the library as part of Docker, Kubernetes, Datadog's agent, etc.), and a very stable API, I think it's time to release a 1.0.0 version.
This version will be released under a vanity URL: dario.cat/mergo
PS: although I'll make sure that github.com/imdario/mergo will be available, I'm going to also change my GitHub handle, so expect for a few minutes to not be able to pull from github.com/imdario as I fork it from the new handle to the old one.
PS2: I'm creating a discussion for this release to make sure we can have a conversation around the topic, and anything else about Mergo that you care about.
jackc/pgtype (github.com/jackc/pgtype)
v1.14.4
Compare Source
v1.14.3
Compare Source
v1.14.2
Compare Source
v1.14.1
Compare Source
lib/pq (github.com/lib/pq)
v1.10.9
Compare Source
v1.10.8
Compare Source
mailru/easyjson (github.com/mailru/easyjson)
v0.9.0
Compare Source
up go version and bugfixes
v0.8.0
Compare Source
stable version before go version bump
onsi/ginkgo (github.com/onsi/ginkgo/v2)
v2.23.4
Compare Source
2.23.4
Prior to this release Ginkgo would compute the incorrect number of available CPUs when running with
-p
in a linux container. Thanks to @emirot for the fix!Features
2b9c428
]Fixes
1f59d07
]Maintenance
2d134d5
]v2.23.3
Compare Source
2.23.3
Fixes
-
as a standalone argument [cfcc1a5
]feaf292
]88e2282
]v2.23.2
Compare Source
2.23.2
🎉🎉🎉
At long last, some long-standing performance gaps between
ginkgo
andgo test
have been resolved!Ginkgo operates by running
go test -c
to generate test binaries, and then running those binaries. It turns out that the compilation step ofgo test -c
is slower thango test
's compilation step becausego test
strips out debug symbols (ldflags=-w
) whereasgo test -c
does not.Ginkgo now passes the appropriate
ldflags
togo test -c
when running specs to strip out symbols. This is only done when it is safe to do so and symbols are preferred when profiling is enabled and whenginkgo build
is called explicitly.This, coupled, with the instructions for disabling XProtect on MacOS yields a much better performance experience with Ginkgo.
v2.23.1
Compare Source
2.23.1
🚨 For users on MacOS 🚨
A long-standing Ginkgo performance issue on MacOS seems to be due to mac's antimalware XProtect. You can follow the instructions here to disable it in your terminal. Doing so sped up Ginkgo's own test suite from 1m8s to 47s.
Fixes
Ginkgo's CLI is now a bit clearer if you pass flags in incorrectly:
a0e52ff
]b799d8d
]This might cause existing CI builds to fail. If so then it's likely that your CI build was misconfigured and should be corrected. Open an issue if you need help.
v2.23.0
Compare Source
2.23.0
Ginkgo 2.23.0 adds a handful of methods to
GinkgoT()
to make it compatible with thetesting.TB
interface in Go 1.24.GinkgoT().Context()
, in particular, is a useful shorthand for generating a new context that will clean itself up in aDeferCleanup()
. This has subtle behavior differences from the golang implementation but should make sense in a Ginkgo... um... context.Features
37a511b
]Fixes
7556a86
]4df06c6
]Maintenance
cbcf39a
]9b261ff
]00f19c8
]e98a4df
]60cc4e2
]fea6f2d
]31d7813
]fc3bbd6
]aee0d56
]809a710
]v2.22.2
Compare Source
What's Changed
Full Changelog: onsi/ginkgo@v2.22.1...v2.22.2
v2.22.1
Compare Source
2.22.1
Fixes
Fix CSV encoding
aab3da6
]c09df39
]96a80fc
]43dad69
]Maintenance
c88c634
]4df44bf
]prometheus/client_golang (github.com/prometheus/client_golang)
v1.23.0
: - 2025-07-30Compare Source
All Changes
* Update example test by @SuperQ in https://github.com/prometheus/client_golang/pull/1770 * build(deps): bump golang.org/x/net from 0.34.0 to 0.36.0 in /tutorials/whatsup by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1776 * Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/1771 * Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/1778 * Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/1779 * build(deps): bump google.golang.org/protobuf from 1.36.5 to 1.36.6 in /exp by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1782 * build(deps): bump github.com/prometheus/common from 0.62.0 to 0.63.0 in /exp by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1781 * buiConfiguration
📅 Schedule: Branch creation - "after 5am on sunday" in timezone America/New_York, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
To execute skipped test pipelines write comment
/ok-to-test
.This PR has been generated by MintMaker (powered by Renovate Bot).