Phillip Webb
13c0cf7e2a
Refine Javadoc to use @AutoConfiguration
...
See gh-32166
2022-08-25 11:48:07 -07:00
Phillip Webb
e31c295ee9
Merge branch '2.6.x' into 2.7.x
2022-08-24 18:13:03 -07:00
Phillip Webb
adc4e05eff
Polish
2022-08-24 18:12:57 -07:00
Phillip Webb
10ded39217
Merge branch '2.6.x' into 2.7.x
...
Closes gh-32167
2022-08-24 17:33:50 -07:00
Phillip Webb
24c2daa99d
Improve javadoc regarding use on @Bean methods
...
Closes gh-32166
2022-08-24 17:33:08 -07:00
Scott Frederick
257e236b06
Fix image-building unit tests on Windows
...
See gh-32000
2022-08-24 13:14:39 -05:00
Stephane Nicoll
7a91fa90d5
Merge branch '2.6.x' into 2.7.x
...
Closes gh-32145
2022-08-23 07:25:45 +02:00
Stephane Nicoll
7f2d4fceec
Polish "Allow Netty default leak detection to be overidden"
...
See gh-32144
2022-08-23 07:20:49 +02:00
Russell You
51f2e40c69
Allow Netty default leak detection to be overidden
...
See gh-32144
2022-08-23 07:12:24 +02:00
Stephane Nicoll
a6350b5992
Merge branch '2.6.x' into 2.7.x
...
Closes gh-32128
2022-08-22 06:38:38 +02:00
Stephane Nicoll
6d80b601b6
Upgrade to Testcontainers 1.17.3
...
Closes gh-32127
2022-08-22 06:37:56 +02:00
Scott Frederick
c16094e04b
Disable SELinux label security policy when building images
...
When using the Gradle `bootBuildImage` task or Maven
`spring-boot:build-image` goal on a Linux distribution with SELinux
enabled, binding the Docker socket in the builder container might
fail. This commit disables the `label` security policy in the builder
container to prevent this type of failure.
Fixes gh-32000
2022-08-19 13:56:34 -05:00
Phillip Webb
60e1cc510c
Merge branch '2.6.x' into 2.7.x
...
See gh-32085
2022-08-17 12:48:21 -07:00
Phillip Webb
bd74344025
Revert "Don't close jar files early"
...
This reverts commit b42f056ddbfd5041ef80d2d909dd2f5e51ec3ff0.
2022-08-17 11:38:42 -07:00
Phillip Webb
674022d401
Revert "Don't close nested jars or wrapper when parent is closed"
...
This reverts commit 360eb027befd51012614f5938fb9cdc9f557a577.
2022-08-17 11:37:19 -07:00
Stephane Nicoll
3fcfcc4a3b
Merge branch '2.6.x' into 2.7.x
...
Closes gh-32103
2022-08-17 13:33:24 +02:00
Stephane Nicoll
3b01325c6b
Use asList consistently
...
Closes gh-32102
2022-08-17 13:32:36 +02:00
Stephane Nicoll
ca63a6e9ad
Merge branch '2.6.x' into 2.7.x
...
Closes gh-32099
2022-08-17 09:10:02 +02:00
Stephane Nicoll
191593cf15
Review Git contribution documentation
...
Closes gh-31904
2022-08-17 08:58:56 +02:00
Stephane Nicoll
1c6624db44
Merge branch '2.6.x' into 2.7.x
...
Closes gh-32097
2022-08-17 08:34:38 +02:00
Stephane Nicoll
e94ddfa589
Polish "Explicit error message if source is not an archive"
...
See gh-31997
2022-08-17 08:33:54 +02:00
Nils Hartmann
a0f273a041
Explicit error message if source is not an archive
...
This commit split the existing assertion to provide an explicit error
message if the source file is not an archive.
See gh-31997
2022-08-17 08:30:03 +02:00
Stephane Nicoll
1b12ea71ee
Upgrade to Undertow 2.2.19.Final
...
Closes gh-32090
2022-08-16 09:56:15 +02:00
Stephane Nicoll
464c2ed83a
Upgrade to Maven Javadoc Plugin 3.4.1
...
Closes gh-32089
2022-08-16 09:56:11 +02:00
Stephane Nicoll
2550763669
Upgrade to Undertow 2.2.19.Final
...
Closes gh-32087
2022-08-16 08:46:00 +02:00
Stephane Nicoll
542267e244
Upgrade to Spring Security 5.7.3
...
Closes gh-32040
2022-08-16 07:14:53 +02:00
Stephane Nicoll
fd89ced078
Upgrade to Spring Security 5.6.7
...
Closes gh-32039
2022-08-16 07:14:15 +02:00
Phillip Webb
ef7aac8c14
Merge branch '2.6.x' into 2.7.x
...
Closes gh-32085
2022-08-15 17:59:06 -07:00
Phillip Webb
360eb027be
Don't close nested jars or wrapper when parent is closed
...
Update `JarFile` so that the `close()` method no longer closes nested
jars or the wrapper. Prior to this commit it was possible for a parent
jar file to be garbage collected and closed even though references still
existed to the nested jars. When this happened the nested jars would get
closed and any access to entries would result in `JarFile.ensureOpen()`
throwing an `IllegalStateException`. The user would often not see this
exception directly, but rather find `ClassNotFoundException` being
thrown.
Fixes gh-31853
2022-08-15 17:55:25 -07:00
Andy Wilkinson
9caad3d31b
Merge branch '2.6.x' into 2.7.x
...
Closes gh-32059
2022-08-10 12:28:26 +01:00
Andy Wilkinson
c9e69f555e
Test our Gradle plugin against Gradle 7.5.1
...
Closes gh-32058
2022-08-10 12:27:47 +01:00
Andy Wilkinson
0069fc831e
Upgrade to Dependency Management Plugin 1.0.13.RELEASE
...
Closes gh-32056
2022-08-10 12:15:51 +01:00
Andy Wilkinson
64a3276b78
Upgrade to Dependency Management Plugin 1.0.13.RELEASE
...
Closes gh-32055
2022-08-10 12:15:09 +01:00
Andy Wilkinson
8e3346c24f
Catch exception that's thrown on Java 11 and later
...
See gh-32034
2022-08-10 11:20:33 +01:00
Stephane Nicoll
556a4116d7
Upgrade to Reactor 2020.0.22
...
Closes gh-32038
2022-08-10 12:03:36 +02:00
Stephane Nicoll
e8c218908c
Upgrade to Reactor 2020.0.22
...
Closes gh-32037
2022-08-10 12:02:51 +02:00
Vedran Pavic
0e6cf07ec9
Polish LogFileWebEndpoint
...
See gh-32049
2022-08-10 09:12:57 +02:00
Andy Wilkinson
889c40355c
Tolerate Flyway 9
...
Closes gh-32034
2022-08-09 17:50:47 +01:00
Stephane Nicoll
caa2598b2b
Start building against Spring Security 5.7.3
...
See gh-32040
2022-08-09 14:07:37 +02:00
Stephane Nicoll
3fc7736c34
Start building against Reactor 2020.0.22 snapshots
...
See gh-32038
2022-08-09 14:07:11 +02:00
Stephane Nicoll
24c2ed3c78
Start building against Spring Security 5.6.7 snapshots
...
See gh-32039
2022-08-09 14:06:24 +02:00
Stephane Nicoll
19eb69c1bb
Start building against Reactor 2020.0.22 snapshots
...
See gh-32037
2022-08-09 14:05:53 +02:00
Andy Wilkinson
ff348f4c6b
Merge branch '2.6.x' into 2.7.x
...
Closes gh-32017
2022-08-09 10:57:44 +01:00
Andy Wilkinson
4a807ebbf4
Upgrade to Groovy 3.0.12
...
Closes gh-32008
2022-08-09 10:56:41 +01:00
Phillip Webb
9e1a69efc9
Merge branch '2.6.x' into 2.7.x
...
Closes gh-32031
2022-08-09 10:23:25 +01:00
Phillip Webb
2f85ea3a30
Protect against deeply nested maps
...
Update BasicJsonParser to fix the deeply nested map protection logic.
Fixes gh-32029
2022-08-09 10:21:13 +01:00
Stephane Nicoll
6e64f49593
Merge branch '2.6.x' into 2.7.x
...
Closes gh-32026
2022-08-09 09:53:13 +02:00
Stephane Nicoll
12c1da275b
Polish contribution
...
See gh-32004
2022-08-09 09:52:11 +02:00
Ionascu Stefan Ciprian
c441bafe27
Document the DefaultServlet is no longer being enabled by default
...
See gh-32004
2022-08-09 09:41:53 +02:00
Stephane Nicoll
ccf1b9ebe4
Upgrade to MySQL 8.0.30
...
Closes gh-32023
2022-08-08 21:06:20 +02:00