Stephane Nicoll
0766c2c591
Upgrade to Rxjava2 2.2.19
...
Closes gh-20640
5 years ago
Stephane Nicoll
3fe6f409b7
Upgrade to Netty Tcnative 2.0.30.Final
...
Closes gh-20639
5 years ago
Stephane Nicoll
5d1e303c0b
Upgrade to Netty 4.1.48.Final
...
Closes gh-20638
5 years ago
Stephane Nicoll
cde39f4676
Upgrade to Micrometer 1.3.6
...
Closes gh-20637
5 years ago
Stephane Nicoll
278b206af5
Upgrade to Dropwizard Metrics 4.1.5
...
Closes gh-20636
5 years ago
Stephane Nicoll
262f1239db
Upgrade to Jakarta Mail 1.6.5
...
Closes gh-20635
5 years ago
Stephane Nicoll
2ec2416357
Upgrade to Sendgrid 4.4.6
...
Closes gh-20634
5 years ago
Stephane Nicoll
fcde01cc21
Upgrade to Appengine Sdk 1.9.79
...
Closes gh-20633
5 years ago
Stephane Nicoll
1ffdf8a194
Upgrade to Jackson 2.10.3
...
Closes gh-20632
5 years ago
Stephane Nicoll
89d8fe6717
Upgrade to Couchbase Client 2.7.13
...
Closes gh-20631
5 years ago
Phillip Webb
16b5ea3414
Update copyright year of changed files
5 years ago
Stephane Nicoll
8d9c9126b1
Upgrade to Reactor Dysprosium-SR6
...
Closes gh-20569
5 years ago
Stephane Nicoll
9a5ffb7e0c
Upgrade to Reactor Californium SR17
...
Closes gh-20624
5 years ago
Stephane Nicoll
bf15276af1
Fix import in constructor binding example
...
Closes gh-20378
5 years ago
Stephane Nicoll
8f265f8d57
Polish "Fix @FlywayDataSource with multiple data sources"
...
See gh-20617
5 years ago
Shimbo Takaaki
2410d6bbd1
Fix @FlywayDataSource with multiple data sources
...
See gh-20617
5 years ago
Stephane Nicoll
7be3db2d4d
Merge branch '2.1.x' into 2.2.x
...
Closes gh-20618
5 years ago
Stephane Nicoll
bcce6f9f07
Document that Jackson is a required dependency of the Actuator
...
Closes gh-19564
5 years ago
Stephane Nicoll
39b965e1fd
Merge branch '2.1.x' into 2.2.x
...
Closes gh-20615
5 years ago
Stephane Nicoll
f5761bd508
Auto-configure listener container factory without consumer factory
...
Previously, the presence of a `ConsumerFactory` bean would make the
auto-configured one to back off, leading to a failure down the line if
no available instance matches the generics criterion. This commit
improves the auto-configuration to create a `ConsumerFactory<?,?>`
behind the scenes if none is available.
Closes gh-19221
5 years ago
Stephane Nicoll
08a89b6288
Polish "Configure signature algorithm when using public key jwt decoder"
...
See gh-20523
5 years ago
Michael Kreis
69e33d6e62
Configure signature algorithm when using public key jwt decoder
...
See gh-20523
5 years ago
dreis2211
6ff842441c
Polish BindableTests
...
See gh-20604
5 years ago
Stephane Nicoll
8593270b5b
Only remove trailing slash from URI value
...
This commit upgrades the algorithm when trailing slash are to be
ignored. Previously a root URI (i.e. "/") would result to to empty
string which is an issue for monitoring system that requires tag values
to be non empty. If the URI is a single character, the trailing is not
applied and "/" is left as is.
Closes gh-20536
5 years ago
Andy Wilkinson
9e7ab46ecc
Merge branch '2.1.x' into 2.2.x
...
Closes gh-20589
5 years ago
Jordan Simpson
0d9d0f8532
Link to correct factory in TomcatReactiveWebServerFactory's javadoc
...
See gh-20583
5 years ago
Stephane Nicoll
579a6ac254
Adapt tests for support for Java 14
...
See gh-20576
5 years ago
Stephane Nicoll
58a45c53ac
Upgrade to Groovy 2.5.10
...
Closes gh-20575
5 years ago
Stephane Nicoll
bece0f1360
Start building against Spring Kafka 2.3.7 snapshots
...
See gh-20574
5 years ago
Stephane Nicoll
96cffb9dd3
Start building against Spring Data Moore SR6 snapshots
...
See gh-20573
5 years ago
Stephane Nicoll
e940e751c1
Start building against Spring Framework 5.2.5 snapshots
...
See gh-20571
5 years ago
Stephane Nicoll
3966730e02
Start building against Reactor Dysprosium-SR6 snapshots
...
See gh-20569
5 years ago
Lars Grefer
c748f36856
Fix recommended task dependency configuration
...
`compileJava.dependsOn(processResources)` is not enough to ensure the
correct behavior. Using `dependsOn` only affects the execution order
(`processResources` before `compileJava`) but not the up-to-date check
of `compileJava`. After modifying
`META-INF/additional-spring-configuration-metadata.json`, the
`processResouces` task will considered out-of-date and will be
re-executed, but after that `compileJava` will still be considered
up-to-date which causes the changes not to be merged into
`META-INF/spring-configuration-metadata.json`
With this change the up-do-date check of `compileJava` is affected,
too. Therefore, it will correctly re-execute the
configuration-processor when
`META-INF/additional-spring-configuration-metadata.json` was changed.
See gh-20323
5 years ago
dreis2211
d9171d0afe
Use @Configuration(proxyBeanMethods=false) wherever possible
...
See gh-20541
5 years ago
Andy Wilkinson
566f79b086
Merge branch '2.1.x' into 2.2.x
...
Closes gh-20543
5 years ago
Andy Wilkinson
b51c7386aa
Fix detection of application home for paths containing spaces
...
Fixes gh-20531
5 years ago
Andy Wilkinson
9fbb664db6
Avoid eager init when evaluating DevToolsDataSourceCondition
...
Previously, DevToolsDataSourceCondition called
getBeanNamesForType(Class) which could trigger unwanted initialization
of lazy init singletons and objects created by FactoryBeans.
This commit updates DevToolsDataSourceCondition to prohibit eager
init when getting the names of the beans of a particular type.
Fixes gh-20430
5 years ago
Andy Wilkinson
e937b2e0cd
Merge branch '2.1.x' into 2.2.x
...
Closes gh-20501
5 years ago
Andy Wilkinson
f251772e17
Fix behaviour of DependencyCustomizer ifAllResourcesPresent
...
Previously, DependencyCustomizer's ifAllResourcesPresent method
would return a customizer that added modules if any of the resources
were present. This commit corrects this behaviours so that modules are
only added if all resources are present.
Fixes gh-20418
5 years ago
Andy Wilkinson
e1ce21c3a5
Merge branch '2.1.x' into 2.2.x
...
Closes gh-20499
5 years ago
Andy Wilkinson
2b2113714d
Use getTomcatWebServer to create TomcatWebServer instance
...
TomcatReactiveWebServerFactory's getTomcatWebServer is described as
being a hook point the can be overrideden to return a different
TomcatWebServer or to apply additional processing to the Tomcat
server. Previously, this did not work as the method was not called
to create the TomcatWebServer instance. Instead, TomcatWebServer was
instantiated and returned directly.
This commit updates TomcatReactiveWebServerFactory to call
getTomcatWebServer to create the TomcatWebServer instance. A test
has also been added to verify that the method is now used.
Fixes gh-20386
5 years ago
Florian Dreier
76451d47b7
Update versiion of git-properties plugin shown in the docs
...
See gh-20436
5 years ago
Madhura Bhave
a27e145f03
Merge branch '2.1.x' into 2.2.x
...
Closes gh-20432
5 years ago
Madhura Bhave
06d870bdd0
Do not wrap CF JSON Keys containing special characters
...
This reverts commit 6828a15d31
.
The commit has been reverted as it breaks backwards compatiblity.
Fixes gh-20343
5 years ago
Stephane Nicoll
1fdb08300b
Polish
5 years ago
dreis2211
f08a9db984
Fix some deprecations
...
See gh-20388
5 years ago
Johnny Lim
1721aeccb0
Use ServerHttpResponse.getRawStatusCode() in WebFluxTags
...
See gh-19987
5 years ago
dreis2211
daa3855fc8
Test the Gradle Plugin against Gradle 6.2.2
...
See gh-20385
5 years ago
dreis2211
4eaaf88b2d
Remove redundant code
...
See gh-20339
5 years ago
Madhura Bhave
ea8f2a7276
Fix tests following changes to EndpointRequest
...
See gh-20329
5 years ago
Madhura Bhave
cdae79dad9
Cache management port type in EndpointRequestMatcher
...
Closes gh-20329
5 years ago
Stephane Nicoll
421fe77b04
Upgrade to Neo4j Ogm 3.2.9
...
Closes gh-20330
5 years ago
Stephane Nicoll
ef67ad7a35
Upgrade to Liquibase 3.8.7
...
Closes gh-20328
5 years ago
Stephane Nicoll
fa6f8f80b5
Upgrade to Rxjava2 2.2.18
...
Closes gh-20327
5 years ago
Stephane Nicoll
a838537487
Upgrade to Dropwizard Metrics 4.1.3
...
Closes gh-20326
5 years ago
Stephane Nicoll
398e68393e
Upgrade to Okhttp3 3.14.7
...
Closes gh-20325
5 years ago
Stephane Nicoll
560bf28e85
Upgrade to Spring Kafka 2.3.6.RELEASE
...
Closes gh-20203
5 years ago
Stephane Nicoll
080d549cb2
Upgrade to Spring Integration 5.2.4.RELEASE
...
Closes gh-20202
5 years ago
Stephane Nicoll
3c7ed819fa
Upgrade to Spring AMQP 2.2.5.RELEASE
...
Closes gh-20106
5 years ago
Stephane Nicoll
c0bac905e1
Revert "Start building against Spring HATEOAS 1.0.4 snapshots"
...
This reverts commit 34f33e8b0d
.
See gh-20232
5 years ago
Stephane Nicoll
0c5973f688
Upgrade to Neo4j Ogm 3.1.17
...
Closes gh-20322
5 years ago
Stephane Nicoll
eb33be8849
Upgrade to Rxjava2 2.2.18
...
Closes gh-20321
5 years ago
Stephane Nicoll
5db92e3d30
Upgrade to Jackson 2.9.10.20200223
...
Closes gh-20320
5 years ago
Stephane Nicoll
cd456c2e41
Upgrade to Spring Data Moore-SR5
...
Closes gh-20201
5 years ago
Stephane Nicoll
de3f72f25b
Upgrade to Spring Data Lovelace-SR16
...
Closes gh-20198
5 years ago
Stephane Nicoll
4cd4e510e1
Upgrade to Spring Framework 5.2.4.RELEASE
...
Cloes gh-20199
5 years ago
Stephane Nicoll
eaafe50880
Upgrade to Spring Framework 5.1.14
...
Closes gh-20197
5 years ago
Yoo In Keun
ec20246415
Fix typos in documentation
...
See gh-20313
5 years ago
dreis2211
442733600e
Test the Gradle plugin against Gradle 6.2.1
...
See gh-20310
5 years ago
Andy Wilkinson
2059ff6c39
Upgrade to Reactor Dysprosium-SR5
...
Closes gh-20200
5 years ago
Andy Wilkinson
cb2e3bd076
Upgrade to Reactor Californium-SR16
...
Closes gh-20196
5 years ago
Madhura Bhave
42bb56c1ba
Merge branch '2.1.x' into 2.2.x
5 years ago
Madhura Bhave
88ee50601d
Update copyright of changed files
5 years ago
Madhura Bhave
368a77f355
Merge branch '2.1.x' into 2.2.x
...
Closes gh-20306
5 years ago
Madhura Bhave
0957168626
Binding to collection of custom objects should not fail with unbound error
...
Fixes gh-20134
5 years ago
Brian Clozel
11b9862064
Revert "Clear ProducesRequestCondition cache attribute"
...
Closes gh-20292
5 years ago
Stephane Nicoll
3f0a5a5482
Upgrade to Maven Shade Plugin 3.2.2
...
Closes gh-20288
5 years ago
Stephane Nicoll
4a64426218
Upgrade to Spring Session Bom Corn-SR1
...
Closes gh-20287
5 years ago
Stephane Nicoll
a3d4367ccc
Upgrade to Spring Security 5.2.2.RELEASE
...
Closes gh-20286
5 years ago
Stephane Nicoll
412aee65ea
Upgrade to Lombok 1.18.12
...
Closes gh-20285
5 years ago
Stephane Nicoll
fb0d14baa8
Upgrade to Postgresql 42.2.10
...
Closes gh-20284
5 years ago
Stephane Nicoll
6a3a32460f
Upgrade to Neo4j Ogm 3.2.8
...
Closes gh-20283
5 years ago
Stephane Nicoll
85139c0321
Upgrade to Liquibase 3.8.6
...
Closes gh-20282
5 years ago
Stephane Nicoll
4b3273440f
Upgrade to Jooq 3.12.4
...
Closes gh-20281
5 years ago
Stephane Nicoll
e56a4dfc87
Upgrade to Infinispan 9.4.18.Final
...
Closes gh-20280
5 years ago
Stephane Nicoll
7b389f04ad
Upgrade to Hibernate 5.4.12.Final
...
Closes gh-20279
5 years ago
Stephane Nicoll
a99f7910bc
Upgrade to Jetty 9.4.26.v20200117
...
Closes gh-20278
5 years ago
Stephane Nicoll
402eb87847
Upgrade to Tomcat 9.0.31
...
Closes gh-20277
5 years ago
Stephane Nicoll
1909bac5c8
Upgrade to Johnzon Jsonb 1.2.3
...
Closes gh-20276
5 years ago
Stephane Nicoll
3447936823
Upgrade to Httpclient 4.5.11
...
Closes gh-20275
5 years ago
Stephane Nicoll
15134d92f5
Upgrade to Byte Buddy 1.10.8
...
Closes gh-20274
5 years ago
Stephane Nicoll
53389ec61b
Upgrade to Rsocket 1.0.0-RC6
...
Closes gh-20273
5 years ago
Stephane Nicoll
bcd0a7bbb3
Upgrade to Netty Tcnative 2.0.29.Final
...
Closes gh-20272
5 years ago
Stephane Nicoll
3c59f08796
Upgrade to Micrometer 1.3.5
...
Closes gh-20271
5 years ago
Stephane Nicoll
62287739e7
Upgrade to Lettuce 5.2.2.RELEASE
...
Closes gh-20270
5 years ago
Stephane Nicoll
1858219d1d
Upgrade to Jakarta Activation 1.2.2
...
Closes gh-20269
5 years ago
Stephane Nicoll
a7f3b801ae
Upgrade to Sendgrid 4.4.5
...
Closes gh-20268
5 years ago
Stephane Nicoll
d684277f29
Upgrade to Hazelcast 3.12.6
...
Closes gh-20267
5 years ago
Stephane Nicoll
e5baa1c55a
Upgrade to Appengine Sdk 1.9.78
...
Closes gh-20266
5 years ago
Stephane Nicoll
26d30f5019
Upgrade to Caffeine 2.8.1
...
Closes gh-20265
5 years ago