A scriptable/customizable web server for testing HTTP clients using OAuth2/OpenID Connect or applications with a dependency to a running OAuth2 server (i.e. APIs requiring signed JWTs from a known issuer)
MIT License
248
stars
59
forks
source link
chore(deps): bump the github group across 1 directory with 21 updates #765
version 1.0 (2012-05-29)
* First official release with authorisation endpoint, token endpoint, check
ID endpoint and UserInfo endpoint support.
* JSON Web Tokens (JWTs) support through the Nimbus-JWT library.
* Language Tags (RFC 5646) support through the Nimbus-LangTag library.
* JSON support through the JSON Smart library.
version 2.0 (2013-05-13)
* Intermediary development release with Maven build, published to
Maven Central.
version 2.1 (2013-06-06)
* Updates the APIs to OpenID Connect Messages draft 20, OpenID Connect
Standard draft 21, OpenID Connect Discovery draft 17 and OpenID
Connect Registration draft 19.
* Major refactoring of the APIs for greater simplicity.
* Adds JUnit tests.
version 2.2 (2013-06-18)
* Refactors dynamic OpenID Connect client registration.
* Adds partial support of the OAuth 2.0 Dynamic Client Registration
Protocol (draft-ietf-oauth-dyn-reg-12).
* Optimises parsing of request parameters consisting of one or more
tokens (scope, response type, etc).
version 2.4 (2013-06-20)
* Adds static OIDCClientInformation.parse(JSONObject) method.
version 2.5 (2013-06-22)
* Adds support OAuth 2.0 dynamic client update.
* Adds OpenID Connect dynamic client registration classes.
version 2.6 (2013-06-25)
* Enforces order of preference of ACR values in OpenID Connect client
metadata, as required by the specification.
* Documentation and performance improvements.
version 2.7 (2013-06-26)
* Switches Identifier generation to java.security.SecureRandom.
version 2.8 (2013-06-30)
* Fixes serialisation and assignment bugs in ClientMetadata.
* Switches Secret generation to java.security.SecureRandom.
version 2.9 (2013-09-17)
... (truncated)
Commits
3b2a9a1 [maven-release-plugin] prepare for next development iteration
This release aims to fix important issues that were discovered in the 1.7.2 release,
including the inability to sync certain projects into Android Studio/IntelliJ IDEA and exceptions from custom Uuid serializers.
It uses Kotlin 2.0.20 by default.
Use explicit kotlin-stdlib and kotlin-test versions from version catalog (#2818)
Drop usage of deprecated Any?.freeze() in K/N target (#2819)
Check against serialName instead of simpleClassName (#2802)
Ignore NoClassDefFoundError when initializing builtins map for serializer() function (#2803)
Clarify example for SerializationException (#2806)
1.7.2
This release provides several new features, including a major Cbor configuration rework.
It uses Kotlin 2.0.20 by default.
Cbor feature set for COSE compliance
This change brings a lot of features to the CBOR format, namely:
Serial Labels — see @CborLabel annotation and preferCborLabelsOverNames flag.
Tagging of keys and values — see encode*Tags and verify*Tags set of flags
Definite length encoding — see useDefiniteLengthEncoding. This flag affects object encoding, since decoding of arrays with definite lenghts is automatically supported.
Option to globally prefer major type 2 for byte array encoding — see alwaysUseByteString flag.
Since there are quite a lot of flags now, they were restructured to a separate CborConfiguration class, similarly to JsonConfiguration. It is possible to retrieve this configuration from CborEncoder/CborDecoder interfaces in your custom serializers (see their documentation for details).
All of these features make it possible to serialize and parse COSE-compliant CBOR, for example, ISO/IEC 18013-5:2021-compliant mobile driving license data. In case you want to make use of them, there is a predefined Cbor.CoseCompliant instance.
However, some canonicalization steps (such as sorting keys) still need to be performed manually.
One of the most requested features for serialization plugin was to continue to generate a serializer even if a custom one is specified for the class. It allows using a plugin-generated serializer in a fallback or delegate strategy, accessing type structure via descriptor, using default serialization behavior in inheritors that do not use custom serializers.
Starting with this release, you can specify the @KeepGeneratedSerializer annotation on the class declaration to instruct the plugin to continue generating the serializer. In this case, the serializer will be accessible using the .generatedSerializer() function on the class's companion object.
This annotation is currently experimental. Kotlin 2.0.20 or higher is required for this feature to work.
Kotlin 2.0.20 added a common class to represent UUIDs in a multiplatform code. kotlinx.serialization 1.7.2 provides a corresponding Uuid.serializer() for it, making it possible to use it in @Serializable classes.
Note that for now, serializer should be provided manually with @Contextual annotation. Plugin will be able to automatically insert Uuid serializer in Kotlin 2.1.0.
This release aims to fix important issues that were discovered in the 1.7.2 release,
including the inability to sync certain projects into Android Studio/IntelliJ IDEA and exceptions from custom Uuid serializers.
It uses Kotlin 2.0.20 by default.
Use explicit kotlin-stdlib and kotlin-test versions from version catalog (#2818)
Drop usage of deprecated Any?.freeze() in K/N target (#2819)
Check against serialName instead of simpleClassName (#2802)
Ignore NoClassDefFoundError when initializing builtins map for serializer() function (#2803)
Clarify example for SerializationException (#2806)
1.7.2 / 2024-08-28
This release provides several new features, including a major Cbor configuration rework.
It uses Kotlin 2.0.20 by default.
Cbor feature set for COSE compliance
This change brings a lot of features to the CBOR format, namely:
Serial Labels — see @CborLabel annotation and preferCborLabelsOverNames flag.
Tagging of keys and values — see encode*Tags and verify*Tags set of flags
Definite length encoding — see useDefiniteLengthEncoding. This flag affects object encoding, since decoding of arrays with definite lenghts is automatically supported.
Option to globally prefer major type 2 for byte array encoding — see alwaysUseByteString flag.
Since there are quite a lot of flags now, they were restructured to a separate CborConfiguration class, similarly to JsonConfiguration.
It is possible to retrieve this configuration from CborEncoder/CborDecoder interfaces in your custom serializers (see their documentation for details).
All of these features make it possible to serialize and parse COSE-compliant CBOR, for example, ISO/IEC 18013-5:2021-compliant mobile driving license data.
In case you want to make use of them, there is a predefined Cbor.CoseCompliant instance.
However, some canonicalization steps (such as sorting keys) still need to be performed manually.
One of the most requested features for serialization plugin was to continue to generate a serializer even if a custom one is specified for the class.
It allows using a plugin-generated serializer in a fallback or delegate strategy, accessing type structure via descriptor, using default serialization behavior in inheritors that do not use custom serializers.
Starting with this release, you can specify the @KeepGeneratedSerializer annotation on the class declaration to instruct the plugin to continue generating the serializer.
In this case, the serializer will be accessible using the .generatedSerializer() function on the class's companion object.
This annotation is currently experimental. Kotlin 2.0.20 or higher is required for this feature to work.
Bumps the github group with 21 updates in the / directory:
2.17.2
2.18.1
2.17.2
2.18.1
1.5.7
1.5.12
11.18
11.20.1
4.1.112.Final
4.1.114.Final
1.78.1
1.79
1.7.1
1.7.3
5.11.0
5.11.3
5.11.0
5.11.3
5.11.0
5.11.3
2.0.20
2.0.21
3.3.3
3.3.5
3.3.3
3.3.5
3.3.3
3.3.5
3.3.3
3.3.5
3.3.3
3.3.5
2.2
2.3
3.6.9
3.6.11
7.0.0
7.1.0
2.0.20
2.0.21
3.4.3
3.4.4
Updates
com.fasterxml.jackson.core:jackson-databind
from 2.17.2 to 2.18.1Commits
Updates
com.fasterxml.jackson.module:jackson-module-kotlin
from 2.17.2 to 2.18.1Commits
3f1c827
[maven-release-plugin] prepare release jackson-module-kotlin-2.18.1fb5b731
Prep for 2.18.1 releasef27a76e
Merge pull request #836 from k163377/fix-docs62e4015
Fix docs3b48486
Back to snapshot depad4b22e
[maven-release-plugin] prepare for next development iteration89c01e1
[maven-release-plugin] prepare release jackson-module-kotlin-2.18.03cc03a7
Prepare for 2.18.0 release2ca44e8
Back to snapshot5437f38
[maven-release-plugin] prepare for next development iterationUpdates
ch.qos.logback:logback-classic
from 1.5.7 to 1.5.12Commits
3a64b51
prepare release 1.5.12ecae664
fix issues/87985968fa
logger call ends with two exceptions - fix issues/876ea3cec8
Update README.md887cbba
update README.mddf2a3b6
start work on 1.5.12-SNAPSHOT3aa0730
prepare release of version 1.5.118bcfd9a
allow for InsertFromJNDIModelHandler to be callable from logback-tyler75bee86
refactorings in support of logback-tyler8749edc
start work on 1.5.11-SNAPSHOTUpdates
com.nimbusds:oauth2-oidc-sdk
from 11.18 to 11.20.1Changelog
Sourced from com.nimbusds:oauth2-oidc-sdk's changelog.
... (truncated)
Commits
3b2a9a1
[maven-release-plugin] prepare for next development iteratione6e9914
Adds static OIDCScopeValue.resolveClaimNames(Scope, ...) helper methods2ddcd8f
[maven-release-plugin] prepare release 11.19db05d24
[maven-release-plugin] prepare for next development iterationf32d35b
OIDCScopeValue.resolveClaimNames(Scope, ...) must ignore the "openid" scope v...2be5ce0
[maven-release-plugin] prepare release 11.19.10ea81ab
[maven-release-plugin] prepare for next development iteration9e2a53d
Rearranges native_sso_supported const in OIDCProviderMetadataa32053e
Adds DeviceSecretToken class to represent DeviceSecret instances as a Tokenbf5a1dc
Certain parse methods must prevent unchecked IllegalArgumentExceptions due to...Updates
io.netty:netty-codec-http
from 4.1.112.Final to 4.1.114.FinalCommits
7679b9e
[maven-release-plugin] prepare release netty-4.1.114.Finald5f4bfb
Refactor DnsNameResolver to be able to use different strategies when … (#14374)041eaed
Re-add previous removed method to make revapi plugin happy again.232a5ab
DnsResolverBuilder methods should make it clear that these are for Da… (#14379)e87ce47
InitializeDnsNameResolverBuilder
at runtime for native images (#14376)3f66dd2
Make it possible to notify the TrustManager of resumed sessions (#14358)c036b99
DnsNameResolver: allow users to skip bind() during bootstrap (#14375)56a9101
Update small documentation typo (#14370)8362d9d
Fix flaky BootstrapTest (#14369)bbd3a4a
Fix OpenSslClientSessionCache remove (#14366)Updates
com.fasterxml.jackson.module:jackson-module-kotlin
from 2.17.2 to 2.18.1Commits
3f1c827
[maven-release-plugin] prepare release jackson-module-kotlin-2.18.1fb5b731
Prep for 2.18.1 releasef27a76e
Merge pull request #836 from k163377/fix-docs62e4015
Fix docs3b48486
Back to snapshot depad4b22e
[maven-release-plugin] prepare for next development iteration89c01e1
[maven-release-plugin] prepare release jackson-module-kotlin-2.18.03cc03a7
Prepare for 2.18.0 release2ca44e8
Back to snapshot5437f38
[maven-release-plugin] prepare for next development iterationUpdates
org.bouncycastle:bcpkix-jdk18on
from 1.78.1 to 1.79Changelog
Sourced from org.bouncycastle:bcpkix-jdk18on's changelog.
... (truncated)
Commits
Updates
org.jetbrains.kotlinx:kotlinx-serialization-json
from 1.7.1 to 1.7.3Release notes
Sourced from org.jetbrains.kotlinx:kotlinx-serialization-json's releases.
... (truncated)
Changelog
Sourced from org.jetbrains.kotlinx:kotlinx-serialization-json's changelog.
... (truncated)
Commits
d4d066d
Prepare 1.7.3 release (#2821)21311a6
Clarify example for SerializationException (#2806)2f1dbdb
Use explicit kotlin-stdlib and kotlin-test versions from version catalog (#2818)595bcbd
Drop usage of deprecated Any?.freeze() in K/N target (#2819)d9753af
Check against serialName instead of simpleClassName (#2802)0b015e1
Ignore NoClassDefFoundError when initializing builtins map for serializer() f...8c84a5b
Prepare 1.7.2 release (#2798)b3cfe56
Merge remote-tracking branch 'origin/master' into dev550e1a8
Rework opt-ins in build scripts (#2794)e4fa8a3
Update Annotations.kt, fixed typo: RgpPixel -> RgbPixel (#2793)Updates
org.junit.jupiter:junit-jupiter-api
from 5.11.0 to 5.11.3Release notes
Sourced from org.junit.jupiter:junit-jupiter-api's releases.
Commits
b20991e
Release 5.11.3e57b508
Finalize 5.11.3 release notesfb1254c
Allow repeatingExtendWith
annotation on fields and parametersa3192bd
Fix package name comparison on Java 8 (#4077)fcb7b01
Remove uselessOrder
annotation57dfcb5
Allow repeating@…Source
annotations when used as meta annotations09cd8b3
Add ArchUnit test for consistency of repeatable annotationsfa46a92
Hard-wrap at 90 characters8f45eea
Find repeatable @ExtendWith meta-annotations on fields againb451122
Introduce release notes for 5.11.3Updates
org.junit.jupiter:junit-jupiter-params
from 5.11.0 to 5.11.3Release notes
Sourced from org.junit.jupiter:junit-jupiter-params's releases.
Commits
b20991e
Release 5.11.3e57b508
Finalize 5.11.3 release notesfb1254c
Allow repeatingExtendWith
annotation on fields and parametersa3192bd
Fix package name comparison on Java 8 (#4077)fcb7b01
Remove uselessOrder
annotation57dfcb5
Allow repeating@…Source
annotations when used as meta annotations09cd8b3
Add ArchUnit test for consistency of repeatable annotationsfa46a92
Hard-wrap at 90 characters8f45eea
Find repeatable @ExtendWith meta-annotations on fields againb451122
Introduce release notes for 5.11.3Updates
org.junit.jupiter:junit-jupiter-engine
from 5.11.0 to 5.11.3Release notes
Sourced from org.junit.jupiter:junit-jupiter-engine's releases.
Commits
b20991e
Release 5.11.3e57b508
Finalize 5.11.3 release notesfb1254c
Allow repeatingExtendWith
annotation on fields and parametersa3192bd
Fix package name comparison on Java 8 (#4077)fcb7b01
Remove uselessOrder
annotation57dfcb5
Allow repeating@…Source
annotations when used as meta annotations09cd8b3
Add ArchUnit test for consistency of repeatable annotationsfa46a92
Hard-wrap at 90 characters8f45eea
Find repeatable @ExtendWith meta-annotations on fields againb451122
Introduce release notes for 5.11.3Updates
org.junit.jupiter:junit-jupiter-params
from 5.11.0 to 5.11.3Release notes
Sourced from org.junit.jupiter:junit-jupiter-params's releases.
Commits
b20991e
Release 5.11.3e57b508
Finalize 5.11.3 release notesfb1254c
Allow repeatingExtendWith
annotation on fields and parametersa3192bd
Fix package name comparison on Java 8 (#4077)fcb7b01
Remove uselessOrder
annotation57dfcb5
Allow repeating@…Source
annotations when used as meta annotations09cd8b3
Add ArchUnit test for consistency of repeatable annotationsfa46a92
Hard-wrap at 90 characters8f45eea
Find repeatable @ExtendWith meta-annotations on fields againb451122
Introduce release notes for 5.11.3Updates
org.jetbrains.kotlin:kotlin-test-junit5
from 2.0.20 to 2.0.21Release notes
Sourced from org.jetbrains.kotlin:kotlin-test-junit5's releases.
... (truncated)
Changelog
Sourced from org.jetbrains.kotlin:kotlin-test-junit5's changelog.
... (truncated)
Commits
284e9b4
Add ChangeLog for 2.0.21-RC38084f0
Enable source information for getters and other special-named functions9fcd247
Move source information of default parameters to the default group4bad11d
Add source markers to@ExplicitGroupsComposable
fcc1075
Bump IntelliJ platform to 233.13135.1281499254
[FIR2IR] Add static fields to the list of declarations of lazy IR java class8f121bc
Derelocate NSTextAttachment and NSTextContainer methodscc0919d
Allow using categories in the def file to reintroduce methods in the classb1504e7
[IC] Add synchronized clean methods to storage classes273abb8
Derelocate deprecated DOMElement APIsUpdates
org.junit.jupiter:junit-jupiter-engine
from 5.11.0 to 5.11.3Release notes
Sourced from org.junit.jupiter:junit-jupiter-engine's releases.
Commits
b20991e
Release 5.11.3e57b508
Finalize 5.11.3 release notesfb1254c
Allow repeatingExtendWith
annotation on fields and parametersa3192bd
Fix package name comparison on Java 8 (#4077)fcb7b01
Remove uselessOrder
annotation57dfcb5
Allow repeating@…Source
annotations when used as meta annotations09cd8b3
Add ArchUnit test for consistency of repeatable annotationsfa46a92
Hard-wrap at 90 characters8f45eea
Find repeatable @ExtendWith meta-annotations on fields againb451122
Introduce release notes for 5.11.3Updates
org.springframework.boot:spring-boot-starter-webflux
from 3.3.3 to 3.3.5Release notes
Sourced from org.springframework.boot:spring-boot-starter-webflux's releases.