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 11 updates #744
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 11 updates in the / directory:
1.5.7
1.5.8
11.18
11.19.1
4.1.112.Final
4.1.113.Final
1.7.1
1.7.3
3.3.3
3.3.4
3.3.3
3.3.4
3.3.3
3.3.4
3.3.3
3.3.4
3.3.3
3.3.4
2.2
2.3
3.6.9
3.6.10
Updates
ch.qos.logback:logback-classic
from 1.5.7 to 1.5.8Commits
92e1a5e
prepare release 1.5.876d8dd8
Update README.md, comment out CI action resultsd7e0d59
Merge branch 'master' of github.com:qos-ch/logbackfe3bf9d
os.name property is expected to be Mac OS X on Apple computers9806273
Update README.mdc45f110
check for Mac OS X00c6f5e
what is the os.name7d03a42
update actions/setupedacb3b
skip email sent termination test on MacOs3b5d041
allow more time for timetoutUpdates
com.nimbusds:oauth2-oidc-sdk
from 11.18 to 11.19.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.1Updates
io.netty:netty-codec-http
from 4.1.112.Final to 4.1.113.FinalCommits
d0a109e
[maven-release-plugin] prepare release netty-4.1.113.Finale1d6384
Cleanup fields on AdaptiveByteBuf::deallocate (#14273)8a02f45
Upload hidden files for staging (#14275)c0fdb8e
adjust continuation frame header length (#14245)95d86bb
chore: clean code DefaultChannelPipeline add method (#14249)1c1da9f
Fix netty-all artifact snapshot deployments (#14264)235eb6f
Upgrade to netty-tcnative 2.0.66.Final (#14254)ceade95
Ensure flushes are not discarded by ChunkedWriteHandler for passed th… (#14248)dc30c33
Add new SslHandler.isEncrypted(...) variant that will not produce fal… (#14243)31d1592
Remove reference to parent in recycled buffers for leak detection (#14250)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.springframework.boot:spring-boot-starter-webflux
from 3.3.3 to 3.3.4Release notes
Sourced from org.springframework.boot:spring-boot-starter-webflux's releases.
... (truncated)
Commits
8e9dc7b
Release v3.3.44e860f1
Merge branch '3.2.x' into 3.3.xd137191
Next development version (v3.2.11-SNAPSHOT)97dd01e
Upgrade to SendGrid 4.10.31b3b3aa
Upgrade to Hibernate 6.5.3.Finalc2adc3b
Upgrade to Zipkin Reporter 3.4.20271b24
Merge branch '3.2.x' into 3.3.xae8315e
Use Liberica for Java 23 CI4956990
Merge branch '3.2.x' into 3.3.xf9379f4
Apply nohttp check per-project rather than at rootUpdates
org.springframework.boot:spring-boot-starter-oauth2-resource-server
from 3.3.3 to 3.3.4Release notes
Sourced from org.springframework.boot:spring-boot-starter-oauth2-resource-server's releases.
... (truncated)
Commits
8e9dc7b
Release v3.3.44e860f1
Merge branch '3.2.x' into 3.3.xd137191
Next development version (v3.2.11-SNAPSHOT)97dd01e
Upgrade to SendGrid 4.10.31b3b3aa
Upgrade to Hibernate 6.5.3.Finalc2adc3b
Upgrade to Zipkin Reporter 3.4.20271b24
Merge branch '3.2.x' into 3.3.xae8315e
Use Liberica for Java 23 CI4956990
Merge branch '3.2.x' into 3.3.xf9379f4
Apply nohttp check per-project rather than at rootUpdates
org.springframework.boot:spring-boot-starter-oauth2-client
from 3.3.3 to 3.3.4Release notes
Sourced from org.springframework.boot:spring-boot-starter-oauth2-client's releases.
... (truncated)
Commits
8e9dc7b
Release v3.3.44e860f1
Merge branch '3.2.x' into 3.3.xd137191
Next development version (v3.2.11-SNAPSHOT)97dd01e
Upgrade to SendGrid 4.10.31b3b3aa
Upgrade to Hibernate 6.5.3.Finalc2adc3b
Upgrade to Zipkin Reporter 3.4.20271b24
Merge branch '3.2.x' into 3.3.xae8315e
Use Liberica for Java 23 CI4956990
Merge branch '3.2.x' into 3.3.xf9379f4
Apply nohttp check per-project rather than at rootUpdates
org.springframework.boot:spring-boot-starter-test
from 3.3.3 to 3.3.4Release notes
Sourced from org.springframework.boot:spring-boot-starter-test's releases.
... (truncated)
Commits
8e9dc7b
Release v3.3.44e860f1
Merge branch '3.2.x' into 3.3.xd137191
Next development version (v3.2.11-SNAPSHOT)97dd01e
Upgrade to SendGrid 4.10.31b3b3aa
Upgrade to Hibernate 6.5.3.Finalc2adc3b
Upgrade to Zipkin Reporter 3.4.20271b24
Merge branch '3.2.x' into 3.3.xae8315e
Use Liberica for Java 23 CI4956990
Merge branch '3.2.x' into 3.3.xf9379f4
Apply nohttp check per-project rather than at rootUpdates
org.springframework.boot:spring-boot-test
from 3.3.3 to 3.3.4Release notes
Sourced from org.springframework.boot:spring-boot-test's releases.
... (truncated)
Commits
8e9dc7b
Release v3.3.44e860f1
Merge branch '3.2.x'... _Description has been truncated_