chore(deps): update go dependencies (backplane-2.8) #691
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:
v1.0.1
->v1.0.2
v3.3.0
->v3.3.1
v3.12.1
->v3.12.2
v5.9.0+incompatible
->v5.9.11+incompatible
v5.9.0
->v5.9.11
v2.7.0
->v2.8.0
v0.128.0
->v0.132.0
v0.22.0
->v0.22.1
v0.21.0
->v0.21.1
v0.23.0
->v0.23.1
v1.2.4
->v1.2.5
v0.6.9-0.20230804172637-c7be7c783f49
->v0.6.9
a4b03ec
->c008609
v1.0.0
->v1.0.1
v0.12.7
->v0.12.17
v0.1.3
->v0.1.6
091c0ba
->5a60cdf
v1.14.0
->v1.14.4
v4.18.2
->v4.18.3
v1.1.4
->v1.1.5
v0.7.7
->v0.9.0
v1.0.25
->v1.0.27
v1.19.1
->v1.22.0
v0.6.1
->v0.6.2
v0.55.0
->v0.64.0
v0.15.1
->v0.16.1
v1.47.0
->v1.50.0
v1.7.0
->v1.8.0
v1.8.1
->v1.9.1
v1.14.0
->v1.17.3
v1.28.0
->v1.36.0
v1.28.0
->v1.36.0
v0.36.0
->v0.38.0
8a7402a
->ce4c2cf
v0.33.0
->v0.40.0
v0.28.0
->v0.30.0
v0.31.0
->v0.33.0
v0.30.0
->v0.32.0
v0.7.0
->v0.11.0
v0.26.0
->v0.33.0
v2.4.0
->v2.5.0
v1.35.1
->v1.36.6
v1.24.5
->v1.26.1
v0.29.0
->v0.33.1
32ad38e
->c8a335a
9aa6b5e
->cfa47c3
v4.4.2
->v4.7.0
Warning
Some dependencies could not be looked up. Check the warning logs for more information.
Release Notes
imdario/mergo (dario.cat/mergo)
v1.0.2
Compare Source
What's Changed
gopkg.in/yaml.v3
, only used for loading fixtures. Thanks @trim21 for bringing to my attention (#262) that this library is no longer maintained.Full Changelog: darccio/mergo@v1.0.1...v1.0.2
Masterminds/semver (github.com/Masterminds/semver/v3)
v3.3.1
Compare Source
What's Changed
Full Changelog: Masterminds/semver@v3.3.0...v3.3.1
emicklei/go-restful (github.com/emicklei/go-restful/v3)
v3.12.2
Compare Source
evanphx/json-patch (github.com/evanphx/json-patch)
v5.9.11+incompatible
Compare Source
v5.9.10+incompatible
Compare Source
fxamacker/cbor (github.com/fxamacker/cbor/v2)
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
getkin/kin-openapi (github.com/getkin/kin-openapi)
v0.132.0
Compare Source
What's Changed
AuthenticatorFunc
by @jamietanna in https://github.com/getkin/kin-openapi/pull/1064New Contributors
Full Changelog: getkin/kin-openapi@v0.131.0...v0.132.0
v0.131.0
Compare Source
What's Changed
Full Changelog: getkin/kin-openapi@v0.130.0...v0.131.0
v0.130.0
Compare Source
What's Changed
New Contributors
Full Changelog: getkin/kin-openapi@v0.129.0...v0.130.0
v0.129.0
Compare Source
What's Changed
x-www-form-urlencoded
with arbitrary nested allOf by @mikhalytch in https://github.com/getkin/kin-openapi/pull/1046New Contributors
Full Changelog: getkin/kin-openapi@v0.128.0...v0.129.0
go-openapi/errors (github.com/go-openapi/errors)
v0.22.1
Compare Source
go-openapi/jsonpointer (github.com/go-openapi/jsonpointer)
v0.21.1
Compare Source
go-openapi/swag (github.com/go-openapi/swag)
v0.23.1
Compare Source
golang/glog (github.com/golang/glog)
v1.2.5
Compare Source
What's Changed
Full Changelog: golang/glog@v1.2.4...v1.2.5
google/gnostic-models (github.com/google/gnostic-models)
v0.6.9
Compare Source
gorilla/css (github.com/gorilla/css)
v1.0.1
Compare Source
What's Changed
New Contributors
Full Changelog: gorilla/css@v1.0.0...v1.0.1
itchyny/gojq (github.com/itchyny/gojq)
v0.12.17
Compare Source
add/1
,skip/2
functions--library-path
option as the alias of-L
optionreduce
syntax to emit results for each initial valuelast/1
to yield no values when the argument yields no valueslimit/2
to emit an error on negative count@uri
and@urid
formats not to convert space between plus signv0.12.16
Compare Source
exp10
andatan2
failing on some platformsdebug/1
to be available only whendebug/0
is definedv0.12.15
Compare Source
ltrim
,rtrim
, andtrim
functionsgojq.ParseError
for getting the offset and token of query parsing errorgojq.HaltError
for detecting halt errors and stopping outer iteration{x:0,y:1} | {a:.x,a:.y}
)halt
andhalt_error
functions to stop the command execution immediately"a" as $v | def f: $v; "b" as $v | f
)$ARGS
in~/.jq
)ltrimstr
andrtrimstr
functions to emit error on non-string inputnearbyint
andrint
functions to round ties to evenreduce
,foreach
,if
,try
-catch
syntax as object valuespow10
in favor ofexp10
, definescalbn
andscalbln
byldexp
v0.12.14
Compare Source
abs
,pick
, anddebug/1
functions--raw-output0
option, and remove--nul-output
(-0
) optionnan
nan
if either side isnan
implode
function to emit replacement characters on invalid code pointsstderr
function to output strings in raw formaterror
function to throw an error even fornull
walk
function on multiple outputs arguments--from-file
option to work with--args
and--jsonargs
options../lib
relative to the executablemodulemeta
function to include defined function names in the moduleimport
andinclude
directives to support$ORIGIN
expansionleaf_paths
functionv0.12.13
Compare Source
@urid
format string to decode URI valuesflatten
,group_by
,unique
,unique_by
,nth
,indices
,path
, andmodulemeta.deps
)v0.12.12
Compare Source
=
) with overlapping paths and multiple values ([[]] | .. = ..
)9223372036854775807 * ""
)v0.12.11
Compare Source
=
) with multiple values (. = (0,0)
)isnormal
andnormals
functions against subnormal numbersv0.12.10
Compare Source
break
intry
-catch
query (label $x | try break $x catch .
)getpath
function (path(getpath([[0]][0]))
)walk
function with argument emitting multiple values ([1],{x:1} | walk(.,0)
)@csv
,@tsv
,@sh
to escape the null character (["\u0000"] | @​csv,@​tsv,@​sh
)=
), update-assignment operator (|=
),map_values
,del
,delpaths
,walk
,ascii_downcase
, andascii_upcase
functionsv0.12.9
Compare Source
fromjson
to emit error on unexpected trailing stringdef f($x): .y; path(f(.x))
)--raw-input
(-R
) to keep carriage returns and support 64KiB+ linesv0.12.8
Compare Source
gojq.Compare
for comparing values in custom internal functionsgojq.TypeOf
for obtaining type name of values in custom internal functionsgojq.Preview
for previewing values for error messages of custom internal functions"\ud83d\ude04"
)def empty: .; null | select(.)
)null
("abc" | .[3]
)"abc" as [$a] ?// $a | $a
)sub
andgsub
functions to emit results in the same order of jqfromjson
to keep integer precision ("10000000000000000" | fromjson + 1
)mktime
to support nanoseconds, just likegmtime
andnow
by validating path values by comparing data addresses. This change improves jq
compatibility of path value validation (
{} | {}.x = 0
,[0] | [.[]][] = 1
).Also optimize constant indexing and slicing by specialized instruction
add
(on array of strings),flatten
,min
,max
,sort
,unique
,join
,to_entries
,from_entries
,indices
,index
,rindex
,startswith
,endswith
,ltrimstr
,rtrimstr
,explode
,capture
,sub
, andgsub
functionsitchyny/timefmt-go (github.com/itchyny/timefmt-go)
v0.1.6
Compare Source
%A
,%a
,%w
,%u
,%V
,%U
,%W
)%l
to show12
at midnightv0.1.5
Compare Source
%z
and%Z
v0.1.4
Compare Source
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
jackc/pgx (github.com/jackc/pgx/v4)
v4.18.3
Compare Source
jinzhu/now (github.com/jinzhu/now)
v1.1.5
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
microcosm-cc/bluemonday (github.com/microcosm-cc/bluemonday)
v1.0.27
Compare Source
v1.0.26
: Update golang.org/x/net to latest and force latest versionCompare Source
Bumping version and ensuring latest golang.org/x/net as the HTTP rapid reset is triggering primitive vuln scanners, we do not implement a HTTP2 server and are not vulnerable but a minor bump can still help reduce noise for those searching for what they need to upgrade and patch.
Nothing else is in this release aside from the dependency updates and some staticcheck messages being resolved that should not modify behaviour.
prometheus/client_golang (github.com/prometheus/client_golang)
v1.22.0
: - 2025-04-07Compare Source
zstd
support introduce in #1496Experimental support for
zstd
on scrape was added, controlled by the requestAccept-Encoding
header.It was enabled by default since version 1.20, but now you need to add a blank import to enable it.
The decision to make it opt-in by default was originally made because the Go standard library was expected to have default zstd support added soon,
https://github.com/golang/go/issues/62513 however, the work took longer than anticipated and it will be postponed to upcoming major Go versions.
e.g.:
WithLookbackDelta
andWithStats
options have been added to API client. #1743All Changes
New Contributors
Full Changelog: prometheus/client_golang@v1.21.1...v1.22.0-rc.0
v1.21.1
: / 2025-03-04Compare Source
This release addresses a performance regression introduced in #1661 -- thanks to all who reported this quickly:
@chlunde, @dethi, @aaronbee @tsuna @kakkoyun 💪🏽. This patch release also fixes the iOS build.
We will be hardening the release process even further (#1759, #1761) to prevent this in future, sorry for the inconvenience!
The high concurrency optimization is planned to be eventually reintroduced, however in a much safer manner, potentially in a separate API.
Inc
,Add
andObserve
cumulative metric CAS optimizations (#1661), causing regressions on low concurrency cases [#1757](https://redirect.github.com/prometheus/client_gol