Skip to content

Commit

Permalink
build(deps): bump software.amazon.awssdk.crt:aws-crt from 0.26.0 to 0…
Browse files Browse the repository at this point in the history
….27.3 (#943)

* build(deps): bump software.amazon.awssdk.crt:aws-crt

Bumps [software.amazon.awssdk.crt:aws-crt](https://github.com/awslabs/aws-crt-java) from 0.26.0 to 0.27.3.
- [Release notes](https://github.com/awslabs/aws-crt-java/releases)
- [Commits](awslabs/aws-crt-java@v0.26.0...v0.27.3)

---
updated-dependencies:
- dependency-name: software.amazon.awssdk.crt:aws-crt
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix: decalre new jni methods

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Sébastien Crocquesel <[email protected]>
  • Loading branch information
dependabot[bot] and scrocquesel authored Oct 3, 2023
1 parent 33b0746 commit af7c9ce
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,12 @@ public void registerAwsCrtJniRuntimeAccessBuildItem(
jniRuntimeAccessMethod.produce(new JniRuntimeAccessMethodBuildItem(
"software.amazon.awssdk.crt.mqtt.MqttClientConnection", "onWebsocketHandshake",
"software.amazon.awssdk.crt.http.HttpRequest", "long"));
jniRuntimeAccessMethod.produce(new JniRuntimeAccessMethodBuildItem(
"software.amazon.awssdk.crt.mqtt.MqttClientConnection", "onConnectionSuccess",
"boolean"));
jniRuntimeAccessMethod.produce(new JniRuntimeAccessMethodBuildItem(
"software.amazon.awssdk.crt.mqtt.MqttClientConnection", "onConnectionFailure",
"int"));
jniRuntimeAccessMethod.produce(new JniRuntimeAccessMethodBuildItem(
"software.amazon.awssdk.crt.mqtt.MqttClientConnection$MessageHandler", "deliver",
"java.lang.String", "byte[]", "boolean", "int", "boolean"));
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<quarkus.version>3.3.0</quarkus.version>
<awssdk.version>2.20.143</awssdk.version>
<awscrt.version>0.26.0</awscrt.version>
<awscrt.version>0.27.3</awscrt.version>
</properties>
<build>
<pluginManagement>
Expand Down

0 comments on commit af7c9ce

Please sign in to comment.