Andy Wilkinson
202d5b65e4
Upgrade to Byte Buddy 1.7.9
...
Closes gh-10994
2017-11-13 11:01:02 +00:00
Andy Wilkinson
d01716238f
Upgrade to Netty 4.1.17.Final
...
Closes gh-10993
2017-11-13 11:01:02 +00:00
Andy Wilkinson
ca971e5b34
Upgrade to Hikaricp 2.7.3
...
Closes gh-10992
2017-11-13 11:01:01 +00:00
Andy Wilkinson
95703aa7fb
Upgrade to Cassandra Driver 3.3.1
...
Closes gh-10991
2017-11-13 11:01:00 +00:00
Andy Wilkinson
6567d7bd2f
Upgrade to Couchbase Client 2.5.2
...
Closes gh-10990
2017-11-13 11:01:00 +00:00
Andy Wilkinson
456a029f77
Merge branch '1.5.x'
2017-11-13 10:59:09 +00:00
Andy Wilkinson
2e320ef859
Upgrade to Thymeleaf 2.1.6.RELEASE
...
Closes gh-10989
2017-11-13 10:58:21 +00:00
Stephane Nicoll
6470070d8c
Merge pull request #10986 from eddumelendez:junit_jupiter_5.0.2
...
* pr/10986:
Upgrade to JUnit Jupiter 5.0.2
2017-11-13 09:54:06 +01:00
Eddú Meléndez
0ea2184074
Upgrade to JUnit Jupiter 5.0.2
...
Closes gh-10986
2017-11-13 09:53:29 +01:00
Andy Wilkinson
d5fa4b069f
Start building against Spring Framework 5.0.2 snapshots
...
See gh-10982
2017-11-12 17:51:49 +00:00
Andy Wilkinson
f10ac2f0bd
Merge pull request #10641 from Kristine Jetzke
...
* gh-10641:
Polish "Provide access to root URI from TestRestTemplate"
Provide access to root URI from TestRestTemplate
2017-11-12 12:15:10 +00:00
Andy Wilkinson
71632ac767
Polish "Provide access to root URI from TestRestTemplate"
...
See gh-10641
2017-11-12 12:11:57 +00:00
tinexw
c1205c3243
Provide access to root URI from TestRestTemplate
...
Closes gh-10641
2017-11-12 12:05:53 +00:00
Andy Wilkinson
e92e56dda5
Drop LevelRemappingAppender
...
Drop LevelRemappingAppender as, following the changes made in e8f8556d
for gh-7657, it was no longer having any effect.
Closes gh-10842
2017-11-12 12:00:59 +00:00
Stephane Nicoll
5072d4ab04
Merge branch '1.5.x'
2017-11-12 12:38:24 +01:00
Stephane Nicoll
9e051e72e2
Add reference to @EntityScan for MongoDB
...
Closes gh-10947
2017-11-12 12:36:10 +01:00
Andy Wilkinson
eeede79ad6
Add dependency management from com.rabbitmq:amqp-client
...
Closes gh-7509
2017-11-12 11:30:42 +00:00
Andy Wilkinson
f1555319c4
Correct static-path-pattern property in WebFlux documentation
...
Closes gh-10843
2017-11-12 11:24:02 +00:00
Andy Wilkinson
806cf32549
Drop redundant web extension for sessions endpoint
...
Changes made in f1cfad67
mean that the web-specific extension is no
longer required as the infrastructure now automatically produces a
bad request (400) response when a required query parameter is absent.
See gh-10372
2017-11-12 11:19:14 +00:00
Andy Wilkinson
8d04525eb7
Document that sessions endpoint not available for reactive sessions
...
Closes gh-10882
2017-11-12 11:10:05 +00:00
Andy Wilkinson
c7cac927f7
Bring spring-boot-actuator's README up to date
...
Closes gh-10686
2017-11-12 11:00:48 +00:00
Andy Wilkinson
00f41a9056
Update docs to reflect that an endpoint's ID is no longer configurable
...
Closes gh-10862
2017-11-12 10:52:39 +00:00
Andy Wilkinson
b311237906
Update docs to reflect change to default Filter dispatcher type
...
Closes gh-10888
See gh-7467
2017-11-12 10:49:44 +00:00
Andy Wilkinson
ec7840e049
Align Actuator sample's tests with endpoint contextId changes
...
See gh-10980
2017-11-11 21:32:07 +00:00
Andy Wilkinson
2723892be3
Consistently include context id in endpoint responses
...
Closes gh-10980
2017-11-11 20:48:18 +00:00
Andy Wilkinson
07462be090
Polish
2017-11-11 16:29:12 +00:00
Andy Wilkinson
89173bd227
Upgrade to Spring Kafka 2.1.0.RC1
...
Closes gh-10975
2017-11-11 16:21:35 +00:00
Stephane Nicoll
dac7d9c174
Rename AutoConfigurationReportLoggingInitializer to ConditionEvaluationReportLoggingListener
...
Closes gh-2945
2017-11-10 16:20:13 +01:00
Stephane Nicoll
26158c1ee2
Add default order for JobLauncherCommandLineRunner
...
Closes gh-2943
2017-11-10 16:06:39 +01:00
Stephane Nicoll
4e88db9883
Scan converters with @WebMvcTest and @WebFluxTest
...
This commit makes sure to automatically scan `Converter` and
`GenericConverter` beans when a test uses `@WebMvcTest` or
`@WebFluxTest`.
Closes gh-10802
2017-11-10 15:58:27 +01:00
Stephane Nicoll
c40517b0ce
Merge pull request #10944 from ryonday:redis-cache-config
...
* pr/10944:
Polish "Improve cache auto-configuration for Redis"
Improve cache auto-configuration for Redis
Respond to MR feedback
Improve spring-boot-autoconfigure for Redis caches
2017-11-10 14:45:30 +01:00
Stephane Nicoll
46ef178f04
Polish "Improve cache auto-configuration for Redis"
...
Closes gh-10944
2017-11-10 14:42:50 +01:00
Stephane Nicoll
9ffda68af8
Merge remote-tracking branch 'origin/pr/10944' into pr/10944
2017-11-10 14:33:38 +01:00
Ryon
a4ed406ee8
Improve cache auto-configuration for Redis
...
Expose key prefix, TTL and null value settings for spring-data-redis'
RedisCacheConfiguration in Spring .properties/yml configuration files.
Example:
spring.cache.redis.ttl=PT15M
spring.cache.redis.keyPrefix=foo
spring.cache.redis.useKeyPrefix=false
spring.cache.redis.cacheNullValues=false
See gh-10795
2017-11-10 11:30:46 +01:00
Stephane Nicoll
25ddd4713a
Merge pull request #10972 from izeye:standard-charsets
...
* pr/10972:
Utilize StandardCharsets
2017-11-10 09:49:41 +01:00
Johnny Lim
bd0dcfb172
Utilize StandardCharsets
...
Closes gh-10972
2017-11-10 09:49:13 +01:00
Andy Wilkinson
e9c81bf702
Polish
2017-11-09 17:07:15 +00:00
Andy Wilkinson
f02c390ee5
Simplify commons-logging exclusions and remove redundant dep mgmnt
...
c719ab7a
adding dependency management for a number of Apache Commons
projects to exclude commons-logging and resolve problems with
dependency convergence.
As Boot's dependencies have evolved, much of this dependency
management has become redundant. This commit removes it, and excludes
commons-logging in the single starter that still needs it instead.
Closes gh-7050
2017-11-09 15:53:14 +00:00
Andy Wilkinson
544da5e612
Reinstate 2nd blank line after lists at end of .adoc files
...
Without the 2nd blank line, Asciidoctor does not render the content
in the next file correctly or omits it entirely.
Closes gh-10946
2017-11-09 15:34:47 +00:00
Andy Wilkinson
f4570710c1
Make Tomcat auto-config back off when UpgradeProtocol is absent
...
Closes gh-10960
2017-11-09 14:42:14 +00:00
Stephane Nicoll
ad94181914
Merge pull request #10959 from dreis2211:use-compare-for-sorting-of-primitives
...
* pr/10959:
Use Integer::compare in AutoConfigurationSorter
2017-11-09 09:51:03 +01:00
dreis2211
93b1ebb7fa
Use Integer::compare in AutoConfigurationSorter
...
Closes gh-10959
2017-11-09 09:50:38 +01:00
Madhura Bhave
3be521e825
Add DefaultHandlerExceptionResolver to child context
...
Fixes gh-10560
2017-11-08 17:52:24 -08:00
Madhura Bhave
7c3e555ff9
Update Security features documentation
...
Closes gh-10844
2017-11-08 13:27:28 -08:00
Stephane Nicoll
8230cc5028
Upgrade to Thymeleaf 3.0.9.RELEASE
...
Closes gh-10954
2017-11-08 16:10:17 +01:00
Madhura Bhave
8db77a6a61
Properly configure tldSkipPatterns for Tomcat
...
Fixes gh-10391
2017-11-07 14:54:32 -08:00
Ryon
1ba646965c
Respond to MR feedback
...
* Remove unnecessary formatting changes
* Discontinue use of Optional for Redis property configuration
* Remove @see tags
* Change verbiage for property descriptions
Fixes gs-10795
2017-11-07 10:32:28 -06:00
Stephane Nicoll
424793d806
Merge branch '1.5.x'
2017-11-07 08:46:29 +01:00
Stephane Nicoll
f975e8d363
Merge pull request #10941 from izeye:null-check
...
* pr/10941:
Add missing null check in FileSystemWatcher.stopAfter()
2017-11-07 08:45:45 +01:00
Johnny Lim
b965171b41
Add missing null check in FileSystemWatcher.stopAfter()
...
Closes gh-10941
2017-11-07 08:45:25 +01:00