Artem Bilan
bd2cf773e2
GH-9294: Set permissions to target file on rename
...
* GH-9294: Set permissions to target file on rename
Fixes : #9294
When the `deleteSourceFiles` property of `FileWritingMessageHandler` is `true`, the `chmod` is not set on the target file.
* Fix `FileWritingMessageHandler.handleFileMessage()` logic to `setPermissions(resultFile)` after `move` operation
* * Set only `OWNER_READ` permission for file in unit test
(cherry picked from commit 3e71ea5521 )
2024-07-08 14:03:28 +00:00
dependabot[bot]
89425f031b
Bump org.apache.groovy:groovy-bom from 4.0.21 to 4.0.22 ( #9306 )
...
Bumps [org.apache.groovy:groovy-bom](https://github.com/apache/groovy ) from 4.0.21 to 4.0.22.
- [Commits](https://github.com/apache/groovy/commits )
---
updated-dependencies:
- dependency-name: org.apache.groovy:groovy-bom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-07 00:42:51 +00:00
dependabot[bot]
9e39a30eed
Bump org.jruby:jruby-complete from 9.4.7.0 to 9.4.8.0 ( #9304 )
...
Bumps org.jruby:jruby-complete from 9.4.7.0 to 9.4.8.0.
---
updated-dependencies:
- dependency-name: org.jruby:jruby-complete
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-07 00:42:38 +00:00
Artem Bilan
02df28178c
GH-9297: Improve ImapIdleChannelAdapter.callIdle() for cause
...
Fixes : #9297
For a normal `jakarta.mail.StoreClosedException: * BYE Jakarta Mail Exception: java.net.SocketException: Connection reset`
the `ImapIdleChannelAdapter.callIdle()` results in a resubmission (and reconnection)
with logging 'Failed to execute IDLE task. Will attempt to resubmit in 10000 milliseconds.'`
However, when `selectorExpression` is in used and that one is based on mail `Message` object,
we may fail with `FolderClosedException` which is wrapped to the `SpelEvaluationException` and some
other stack traces.
So, `jakarta.mail.MessagingException` might be deep in the cause chain.
* Fix `ImapIdleChannelAdapter` via introducing `getJakartaMailMessagingExceptionFromCause()` utility
method which searches for the `jakarta.mail.MessagingException` in cause chain.
* Rework `ImapIdleChannelAdapter.callIdle()` logic to rely on this new method
(cherry picked from commit 272fcd044d )
2024-07-02 19:39:53 +00:00
darrylsmithUGA
587bad90be
GH-9272: Close ClientSession from SftpSession
...
Fixes : #9272
* close ClientSession when closing SftpSession
* fix whitespace issues
* stop the SshClient on bean destruction
* use convenient assertions
(cherry picked from commit a3fb68a831 )
2024-07-01 17:02:55 +00:00
dependabot[bot]
46c8589a49
Bump org.junit:junit-bom from 5.10.2 to 5.10.3 ( #9290 )
...
Bumps [org.junit:junit-bom](https://github.com/junit-team/junit5 ) from 5.10.2 to 5.10.3.
- [Release notes](https://github.com/junit-team/junit5/releases )
- [Commits](https://github.com/junit-team/junit5/compare/r5.10.2...r5.10.3 )
---
updated-dependencies:
- dependency-name: org.junit:junit-bom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-30 03:06:04 +00:00
Artem Bilan
85e532b5a6
GH-9259: Fix Reactor context propagation on reactive reply ( #9284 )
...
Fixes : #9259
The `Mono.toFuture()` does not propagate context to thread locals of the `CompletableFuture` consumer.
See `MonoToCompletableFuture`
* Fix `AbstractMessageProducingHandler` to convert reply `Mono` to `CompletableFuture` manually.
Use `doOnEach()` and set thread locals from the Reactor context manually around `replyFuture.complete()/completeExceptionally()`
* Add respective unit test into `WebFluxObservationPropagationTests` to ensure that same trace is used in downstream endpoints after WebFlux client reply
(cherry picked from commit 4a77dbcc46 )
2024-06-28 18:02:03 +00:00
Artem Bilan
dcaf93b7d9
GH-9276: Mitigate ConcurrentModificationException in the Mqttv5PahoMessageDrivenChannelAdapter
...
Fixes : #9276
The current Eclipse Paho client has wrong removal from map logic which leads to the
`ConcurrentModificationException` when we unsubscribe from topic.
* Catch a `ConcurrentModificationException` `this.mqttClient.unsubscribe()` and just log it as an `error`
(cherry picked from commit 12fc353db1 )
2024-06-26 18:24:19 +00:00
Artem Bilan
04fac20f90
GH-9260: Fix IntegrationManagementConfiguration.obtainObservationPatterns() logic
...
Fixes : #9260
The current `IntegrationManagementConfiguration.obtainObservationPatterns()` is to always have an `*` as a first
pattern in the final result.
Because of `HashSet` natural order.
This would lead to ignore all the patterns, especially those with negation
* Fix `IntegrationManagementConfiguration.obtainObservationPatterns()` logic to ignore regular
patterns if `*` is present.
Optimization wise.
* Always put `*` into the end of final array let negative patterns to do their job
* Modify `IntegrationGraphServerTests` & `WebFluxObservationPropagationTests`
test configurations to ensure that `*` pattern does not have a precedence over negative patterns.
(cherry picked from commit 4108ea520e )
2024-06-25 20:26:05 +00:00
Artem Bilan
768e26f704
Revise subscribed state in the FluxMessageChannel
...
The `Sinks.Many<Boolean> subscribedSignal` is a bit of overhead in the logic.
* Use `Mono.fromCallable(this.sink::currentSubscriberCount)` instead for `delaySubscription()`
when we perform `subscribeTo(Publisher)`
(cherry picked from commit bdcb856a90 )
2024-06-25 18:47:38 +00:00
Artem Bilan
841a9f570c
GH-9268: Fix regression in SMB Inbound for sub-dirs
...
Fixes : #9268
The new `SmbSession.list()` behavior prevents to pull files from sub-folders in inbound channel adapter
* Fix `SmbSession.list()` similar way to `SftpSession`: if `remoteFile.isFile()` then remove it as is.
Otherwise, perform `smbDir.listFiles()` on that sub-dir
* Modify `SmbTests.testSmbInboundFlow()` to poll files from the `smbSource/subSmbSource/`
(cherry picked from commit f2399a4e13 )
2024-06-24 18:52:37 +00:00
dependabot[bot]
23745aa3b1
Bump org.springframework:spring-framework-bom from 6.1.9 to 6.1.10 ( #9265 )
...
Bumps [org.springframework:spring-framework-bom](https://github.com/spring-projects/spring-framework ) from 6.1.9 to 6.1.10.
- [Release notes](https://github.com/spring-projects/spring-framework/releases )
- [Commits](https://github.com/spring-projects/spring-framework/compare/v6.1.9...v6.1.10 )
---
updated-dependencies:
- dependency-name: org.springframework:spring-framework-bom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-24 18:15:43 +00:00
dependabot[bot]
0b29ed8425
Bump the development-dependencies group with 2 updates ( #9264 )
...
Bumps the development-dependencies group with 2 updates: org.apache.tomcat.embed:tomcat-embed-websocket and com.github.spotbugs.
Updates `org.apache.tomcat.embed:tomcat-embed-websocket` from 10.1.24 to 10.1.25
Updates `com.github.spotbugs` from 6.0.17 to 6.0.18
---
updated-dependencies:
- dependency-name: org.apache.tomcat.embed:tomcat-embed-websocket
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: development-dependencies
- dependency-name: com.github.spotbugs
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: development-dependencies
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-23 00:37:04 +00:00
Spring Builds
599cc565aa
[artifactory-release] Next development version
2024-06-18 18:21:07 +00:00
Spring Builds
e7f73cde9c
[artifactory-release] Release version 6.3.1
2024-06-18 18:21:03 +00:00
dependabot[bot]
a2bc22eb58
Bump org.springframework.security:spring-security-bom ( #9251 )
...
Bumps the development-dependencies group with 1 update: [org.springframework.security:spring-security-bom](https://github.com/spring-projects/spring-security ).
Updates `org.springframework.security:spring-security-bom` from 6.3.0 to 6.3.1
- [Release notes](https://github.com/spring-projects/spring-security/releases )
- [Changelog](https://github.com/spring-projects/spring-security/blob/main/RELEASE.adoc )
- [Commits](https://github.com/spring-projects/spring-security/compare/6.3.0...6.3.1 )
---
updated-dependencies:
- dependency-name: org.springframework.security:spring-security-bom
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: development-dependencies
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-18 17:07:23 +00:00
dependabot[bot]
722c3b58ec
Bump org.springframework.graphql:spring-graphql from 1.3.0 to 1.3.1 ( #9257 )
...
Bumps [org.springframework.graphql:spring-graphql](https://github.com/spring-projects/spring-graphql ) from 1.3.0 to 1.3.1.
- [Release notes](https://github.com/spring-projects/spring-graphql/releases )
- [Commits](https://github.com/spring-projects/spring-graphql/compare/v1.3.0...v1.3.1 )
---
updated-dependencies:
- dependency-name: org.springframework.graphql:spring-graphql
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-18 17:06:47 +00:00
dependabot[bot]
cc5feb739e
Bump org.springframework.kafka:spring-kafka-bom from 3.2.0 to 3.2.1 ( #9253 )
...
Bumps [org.springframework.kafka:spring-kafka-bom](https://github.com/spring-projects/spring-kafka ) from 3.2.0 to 3.2.1.
- [Release notes](https://github.com/spring-projects/spring-kafka/releases )
- [Commits](https://github.com/spring-projects/spring-kafka/compare/v3.2.0...v3.2.1 )
---
updated-dependencies:
- dependency-name: org.springframework.kafka:spring-kafka-bom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-18 16:31:55 +00:00
dependabot[bot]
0b95de5130
Bump org.springframework.amqp:spring-amqp-bom from 3.1.5 to 3.1.6 ( #9252 )
...
Bumps [org.springframework.amqp:spring-amqp-bom](https://github.com/spring-projects/spring-amqp ) from 3.1.5 to 3.1.6.
- [Release notes](https://github.com/spring-projects/spring-amqp/releases )
- [Commits](https://github.com/spring-projects/spring-amqp/compare/v3.1.5...v3.1.6 )
---
updated-dependencies:
- dependency-name: org.springframework.amqp:spring-amqp-bom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-18 15:36:45 +00:00
dependabot[bot]
45f963ccca
Bump com.gradle.develocity from 3.17.4 to 3.17.5 ( #9250 )
...
Bumps com.gradle.develocity from 3.17.4 to 3.17.5.
---
updated-dependencies:
- dependency-name: com.gradle.develocity
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-16 02:00:31 +00:00
dependabot[bot]
bbfd17c06a
Bump org.springframework:spring-framework-bom from 6.1.8 to 6.1.9 ( #9246 )
...
Bumps [org.springframework:spring-framework-bom](https://github.com/spring-projects/spring-framework ) from 6.1.8 to 6.1.9.
- [Release notes](https://github.com/spring-projects/spring-framework/releases )
- [Commits](https://github.com/spring-projects/spring-framework/compare/v6.1.8...v6.1.9 )
---
updated-dependencies:
- dependency-name: org.springframework:spring-framework-bom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-16 01:14:56 +00:00
dependabot[bot]
25f094d28a
Bump io.micrometer:micrometer-tracing-bom from 1.3.0 to 1.3.1 ( #9245 )
...
Bumps [io.micrometer:micrometer-tracing-bom](https://github.com/micrometer-metrics/tracing ) from 1.3.0 to 1.3.1.
- [Release notes](https://github.com/micrometer-metrics/tracing/releases )
- [Commits](https://github.com/micrometer-metrics/tracing/compare/v1.3.0...v1.3.1 )
---
updated-dependencies:
- dependency-name: io.micrometer:micrometer-tracing-bom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-16 00:56:25 +00:00
dependabot[bot]
38b1fca086
Bump io.projectreactor:reactor-bom from 2023.0.6 to 2023.0.7 ( #9247 )
...
Bumps [io.projectreactor:reactor-bom](https://github.com/reactor/reactor ) from 2023.0.6 to 2023.0.7.
- [Release notes](https://github.com/reactor/reactor/releases )
- [Commits](https://github.com/reactor/reactor/compare/2023.0.6...2023.0.7 )
---
updated-dependencies:
- dependency-name: io.projectreactor:reactor-bom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-16 00:53:53 +00:00
dependabot[bot]
957091401c
Bump org.springframework.data:spring-data-bom from 2024.0.0 to 2024.0.1 ( #9248 )
...
Bumps [org.springframework.data:spring-data-bom](https://github.com/spring-projects/spring-data-bom ) from 2024.0.0 to 2024.0.1.
- [Release notes](https://github.com/spring-projects/spring-data-bom/releases )
- [Commits](https://github.com/spring-projects/spring-data-bom/compare/2024.0.0...2024.0.1 )
---
updated-dependencies:
- dependency-name: org.springframework.data:spring-data-bom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-16 00:45:44 +00:00
dependabot[bot]
d00a886b65
Bump the development-dependencies group with 2 updates ( #9244 )
...
Bumps the development-dependencies group with 2 updates: [org.hibernate.orm:hibernate-core](https://github.com/hibernate/hibernate-orm ) and com.github.spotbugs.
Updates `org.hibernate.orm:hibernate-core` from 6.4.8.Final to 6.4.9.Final
- [Release notes](https://github.com/hibernate/hibernate-orm/releases )
- [Changelog](https://github.com/hibernate/hibernate-orm/blob/6.4.9/changelog.txt )
- [Commits](https://github.com/hibernate/hibernate-orm/compare/6.4.8...6.4.9 )
Updates `com.github.spotbugs` from 6.0.15 to 6.0.17
---
updated-dependencies:
- dependency-name: org.hibernate.orm:hibernate-core
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: development-dependencies
- dependency-name: com.github.spotbugs
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: development-dependencies
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-16 00:44:05 +00:00
dependabot[bot]
0758aaec9a
Bump io.micrometer:micrometer-bom from 1.13.0 to 1.13.1 ( #9249 )
...
Bumps [io.micrometer:micrometer-bom](https://github.com/micrometer-metrics/micrometer ) from 1.13.0 to 1.13.1.
- [Release notes](https://github.com/micrometer-metrics/micrometer/releases )
- [Commits](https://github.com/micrometer-metrics/micrometer/compare/v1.13.0...v1.13.1 )
---
updated-dependencies:
- dependency-name: io.micrometer:micrometer-bom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-16 00:43:49 +00:00
Kevin Van keer
783c82de4e
GH-9230 fix error in code snippet
...
Fixes : #9230
Some code was present in the code snippet that shouldn't be there.
(cherry picked from commit 3d66ea00d9 )
2024-06-12 14:48:59 +00:00
Alessio Matricardi
13370e4809
GH-9197: Optional ZeroMQ topic wrapping
...
Fixes : #9197
* Update `ZeroMqMessageHandler` for `wrapTopic` option
* Add author, fix code style, add same logic also for `ZeroMqMessageProducer`
* Add `wrapTopic` function also in DSL specs
* Fix wrap topic test: duplicate socket address caused binding exception
* Rewrite the `MessageProducer.wrapTopic()` test
* Call `stop()` instead of `destroy()` method
(cherry picked from commit 80c8a61f33 )
2024-06-10 14:56:25 +00:00
Artem Bilan
a65c3da75e
GH-9191: Support byte[] for headers in the MessageReceiverContext
...
Fixes : #9191
Not all inbound protocol handlers convert header from native representation.
Sometimes they just come in as `byte[]`.
* Fix `MessageReceiverContext` to support `byte[]` for headers used in the observation,
e.g. `B3-*`, `traceparent` etc.
(cherry picked from commit b29ff9a710 )
2024-06-07 14:00:14 +00:00
Artem Bilan
3af53df5dc
GH-9214: Fix subscription identifier logic in Mqttv5PahoMessageDrivenChannelAdapter
...
Fixes : #9214
The `MqttAsyncClient` can set `subscriptionIdentifier` from session if it is enabled
and available from connection
* Remove manual `subscriptionIdentifierCounter` from the `Mqttv5PahoMessageDrivenChannelAdapter`.
Instead, use `subscriptionProperties.setSubscriptionIdentifiers(List.of(0));`
to make the `this.mqttSession.getNextSubscriptionIdentifier();` to work
when `if (connOpts.useSubscriptionIdentifiers() && this.mqttConnection.isSubscriptionIdentifiersAvailable()) {` is `true`
(cherry picked from commit 3dcbdef330 )
2024-06-06 15:54:50 +00:00
Artem Bilan
f3ac134ded
GH-9215: Honor back-pressure in FluxMessageChannel
...
Fixes : #9215
* Instead of `share()` use `publish(1).refCount()` to prefetch only item from upstream.
* Also remove `publishOn(this.scheduler)` for upstream publishers in favor of opt-in on the consumer side.
(cherry picked from commit e9561b41f1 )
2024-06-06 15:39:10 +00:00
Artem Bilan
0959590d80
GH-9211: Fix SmbSession.get()
...
Fixes : #9211
The `AbstractRemoteFileOutboundGateway.get()` uses `Session.list()` for the provided remote file name.
The `SmbSession` does not support listing for a single file.
* Add logic into `SmbSession.list()` similar to `SftpSession.list()` to list a single remote file
on the provided path
(cherry picked from commit 91de12c786 )
2024-06-05 15:04:01 +00:00
Artem Bilan
c80e47d1e6
Remove extra empty line in the IntegrationObservabilityZipkinTests
...
(cherry picked from commit 66ca557a54 )
2024-06-03 19:25:54 +00:00
Artem Bilan
5e4da625de
GH-9198: Fix MessageChannel observation for ErrorMessage
...
Fixes : #9198
When observation is enabled on the `MessageChannel`, the message to send is converted to a `MutableMessage`.
In case of `ErrorMessage` this causes a loss of `originalMessage` and may lead to `ClassCastException`
in the target error handler.
* Check for `ErrorMessage` in the `AbstractMessageChannel.sendWithObservation()` and create a new one
as a copy of original request, but including observation headers before performing `sendInternal()`
* Modify `IntegrationObservabilityZipkinTests` to verify an observation with an `ErrorMessage` and its handler.
(cherry picked from commit b0cbacfafb )
2024-06-03 18:50:00 +00:00
Artem Bilan
6d25d2113c
Upgrade to com.icegreen:greenmail:2.1.0-rc-1
...
Fixes : #9200
**Auto-cherry-pick to `6.2.x`**
# Conflicts:
# build.gradle
2024-06-03 11:40:28 -04:00
dependabot[bot]
54106f3192
Bump debeziumVersion from 2.6.1.Final to 2.6.2.Final ( #9206 )
...
Bumps `debeziumVersion` from 2.6.1.Final to 2.6.2.Final.
Updates `io.debezium:debezium-embedded` from 2.6.1.Final to 2.6.2.Final
Updates `io.debezium:debezium-connector-mysql` from 2.6.1.Final to 2.6.2.Final
---
updated-dependencies:
- dependency-name: io.debezium:debezium-embedded
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: io.debezium:debezium-connector-mysql
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-01 21:11:09 -04:00
dependabot[bot]
51eef14a88
Bump org.hsqldb:hsqldb in the development-dependencies group ( #9204 )
...
Bumps the development-dependencies group with 1 update: org.hsqldb:hsqldb.
Updates `org.hsqldb:hsqldb` from 2.7.2 to 2.7.3
---
updated-dependencies:
- dependency-name: org.hsqldb:hsqldb
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: development-dependencies
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-01 21:10:26 -04:00
dependabot[bot]
fc77e4b948
Bump org.springframework:spring-framework-bom from 6.1.7 to 6.1.8
...
Bumps [org.springframework:spring-framework-bom](https://github.com/spring-projects/spring-framework ) from 6.1.7 to 6.1.8.
- [Release notes](https://github.com/spring-projects/spring-framework/releases )
- [Commits](https://github.com/spring-projects/spring-framework/compare/v6.1.7...v6.1.8 )
---
updated-dependencies:
- dependency-name: org.springframework:spring-framework-bom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-05-29 07:43:05 -04:00
dependabot[bot]
5fbf82cb7f
Bump com.github.spotbugs in the development-dependencies group
...
Bumps the development-dependencies group with 1 update: com.github.spotbugs.
Updates `com.github.spotbugs` from 6.0.14 to 6.0.15
---
updated-dependencies:
- dependency-name: com.github.spotbugs
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: development-dependencies
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-05-28 20:21:54 -04:00
dependabot[bot]
1eb8e87f1c
Bump org.codelibs:jcifs from 2.1.37 to 2.1.38
...
Bumps [org.codelibs:jcifs](https://github.com/codelibs/jcifs ) from 2.1.37 to 2.1.38.
- [Commits](https://github.com/codelibs/jcifs/compare/jcifs-2.1.37...jcifs-2.1.38 )
---
updated-dependencies:
- dependency-name: org.codelibs:jcifs
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-05-28 20:12:36 -04:00
Spring Builds
dc96ff6a2d
[artifactory-release] Next development version
2024-05-21 19:45:14 +00:00
Spring Builds
b6561b200d
[artifactory-release] Release version 6.3.0
2024-05-21 19:45:11 +00:00
Artem Bilan
541fbb29eb
Use proper GA versions for Spring dependencies
2024-05-21 13:45:49 -04:00
dependabot[bot]
e729a2126b
--- ( #9183 )
...
updated-dependencies:
- dependency-name: org.springframework.kafka:spring-kafka-bom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-05-21 17:37:56 +00:00
dependabot[bot]
038d18db18
--- ( #9184 )
...
updated-dependencies:
- dependency-name: org.springframework.amqp:spring-amqp-bom
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-05-21 17:34:40 +00:00
dependabot[bot]
4593456469
--- ( #9182 )
...
updated-dependencies:
- dependency-name: org.springframework.graphql:spring-graphql
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-05-21 17:34:00 +00:00
dependabot[bot]
4b4dc49e42
--- ( #9181 )
...
updated-dependencies:
- dependency-name: org.springframework.security:spring-security-bom
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: development-dependencies
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-05-21 17:32:57 +00:00
Artem Bilan
937da13bcf
GH-9112: Workaround for Paho stopReconnectCycle
...
Fixes : #9112
`Mqttv5ClientManager` hangs in `stop()` if never was connected.
The scheduled reconnect timer in the client is never cancelled.
* Call `stopReconnectCycle()` on the client via reflection when we disconnect
from the client in Spring Integration MQTT components
**Auto-cherry-pick to `6.2.x` & `6.1.x`**
2024-05-21 13:14:56 -04:00
Johannes Edmeier
da29e2da6a
PostgresChannelMessageTableSubscriber: Renew connection only if invalid
...
Fixes : #9111
An evolution of the #9061 : renew the connection only when we need to.
**Auto-cherry-pick to `6.2.x` & `6.1.x`**
2024-05-21 10:20:29 -04:00
Artem Bilan
899598a342
Fix Micrometer deps for GA versions
2024-05-20 11:17:37 -04:00