File tree Expand file tree Collapse file tree 6 files changed +15
-15
lines changed
src/main/java/io/reactiverse/awssdk/reactivestreams Expand file tree Collapse file tree 6 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 2424
2525 - name : Get Project version
2626 id : get_version
27- run : echo ::set-output name= VERSION:: $(gradle properties --no-daemon --console=plain -q | grep "^version:" | awk '{printf $2}')
27+ run : echo VERSION= $(gradle properties --no-daemon --console=plain -q | grep "^version:" | awk '{printf $2}') >> "$GITHUB_OUTPUT"
2828
2929 - name : Decode
3030 run : |
@@ -38,12 +38,11 @@ jobs:
3838 arguments : assemble publish -Psigning.keyId=${{secrets.SIGNING_KEY_ID}} -Psigning.password=${{secrets.SIGNING_PASSWORD}} -Psigning.secretKeyRingFile=/tmp/secring.gpg -PossrhUsername=${{secrets.SONATYPE_NEXUS_USERNAME}} -PossrhPassword=${{secrets.SONATYPE_NEXUS_PASSWORD}} --stacktrace
3939
4040 - name : Create Release in Github
41- uses : actions/create-release@latest
42- env :
43- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
41+ uses : softprops/action-gh-release@v1
4442 with :
4543 tag_name : ${{ steps.get_version.outputs.VERSION }}
46- release_name : ${{ steps.get_version.outputs.VERSION }}
44+ name : ${{ steps.get_version.outputs.VERSION }}
45+ generate_release_notes : true
4746 body : |
4847 Available in Sonatype repository under:
4948 [`io.reactiverse:aws-sdk:${{ steps.get_version.outputs.VERSION }}`](https://central.sonatype.com/artifact/io.reactiverse/aws-sdk/${{ steps.get_version.outputs.VERSION }})
Original file line number Diff line number Diff line change 2323
2424 - name : Get Project version
2525 id : get_version
26- run : echo ::set-output name= VERSION:: $(gradle properties --no-daemon --console=plain -q | grep "^version:" | awk '{printf $2}')
26+ run : echo VERSION= $(gradle properties --no-daemon --console=plain -q | grep "^version:" | awk '{printf $2}') >> "$GITHUB_OUTPUT"
2727
2828 - name : Decode
2929 run : |
@@ -37,12 +37,11 @@ jobs:
3737 arguments : assemble publish -Psigning.keyId=${{secrets.SIGNING_KEY_ID}} -Psigning.password=${{secrets.SIGNING_PASSWORD}} -Psigning.secretKeyRingFile=/tmp/secring.gpg -PossrhUsername=${{secrets.SONATYPE_NEXUS_USERNAME}} -PossrhPassword=${{secrets.SONATYPE_NEXUS_PASSWORD}} --stacktrace
3838
3939 - name : Create Release in Github
40- uses : actions/create-release@latest
41- env :
42- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
40+ uses : softprops/action-gh-release@v1
4341 with :
4442 tag_name : ${{ steps.get_version.outputs.VERSION }}
45- release_name : ${{ steps.get_version.outputs.VERSION }}
43+ name : ${{ steps.get_version.outputs.VERSION }}
44+ generate_release_notes : true
4645 body : |
4746 Available in Sonatype SNAPSHOTs repository under:
4847 `io.reactiverse:aws-sdk:${{ steps.get_version.outputs.VERSION }}`
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ Artifacts are published [here](https://search.maven.org/artifact/io.reactiverse/
1212
1313| Project | Vert.x | AWS sdk |
1414| ---------| --------| ----------|
15+ | 1.2.2 | 4.4.5 | 2.20.138 |
1516| 1.2.1 | 4.4.2 | 2.20.74 |
1617| 1.2.0 | 4.4.0 | 2.20.2 |
1718| 1.1.0 | 4.2.4 | 2.17.129 |
Original file line number Diff line number Diff line change 1- val vertxVersion = " 4.4.2 "
2- val awsSdkVersion = " 2.20.74 "
1+ val vertxVersion = " 4.4.5 "
2+ val awsSdkVersion = " 2.20.138 "
33val junit5Version = " 5.8.2"
44val logbackVersion = " 1.2.10"
55val localstackVersion = " 0.2.22"
66val integrationOption = " tests.integration"
77
88group = " io.reactiverse"
9- version = " 1.2.1 "
9+ version = " 1.2.2-SNAPSHOT "
1010
1111plugins {
1212 `java- library`
@@ -37,7 +37,7 @@ repositories {
3737}
3838
3939fun isNonStable (version : String ): Boolean {
40- val stableKeyword = listOf (" RELEASE" , " FINAL" , " GA" ).any { version.toUpperCase ().contains(it) }
40+ val stableKeyword = listOf (" RELEASE" , " FINAL" , " GA" ).any { version.uppercase ().contains(it) }
4141 val regex = " ^[0-9,.v-]+(-r)?$" .toRegex()
4242 val isStable = stableKeyword || regex.matches(version)
4343 return isStable.not ()
Original file line number Diff line number Diff line change 1+ org.gradle.jvmargs =-Xmx4096m
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ public void onSubscribe(Subscription subscription) {
3636
3737 @ Override
3838 public void onNext (ByteBuffer byteBuffer ) {
39- if (byteBuffer .array (). length != 0 ) {
39+ if (byteBuffer .hasRemaining () ) {
4040 Buffer buffer = Buffer .buffer (Unpooled .wrappedBuffer (byteBuffer ));
4141 stream .write (buffer );
4242 }
You can’t perform that action at this time.
0 commit comments