Andy Wilkinson
b76a9951e9
Polish RSocketServerAutoConfiguration
4 years ago
Andy Wilkinson
ba5c57c1b2
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25555
4 years ago
Andy Wilkinson
84637acbdc
Make embedded RSocket server back off without spring-web
...
Fixes gh-25551
4 years ago
dreis2211
b85a50b7b6
Suppress rawtypes warning
...
See gh-25531
4 years ago
dreis2211
2575621e06
Fix some illegal reflective access warnings
...
See gh-25531
4 years ago
Andy Wilkinson
3c84ea9350
Try to stabilize tests that use Neo4jContainer
...
Closes gh-25520
4 years ago
Andy Wilkinson
f9ef05f71e
Polish "Add Bootstrapper initialize method to fix typo"
...
See gh-25400
4 years ago
cprayer
bee6f41393
Add Bootstrapper initialize method to fix typo
...
See gh-25400
4 years ago
Stephane Nicoll
ddf75f095c
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25515
4 years ago
Stephane Nicoll
6ebc69d704
Polish "Include properties in source merge algorithm"
...
See gh-25507
4 years ago
Bertrand Renuart
cf4bc6e9e0
Include properties in source merge algorithm
...
This commit improves SimpleConfigurationMetadataRepository to include
properties that are contributed to an existing configuration metadata
source.
See gh-25507
4 years ago
Andy Wilkinson
2f95c1e2c8
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25513
4 years ago
Andy Wilkinson
22b73f3020
Polish "Improve documentaion of Mockito test execution listeners"
...
See gh-25375
4 years ago
cdalexndr
72562e0fd4
Improve documentaion of Mockito test execution listeners
...
See gh-25375
4 years ago
Andy Wilkinson
836ad76df1
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25510
4 years ago
Andy Wilkinson
92133d47d0
Polish "Make link to Actuator API docs more prominent"
...
See gh-25486
4 years ago
cdalexndr
5f4e1b747e
Make link to Actuator API docs more prominent
...
See gh-25486
4 years ago
Andy Wilkinson
ac258a95a2
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25508
4 years ago
Andy Wilkinson
c6ca7a53ab
Polish "Prevent extracting zip entries outside of destination path"
...
See gh-25505
4 years ago
trungPa
2993e68715
Prevent extracting zip entries outside of destination path
...
See gh-25505
4 years ago
dreis2211
89a44f3da4
Fix some assertions
...
See gh-25499
4 years ago
Madhura Bhave
ae630e03ce
Warn against using multi-document files with TestPropertySource
...
Closes gh-24945
4 years ago
Madhura Bhave
cfac223cff
Document configtree support for Docker secrets
...
Closes gh-25095
4 years ago
Andy Wilkinson
1ce6e796fe
Polish "Allow the project to be built with Java 16"
...
See gh-25171
4 years ago
dreis2211
1ccd8dae8a
Allow the project to be built with Java 16
...
See gh-25171
4 years ago
Madhura Bhave
181d0ee932
Merge default property sources
...
Fixes gh-25408
4 years ago
Andy Wilkinson
ca414733f3
Reinstate support for placeholders in @EntityScan
...
Fixes gh-25436
4 years ago
Stephane Nicoll
e5d8b6029b
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25483
4 years ago
Stephane Nicoll
8e67ae7113
Fix fallback fork value for spring-boot:stop
...
This commit harmonizes the fallback value that spring-boot:stop goal
should use if no information is available in the current context.
Closes gh-25472
4 years ago
Scott Frederick
afb60d6161
Add tests for Gradle examples used in plugin docs
...
Fixes gh-25468
4 years ago
Stephane Nicoll
63cca9b8c6
Polish "Document precedence between properties and yaml"
...
See gh-25300
4 years ago
Robert Smith
20ed8c2ec3
Document precedence between properties and yaml
...
See gh-25300
4 years ago
Stephane Nicoll
ed1c68f567
Update copyright year of changed file
...
See gh-25454
4 years ago
jnizet
cbab2396e2
Fix property name in gradle plugin documentation
...
See gh-25454
4 years ago
Stephane Nicoll
aa032e093b
Upgrade to Jetty 9.4.38.v20210224
...
Closes gh-25461
4 years ago
Stephane Nicoll
dd2dc22085
Upgrade to Jetty 9.4.38.v20210224
...
Closes gh-25460
4 years ago
Andy Wilkinson
cb600f1c0b
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25449
4 years ago
Andy Wilkinson
8f72ca6521
Use ResourceConfig customization to register endpoints with Jersey
...
Previously, actuator endpoints were registered with Jersey upon
injection of the ResourceConfig bean into a registrar class rather than
using a ResourceConfigCustomizer. This was done to fix a problem
when running the Actuator on a separate port where the main application
context's customizers were also applied to the management context,
breaking the singleton contract for those resources. This approach
meant that the registration could be performed at any point after the
ResourceConfig had been created. When Jersey's configured as a Filter
this resulted in the registration failing as the attempt was being made
after the Filter lifecyle callbacks which make the ResourceConfig
immutable.
This commit reworks the endpoint registration to be performed using a
ManagementContextResourceConfigCustomizer, a resource config customizer
that's only applied to the ResourceConfig that's used by the Actuator.
When there's a separate management context, this ResourceConfig is
created by the Actuator's auto-configuration and the management context
resource config customizers are applied to it during its creation. The
main application's customizers are not applied. When the actuator is
using the same context as the main application, this ResourceConfig is
created by the main application. In this case a
ResourceConfigCustomizer is defined that delegates to all
ManagementContextResourceConfigCustomizers, allowing them to register
the actuator endpoints with the main ResourceConfig.
Fixes gh-25262
4 years ago
Andy Wilkinson
d48551ff12
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25437
4 years ago
Stefan Wolf
86ca32e694
Enable stricter validation for Gradle plugin
...
See gh-25409
4 years ago
John Blum
cec4d45cf6
Fix grammatical error in documentation
...
See gh-25411
4 years ago
Andy Wilkinson
ecf8437d4a
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25430
4 years ago
dreis2211
101d88a840
Update Testcontainers image versions
...
See gh-25412
4 years ago
Andy Wilkinson
b477312100
Upgrade to Testcontainers 1.15.2
...
Closes gh-25423
4 years ago
Andy Wilkinson
9af8ad432a
Upgrade to MockK 1.10.6
...
Closes gh-25422
4 years ago
Andy Wilkinson
070d3d434c
Upgrade to Maven Common Artifact Filters 3.1.1
...
Closes gh-25421
4 years ago
Andy Wilkinson
5f0d72487e
Upgrade to Testcontainers 1.15.2
...
Closes gh-25420
4 years ago
Andy Wilkinson
ac78f55ba8
Upgrade to Maven Common Artifact Filters 3.1.1
...
Closes gh-25419
4 years ago
Stephane Nicoll
7c5a5c6663
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25385
4 years ago
Stephane Nicoll
77daae1480
Update copyright year of changed file
...
See gh-25382
4 years ago
Mustafa Ulu
abc90db32f
Fix wording error in build-info goal description
...
See gh-25382
4 years ago
Stephane Nicoll
9e6302ee6a
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25371
4 years ago
Tommy Ludwig
bd2a890899
Polish HTTP client metrics documentation wording
...
See gh-25353
4 years ago
Stephane Nicoll
526474f3b8
Add username alias for Postgres's PGSimpleDataSource
...
Closes gh-25363
4 years ago
Andy Wilkinson
bb56de715b
Upgrade to Spring Security 5.4.5
...
This commit also downgrade JOSE JWT to address an incompatibility with
the OIDC SDK 8.x. The OIDC SDK has also been upgraded to the latest 8.x
release to align with the version used by Spring Security.
Closes gh-25221
Fixes gh-25070
4 years ago
Andy Wilkinson
08f73e01da
Upgrade to Spring Kafka 2.6.6
...
Closes gh-25292
4 years ago
Andy Wilkinson
50a258a9ec
Upgrade to Spring Integration 5.4.4
...
Closes gh-25289
4 years ago
Andy Wilkinson
332ab5e1c6
Upgrade to Spring AMQP 2.3.5
...
Closes gh-25290
4 years ago
Andy Wilkinson
a2695f215c
Upgrade to Spring Data 2020.0.5
...
Closes gh-25002
4 years ago
Andy Wilkinson
6eb51eb2c3
Start building against Spring Data 2020.0.5 snapshots
...
See gh-25002
4 years ago
Sébastien Deleuze
512efa1687
Refactor CacheConfigurations to avoid storing configuration classes
...
This commit refactors CacheConfigurations implementation to make
it more native friendly by storing strings instead of classes in
order to avoid loading the configuration classes
when CacheConfigurations is initialized at build time.
See gh-25321
4 years ago
Madhura Bhave
b5e1787641
Make devtools securityFilterChain back-off in presence of WebSecurityConfigurerAdapter
...
Fixes gh-25147
4 years ago
Andy Wilkinson
3ad68a39b6
Upgrade to Spring Integration 5.3.6.RELEASE
...
Closes gh-25283
4 years ago
Madhura Bhave
00a358b4d3
Throw or warn for invalid config properties with list syntax
...
Fixes gh-25309
4 years ago
Andy Wilkinson
bec065dfd3
Upgrade to Spring AMQP 2.2.15.RELEASE
...
Closes gh-25284
4 years ago
Andy Wilkinson
08e86741fd
Don't scan for `@Persistent` types as they may not be meant for Neo4j
...
Closes gh-25069
4 years ago
Madhura Bhave
52a15647a9
Polish "Remove old documentation relating to yaml and profiles"
...
See gh-24620
4 years ago
Ramiro Aparicio
93f822e7b6
Remove old documentation relating to yaml and profiles
...
See gh-24620
4 years ago
Stephane Nicoll
5d1bb3025b
Add username alias for H2's JdbcDataSource
...
Closes gh-25263
4 years ago
Andy Wilkinson
87efacf039
Upgrade to Spring HATEOAS 1.2.4
...
Closes gh-25341
4 years ago
Andy Wilkinson
cc35ffbfd9
Upgrade to RxJava2 2.2.21
...
Closes gh-25340
4 years ago
Andy Wilkinson
299134fb14
Upgrade to JUnit 4.13.2
...
Closes gh-25339
4 years ago
Andy Wilkinson
edc7253635
Upgrade to FreeMarker 2.3.31
...
Closes gh-25338
4 years ago
Andy Wilkinson
29d46c86c9
Upgrade to Spring Data Neumann-SR7
...
Closes gh-25282
4 years ago
Andy Wilkinson
0348b57b16
Upgrade to Spring HATEOAS 1.1.4.RELEASE
...
Closes gh-25337
4 years ago
Andy Wilkinson
6ce61c504d
Upgrade to RxJava2 2.2.21
...
Closes gh-25336
4 years ago
Andy Wilkinson
92c82a4f54
Upgrade to JUnit 4.13.2
...
Closes gh-25335
4 years ago
Andy Wilkinson
74b33cce5e
Upgrade to FreeMarker 2.3.31
...
Closes gh-25334
4 years ago
Andy Wilkinson
a91f32d14e
Temporarily work around breaking API change in Spring Data Couchbase
...
See gh-25002
4 years ago
Andy Wilkinson
d922d0f859
Upgrade to Micrometer 1.6.4
...
Closes gh-25291
4 years ago
Andy Wilkinson
43c923b3d5
Upgrade to Micrometer 1.5.11
...
Closes gh-25285
4 years ago
Stephane Nicoll
44d765bd00
Upgrade to Spring Framework 5.3.4
...
Closes gh-24998
4 years ago
Stephane Nicoll
32f6719ec1
Upgrade to Spring Framework 5.2.13
...
Closes gh-25281
4 years ago
Stephane Nicoll
f6b5964258
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25312
4 years ago
Stephane Nicoll
0da7822e27
Update copyright of changed files
...
See gh-25265
4 years ago
melburne
2163c96205
Fix incorrect detection of Amazon Redshift
...
See gh-25265
4 years ago
Andy Wilkinson
0dbf907f73
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25310
4 years ago
Andy Wilkinson
78941c32c4
Polish "Ensure that Flyway/Liquibase run before jOOQ's DSLContext is used"
...
See gh-25279
4 years ago
Eddú Meléndez
c55200d19a
Ensure that Flyway/Liquibase run before jOOQ's DSLContext is used
...
See gh-25279
4 years ago
Andy Wilkinson
b86351d0cf
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25307
4 years ago
Andy Wilkinson
a2adb877ee
Polish "Encourage use of maven-publish plugin in Gradle docs"
...
See gh-25299
4 years ago
Robert Smith
c0a5245a3e
Encourage use of maven-publish plugin in Gradle docs
...
See gh-25299
4 years ago
Andy Wilkinson
29af4b953f
Add dependency management for new hibernate-micrometer module
...
Fixes gh-25277
4 years ago
Andy Wilkinson
c3cdfec9cb
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25305
4 years ago
Andy Wilkinson
f907dc2f58
Add dependency management for new hibernate-micrometer module
...
Fixes gh-25277
4 years ago
Andy Wilkinson
55e3ca66e2
Replace native image system property with call to NativeDetector
...
Closes gh-25303
4 years ago
Stephane Nicoll
dcbc3a29aa
Upgrade to Reactor 2020.0.4
...
Closes gh-25286
4 years ago
Stephane Nicoll
98964990d4
Upgrade to Reactor Dysprosium-SR17
...
Closes gh-25280
4 years ago
Stephane Nicoll
a9ff33f74f
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25297
4 years ago
Stephane Nicoll
569002e917
Polish "Document Kafka Streams metrics support"
...
See gh-25272
4 years ago
izeye
dff4ca2293
Document Kafka Streams metrics support
...
See gh-25272
4 years ago
Stephane Nicoll
3f9f9a4637
Polish "Start building against Spring Data Neumann-SR7 snapshots"
...
See gh-25282
4 years ago
Stephane Nicoll
0bc03c7141
Associate application classloader to auto-configured Hazelcast instance
...
Closes gh-24836
4 years ago
Stephane Nicoll
5576f26115
Start building against Spring Kafka 2.6.6 snapshots
...
See gh-25292
4 years ago
Stephane Nicoll
67e1b64a23
Start building against Micrometer 1.6.4 snapshots
...
See gh-25291
4 years ago
Stephane Nicoll
f8caab121d
Start building against Spring AMQP 2.3.5 snapshots
...
See gh-25290
4 years ago
Stephane Nicoll
8a4f49c30b
Start building against Spring Integration 5.4.4 snapshots
...
See gh-25289
4 years ago
Stephane Nicoll
31a98f90c8
Start building against Reactor 2020.0.4 snapshots
...
See gh-25286
4 years ago
Stephane Nicoll
bab0862fdd
Start building against Micrometer 1.5.11 snapshots
...
See gh-25285
4 years ago
Stephane Nicoll
080bec0b20
Start building against Spring AMQP 2.2.15 snapshots
...
See gh-25284
4 years ago
Stephane Nicoll
1004617d2f
Start building against Spring Integration 5.3.6 snapshots
...
See gh-25283
4 years ago
Stephane Nicoll
f1dda97900
Start building against Spring Data Neumann-SR7 snapshots
...
See gh-25282
4 years ago
Stephane Nicoll
33736e818b
Start building against Spring Framework 5.2.13 snapshots
...
See gh-25281
4 years ago
Stephane Nicoll
2c2fedc156
Start building against Reactor Dysprosium-SR17 snapshots
...
See gh-25280
4 years ago
Stephane Nicoll
61e9d04c68
Update copyright of changes files
...
See gh-25266
4 years ago
izeye
f48893def5
Polish
4 years ago
Stephane Nicoll
3471adcf09
Merge branch '2.3.x' into 2.4.x
4 years ago
Stephane Nicoll
b7f5f5cac0
Polish
...
See gh-25266
4 years ago
Andy Wilkinson
392be57003
Apply Logback system properties and not just common properties to context
...
Closes gh-24894
4 years ago
Andy Wilkinson
5a21395b0b
Upgrade to Undertow 2.2.4.Final
...
Closes gh-25224
4 years ago
Andy Wilkinson
28fc2b1d52
Upgrade to Tomcat 9.0.43
...
Closes gh-25223
4 years ago
Andy Wilkinson
58c823ef22
Upgrade to Spring Session Bom 2020.0.3
...
Closes gh-25222
4 years ago
Andy Wilkinson
51ca7d67ba
Upgrade to Netty 4.1.59.Final
...
Closes gh-25220
4 years ago
Andy Wilkinson
ca24fd1437
Upgrade to MySQL 8.0.23
...
Closes gh-25219
4 years ago
Andy Wilkinson
5dfe3ccc89
Upgrade to MariaDB 2.7.2
...
Closes gh-25218
4 years ago
Andy Wilkinson
d7cc673ac0
Upgrade to Lombok 1.18.18
...
Closes gh-25217
4 years ago
Andy Wilkinson
d50be39bee
Upgrade to JUnit Jupiter 5.7.1
...
Closes gh-25215
4 years ago
Andy Wilkinson
636a99ecd3
Upgrade to jOOQ 3.14.7
...
Closes gh-25214
4 years ago
Andy Wilkinson
d2630151ce
Upgrade to Johnzon 1.2.10
...
Closes gh-25213
4 years ago
Andy Wilkinson
1c2265feac
Upgrade to Jetty 9.4.36.v20210114
...
Closes gh-25212
4 years ago
Andy Wilkinson
1ceba0910b
Upgrade to Jaybird 3.0.10
...
Closes gh-25211
4 years ago
Andy Wilkinson
7d5484e9d1
Upgrade to Janino 3.1.3
...
Closes gh-25210
4 years ago
Andy Wilkinson
d5cb97984f
Upgrade to Infinispan 11.0.9.Final
...
Closes gh-25209
4 years ago
Andy Wilkinson
8f1bda83be
Upgrade to Hibernate 5.4.28.Final
...
Closes gh-25208
4 years ago
Andy Wilkinson
bd24553f7e
Upgrade to Byte Buddy 1.10.20
...
Closes gh-25207
4 years ago
Andy Wilkinson
fc4c101503
Upgrade to AppEngine SDK 1.9.86
...
Closes gh-25206
4 years ago
Andy Wilkinson
1adc4118da
Upgrade to ActiveMQ 5.16.1
...
Closes gh-25205
4 years ago
Andy Wilkinson
63de8dec1f
Upgrade to Undertow 2.1.6.Final
...
Closes gh-25204
4 years ago
Andy Wilkinson
b1dd3fb827
Upgrade to Tomcat 9.0.43
...
Closes gh-25203
4 years ago
Andy Wilkinson
aaad1613dc
Upgrade to Spring Session Bom Dragonfruit-SR2
...
Closes gh-25202
4 years ago
Andy Wilkinson
13cbc1a80b
Upgrade to Spring Security 5.3.8.RELEASE
...
Closes gh-25201
4 years ago
Andy Wilkinson
8e86957efc
Upgrade to Netty 4.1.59.Final
...
Closes gh-25200
4 years ago
Andy Wilkinson
f728367785
Upgrade to Neo4j OGM 3.2.20
...
Closes gh-25199
4 years ago
Andy Wilkinson
e3bed12a16
Upgrade to MySQL 8.0.23
...
Closes gh-25198
4 years ago
Andy Wilkinson
aa5e33bc83
Upgrade to Lombok 1.18.18
...
Closes gh-25197
4 years ago
Andy Wilkinson
97d4837feb
Upgrade to Johnzon 1.2.10
...
Closes gh-25196
4 years ago
Andy Wilkinson
87404581b9
Upgrade to Jetty 9.4.36.v20210114
...
Closes gh-25195
4 years ago
Andy Wilkinson
05d805ad60
Upgrade to Jaybird 3.0.10
...
Closes gh-25194
4 years ago
Andy Wilkinson
3ada6e9304
Upgrade to Janino 3.1.3
...
Closes gh-25193
4 years ago
Andy Wilkinson
adc601b72c
Upgrade to Hibernate 5.4.28.Final
...
Closes gh-25192
4 years ago
Andy Wilkinson
4b6418f11f
Upgrade to Hazelcast 3.12.12
...
Closes gh-25191
4 years ago
Andy Wilkinson
88afda03a3
Upgrade to Byte Buddy 1.10.20
...
Closes gh-25190
4 years ago
Andy Wilkinson
fa6c749215
Upgrade to AppEngine SDK 1.9.86
...
Closes gh-25189
4 years ago
Andy Wilkinson
9ba28a8b99
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25185
4 years ago
Andy Wilkinson
bd64e05203
Instrument AMQP AbstractCF when defined as a ConnectionFactory
...
Fixes gh-25138
4 years ago
Stephane Nicoll
75fc896321
Avoid Illegal reflective access warnings with devtools
...
This commit improves RestartClassLoader to use a method introduced in
SmartClassLoader to avoid triggering a warning on Java 11 and later.
See https://github.com/spring-projects/spring-framework/issues/26403
Closes gh-24857
4 years ago
Andy Wilkinson
698672e1cb
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25182
4 years ago
Andy Wilkinson
82dc2dffbd
Select specific CLI distribution in CLI's integration tests
...
Previously, CommandLineInvoker would use the first -bin.zip file found
in build/distributions. If this directory contained multiple zips from
building different versions of Spring Boot, this could result in the
tests being run against the wrong version of the CLI.
This commit updates CommandLineInvoker look for a specific zip in
build/distributions, using the version from gradle.properties to
identify it.
Closes gh-25179
4 years ago
Andy Wilkinson
9da3b65ff3
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25174
4 years ago
Andy Wilkinson
708cbd7294
Ignore events from other contexts when waiting for DS init to complete
...
Fixes gh-24966
4 years ago
Stephane Nicoll
46bc551c2b
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25169
4 years ago
Stephane Nicoll
1524793a92
Fix use of deprecated Cassandra properties in integration tests
...
Closes gh-25148
4 years ago
Andy Wilkinson
45e6c12cb6
Consider transitives when identifying project dependencies
...
Previously, when building a layered jar, the Gradle plugin only
considered a configuration's direct dependencies when identifying
project dependencies. This resulted in transitive project dependencies
being missed when deciding which dependencies belong in the
application layer.
This commit updates ResolvedDependencies to consider all projects
from the root project when collecting the IDs of local projects. This
ensures that any project dependency, no matter where it appears in the
dependency graph, is successfully identified.
Fixes gh-25163
4 years ago
Stephane Nicoll
7cb1605c11
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25166
4 years ago
Stephane Nicoll
e5098697cb
Polish "Validate Cassandra defaults"
...
See gh-25130
4 years ago
bono007
f71ab69aeb
Validate Cassandra defaults
...
See gh-25130
4 years ago
Stephane Nicoll
acc8f3708b
Update copyright of changed file
...
See gh-25150
4 years ago
bono007
4ef82c45ac
Fix defaults for Cassandra's initQueryTimeout and idleTimeout
...
See gh-25150
4 years ago
Andy Wilkinson
caa9249987
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25142
4 years ago
Andy Wilkinson
7898b6afb0
Remove duplicate publication from spring-boot-docs
...
Fixes gh-25132
4 years ago
Stephane Nicoll
9218965104
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25140
4 years ago
dreis2211
4937547b8a
Fix build deprecation warnings about duplicate jar entries
...
See gh-25116
4 years ago
izeye
63ee99bf75
Polish
...
See gh-25093
4 years ago
Stephane Nicoll
b2818680fd
Polish "Clarify usage of BufferingApplicationStartup"
...
See gh-25075
4 years ago
Oleg Sukhov
853dbc3de3
Clarify usage of BufferingApplicationStartup
...
See gh-25075
4 years ago
Andy Wilkinson
297e3079d0
Fix handling of UriTemplateRequestEntity in TestRestTemplate
...
A change [1] in Spring Framework 5.3 means that getUrl() on a
RequestEntity will throw an UnsupportedOperationException if the
entity was created using a template.
This commit updates TestRestTemplate to check for instances of
UriTemplateRequestEntity and to resolve the URI using the
entity's UriTemplateHandler instead of calling getUrl() directly.
Fixes gh-25097
[1] a0f4d81db7
4 years ago
Andy Wilkinson
788a42d694
Merge branch '2.3.x' into 2.4.x
...
See gh-25076
4 years ago
Andy Wilkinson
67479b6380
Add junit-platform-launcher dependency by convention
...
Closes gh-25074
4 years ago
Phillip Webb
230b4ab2eb
Merge branch '2.3.x' into 2.4.x
4 years ago
Phillip Webb
630d216430
Update copyright year of changed files
4 years ago
Phillip Webb
331c7b756b
Merge branch '2.3.x' into 2.4.x
4 years ago
Phillip Webb
c404a50a2e
Allow test to use snapshot/milestone repo
...
Update `spring-boot-maven-plugin` `settings.xml` so that milestone and
snapshot dependencies can be resolved.
See gh-23936
4 years ago
Phillip Webb
003f2f9521
Merge branch '2.3.x' into 2.4.x
4 years ago
Phillip Webb
faaa5e4186
Fix BOM attached sourceSet
...
See gh-23936
4 years ago
Phillip Webb
db52bf3d7a
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25078
4 years ago
Phillip Webb
40c1748e3c
Remove hardcoded versions from MavenBuild
...
Use the dependencies BOM to ensure versions used in the `MavenBuild`
test class are always aligned.
Closes gh-23936
4 years ago
Phillip Webb
257608a3a3
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25076
4 years ago
Phillip Webb
939b5dfc26
Add junit-platform-launcher dependency
...
Update `build.gradle` files to ensure that `junit-platform-launcher` is
a `testRuntimeOnly` dependency. This ensures that tests can be run from
Eclipse.
Closes gh-25074
4 years ago
Andy Wilkinson
79c0597aa2
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25072
4 years ago
Andy Wilkinson
3585d20453
Include IDialect beans in WebFluxTest and WebMvcTest
...
Fixes gh-24149
4 years ago
Phillip Webb
57f1f17320
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25066
4 years ago
Phillip Webb
187258aa6a
Fix classpath.idx format documentation
...
Since 2.3.8 and 2.4.2 the format includes the directory.
Closes gh-24856
4 years ago
Phillip Webb
9ac5151932
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25064
4 years ago
Phillip Webb
19c5864d2c
Clarify square bracket map binding notation
...
Update reference docs to make it clearer when the square bracket map
binding notation should be used.
Closes gh-23390
4 years ago
Phillip Webb
d7c44e4503
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25061
4 years ago
Phillip Webb
549d4f7fbe
Document that Spring MVC has own ConversionService
...
Update documentation to make it clearer that Spring MVC does not use the
`ApplicationConversionService` unless configured explicitly.
Closes gh-22718
4 years ago
Phillip Webb
77478d9f34
Refine CharSequenceToObjectConverter logic
...
Update `CharSequenceToObjectConverter` so that conversion that would
apply using an `ObjectTo...` converter now favors `toString()` based
conversion.
Prior to this commit, when converting a `CharSequence` to a `Collection`
the `ObjectToCollectionConveter` would be picked instead of the
`StringToCollectionConverter`. This resulted in a `Collection`
containing a single `String` value, rather than the expected list
of values split around ",".
Fixes gh-25057
4 years ago
Phillip Webb
dd997cda9c
Remove sysout from test
4 years ago
Andy Wilkinson
a3058200cb
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25050
4 years ago
dreis2211
4940694db2
Fix duplicate anchor id
...
See gh-25048
4 years ago
Phillip Webb
2d056525d8
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25044
4 years ago
Phillip Webb
c03d8773e7
Improve logging.register-shutdown-hook docs
...
Update the "Logging" reference documentation with a section about
shutting down the logging system.
Closes gh-24507
4 years ago
Phillip Webb
ca9b612e27
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25042
4 years ago
jongmin92
23ecb86089
Document missing code to run Gradle bootRun task
...
See gh-25012
4 years ago
Phillip Webb
c86ee4c851
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25040
4 years ago
Phillip Webb
5b2d1f19a0
Polish 'Add note about exploded jars and banner properties'
...
See gh-24982
4 years ago
Robert Smith
33c038199d
Add note about exploded jars and banner properties
...
Add a note to the "Customizing the Banner" explaining that you need
to be using the `JarLauncher` to use the `application.*` properties.
See gh-24982
4 years ago
Phillip Webb
53f1aab833
Merge branch '2.3.x' into 2.4.x
...
Closes gh-25038
4 years ago
Phillip Webb
60bb33f231
Polish 'Add a tip about actuator endpoints'
...
See gh-24336
4 years ago
Wesley Ugang
6ced1d7f4e
Add a tip about actuator endpoints
...
Update the "Externalized Configuration" section with a tip that about
the actuator `env` and `configprops` endpoints.
See gh-24336
4 years ago
Phillip Webb
0fcc52ccaf
Protect against NPE with Option.IGNORE_IMPORTS
...
Update `ConfigDataEnvironmentContributor` to deal with the fact that
the `properties` instance can be `null`.
Fixes gh-25029
4 years ago
Phillip Webb
7f32fa6723
Allow 'on-profile' in profile specific files
...
Restore the ability to use `spring.config.activate.on-profile` or
`spring.profiles` in profile specific files.
Closes gh-24990
4 years ago
Phillip Webb
d06407ec0a
Update copyright year of changed files
4 years ago
Phillip Webb
99f7bc1aba
Build against Spring Data 2020.0.4-SNAPSHOT
...
See gh-25002
4 years ago
Phillip Webb
d95d7a0245
Update code for Spring Framework 5.3.4
...
See gh-24998
4 years ago
Phillip Webb
b7ae5558f6
Build against Spring Framework 5.3.4-SNAPSHOT
...
See gh-24998
4 years ago
Phillip Webb
1def245a2c
Support DeferredLogFactory injection
...
Update `ConfigDataLoader` and `ConfigDataLocationResolver` to support
`DeferredLogFactory` injection.
Closes gh-24988
4 years ago
Phillip Webb
522f68cb40
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24994
4 years ago
Phillip Webb
464b302655
Set withTestKitDir per Gradle version
...
Attempt to fix cache locking issues by setting a unique `withTestKitDir`
directory for each tested Gradle version.
Closes gh-24993
4 years ago
Andy Wilkinson
9c8645dec2
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24975
4 years ago
Andy Wilkinson
46d908f632
Upgrade to Gradle 6.8.1
...
Closes gh-24737
4 years ago
Andy Wilkinson
5362633014
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24973
4 years ago
Andy Wilkinson
0b06ac9938
Use AssertJ's doesNotContainKey
...
Closes gh-24970
4 years ago
Phillip Webb
69fbd2f8aa
Delegate `usesPathPatterns()` call to mappings
...
Update `CompositeHandlerMapping` so that the `usesPathPatterns()` method
returns `true` if any of the delegate mappings return `true`.
Closes gh-24877
4 years ago
Stephane Nicoll
3e376b955d
Fix build failure
...
See gh-24943
4 years ago
Stephane Nicoll
56ce5bdf44
Merge branch '2.3.x' into 2.4.x
...
See gh-24943
4 years ago
Stephane Nicoll
244a6ac7e5
Polish "Deprecate Spring Data Solr"
...
See gh-24942
4 years ago
Stephane Nicoll
85729d2a8a
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24943
4 years ago
Stephane Nicoll
10b4cb8cb5
Deprecate Spring Data Solr support
...
Closes gh-24942
4 years ago
Phillip Webb
80dbbaf012
Add ConfigData IGNORE_PROFILES support
...
Add a new `ConfigData.Option` that allows profile properties to be
ignored. This update will allow Spring Cloud Config Server to provide
`ConfigData` that only has profile properties processed on the
server-side.
Closes gh-24890
4 years ago
Andy Wilkinson
7b4fbd2c85
Document WebMvcProperties.MatchingStrategt as being since 2.4.0
...
Closes gh-24875
4 years ago
Andy Wilkinson
3ad2832cb2
Fix pattern extraction when MVC is using a PathPatternParser
...
Fixes gh-24874
4 years ago
Stephane Nicoll
59b01324ae
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24872
4 years ago
Stephane Nicoll
1ad5a3fe2e
Update copyright of changed file
...
See gh-24753
4 years ago
izeye
ddfa1e632b
Make MetricsClientHttpRequestInterceptor defensive against metrics recoding failures
...
See gh-24753
4 years ago
izeye
21db14227c
Fix property name for spring.dao.exceptiontranslation.enabled
...
See gh-24867
4 years ago
dreis2211
b8b5e4cebf
Fix configuration metadata for logging.charset.* properties
...
See gh-24851
4 years ago
Stephane Nicoll
7ec7569939
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24854
4 years ago
Stephane Nicoll
b3ab77a5c3
Move Spring Boot version to main index in reference guide
...
Closes gh-24848
4 years ago
Stephane Nicoll
e8ae18ae11
Polish
...
See gh-24837
4 years ago
Stephane Nicoll
9343633582
Merge branch '2.3.x' into 2.4.x
4 years ago
Stephane Nicoll
9a53865c8f
Polish
4 years ago
Phillip Webb
26f2caca22
Update copyright year of changed files
4 years ago
Phillip Webb
c0aef4c35f
Apply SystemProperties to LoggerContext
...
Update `LoggingSystemProperties` so that system environment properties
are also applied to the `LoggerContext`. This is required when multiple
applications are deployed to the same Servlet container. In such setups
there's only a single JVM and the System Environment can be changed
when multiple applications start at the same time.
Fixes gh-24835
4 years ago
Madhura Bhave
68fc2329c8
Revert "Remove unnecessary code"
...
Fixes gh-24835
4 years ago
Brian Clozel
6f51831001
Fix docs on probe state during graceful shutdown
...
This commit improves the "Application lifefycle and Probes states"
section and underlines the difference between `AvailabilityState` and
the availability of Probes over HTTP.
Closes gh-24843
4 years ago
Stephane Nicoll
dda8b5d287
Revert "Upgrade to Kafka 2.6.1"
...
See gh-24247
4 years ago
Stephane Nicoll
2072e7242a
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24841
4 years ago
Stephane Nicoll
283ed48d63
Unwrap Datasource against an actual interface
...
This commit updates DataSourceUnwrapper to take a separate interface
type argument if the target datasource has to be unwrapped, given that
the target type is usually not an interface.
Closes gh-24697
4 years ago
Stephane Nicoll
5d85ac6838
Complete configuration metadata for spring.config.*
...
Closes gh-24816
4 years ago
Stephane Nicoll
3aa960a060
Upgrade to Spring Kafka 2.6.5
...
Closes gh-24703
4 years ago
Stephane Nicoll
d6d0abcfd5
Upgrade to Spring AMQP 2.3.4
...
Closes gh-24702
4 years ago
Stephane Nicoll
da8a8b9712
Upgrade to Spring Integration 5.4.3
...
Closes gh-24701
4 years ago
Stephane Nicoll
bb33574ad4
Upgrade to Netty tcNative 2.0.36.Final
...
Closes gh-24829
4 years ago
Stephane Nicoll
e73c124b2d
Upgrade to Netty 4.1.58.Final
...
Closes gh-24828
4 years ago
Stephane Nicoll
27162bc3b9
Upgrade to Dependency Management Plugin 1.0.11.RELEASE
...
Closes gh-24827
4 years ago
Stephane Nicoll
3ecd1001a1
Upgrade to Spring Kafka 2.5.11.RELEASE
...
Closes gh-24826
4 years ago
Stephane Nicoll
696539c68f
Upgrade to Spring Integration 5.3.5.RELEASE
...
Closes gh-24825
4 years ago
Stephane Nicoll
8908969a6c
Upgrade to Spring AMQP 2.2.14.RELEASE
...
Closes gh-24824
4 years ago
Stephane Nicoll
92f132ae35
Upgrade to Netty tcNative 2.0.36.Final
...
Closes gh-24823
4 years ago
Stephane Nicoll
6f9e3a6e94
Upgrade to Netty 4.1.58.Final
...
Closes gh-24822
4 years ago
Stephane Nicoll
1dd445b6ca
Upgrade to Dependency Management Plugin 1.0.11.RELEASE
...
Closes gh-24821
4 years ago
Madhura Bhave
ceff47afba
Fix ordering of properties and yaml files
...
Fixes gh-24719
4 years ago
Stephane Nicoll
9a48423a1d
Upgrade to Spring Data 2020.0.3
...
Closes gh-24700
4 years ago
Stephane Nicoll
e01fdf91bd
Upgrade to Spring HATEOAS 1.2.3
...
Closes gh-24803
4 years ago
Stephane Nicoll
f9e59abe8b
Upgrade to Lettuce 6.0.2.RELEASE
...
Closes gh-24802
4 years ago
Stephane Nicoll
beec43cda5
Upgrade to Micrometer 1.6.3
...
Closes gh-24786
4 years ago
Stephane Nicoll
6d5d8cbc2c
Upgrade to Lettuce 5.3.6.RELEASE
...
Closes gh-24801
4 years ago
Stephane Nicoll
6b353aee8d
Upgrade to Micrometer 1.5.10
...
Closes gh-24785
4 years ago
Andy Wilkinson
a95a7e3d40
Allow restart to be enabled when CL not named AppClassLoader
...
Previously, the restart initializer that enables restart when
-Dspring.devtools.restart.enabled=true is set had no effect when the
ClassLoader's name did not contain AppClassLoader. This commit updates
RestartApplicationListener to use the correct RestartInitializer when
the system property has forcibly enabled restart.
When restart is enabled a SilentExitException is thrown and it should be
caught and handled by the SilentExitExceptionHandler. When the
application is invoked via one of the loader's LauncherClasses
reflection is used and this exception becomes wrapped in an
InvocationTargetEception. Previously, this wrapping prevented
SilentExitExceptionHandler from handling the exception. This commit
updates the handler to look for an InvocationTargetException with a
SilentExitException target in addition to continuing to look for a
SilentExitException directly.
Fixes gh-24797
4 years ago
Phillip Webb
26f143b8d3
Support @Name annotation on /actuator/configprops
...
Update `ConfigurationPropertiesReportEndpoint` so that supports
constructor parameters annotated with `@Name`.
Fixes gh-24713
4 years ago
Phillip Webb
6c2ff56fba
Fix tests to also work in IDE
4 years ago
Scott Frederick
a9e711e503
Enforce builder and run images in the same registry
...
Previously, when an authenticated Docker builder registry was
configured in the Maven or Gradle plugin and the builder and run
images specified different registries, the authentication credentials
would be sent to both registries. This could cause confusion if both
registries don't recognize the same credentials. This commit enforces
that both images are in the same registry when authentication
is configured.
Fixes gh-24552
4 years ago
Phillip Webb
a6a7c06e55
Merge branch '2.3.x' into 2.4.x
4 years ago
Phillip Webb
9da0bd8523
Update copyright year of changed files
4 years ago
Phillip Webb
b6cb9c016f
Detect bad properties in profile specific files
...
Throw an `InvalidConfigDataPropertyException` if bad properties are
detected in profile specific files. The following properties will now
trigger an exception if used in a profile specific file:
`spring.profiles.include`
`spring.profiles.active`
`spring.profiles.default`
`spring.config.activate.on-profile`
`spring.profiles`
Prior to this commit, profile based properties in a profile specific
file would be silently ignored, making them hard to find.
Fixes gh-24733
4 years ago
Madhura Bhave
5ed2b11e34
Fix typo
4 years ago
Andy Wilkinson
5cae1a2842
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24790
4 years ago
Andy Wilkinson
7b1d07fa98
Use SpringSessionDataSource-annotated DataSource when one is available
...
Fixes gh-24624
4 years ago
Stephane Nicoll
c5d4ca933b
Upgrade to Reactor Dysprosium-SR16
...
Closes gh-24765
4 years ago
Andy Wilkinson
c3dfb9bd29
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24768
4 years ago
Andy Wilkinson
997505005b
Handle files larger than Integer.MAX_VALUE bytes in bootJar and bootWar
...
Fixes gh-24618
4 years ago
Stephane Nicoll
f02951fb17
Upgrade to Netty 4.1.56.Final
...
Closes gh-24764
4 years ago
Stephane Nicoll
2e69198f97
Upgrade to Neo4j OGM 3.2.19
...
Closes gh-24763
4 years ago
Stephane Nicoll
5fb1ca6043
Upgrade to Johnzon 1.2.9
...
Closes gh-24762
4 years ago
Stephane Nicoll
37f653121f
Upgrade to Jetty Reactive HTTPClient 1.1.5
...
Closes gh-24761
4 years ago
Stephane Nicoll
3ae9639cbb
Upgrade to Jackson Bom 2.11.4
...
Closes gh-24760
4 years ago
Stephane Nicoll
371e59cd80
Upgrade to Hibernate Validator 6.1.7.Final
...
Closes gh-24759
4 years ago
Stephane Nicoll
e48e48988a
Upgrade to Hibernate 5.4.27.Final
...
Closes gh-24758
4 years ago
Stephane Nicoll
66daeab221
Upgrade to Hazelcast 3.12.11
...
Closes gh-24757
4 years ago
Stephane Nicoll
682c952306
Upgrade to Dropwizard Metrics 4.1.17
...
Closes gh-24756
4 years ago
Stephane Nicoll
7ab9fad062
Upgrade to Byte Buddy 1.10.19
...
Closes gh-24755
4 years ago
Stephane Nicoll
b3bc79b10f
Upgrade to AppEngine SDK 1.9.84
...
Closes gh-24754
4 years ago
Stephane Nicoll
8058370f3e
Upgrade to Spring Framework 5.3.3
...
Closes gh-24699
4 years ago
Phillip Webb
bd21c43d71
Simplify resource registration
...
Simplify resource registration by using the new Spring Framework API
that allows `Resource` instances to be registered directly.
See gh-24745
4 years ago
Phillip Webb
f1fcfa6fc3
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24748
4 years ago
Phillip Webb
72dd3b5628
Merge branch '2.2.x' into 2.3.x
...
Closes gh-24747
4 years ago
Phillip Webb
f9e3e0d532
Register default resource path using a Resource
...
Update `WebMvcAutoConfiguration` so that the default "/" resource path
is registered directly as a `ServletContextResource`.
Closes gh-24745
4 years ago
Phillip Webb
53a6fa2fed
Respect spring.dao.exceptiontranslation setting
...
Update `DataSourceTransactionManagerAutoConfiguration` to respect
the `spring.dao.exceptiontranslation` setting. If `exceptiontranslation`
is `false` then we create a classic `DataSourceTransactionManager`
rather than a `JdbcTransactionManager`.
Fixes gh-24321
4 years ago
Phillip Webb
cff3e4c831
Fix tests following upstream framework changes
4 years ago
Phillip Webb
039df1d96d
Test spring.profiles.include in profile file
...
Add a test to ensure that `spring.profiles.include` is not silently
ignored when used in a profile-specific file.
See gh-24733
4 years ago
Phillip Webb
26a68ca2cf
Polish
4 years ago
Stephane Nicoll
31de36565f
Upgrade to Reactor 2020.0.3
...
Closes gh-24698
4 years ago
Andy Wilkinson
5ae9fbedcd
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24738
4 years ago
Andy Wilkinson
7625a979db
Configure bootRun to use project's Java toolchain by default
...
Previously, unlike the application plugin's run task, our bootRun task
ignored the project's Java toolchain. This meant that the application
was run on a JVM with the same Java version as the one being used by
Gradle itself. This could result in a failure if the application
required a more modern JVM.
This commit updates the plugin to configure the bootRun task's
JavaLauncher convention to be one derived from the project's Java
toolchain. Toolchain support was introduced in Gradle 6.7 so this is
only done when using Gradle 6.7 and later.
Fixes gh-24517
4 years ago
Andy Wilkinson
3c3aa9e486
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24735
4 years ago
Andy Wilkinson
064de4e073
Check configured JavaLauncher when determining version of the JVM
...
Previously, bootRun assumed that the Java version of the JVM that would
run the application would be the same as the Java version of the JVM
that is running the build. This assumption does not hold true when
Gradle's toolchain support is used to configure tasks that fork a new
JVM to use a version other than that being used by Gradle itself.
This commit updates the BootRun task to query the JavaLauncher property
when determining the version of Java on which the application will be
run. Toolchain support and the JavaLauncher property are new in Gradle
6.7. To support earlier versions of Gradle, NoSuchMethodError is caught
we continue as if no JavaLauncher has been configured and use the local
JVM's Java version.
Fixes gh-24512
4 years ago
Stephane Nicoll
097f878981
Upgrade to Kafka 2.6.1
...
Closes gh-24247
4 years ago
Stephane Nicoll
50019a7f44
Upgrade to Thymeleaf Layout Dialect 2.5.2
...
Closes gh-24731
4 years ago
Stephane Nicoll
aad3de2ba7
Upgrade to Spring Retry 1.3.1
...
Closes gh-24730
4 years ago
Stephane Nicoll
d7e6f963ab
Upgrade to Netty 4.1.56.Final
...
Closes gh-24729
4 years ago
Stephane Nicoll
5f63b22286
Upgrade to Johnzon 1.2.9
...
Closes gh-24728
4 years ago
Stephane Nicoll
8867544d0d
Upgrade to Jetty Reactive HTTPClient 1.1.5
...
Closes gh-24727
4 years ago
Stephane Nicoll
fc6fa74691
Upgrade to Jackson Bom 2.11.4
...
Closes gh-24726
4 years ago
Stephane Nicoll
d691d63b1e
Upgrade to Hibernate Validator 6.1.7.Final
...
Closes gh-24725
4 years ago
Stephane Nicoll
bc0a1ff852
Upgrade to Hibernate 5.4.27.Final
...
Closes gh-24724
4 years ago
Stephane Nicoll
487f694872
Upgrade to Dropwizard Metrics 4.1.17
...
Closes gh-24723
4 years ago
Stephane Nicoll
a60b5e0f70
Upgrade to Byte Buddy 1.10.19
...
Closes gh-24722
4 years ago
Stephane Nicoll
180493422d
Upgrade to AppEngine SDK 1.9.84
...
Closes gh-24721
4 years ago
Andy Wilkinson
9e389c8376
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24710
4 years ago
Andy Wilkinson
5ad4d627fd
Fix classpath index so entries match those expected by the launcher
...
This reverts commit ad164269e9
and adds
some additional tests.
Fixes gh-24192
4 years ago
Stephane Nicoll
b8a1869569
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24707
4 years ago
Stephane Nicoll
826d79be3e
Clarify behaviour of WebServerFactory in reference guide
...
Closes gh-24705
4 years ago
Stephane Nicoll
40f1f9a25c
Start building against Spring Kafka 2.6.5 snapshots
...
See gh-24703
4 years ago
Stephane Nicoll
a27b87a118
Start building against Spring AMQP 2.3.3 snapshots
...
See gh-24702
4 years ago
Stephane Nicoll
0bfb072467
Start building against Spring Integration 5.4.3 snapshots
...
See gh-24701
4 years ago
Stephane Nicoll
5bfc0285c6
Start building against Spring Data 2020.0.3 snapshots
...
See gh-24700
4 years ago
Stephane Nicoll
11d20eba82
Start building against Spring Framework 5.3.3 snapshots
...
See gh-24699
4 years ago
Stephane Nicoll
9f70b71036
Start building against Reactor 2020.0.3 snapshots
...
See gh-24698
4 years ago
Scott Frederick
210438ee5b
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24689
4 years ago
Scott Frederick
a302238e21
Remove layout parameters from build-image Maven goal
...
This commit removes the `layout` and `layoutFactory` parameters
from the `build-image` goal in the Maven plugin while retaining
them for the `repackage` goal. The `build-image` goal currently
only supports jar archives, so allowing other layout types to be
configured for the goal could cause confusion.
Fixes gh-24105
4 years ago
Scott Frederick
ef7a82756e
Allow overriding ThemeResolver and FlashMapManager beans
...
Previously, an error would occur when a user contributed a
`ThemeResolver` or `FlashMapManager` bean because those beans would
would not properly override the default beans provided by Spring
Framework. This commit adds conditional auto-configuration of these
bean types, preferring user-provided beans and falling back to
Framework-provided defaults.
Fixes gh-24207
4 years ago
asheCarry
17c0c7d9d6
Fix javadoc typo in ConfigDataLocation
...
See gh-24660
4 years ago
Phillip Webb
48661e79f5
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24683
4 years ago
Phillip Webb
7cbd57b635
Log FailureAnalyzer errors at trace level
...
Update `FailureAnalyzers` to log errors at `trace` rather than `debug`.
This should reduce noise when an analyzer unexpectedly fails and the
user is running with `--debug`.
Fixes gh-24630
4 years ago
Phillip Webb
76aa33b65a
Merge branch '2.3.x' into 2.4.x
4 years ago
Phillip Webb
a24ec9d372
Merge branch '2.2.x' into 2.3.x
4 years ago
Phillip Webb
46629ef5e4
Migrate away from pivotal-legacy/homebrew-tap
...
Update formula to use spring-boot rather than springboot. This will
allow both taps to be used at the same time.
See gh-24659
4 years ago
Phillip Webb
04616a01cf
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24681
4 years ago
Phillip Webb
ef09982b39
Merge branch '2.2.x' into 2.3.x
...
Closes gh-24680
4 years ago
Phillip Webb
25033ee5e7
Migrate away from pivotal-legacy/homebrew-tap
...
Update reference documentation to the new spring-io/homebrew-tap repo.
Closes gh-24659
4 years ago
Madhura Bhave
920136d908
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24678
4 years ago
Madhura Bhave
73a2a4b383
Consider context-path for WebTestClient baseUrl
...
Fixes gh-24168
4 years ago
Phillip Webb
5b126b01c0
Replace binder as contributors are processed
...
Update `ConfigDataEnvironment` so that the bootstrap `Binder` is
replaced as contributors are processed. The final `Binder` is now
also added without the `FAIL_ON_BIND_TO_INACTIVE_SOURCE` option so
that properties can be bound at the last stage even if values exist
in an inactive profile-specific document.
Closes gh-24669
4 years ago
Phillip Webb
ac4243d615
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24672
4 years ago
Phillip Webb
52e47c4275
Fix test for JSR-350 @Nonnull
...
Closes gh-24647
4 years ago
Phillip Webb
2b497b6aff
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24670
4 years ago
Phillip Webb
848ed65f5b
Add test for JSR-350 @Nonnull
...
Closes gh-24647
4 years ago
Stephane Nicoll
c014bb9880
Merge branch '2.3.x' into 2.4.x
...
See gh-24647
4 years ago
Stephane Nicoll
67d1f355d7
Fix Nullable reference
...
See gh-24647
4 years ago
Stephane Nicoll
4e6f15a466
Merge branch '2.3.x' into 2.4.x
...
See gh-24647
4 years ago
Stephane Nicoll
2bd78355dc
Reference javax.annotation.Nonnull support in reference guide
...
See gh-24647
4 years ago
Phillip Webb
c9f9246c59
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24657
4 years ago
Phillip Webb
9b9c3edfcd
Polish "Return -1 port for non-listening WebServers"
...
See gh-24606
4 years ago
Stefan Partusch
5c61df3131
Return -1 port for non-listening WebServers
...
Update `WebServer` implementations to return -1 from `getPort()` if
the server isn't listening on a port. This aligns the implementations
with the interface Javadoc.
See gh-24606
4 years ago
Phillip Webb
ab8080353e
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24654
4 years ago
Phillip Webb
2ad9a47d08
Support JSR-305 annotations on endpoint methods
...
Update `OperationMethodParameter` to additionally support JSR-305 based
`@Nullable` annotations.
Closes gh-24647
4 years ago
Scott Frederick
505340909a
Support symlinks in configtree property paths
...
Prior to this commit, the configtree property source would not traverse
into a sub-directory in a property path if the sub-directory was a
symbolic link. This commit allows symlinked sub-directories to be
traversed like any other sub-directory in the property path.
Fixes gh-24530
4 years ago
Madhura Bhave
615a8ae56e
Ignore documents that do not apply when checking mandatory locations
...
Closes gh-24584
4 years ago
Andy Wilkinson
89f29c933f
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24649
4 years ago
dreis2211
fe3217d2c4
Exclude starters from Javadoc aggregation
...
See gh-24648
4 years ago
Stephane Nicoll
e1ec70ac36
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24643
4 years ago
Stephane Nicoll
f33c7bc27c
Polish "Remove unnecessary semicolon"
...
See gh-24628
4 years ago
Andrey Kolchanov
097104584c
Remove unnecessary semicolon
...
See gh-24628
4 years ago
Madhura Bhave
86e94b95c3
Merge branch '2.3.x' into 2.4.x
4 years ago
Madhura Bhave
9928d74a9e
Revert fix to enable cors for actuator endpoints
...
The fix causes a Jersey application to fail in the absence
of a `CorsFilter` or `CorsConfigurationSource` bean.
See gh-11987
4 years ago
Stephane Nicoll
c19f7e696e
Polish
...
See gh-24597
4 years ago
Stephane Nicoll
1bc1258341
Polish "Make a field final"
...
See gh-24629
4 years ago
Andrey Kolchanov
0e3990931e
Make a field final
...
See gh-24629
4 years ago
Stephane Nicoll
052565ef2b
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24626
4 years ago
dreis2211
261b7a5b18
Update copyrights to 2021
...
See gh-24625
4 years ago
izeye
5e3f618f9d
Polish
...
See gh-24604
4 years ago
Stephane Nicoll
e3d7ab0e3b
Merge branch '2.3.x' into 2.4.x
4 years ago
Stephane Nicoll
d0a1c49873
Polish
...
See gh-24604
4 years ago
Stephane Nicoll
1261e08371
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24602
4 years ago
Stephane Nicoll
d86eba3b6b
Upgrade to Thymeleaf 3.0.12
...
Closes gh-24599
4 years ago
Stephane Nicoll
ff59bb3abf
Configure resources filtering encoding
...
Closes gh-24576
4 years ago
Stephane Nicoll
4cdfd6f13d
Polish "Handle missing manifest files in JarTypeFilter"
...
See gh-24597
4 years ago
Rob Edwards
86eecb01b3
Handle missing manifest files in JarTypeFilter
...
This commit makes sure that a jar file without a manifest is handled
properly (i.e. included in the repackaged archive).
See gh-24597
4 years ago
Madhura Bhave
b29ac37db6
Add docs about using InMemoryOAuth2AuthorizedClientService
...
Closes gh-24596
4 years ago
Madhura Bhave
a0afec120d
Add docs about using InMemoryOAuth2AuthorizedClientService
...
Closes gh-24313
4 years ago
Madhura Bhave
a714ba44ea
Update documentation containing examples of WebSecurityConfigurerAdapter
...
Closes gh-24551
4 years ago
Stephane Nicoll
0691ba600f
Polish "Detect Persistent and RelationshipProperties with Neo4j"
...
See gh-24239
4 years ago
Gerrit Meier
ab4b1c4e61
Detect Persistent and RelationshipProperties with Neo4j
...
See gh-24239
4 years ago
Stephane Nicoll
1f71927a9f
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24587
4 years ago
Stephane Nicoll
9e5a6c5228
Harmonize references to ActiveMQ Artemis
...
Closes gh-24586
4 years ago
dreis2211
f9fbadb8d9
Add JavaVersion entry for JDK 16
...
See gh-24453
4 years ago
Stephane Nicoll
09fa16c58c
Merge branch '2.3.x' into 2.4.x
4 years ago
Stephane Nicoll
306b964ce3
Fix multi-release JAR test on JDK 16
...
See gh-24453
4 years ago
dreis2211
fb207f73e7
Remove deprecated SpringBootContextLoader#getArgs()
...
See gh-24550
4 years ago
Stephane Nicoll
2c0bfb7674
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24578
4 years ago
izeye
97dd4c0871
Polish
...
See gh-24558
4 years ago
Madhura Bhave
af67e6fa54
Merge branch '2.3.x' into 2.4.x
4 years ago
Madhura Bhave
b82f5a408a
Add a note about disabling git info
...
See gh-24205
4 years ago
Madhura Bhave
f9d1a4526c
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24572
4 years ago
Madhura Bhave
a5c8b84511
Update version of git-properties plugin in the docs
...
Closes gh-24567
4 years ago
Madhura Bhave
c231f3da10
Merge branch '2.3.x' into 2.4.x
...
Closes gh-24570
4 years ago
Madhura Bhave
302ba77812
Improve documentation regarding git commit info
...
Closes gh-24205
4 years ago
Phillip Webb
5317d8a9bb
Change scope of bootstrap registered Binder
...
Update `ConfigDataEnvironment` so that the `Binder` is registered as
a prototype bootstrap instance. This allows it to be accessed early
but still replaced when a more complete version is available.
Fixes gh-24559
4 years ago
Phillip Webb
e1b158ec66
Add BootstrapRegistry Scope support
...
Update `BootstrapRegistry` so that it can be used to register instances
in either a `singleton` or `prototype` scope. The prototype scope has
been added so that instances can be registered and replaced later
if needed.
See gh-24559
4 years ago