Update module github.com/lestrrat-go/jwx to v3#1039
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
Update module github.com/lestrrat-go/jwx to v3#1039renovate[bot] wants to merge 1 commit intomainfrom
renovate[bot] wants to merge 1 commit intomainfrom
Conversation
0f5a6f4 to
c750b2d
Compare
c750b2d to
8cc6f49
Compare
8cc6f49 to
eb517c7
Compare
eb517c7 to
73d0e61
Compare
73d0e61 to
61c3ab1
Compare
61c3ab1 to
d4bfe01
Compare
d4bfe01 to
6c66f28
Compare
6c66f28 to
8ea399e
Compare
8ea399e to
b680f22
Compare
b680f22 to
d8829a0
Compare
d8829a0 to
96802e6
Compare
96802e6 to
4558bc9
Compare
4558bc9 to
762d3f5
Compare
762d3f5 to
8b55459
Compare
8b55459 to
e87823d
Compare
d6678b9 to
ddafd03
Compare
ddafd03 to
9ff11b4
Compare
9ff11b4 to
dd1ae52
Compare
dd1ae52 to
9694317
Compare
9694317 to
a002938
Compare
a002938 to
2599487
Compare
2599487 to
53046cc
Compare
53046cc to
15aac59
Compare
15aac59 to
26b435a
Compare
26b435a to
c71b8be
Compare
c71b8be to
a2480f6
Compare
a2480f6 to
a590ce6
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.2.31→v3.0.13Release Notes
lestrrat-go/jwx (github.com/lestrrat-go/jwx)
v3.0.13Compare Source
What's Changed
Full Changelog: lestrrat-go/jwx@v3.0.12...v3.0.13
v3.0.12Compare Source
What's Changed
godoclintissues by @babakks in #1469"header") for flattened JSON serialization by @lestrrat in #1477New Contributors
Full Changelog: lestrrat-go/jwx@v3.0.11...v3.0.12
v3.0.11Compare Source
What's Changed
New Contributors
Full Changelog: lestrrat-go/jwx@v3.0.10...v3.0.11
v3.0.10Compare Source
What's Changed
Full Changelog: lestrrat-go/jwx@v3.0.9...v3.0.10
v3.0.9Compare Source
What's Changed
Full Changelog: lestrrat-go/jwx@v3.0.8...v3.0.9
v3.0.8Compare Source
What's Changed
Full Changelog: lestrrat-go/jwx@v3.0.7...v3.0.8
v3.0.7Compare Source
What's Changed
Full Changelog: lestrrat-go/jwx@v3.0.6...v3.0.7
v3.0.6Compare Source
What's Changed
Full Changelog: lestrrat-go/jwx@v3.0.5...v3.0.6
v3.0.5Compare Source
What's Changed
Full Changelog: lestrrat-go/jwx@v3.0.4...v3.0.5
v3.0.4Compare Source
v3.0.3Compare Source
What's Changed
Full Changelog: lestrrat-go/jwx@v3.0.2...v3.0.3
v3.0.2Compare Source
What's Changed
Full Changelog: lestrrat-go/jwx@v3.0.1...v3.0.2
v3.0.1Compare Source
What's Changed
Please read the Changes file and upgrade accordingly, especially if you are using the following combinations for JWE:
New Contributors
Full Changelog: lestrrat-go/jwx@v3.0.0...v3.0.1
v3.0.0Compare Source
What's Changed
New Contributors
Full Changelog: lestrrat-go/jwx@v2.1.0...v3.0.0
v2.1.6Compare Source
What's Changed
Please read the Changes file and upgrade accordingly, especially if you are using the following combinations for JWE:
Full Changelog: lestrrat-go/jwx@v2.1.5...v2.1.6
v2.1.5Compare Source
What's Changed
Full Changelog: lestrrat-go/jwx@v2.1.4...v2.1.5
v2.1.4Compare Source
What's Changed
Full Changelog: lestrrat-go/jwx@v2.1.3...v2.1.4
v2.1.3Compare Source
What's Changed
Full Changelog: lestrrat-go/jwx@v2.1.2...v2.1.3
v2.1.2Compare Source
What's Changed
New Contributors
Full Changelog: lestrrat-go/jwx@v2.1.1...v2.1.2
v2.1.1Compare Source
v2.1.0Compare Source
v2.0.21Compare Source
v2.0.21 07 Mar 2024
[Security]
[jwe] Added
jwe.Settings(jwe.WithMaxDecompressBufferSize(int64))to specify themaximum size of a decompressed JWE payload. The default value is 10MB. If you
are compressing payloads greater than this and want to decompress it during
a call to
jwe.Decrypt, you need to explicitly set a value large enough tohold that data.
The same option can be passed to
jwe.Decryptto control this behavior ona per-message basis.
[jwe] Added documentation stating that
jwe.WithMaxBufferSizeoption will berenamed in future versions, i.e. v3
v2.0.20Compare Source
v2.0.20 20 Feb 2024
[New Features]
jwe.Settings(WithMaxBufferSize(int64))to set the maximum size ofinternal buffers. The default value is 256MB. Most users do not need to change
this value.
jws.WithCompact()andjws.WithJSON()to be passed tojws.Parse()andjws.Verify(). These options control the expected serialization format for theJWS message.
jwt.WithCompactOnly()to specify that only compact serialization canbe used for
jwt.Parse(). Previously, by virtue ofjws.Parse()allowing eitherJSON or Compact serialization format,
jwt.Parse()also alloed JSON serializationwhere as RFC7519 explicitly states that only compact serialization should be
used. For backward compatibility the default behavior is not changed, but you
can set this global option for jwt:
jwt.Settings(jwt.WithCompactOnly(true))[Miscellaneous]
public keys. This would allow you to pass private keys where public keys are
expected.
v2.0.19Compare Source
v2.0.18Compare Source
v2.0.17Compare Source