From ebebf1d45c02eab3955acd82b10097e31f46d860 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dariusz=20J=C4=99drzejczyk?= Date: Tue, 9 Apr 2024 17:22:15 +0200 Subject: [PATCH 01/12] [release] Back to snapshots, next is 1.3.0-SNAPSHOT --- gradle.properties | 2 +- gradle/libs.versions.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gradle.properties b/gradle.properties index e50ef68..fe820f8 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=1.3.0-M1 +version=1.3.0-SNAPSHOT diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 101a091..3883896 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,6 +1,6 @@ [versions] -reactorCore = "3.7.0-M1" -reactorAddons = "3.6.0-M1" +reactorCore = "3.7.0-SNAPSHOT" +reactorAddons = "3.6.0-SNAPSHOT" # Other shared versions kotlin = "1.7.0" From 46ec8363331e4eb5a80744608ff1c857c4fa0ef8 Mon Sep 17 00:00:00 2001 From: Violeta Georgieva Date: Mon, 15 Apr 2024 15:27:15 +0300 Subject: [PATCH 02/12] Replace gradle/wrapper-validation-action with gradle/actions/wrapper-validation (#80) The action gradle/wrapper-validation-action has been replaced by gradle/actions/wrapper-validation. See https://github.com/gradle/actions/blob/main/docs/deprecation-upgrade-guide.md#the-action-gradlewrapper-validation-action-has-been-replaced-by-gradleactionswrapper-validation --- .github/workflows/gradle-wrapper-validation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gradle-wrapper-validation.yml b/.github/workflows/gradle-wrapper-validation.yml index 83a39ee..160368e 100644 --- a/.github/workflows/gradle-wrapper-validation.yml +++ b/.github/workflows/gradle-wrapper-validation.yml @@ -8,4 +8,4 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - - uses: gradle/wrapper-validation-action@b231772637bb498f11fdbc86052b6e8a8dc9fc92 # renovate: tag=v1 + - uses: gradle/actions/wrapper-validation@6cec5d49d4d6d4bb982fbed7047db31ea6d38f11 From f3c76eebf9323023576b2870b7302c5c9cb0a41d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 11:22:00 +0300 Subject: [PATCH 03/12] Bump actions/checkout from 4.1.1 to 4.1.4 (#84) Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...0ad4b8fadaa221de15dcec353f45205ec38ea70b) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- .github/workflows/gradle-wrapper-validation.yml | 2 +- .github/workflows/publish.yml | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2729c32..e82f4f4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: name: checks runs-on: ubuntu-latest steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # renovate: tag=v2 with: distribution: 'temurin' diff --git a/.github/workflows/gradle-wrapper-validation.yml b/.github/workflows/gradle-wrapper-validation.yml index 160368e..0773c05 100644 --- a/.github/workflows/gradle-wrapper-validation.yml +++ b/.github/workflows/gradle-wrapper-validation.yml @@ -7,5 +7,5 @@ jobs: name: "validation" runs-on: ubuntu-latest steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b - uses: gradle/actions/wrapper-validation@6cec5d49d4d6d4bb982fbed7047db31ea6d38f11 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index bf1a136..d97993f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,7 +18,7 @@ jobs: versionType: ${{ steps.version.outputs.versionType }} fullVersion: ${{ steps.version.outputs.fullVersion }} steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b - name: setup java uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # tag=v3 with: @@ -42,7 +42,7 @@ jobs: if: needs.prepare.outputs.versionType == 'SNAPSHOT' environment: snapshots steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # tag=v3 with: distribution: 'temurin' @@ -62,7 +62,7 @@ jobs: if: needs.prepare.outputs.versionType == 'MILESTONE' environment: releases steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # tag=v3 with: distribution: 'temurin' @@ -84,7 +84,7 @@ jobs: if: needs.prepare.outputs.versionType == 'RELEASE' environment: releases steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # tag=v3 with: distribution: 'temurin' @@ -107,7 +107,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b - name: tag run: | git config --local user.name 'reactorbot' @@ -122,7 +122,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b - name: tag run: | git config --local user.name 'reactorbot' From ab451db4420fff4f0c87b74eb7730f8ba047eccf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 11:29:19 +0300 Subject: [PATCH 04/12] Bump gradle/actions from 3.3.0 to 3.3.2 (#85) Bumps [gradle/actions](https://github.com/gradle/actions) from 3.3.0 to 3.3.2. - [Release notes](https://github.com/gradle/actions/releases) - [Commits](https://github.com/gradle/actions/compare/6cec5d49d4d6d4bb982fbed7047db31ea6d38f11...db19848a5fa7950289d3668fb053140cf3028d43) --- updated-dependencies: - dependency-name: gradle/actions dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/gradle-wrapper-validation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gradle-wrapper-validation.yml b/.github/workflows/gradle-wrapper-validation.yml index 0773c05..0e80512 100644 --- a/.github/workflows/gradle-wrapper-validation.yml +++ b/.github/workflows/gradle-wrapper-validation.yml @@ -8,4 +8,4 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b - - uses: gradle/actions/wrapper-validation@6cec5d49d4d6d4bb982fbed7047db31ea6d38f11 + - uses: gradle/actions/wrapper-validation@db19848a5fa7950289d3668fb053140cf3028d43 From 010007e043bd3413ba55fc6cd748ab1b3a7444d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 12:03:56 +0300 Subject: [PATCH 05/12] Bump gradle/gradle-build-action from 3.2.0 to 3.3.2 (#86) Bumps [gradle/gradle-build-action](https://github.com/gradle/gradle-build-action) from 3.2.0 to 3.3.2. - [Release notes](https://github.com/gradle/gradle-build-action/releases) - [Commits](https://github.com/gradle/gradle-build-action/compare/fe59895742b4f984530980e4f693943577526b61...4c39dd82cd5e1ec7c6fa0173bb41b4b6bb3b86ff) --- updated-dependencies: - dependency-name: gradle/gradle-build-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e82f4f4..0b67899 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: with: distribution: 'temurin' java-version: 8 - - uses: gradle/gradle-build-action@fe59895742b4f984530980e4f693943577526b61 # renovate: tag=v2 + - uses: gradle/gradle-build-action@4c39dd82cd5e1ec7c6fa0173bb41b4b6bb3b86ff # renovate: tag=v2 name: gradle with: arguments: check dokkaHtml dokkaJavadoc \ No newline at end of file From 6905a37e5da1b53f2ee36b5c0e67f00c5fa03989 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dariusz=20J=C4=99drzejczyk?= Date: Mon, 6 May 2024 13:37:59 +0200 Subject: [PATCH 06/12] Improve javadoc of deprecated repeat and retry extensions (#58) This change adds information about the required runtime dependency of reactor-extras for the deprecated extension methods for repeat and retry operations. --- .../kotlin/extra/retry/RepeatExtensions.kt | 32 ++++++++++++++----- .../kotlin/extra/retry/RetryExtensions.kt | 24 +++++++++----- 2 files changed, 40 insertions(+), 16 deletions(-) diff --git a/src/main/kotlin/reactor/kotlin/extra/retry/RepeatExtensions.kt b/src/main/kotlin/reactor/kotlin/extra/retry/RepeatExtensions.kt index cf21103..8c302f0 100644 --- a/src/main/kotlin/reactor/kotlin/extra/retry/RepeatExtensions.kt +++ b/src/main/kotlin/reactor/kotlin/extra/retry/RepeatExtensions.kt @@ -37,9 +37,13 @@ import java.util.function.Consumer * * @author Simon Baslé * @since 3.1.1 - * @deprecated Reactor-Extra repeat features are being phased out. To be removed at the earliest in 1.3.0. + * @deprecated Reactor-Extra repeat features are being phased out. If you still + * need to call this method, io.projectreactor:reactor-extras runtime dependency is needed. + * To be removed at the earliest in 1.3.0. */ -@Deprecated(message = "Reactor-Extra repeat features are being phased out.") +@Deprecated(message = "Reactor-Extra repeat features are being phased out. " + + "If you still need to call this method, io.projectreactor:reactor-extras " + + "runtime dependency is needed.") fun Flux.repeatExponentialBackoff(times: Long, first: Duration, max: Duration? = null, jitter: Boolean = false, doOnRepeat: ((RepeatContext) -> Unit)? = null): Flux { @@ -65,9 +69,13 @@ fun Flux.repeatExponentialBackoff(times: Long, first: Duration, max: Dura * * @author Simon Baslé * @since 3.1.1 - * @deprecated Reactor-Extra repeat features are being phased out. To be removed at the earliest in 1.3.0. + * @deprecated Reactor-Extra repeat features are being phased out. If you still + * need to call this method, io.projectreactor:reactor-extras runtime dependency is needed. + * To be removed at the earliest in 1.3.0. */ -@Deprecated(message = "Reactor-Extra repeat features are being phased out.") +@Deprecated(message = "Reactor-Extra repeat features are being phased out. " + + "If you still need to call this method, io.projectreactor:reactor-extras " + + "runtime dependency is needed.") fun Flux.repeatRandomBackoff(times: Long, first: Duration, max: Duration? = null, doOnRepeat: ((RepeatContext) -> Unit)? = null): Flux { val repeat = Repeat.times(times) @@ -93,9 +101,13 @@ fun Flux.repeatRandomBackoff(times: Long, first: Duration, max: Duration? * * @author Simon Baslé * @since 3.1.1 - * @deprecated Reactor-Extra repeat features are being phased out. To be removed at the earliest in 1.3.0. + * @deprecated Reactor-Extra repeat features are being phased out. If you still + * need to call this method, io.projectreactor:reactor-extras runtime dependency is needed. + * To be removed at the earliest in 1.3.0. */ -@Deprecated(message = "Reactor-Extra repeat features are being phased out.") +@Deprecated(message = "Reactor-Extra repeat features are being phased out. " + + "If you still need to call this method, io.projectreactor:reactor-extras " + + "runtime dependency is needed.") fun Mono.repeatExponentialBackoff(times: Long, first: Duration, max: Duration? = null, jitter: Boolean = false, doOnRepeat: ((RepeatContext) -> Unit)? = null): Flux { @@ -121,9 +133,13 @@ fun Mono.repeatExponentialBackoff(times: Long, first: Duration, max: Dura * * @author Simon Baslé * @since 3.1.1 - * @deprecated Reactor-Extra repeat features are being phased out. To be removed at the earliest in 1.3.0. + * @deprecated Reactor-Extra repeat features are being phased out. If you still + * need to call this method, io.projectreactor:reactor-extras runtime dependency is needed. + * To be removed at the earliest in 1.3.0. */ -@Deprecated(message = "Reactor-Extra repeat features are being phased out.") +@Deprecated(message = "Reactor-Extra repeat features are being phased out. " + + "If you still need to call this method, io.projectreactor:reactor-extras " + + "runtime dependency is needed.") fun Mono.repeatRandomBackoff(times: Long, first: Duration, max: Duration? = null, doOnRepeat: ((RepeatContext) -> Unit)? = null): Flux { val repeat = Repeat.times(times) diff --git a/src/main/kotlin/reactor/kotlin/extra/retry/RetryExtensions.kt b/src/main/kotlin/reactor/kotlin/extra/retry/RetryExtensions.kt index 23081c4..af7430f 100644 --- a/src/main/kotlin/reactor/kotlin/extra/retry/RetryExtensions.kt +++ b/src/main/kotlin/reactor/kotlin/extra/retry/RetryExtensions.kt @@ -38,9 +38,11 @@ import java.util.function.Consumer * @author Simon Baslé * @since 3.1.1 * @deprecated Reactor-Extra retry features have been replaced by a core alternative and will be removed. - * To be removed at the earliest in 1.3.0. + * If you still need to call this method, io.projectreactor:reactor-extras runtime dependency is needed. + * To be removed at the earliest in 1.3.0. */ -@Deprecated(message = "Reactor-Extra retry features have been replaced by a core alternative and will be removed.") +@Deprecated(message = "Reactor-Extra retry features have been replaced by a core alternative and will be removed. " + + "If you still need to call this method, io.projectreactor:reactor-extras runtime dependency is needed.") fun Flux.retryExponentialBackoff(times: Long, first: Duration, max: Duration? = null, jitter: Boolean = false, doOnRetry: ((RetryContext) -> Unit)? = null): Flux { @@ -68,9 +70,11 @@ fun Flux.retryExponentialBackoff(times: Long, first: Duration, max: Durat * @author Simon Baslé * @since 3.1.1 * @deprecated Reactor-Extra retry features have been replaced by a core alternative and will be removed. - * To be removed at the earliest in 1.3.0. + * If you still need to call this method, io.projectreactor:reactor-extras runtime dependency is needed. + * To be removed at the earliest in 1.3.0. */ -@Deprecated(message = "Reactor-Extra retry features have been replaced by a core alternative and will be removed.") +@Deprecated(message = "Reactor-Extra retry features have been replaced by a core alternative and will be removed. " + + "If you still need to call this method, io.projectreactor:reactor-extras runtime dependency is needed.") fun Flux.retryRandomBackoff(times: Long, first: Duration, max: Duration? = null, doOnRetry: ((RetryContext) -> Unit)? = null): Flux { val retry = Retry.any() @@ -97,9 +101,11 @@ fun Flux.retryRandomBackoff(times: Long, first: Duration, max: Duration? * @author Simon Baslé * @since 3.1.1 * @deprecated Reactor-Extra retry features have been replaced by a core alternative and will be removed. - * To be removed at the earliest in 1.3.0. + * If you still need to call this method, io.projectreactor:reactor-extras runtime dependency is needed. + * To be removed at the earliest in 1.3.0. */ -@Deprecated(message = "Reactor-Extra retry features have been replaced by a core alternative and will be removed.") +@Deprecated(message = "Reactor-Extra retry features have been replaced by a core alternative and will be removed. " + + "If you still need to call this method, io.projectreactor:reactor-extras runtime dependency is needed.") fun Mono.retryExponentialBackoff(times: Long, first: Duration, max: Duration? = null, jitter: Boolean = false, doOnRetry: ((RetryContext) -> Unit)? = null): Mono { @@ -127,9 +133,11 @@ fun Mono.retryExponentialBackoff(times: Long, first: Duration, max: Durat * @author Simon Baslé * @since 3.1.1 * @deprecated Reactor-Extra retry features have been replaced by a core alternative and will be removed. - * To be removed at the earliest in 1.3.0. + * If you still need to call this method, io.projectreactor:reactor-extras runtime dependency is needed. + * To be removed at the earliest in 1.3.0. */ -@Deprecated(message = "Reactor-Extra retry features have been replaced by a core alternative and will be removed.") +@Deprecated(message = "Reactor-Extra retry features have been replaced by a core alternative and will be removed. " + + "If you still need to call this method, io.projectreactor:reactor-extras runtime dependency is needed.") fun Mono.retryRandomBackoff(times: Long, first: Duration, max: Duration? = null, doOnRetry: ((RetryContext) -> Unit)? = null): Mono { val retry = Retry.any() From 43b33047271b32c7cf01f117d1d9b7b856885a03 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 May 2024 13:14:19 +0300 Subject: [PATCH 07/12] Bump actions/checkout from 4.1.4 to 4.1.5 (#87) Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.4 to 4.1.5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/0ad4b8fadaa221de15dcec353f45205ec38ea70b...44c2b7a8a4ea60a981eaca3cf939b5f4305c123b) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- .github/workflows/gradle-wrapper-validation.yml | 2 +- .github/workflows/publish.yml | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b67899..137c68b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: name: checks runs-on: ubuntu-latest steps: - - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b + - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # renovate: tag=v2 with: distribution: 'temurin' diff --git a/.github/workflows/gradle-wrapper-validation.yml b/.github/workflows/gradle-wrapper-validation.yml index 0e80512..1adc736 100644 --- a/.github/workflows/gradle-wrapper-validation.yml +++ b/.github/workflows/gradle-wrapper-validation.yml @@ -7,5 +7,5 @@ jobs: name: "validation" runs-on: ubuntu-latest steps: - - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b + - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b - uses: gradle/actions/wrapper-validation@db19848a5fa7950289d3668fb053140cf3028d43 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d97993f..281ecc4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,7 +18,7 @@ jobs: versionType: ${{ steps.version.outputs.versionType }} fullVersion: ${{ steps.version.outputs.fullVersion }} steps: - - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b + - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b - name: setup java uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # tag=v3 with: @@ -42,7 +42,7 @@ jobs: if: needs.prepare.outputs.versionType == 'SNAPSHOT' environment: snapshots steps: - - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b + - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # tag=v3 with: distribution: 'temurin' @@ -62,7 +62,7 @@ jobs: if: needs.prepare.outputs.versionType == 'MILESTONE' environment: releases steps: - - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b + - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # tag=v3 with: distribution: 'temurin' @@ -84,7 +84,7 @@ jobs: if: needs.prepare.outputs.versionType == 'RELEASE' environment: releases steps: - - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b + - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # tag=v3 with: distribution: 'temurin' @@ -107,7 +107,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b + - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b - name: tag run: | git config --local user.name 'reactorbot' @@ -122,7 +122,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b + - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b - name: tag run: | git config --local user.name 'reactorbot' From 75435092c70499b97a09ec70b4247cbbfd84d87e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Jun 2024 12:24:59 +0300 Subject: [PATCH 08/12] Bump actions/checkout from 4.1.5 to 4.1.6 (#89) Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.5 to 4.1.6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/44c2b7a8a4ea60a981eaca3cf939b5f4305c123b...a5ac7e51b41094c92402da3b24376905380afc29) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- .github/workflows/gradle-wrapper-validation.yml | 2 +- .github/workflows/publish.yml | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 137c68b..64e5860 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: name: checks runs-on: ubuntu-latest steps: - - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # renovate: tag=v2 with: distribution: 'temurin' diff --git a/.github/workflows/gradle-wrapper-validation.yml b/.github/workflows/gradle-wrapper-validation.yml index 1adc736..8d8e913 100644 --- a/.github/workflows/gradle-wrapper-validation.yml +++ b/.github/workflows/gradle-wrapper-validation.yml @@ -7,5 +7,5 @@ jobs: name: "validation" runs-on: ubuntu-latest steps: - - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - uses: gradle/actions/wrapper-validation@db19848a5fa7950289d3668fb053140cf3028d43 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 281ecc4..d1bdb23 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,7 +18,7 @@ jobs: versionType: ${{ steps.version.outputs.versionType }} fullVersion: ${{ steps.version.outputs.fullVersion }} steps: - - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: setup java uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # tag=v3 with: @@ -42,7 +42,7 @@ jobs: if: needs.prepare.outputs.versionType == 'SNAPSHOT' environment: snapshots steps: - - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # tag=v3 with: distribution: 'temurin' @@ -62,7 +62,7 @@ jobs: if: needs.prepare.outputs.versionType == 'MILESTONE' environment: releases steps: - - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # tag=v3 with: distribution: 'temurin' @@ -84,7 +84,7 @@ jobs: if: needs.prepare.outputs.versionType == 'RELEASE' environment: releases steps: - - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # tag=v3 with: distribution: 'temurin' @@ -107,7 +107,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: tag run: | git config --local user.name 'reactorbot' @@ -122,7 +122,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 - name: tag run: | git config --local user.name 'reactorbot' From f7d847b5274b6725c1bfeaab012b865cf11f4c88 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Jun 2024 12:28:12 +0300 Subject: [PATCH 09/12] Bump org.assertj:assertj-core from 3.25.3 to 3.26.0 (#91) Bumps [org.assertj:assertj-core](https://github.com/assertj/assertj) from 3.25.3 to 3.26.0. - [Release notes](https://github.com/assertj/assertj/releases) - [Commits](https://github.com/assertj/assertj/compare/assertj-build-3.25.3...assertj-build-3.26.0) --- updated-dependencies: - dependency-name: org.assertj:assertj-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index bde72a6..bdf9a84 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -10,7 +10,7 @@ reactor-core = { module = "io.projectreactor:reactor-core", version.ref = "react reactor-test = { module = "io.projectreactor:reactor-test", version.ref = "reactorCore" } reactor-adapter = { module = "io.projectreactor.addons:reactor-adapter", version.ref = "reactorAddons" } reactor-extra = { module = "io.projectreactor.addons:reactor-extra", version.ref = "reactorAddons" } -assertj = "org.assertj:assertj-core:3.25.3" +assertj = "org.assertj:assertj-core:3.26.0" jsr305 = "com.google.code.findbugs:jsr305:3.0.1" junit4 = "junit:junit:4.13.2" kotlin-stdlib = { module = "org.jetbrains.kotlin:kotlin-stdlib", version.ref = "kotlin" } From 1da6c90af0d4dc8611e6f11cd602b9a5e4be3ba8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 28 Jun 2024 10:55:08 +0300 Subject: [PATCH 10/12] Bump actions/checkout from 4.1.6 to 4.1.7 (#92) Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.6 to 4.1.7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/a5ac7e51b41094c92402da3b24376905380afc29...692973e3d937129bcbf40652eb9f2f61becf3332) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- .github/workflows/gradle-wrapper-validation.yml | 2 +- .github/workflows/publish.yml | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 64e5860..de436a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: name: checks runs-on: ubuntu-latest steps: - - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # renovate: tag=v2 with: distribution: 'temurin' diff --git a/.github/workflows/gradle-wrapper-validation.yml b/.github/workflows/gradle-wrapper-validation.yml index 8d8e913..3d9944a 100644 --- a/.github/workflows/gradle-wrapper-validation.yml +++ b/.github/workflows/gradle-wrapper-validation.yml @@ -7,5 +7,5 @@ jobs: name: "validation" runs-on: ubuntu-latest steps: - - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - uses: gradle/actions/wrapper-validation@db19848a5fa7950289d3668fb053140cf3028d43 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d1bdb23..d3aa9a5 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,7 +18,7 @@ jobs: versionType: ${{ steps.version.outputs.versionType }} fullVersion: ${{ steps.version.outputs.fullVersion }} steps: - - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - name: setup java uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # tag=v3 with: @@ -42,7 +42,7 @@ jobs: if: needs.prepare.outputs.versionType == 'SNAPSHOT' environment: snapshots steps: - - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # tag=v3 with: distribution: 'temurin' @@ -62,7 +62,7 @@ jobs: if: needs.prepare.outputs.versionType == 'MILESTONE' environment: releases steps: - - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # tag=v3 with: distribution: 'temurin' @@ -84,7 +84,7 @@ jobs: if: needs.prepare.outputs.versionType == 'RELEASE' environment: releases steps: - - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # tag=v3 with: distribution: 'temurin' @@ -107,7 +107,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - name: tag run: | git config --local user.name 'reactorbot' @@ -122,7 +122,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - name: tag run: | git config --local user.name 'reactorbot' From 83d8b037fb7f1dcbac74c41043b95612f3432300 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 28 Jun 2024 11:01:11 +0300 Subject: [PATCH 11/12] Bump gradle/actions from 3.3.2 to 3.4.2 (#98) Bumps [gradle/actions](https://github.com/gradle/actions) from 3.3.2 to 3.4.2. - [Release notes](https://github.com/gradle/actions/releases) - [Commits](https://github.com/gradle/actions/compare/db19848a5fa7950289d3668fb053140cf3028d43...dbbdc275be76ac10734476cc723d82dfe7ec6eda) --- updated-dependencies: - dependency-name: gradle/actions dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/gradle-wrapper-validation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gradle-wrapper-validation.yml b/.github/workflows/gradle-wrapper-validation.yml index 3d9944a..b7edd9f 100644 --- a/.github/workflows/gradle-wrapper-validation.yml +++ b/.github/workflows/gradle-wrapper-validation.yml @@ -8,4 +8,4 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - - uses: gradle/actions/wrapper-validation@db19848a5fa7950289d3668fb053140cf3028d43 + - uses: gradle/actions/wrapper-validation@dbbdc275be76ac10734476cc723d82dfe7ec6eda From b96478a6c8b6cfb56b669b8cdca0f8addb868551 Mon Sep 17 00:00:00 2001 From: Violeta Georgieva Date: Fri, 28 Jun 2024 11:06:52 +0300 Subject: [PATCH 12/12] gradle/actions/setup-gradle supersedes gradle/gradle-build-action --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de436a6..e96455a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,11 +8,11 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 - - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # renovate: tag=v2 + - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 with: distribution: 'temurin' java-version: 8 - - uses: gradle/gradle-build-action@4c39dd82cd5e1ec7c6fa0173bb41b4b6bb3b86ff # renovate: tag=v2 + - uses: gradle/actions/setup-gradle@dbbdc275be76ac10734476cc723d82dfe7ec6eda name: gradle with: - arguments: check dokkaHtml dokkaJavadoc \ No newline at end of file + arguments: check dokkaHtml dokkaJavadoc