Andy Wilkinson
02ac089767
Polish "Support zip64 jars"
...
See gh-16091
2019-09-20 14:35:19 +01:00
Camille Vienot
1917e1eac5
Support zip64 jars
...
See gh-16091
2019-09-20 12:44:04 +01:00
Andy Wilkinson
d5fc324537
Upgrade to Asciidoctor Maven Plugin 1.6.0
...
Closes gh-17234
2019-09-20 11:59:16 +01:00
Stephane Nicoll
db44d734f8
Merge pull request #18288 from izeye
...
* pr/18288:
Fix a broken Asciidoctor syntax
Closes gh-18288
2019-09-20 08:51:09 +02:00
Johnny Lim
0243cfa23e
Fix a broken Asciidoctor syntax
...
Along the way, this commit also fixes a typo.
See gh-18288
2019-09-20 08:50:53 +02:00
Madhura Bhave
02759d65bf
Merge branch '2.1.x'
2019-09-19 16:32:11 -07:00
Madhura Bhave
f9d94c6ed0
Remove duplicate word in docs
2019-09-19 16:30:25 -07:00
Andy Wilkinson
39c1e47eb7
Use 3 decimal places at most for logged startup time
...
Fixes gh-18278
2019-09-19 10:18:23 +01:00
Andy Wilkinson
7d3e53c94c
Fix test expectations for run-fork JVM args on Java 13+
...
Closes gh-17008
2019-09-19 10:07:03 +01:00
Stephane Nicoll
19115d19f0
Merge branch '2.1.x'
...
Closes gh-18283
2019-09-19 09:24:14 +02:00
Stephane Nicoll
9c9833fc81
Merge pull request #18270 from AlexFalappa
...
* pr/18270:
Fix pre-defined logging group documentation
Closes gh-18270
2019-09-19 09:22:26 +02:00
Alessandro Falappa
6dab9bb224
Fix pre-defined logging group documentation
...
See gh-18270
2019-09-19 09:19:24 +02:00
Stephane Nicoll
37b40aae0a
Merge pull request #18281 from izeye
...
* pr/18281:
Polish
Closes gh-18281
2019-09-19 09:08:49 +02:00
Johnny Lim
b70be97cbf
Polish
...
See gh-18281
2019-09-19 09:03:38 +02:00
Stephane Nicoll
9f1243129c
Switch JDK 13 url check to release
2019-09-19 08:52:12 +02:00
Stephane Nicoll
5058259897
Upgrade Java 13 version in CI image
...
Closes gh-18277
2019-09-19 08:51:44 +02:00
Andy Wilkinson
d2b28ceba5
Don't add -Xverify:none to JVM args when running on Java 13
...
Closes gh-17008
2019-09-18 21:51:41 +01:00
Brian Clozel
ce2c26e934
Use Reactor's new Schedulers.boundedElastic()
...
Prior to this commit, Spring Boot would use `Schedulers.elastic()` when
required to process blocking tasks in a reactive environment.
reactor/reactor-core#1804 introduced a new scheduler,
`Schedulers.boundedElastic()` that behaves quite similarly but:
* will limit the number of workers thread
* will queue tasks if no worker thread is available and reject them is
the queue is exceeds a limit
This allows Spring Boot to schedule blocking tasks as before and allows
greater flexibility.
Fixes gh-18269
See gh-18276
2019-09-18 22:17:07 +02:00
Andy Wilkinson
9377b9a9e4
Support -- and # by default as Quartz datasource init comment prefixes
...
Closes gh-17435
2019-09-18 20:38:16 +01:00
Andy Wilkinson
bf56b24ca5
Merge pull request #11779 from rajadilipkolli
...
* gh-11779:
Use try-with-resources in HttpTunnelPayload
Closes gh-11779
2019-09-18 17:51:39 +01:00
rajadilipkolli
abcff3a3b3
Use try-with-resources in HttpTunnelPayload
...
See gh-11779
2019-09-18 17:49:24 +01:00
Andy Wilkinson
9d3586d0b8
Test DatabaseDriver.ORACLE now it's available from Maven Central
...
Closes gh-18274
2019-09-18 17:08:18 +01:00
Andy Wilkinson
dce9d3da82
Add dependency management for Oracle's JDBC driver
...
Closes gh-18242
2019-09-18 17:06:42 +01:00
Andy Wilkinson
b1307d4917
Merge pull request #18262 from aclement
...
* gh-18262:
Add Graal checks ahead of some interactions with ClassLoader methods
Closes gh-18262
2019-09-18 09:59:00 +01:00
Andy Clement
4fecefe149
Add Graal checks ahead of some interactions with ClassLoader methods
...
See gh-18262
2019-09-18 09:58:33 +01:00
Andy Wilkinson
b15e427a3e
Improve handling of non-standard status codes in WebFluxTags
...
Closes gh-18267
2019-09-18 09:52:39 +01:00
Andy Wilkinson
6534047fcf
Rework test slice annotation javadoc to reflect JUnit 5 default
...
Closes gh-18178
2019-09-17 17:32:29 +01:00
Andy Wilkinson
0a2ae89470
Merge pull request #18249 from AlexFalappa
...
* gh-18249:
Fix typos in HealthContributors definition
Closes gh-18249
2019-09-17 12:39:02 +01:00
Alessandro Falappa
38fb16a79d
Fix typos in HealthContributors definition
...
See gh-18249
2019-09-17 12:38:33 +01:00
Andy Wilkinson
5ea994d955
Merge pull request #18248 from AlexFalappa
...
* gh-18248:
Remove duplicated row from HealthIndicators table
Closes gh-18248
2019-09-17 12:37:23 +01:00
Alessandro Falappa
4aa186d6e5
Remove duplicated row from HealthIndicators table
...
See gh-18248
2019-09-17 12:36:51 +01:00
Andy Wilkinson
c662c404c5
Do not enable H2C by default when using Reactor Netty
...
Previously, Reactor Netty was the only embedded server that enabled
H2C by default. This commit updates the factory to only enable HTTP/2
when SSL has also been configured, aligning it with Jetty, Tomcat,
and Undertow.
If H2C is required, it can be enabled using a NettyServerCustomizer:
@Bean
NettyServerCustomizer h2cCustomizer() {
return (httpServer) ->
httpServer.protocol(HttpProtocol.HTTP11, HttpProtocol.H2C);
}
Closes gh-17867
2019-09-17 10:57:24 +01:00
Andy Wilkinson
d5adbbb626
Split appendices into multiple pages and include a ToC in each
...
Closes gh-16289
2019-09-17 09:44:40 +01:00
Stephane Nicoll
81ddebbc27
Merge branch '2.1.x'
...
Closes gh-18239
2019-09-16 15:12:38 +02:00
Stephane Nicoll
9434cb0e22
Keep a live reference of protocol resolvers rather than copying them
...
This commit makes sure that any subsequent call on addProtocolResolver
on the context will impact the ResourceLoader implementation that
DevTools sets on the context.
This makes sure that any custom ProtocolResolver that is set later in
the lifecycle is taken into account.
Closes gh-17214
2019-09-16 15:08:40 +02:00
Stephane Nicoll
b3b6605713
Merge branch '2.1.x'
...
Closes gh-18236
2019-09-16 14:23:26 +02:00
Stephane Nicoll
a642421661
Force creation of sources jar
...
Closes gh-18212
2019-09-16 14:22:26 +02:00
Andy Wilkinson
448f5b8650
Simplify error page config by dropping redundant support for Tomcat 7
...
Closes gh-17937
2019-09-16 11:48:02 +01:00
Andy Wilkinson
84b2438c4c
Upgrade to Jersey 2.29.1
...
Closes gh-17430
2019-09-16 11:32:02 +01:00
Andy Wilkinson
cc67213b1f
Correct capitalization of GemFire in the reference docs
...
Closes gh-18001
2019-09-16 11:28:50 +01:00
Andy Wilkinson
6f20ba9550
Remove mention of Spring IO Platform from reference docs
...
Closes gh-17986
2019-09-16 11:22:36 +01:00
Phillip Webb
ad32603635
Restore compatibility with MockRestServiceServer
...
Closes gh-17885
2019-09-16 10:17:41 +02:00
Stephane Nicoll
3d5530d15d
Merge branch '2.1.x'
...
Closes gh-18234
2019-09-16 10:03:19 +02:00
leoli
a0d2721e33
Use custom port for RSocket server over websocket
...
Prior to this change, the custom port configured for the RSocket
server would not be used if the server factory is using the
websocket transport and is provided with a custom
`ReactorResourceFactory`.
Fixes gh-18200
2019-09-16 09:53:10 +02:00
Stephane Nicoll
9065c4997d
Fix rebase from master
2019-09-16 09:52:55 +02:00
Stephane Nicoll
ece29bbdfc
Merge pull request #18214 from leonard84
...
* pr/18214:
Polish Add Testable to CLASS_ANNOTATIONS in TestTypeExcludeFilter"
Add Testable to CLASS_ANNOTATIONS in TestTypeExcludeFilter
Closes gh-18214
2019-09-16 09:46:01 +02:00
Stephane Nicoll
e05f42f0f3
Polish Add Testable to CLASS_ANNOTATIONS in TestTypeExcludeFilter"
...
See gh-18214
2019-09-16 09:44:01 +02:00
Leonard Brünings
b9c8d7dd60
Add Testable to CLASS_ANNOTATIONS in TestTypeExcludeFilter
...
See gh-18214
2019-09-16 09:42:55 +02:00
Stephane Nicoll
f06c2503b7
Merge pull request #18151 from eddumelendez
...
* pr/18151:
Polish "Add ROLLING_FILE_NAME_PATTERN for File Appender"
Add ROLLING_FILE_NAME_PATTERN for File Appender
Closes gh-18151
2019-09-16 09:28:30 +02:00
Stephane Nicoll
a0d7d52106
Polish "Add ROLLING_FILE_NAME_PATTERN for File Appender"
...
See gh-18151
2019-09-16 09:28:15 +02:00