Stephane Nicoll
408c5cd1eb
Upgrade to Johnzon Jsonb 1.2.9
...
Closes gh-24777
2021-01-12 14:18:34 +01:00
Stephane Nicoll
f62f8811f9
Upgrade to Byte Buddy 1.10.19
...
Closes gh-24776
2021-01-12 14:18:33 +01:00
Stephane Nicoll
7aec55963c
Upgrade to Joda Time 2.10.9
...
Closes gh-24775
2021-01-12 14:18:31 +01:00
Stephane Nicoll
d567327ab8
Upgrade to Netty Tcnative 2.0.36.Final
...
Closes gh-24774
2021-01-12 14:18:30 +01:00
Stephane Nicoll
c02fc18f9f
Upgrade to Netty 4.1.56.Final
...
Closes gh-24773
2021-01-12 14:18:29 +01:00
Stephane Nicoll
13cd538df1
Upgrade to Dropwizard Metrics 4.1.17
...
Closes gh-24772
2021-01-12 14:18:27 +01:00
Stephane Nicoll
6bbe0029b5
Upgrade to Hazelcast 3.12.11
...
Closes gh-24771
2021-01-12 14:18:26 +01:00
Stephane Nicoll
4a890368b4
Upgrade to Appengine Sdk 1.9.84
...
Closes gh-24770
2021-01-12 14:18:25 +01:00
Andy Wilkinson
997505005b
Handle files larger than Integer.MAX_VALUE bytes in bootJar and bootWar
...
Fixes gh-24618
2021-01-12 13:11:46 +00:00
Stephane Nicoll
f02951fb17
Upgrade to Netty 4.1.56.Final
...
Closes gh-24764
2021-01-12 09:55:44 +01:00
Stephane Nicoll
2e69198f97
Upgrade to Neo4j OGM 3.2.19
...
Closes gh-24763
2021-01-12 09:55:43 +01:00
Stephane Nicoll
5fb1ca6043
Upgrade to Johnzon 1.2.9
...
Closes gh-24762
2021-01-12 09:55:41 +01:00
Stephane Nicoll
37f653121f
Upgrade to Jetty Reactive HTTPClient 1.1.5
...
Closes gh-24761
2021-01-12 09:55:40 +01:00
Stephane Nicoll
3ae9639cbb
Upgrade to Jackson Bom 2.11.4
...
Closes gh-24760
2021-01-12 09:55:38 +01:00
Stephane Nicoll
371e59cd80
Upgrade to Hibernate Validator 6.1.7.Final
...
Closes gh-24759
2021-01-12 09:55:37 +01:00
Stephane Nicoll
e48e48988a
Upgrade to Hibernate 5.4.27.Final
...
Closes gh-24758
2021-01-12 09:55:35 +01:00
Stephane Nicoll
66daeab221
Upgrade to Hazelcast 3.12.11
...
Closes gh-24757
2021-01-12 09:55:34 +01:00
Stephane Nicoll
682c952306
Upgrade to Dropwizard Metrics 4.1.17
...
Closes gh-24756
2021-01-12 09:55:32 +01:00
Stephane Nicoll
7ab9fad062
Upgrade to Byte Buddy 1.10.19
...
Closes gh-24755
2021-01-12 09:55:31 +01:00
Stephane Nicoll
b3bc79b10f
Upgrade to AppEngine SDK 1.9.84
...
Closes gh-24754
2021-01-12 09:55:29 +01:00
Phillip Webb
72dd3b5628
Merge branch '2.2.x' into 2.3.x
...
Closes gh-24747
2021-01-11 14:21:56 -08:00
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
2021-01-11 14:20:46 -08:00
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
2021-01-11 11:21:53 +00:00
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
2021-01-11 10:36:16 +00:00
Andy Wilkinson
5ad4d627fd
Fix classpath index so entries match those expected by the launcher
...
This reverts commit ad164269e9aa7d0f39362d78d946a146dac5fdee and adds
some additional tests.
Fixes gh-24192
2021-01-08 15:32:19 +00:00
Stephane Nicoll
826d79be3e
Clarify behaviour of WebServerFactory in reference guide
...
Closes gh-24705
2021-01-08 15:50:16 +01:00
Madhura Bhave
b309980a59
Automate homebrew tap repo update
...
Closes gh-24677
2021-01-07 14:21:01 -08:00
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
2021-01-07 15:59:02 -06:00
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
2021-01-06 17:29:24 -08:00
Phillip Webb
a24ec9d372
Merge branch '2.2.x' into 2.3.x
2021-01-06 17:01:22 -08:00
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
2021-01-06 16:58:05 -08:00
Phillip Webb
ef09982b39
Merge branch '2.2.x' into 2.3.x
...
Closes gh-24680
2021-01-06 16:46:50 -08:00
Phillip Webb
25033ee5e7
Migrate away from pivotal-legacy/homebrew-tap
...
Update reference documentation to the new spring-io/homebrew-tap repo.
Closes gh-24659
2021-01-06 16:45:10 -08:00
Madhura Bhave
73a2a4b383
Consider context-path for WebTestClient baseUrl
...
Fixes gh-24168
2021-01-06 16:42:09 -08:00
Phillip Webb
52e47c4275
Fix test for JSR-350 @Nonnull
...
Closes gh-24647
2021-01-06 12:33:25 -08:00
Phillip Webb
848ed65f5b
Add test for JSR-350 @Nonnull
...
Closes gh-24647
2021-01-06 12:04:58 -08:00
Stephane Nicoll
67d1f355d7
Fix Nullable reference
...
See gh-24647
2021-01-06 14:23:38 +01:00
Stephane Nicoll
2bd78355dc
Reference javax.annotation.Nonnull support in reference guide
...
See gh-24647
2021-01-06 08:58:13 +01:00
Phillip Webb
1e9bfd039c
Merge branch '2.2.x' into 2.3.x
2021-01-05 17:30:50 -08:00
Phillip Webb
27b0cf946f
Polish README and CONTRIBUTING files
2021-01-05 17:04:04 -08:00
Phillip Webb
619247b2d6
Update suggested Eclipse version to 2020-12
2021-01-05 16:46:31 -08:00
Phillip Webb
78259214bb
Merge pull request #24606 from spartusch
...
* pr/24606:
Polish "Return -1 port for non-listening WebServers"
Return -1 port for non-listening WebServers
Closes gh-24606
2021-01-05 16:02:40 -08:00
Phillip Webb
9b9c3edfcd
Polish "Return -1 port for non-listening WebServers"
...
See gh-24606
2021-01-05 16:02:26 -08:00
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
2021-01-05 15:56:25 -08:00
Phillip Webb
2ad9a47d08
Support JSR-305 annotations on endpoint methods
...
Update `OperationMethodParameter` to additionally support JSR-305 based
`@Nullable` annotations.
Closes gh-24647
2021-01-05 14:07:22 -08:00
Andy Wilkinson
05890a2599
Merge pull request #24648 from dreis2211
...
* gh-24648:
Exclude starters from Javadoc aggregation
Closes gh-24648
2021-01-05 17:13:06 +00:00
dreis2211
fe3217d2c4
Exclude starters from Javadoc aggregation
...
See gh-24648
2021-01-05 17:12:39 +00:00
Stephane Nicoll
691f905c0b
Merge pull request #24628 from andrey4623
...
* pr/24628:
Polish "Remove unnecessary semicolon"
Remove unnecessary semicolon
Closes gh-24628
2021-01-05 08:27:44 +01:00
Stephane Nicoll
f33c7bc27c
Polish "Remove unnecessary semicolon"
...
See gh-24628
2021-01-05 08:24:03 +01:00
Andrey Kolchanov
097104584c
Remove unnecessary semicolon
...
See gh-24628
2021-01-05 08:15:32 +01:00