Phillip Webb
a81f37dd68
Escape '{reference}' elements in asciidoc files
...
Escape lines that look like variable references but should actually be
included verbatim.
Closes gh-17386
2019-07-01 11:02:05 -07:00
Andy Wilkinson
34e0db2c25
Merge branch '2.0.x' into 2.1.x
...
Closes gh-17382
2019-07-01 15:57:21 +01:00
Andy Wilkinson
0c44584b44
Merge branch '1.5.x' into 2.0.x
2019-07-01 15:57:00 +01:00
Andy Wilkinson
4083c721f2
Fix URL normalization when replacing /./ with /
...
Previously, a regular expression of /./ was used to replace /./ with
/. The '.'' in the expression matches any single character so the
replacement was more broadly applicable than it should have been. For
example, /a/ would be replaced with /.
This commit uses Pattern.LITERAL to compile the regular expression
from the CURRENT_DIR (/./) contant. This allows the constant to be
used to check for occurances of /./ in the string before attempting
replacement, while also ensuring that the '.' is treated literally.
Closes gh-17341
2019-07-01 15:42:54 +01:00
Dmytro Nosan
ae184874e9
Polish WebServiceTemplateBuilder
...
See gh-17289
2019-06-29 22:19:03 +01:00
Johnny Lim
408035fb3f
Remove System.out.println() in a test
...
See gh-17358
2019-06-29 21:18:44 +01:00
Johnny Lim
8dea74a2e9
Add a missing quote in DebugLogbackConfigurator
...
See gh-17357
2019-06-29 21:14:42 +01:00
Andy Wilkinson
f4e7b80651
Merge branch '2.0.x' into 2.1.x
...
See gh-17361
2019-06-29 20:38:18 +01:00
Andy Wilkinson
761856ac70
Merge branch '1.5.x' into 2.0.x
2019-06-29 20:29:16 +01:00
Phillip Webb
92bff3c328
Merge branch '2.0.x' into 2.1.x
2019-06-28 23:42:28 -07:00
Phillip Webb
cfeb0239b7
Merge branch '1.5.x' into 2.0.x
2019-06-28 23:28:34 -07:00
Phillip Webb
9aa4887376
Merge branch '2.0.x' into 2.1.x
2019-06-28 14:14:52 -07:00
Phillip Webb
ed3e1e076d
Fix AbstractFilterRegistrationBean merge error
...
Merging 1.5.x accidentally broke `AbstractFilterRegistrationBean`
2019-06-28 14:13:59 -07:00
Phillip Webb
de35efd1ef
Merge branch '2.0.x' into 2.1.x
2019-06-28 12:21:57 -07:00
Phillip Webb
bb34846630
Merge branch '1.5.x' into 2.0.x
2019-06-28 12:19:46 -07:00
Andy Wilkinson
91786bc712
Merge branch '2.0.x' into 2.1.x
...
Closes gh-17334
2019-06-27 11:39:17 +01:00
Andy Wilkinson
256a0d636d
Merge branch '1.5.x' into 2.0.x
2019-06-27 11:39:02 +01:00
Andy Wilkinson
3fb06ee29e
Merge branch '2.0.x' into 2.1.x
...
Closes gh-17320
2019-06-26 17:39:13 +01:00
Andy Wilkinson
4973a2b217
Merge branch '1.5.x' into 2.0.x
2019-06-26 17:37:39 +01:00
Phillip Webb
02e705c8e4
Relax nohttp requirement for service.wsdl
...
Unfortunately https references cause eclipse errors so we need to
relax the requirement for this file.
Fixes gh-17307
2019-06-25 11:17:27 -07:00
Stephane Nicoll
374e02cac8
Simplify HibernateJpaAutoConfiguration classes check
...
This commit removes the now outdated `HibernateEntityManagerCondition`
in favour of a simple check of `SessionImplementor`. As of
Hibernate 5.2, a single `hibernate-core` jar is required so a single
class check is enough.
Closes gh-17288
2019-06-21 15:26:07 +02:00
Stephane Nicoll
86ace26049
Fix broken link to Spring Integration reference guide
...
Closes gh-17279
2019-06-21 09:09:01 +02:00
Andy Wilkinson
a5ae1de706
Fix spring-boot-loader's tests on Windows
...
Closes gh-17275
2019-06-20 11:08:35 +01:00
Stephane Nicoll
7e5ca6d280
Merge branch '2.0.x' into 2.1.x
...
Closes gh-17268
2019-06-19 15:30:13 +02:00
Stephane Nicoll
11dee3c0d8
Merge branch '1.5.x' into 2.0.x
2019-06-19 15:27:49 +02:00
Phillip Webb
3eb7af1506
Upgrade to Infinispan 9.4.15.Final
...
Closes gh-17235
2019-06-17 19:42:33 -07:00
Phillip Webb
d82ccf1405
Ensure META-INF/MANIFEST.MF remains as first entry
...
Update Gradle archive tasks to ensure that `META-INF/` and
`META-INF/MANIFEST.MF` remain as the first entries of the archive.
Prior to this commit, rewritten archives would violate the implicit
specification of `JarInputStream` that these entries should be first.
Fixes gh-16698
2019-06-17 15:48:14 -07:00
Phillip Webb
692bda1595
Polish "Fix connection timeout configuration for Netty"
...
See gh-16535
2019-06-17 11:26:36 -07:00
ayudovin
b0e4c716d3
Fix connection timeout configuration for Netty
...
Update `NettyWebServerFactoryCustomizer` to deal with the fact that
Netty treats `0` and negative connection timeout values differently to
Tomcat, Undertow and Jetty.
See gh-16535
2019-06-17 11:24:35 -07:00
ayudovin
c2d1cb2c70
Chain predicates in PropertyMapper when methods
...
Update `PropertyMapper` to correctly combine predicates when repeated
calls are made to `when` and `whenNot`. Prior to this commit, subsequent
invocations would replace the previous predicate.
Fixes gh-17225
2019-06-17 11:21:56 -07:00
Andy Wilkinson
88fbc529e6
Upgrade to Micrometer 1.1.5
...
Closes gh-17222
2019-06-17 16:15:44 +01:00
Andy Wilkinson
fe9db792ee
Complete dependency management for JavaBeans Activation Framework
...
Fixes gh-17062
2019-06-17 16:00:39 +01:00
Andy Wilkinson
645514f848
Polish "Honour base path from @WebAppConfiguration in @WebMvcTest"
...
See gh-16485
2019-06-17 13:54:41 +01:00
Lorenzo Dee
7340d546b8
Honour base path from @WebAppConfiguration in @WebMvcTest
...
See gh-16485
2019-06-17 13:37:55 +01:00
Andy Wilkinson
5dc2339ec2
Polish "Consider properties from @AutoConfigureTestDatabase"
...
See gh-16814
2019-06-17 11:38:13 +01:00
András Deák
92256c80d0
Consider properties from @AutoConfigureTestDatabase
...
Both Flyway and Liquibase makes use of DataSourceProperties to get
default properties. Previously, both used strictly the configuration
properties and failed to consider embedded datasource properties
autoconfigured by @AutoConfigureTestDatabase. In case a database layer
test e.g. @JdbcTest relies on the autoconfigured embedded datasource,
Flyway and Liquibase autoconfiguration fails as they are not aware of
the embedded datasource properties.
See gh-16814
2019-06-17 11:09:29 +01:00
Andy Wilkinson
c2a4a3f630
Polish "Auto-configure caching in jOOQ sliced tests"
...
See gh-17066
2019-06-17 10:55:35 +01:00
Dmytro Nosan
4701d8f82a
Auto-configure caching in jOOQ sliced tests
...
See gh-17066
2019-06-17 10:55:35 +01:00
Andy Wilkinson
13a7a52c71
Revert "Work around Framework regression in handling of null model values"
...
This reverts commit 5fc67c545c
.
Closes gh-16991
2019-06-17 10:44:23 +01:00
Andy Wilkinson
7d59b78829
Fix handling of jar files with + chars in their path
...
Closes gh-17208
2019-06-17 10:31:51 +01:00
Andy Wilkinson
84c6313332
Upgrade to Spring Session Bom Bean-SR6
...
Closes gh-17209
2019-06-16 08:47:40 +01:00
Andy Wilkinson
fa8dc04751
Upgrade to Spring Kafka 2.2.7.RELEASE
...
Closes gh-17206
2019-06-15 10:42:14 +01:00
Andy Wilkinson
e842dc7f0c
Upgrade to Spring Integration 5.1.6.RELEASE
...
Closes gh-17205
2019-06-15 10:42:14 +01:00
Andy Wilkinson
88df70c4d0
Upgrade to Spring Amqp 2.1.7.RELEASE
...
Closes gh-17204
2019-06-15 10:42:14 +01:00
Andy Wilkinson
1b495f5a42
Merge branch '2.0.x' into 2.1.x
...
Closes gh-17195
2019-06-14 15:47:39 +01:00
Andy Wilkinson
4bae91d933
Merge branch '1.5.x' into 2.0.x
2019-06-14 15:47:22 +01:00
Andy Wilkinson
96ac42e405
Upgrade to Spring Data Lovelace-SR9
...
Closes gh-17193
2019-06-14 15:24:32 +01:00
Andy Wilkinson
d5d96dff96
Honor logback.debug property and write Logback statuses to console
...
Closes gh-16876
2019-06-14 15:12:05 +01:00
Andy Wilkinson
1aa193e30b
Upgrade to Maven War Plugin 3.2.3
...
Closes gh-17168
2019-06-14 12:13:55 +01:00
Andy Wilkinson
a3bc383019
Upgrade to Neo4j Ogm 3.1.11
...
Closes gh-17167
2019-06-14 12:13:55 +01:00
Andy Wilkinson
491f5f3233
Upgrade to Infinispan 9.4.14.Final
...
Closes gh-17166
2019-06-14 12:13:55 +01:00
Andy Wilkinson
53c0860151
Upgrade to Hibernate Validator 6.0.17.Final
...
Closes gh-17165
2019-06-14 12:13:55 +01:00
Andy Wilkinson
bc713a6825
Upgrade to Jaybird 3.0.6
...
Closes gh-17164
2019-06-14 12:13:54 +01:00
Andy Wilkinson
8b44d07944
Upgrade to Jetty 9.4.19.v20190610
...
Closes gh-17163
2019-06-14 12:13:54 +01:00
Andy Wilkinson
24242ec476
Upgrade to Tomcat 9.0.21
...
Closes gh-17162
2019-06-14 12:09:44 +01:00
Andy Wilkinson
9a54ec2346
Upgrade to Solr 7.7.2
...
Closes gh-17161
2019-06-14 12:09:43 +01:00
Andy Wilkinson
34b55818d8
Upgrade to Johnzon Jsonb 1.1.12
...
Closes gh-17160
2019-06-14 12:09:42 +01:00
Andy Wilkinson
632d2665e8
Upgrade to Httpclient 4.5.9
...
Closes gh-17159
2019-06-14 12:09:40 +01:00
Andy Wilkinson
eec7cbb7e3
Upgrade to Byte Buddy 1.9.13
...
Closes gh-17158
2019-06-14 12:09:40 +01:00
Andy Wilkinson
9bcf7a2cfd
Upgrade to Undertow 2.0.21.Final
...
Closes gh-17157
2019-06-14 12:09:38 +01:00
Andy Wilkinson
48631c75d8
Upgrade to Rxjava2 2.2.9
...
Closes gh-17156
2019-06-14 12:09:37 +01:00
Andy Wilkinson
93dc36655a
Upgrade to Lettuce 5.1.7.RELEASE
...
Closes gh-17155
2019-06-14 12:09:36 +01:00
Andy Wilkinson
b347c4ddb5
Upgrade to Unboundid Ldapsdk 4.0.11
...
Closes gh-17154
2019-06-14 12:09:34 +01:00
Andy Wilkinson
27f05d335c
Upgrade to Appengine Sdk 1.9.75
...
Closes gh-17153
2019-06-14 12:09:33 +01:00
Andy Wilkinson
f43a1384a2
Upgrade to Couchbase Client 2.7.7
...
Closes gh-17152
2019-06-14 12:09:32 +01:00
Andy Wilkinson
b6d9c6ee6c
Merge branch '2.0.x' into 2.1.x
...
Closes gh-17150
2019-06-14 12:01:43 +01:00
Andy Wilkinson
4828c19f8f
Merge branch '1.5.x' into 2.0.x
2019-06-14 12:00:45 +01:00
Stephane Nicoll
0bda2d996a
Upgrade to Reactor Californium-SR9
...
Closes gh-16962
2019-06-14 12:13:17 +02:00
Stephane Nicoll
fc660bbe5c
Upgrade to Spring Framework 5.1.8.RELEASE
...
Closes gh-16961
2019-06-14 12:11:19 +02:00
Andy Wilkinson
c12ccfb342
Close JarFile if failure occurs during construction
...
Fixes gh-17123
2019-06-12 12:59:14 +01:00
Andy Wilkinson
4222c5b8ce
Prevent URLResource and JarURLConnection from leaking an InputStream
...
Fixes gh-17121
2019-06-12 12:53:16 +01:00
Andy Wilkinson
df9a6a0f4f
Wait for up to 30s for access logs to be written during shutdown
...
Closes gh-17119
2019-06-12 12:40:11 +01:00
Andy Wilkinson
2833f60344
Avoid leaving streams open when writing libraries
...
Fixes gh-17115
2019-06-12 12:28:07 +01:00
Andy Wilkinson
7103eab2e6
Close JarFiles when looking for Class-Path manifest entries
...
Fixes gh-17095
2019-06-12 11:36:34 +01:00
dreis2211
23b09ecca6
Make dependency available for javadoc generation
...
See gh-17111
2019-06-12 08:18:26 +01:00
Andy Wilkinson
95d0e26c35
Fix command DevTools uses to shut down in-memory Derby DB
...
Closes gh-17099
2019-06-11 10:29:09 +01:00
Phillip Webb
fed11febec
Fix checkstyle violations
2019-06-07 12:48:55 -07:00
Phillip Webb
866e2b712e
Merge branch '2.0.x' into 2.1.x
2019-06-07 12:35:28 -07:00
Phillip Webb
2c8881a908
Merge branch '1.5.x' into 2.0.x
2019-06-07 12:34:13 -07:00
Andy Wilkinson
24925c3dae
Merge branch '2.0.x' into 2.1.x
...
Closes gh-17078
2019-06-07 10:50:34 +01:00
Andy Wilkinson
c6c139d980
Merge branch '1.5.x' into 2.0.x
2019-06-07 10:46:31 +01:00
Phillip Webb
0ef331018e
Merge branch '2.0.x' into 2.1.x
2019-06-04 14:30:52 -07:00
Phillip Webb
7fc01971ed
Merge branch '1.5.x' into 2.0.x
2019-06-04 14:20:25 -07:00
Phillip Webb
ccfbd03482
Merge branch '2.0.x' into 2.1.x
2019-06-04 02:07:14 -07:00
Phillip Webb
b442d3b906
Merge branch '1.5.x' into 2.0.x
2019-06-04 01:49:03 -07:00
Phillip Webb
5fba43aa31
Merge branch '1.5.x' into 2.0.x
2019-06-04 00:05:57 -07:00
Phillip Webb
8e268987ff
Improve thread safety in property source cache
...
Update `SpringIterableConfigurationPropertySource` so that they cache
and cache key are not stored in different fields. Prior to this commit
it was possible that the an incorrect cache could be returned from
because the key and cache were out of sync.
This commit also allows more lenient handling of ConcurrentModification
exceptions if they are thrown during cache retrieval.
Closes gh-17017
See gh-17013
2019-05-29 16:05:24 -07:00
Johnny Lim
f52ab0040f
Handle all getters first in JavaBeanBinder
...
Update `JavaBeanBinder.addProperties` to add both `get` and `is` methods
before `set`.
See gh-17005
2019-05-29 11:15:41 -07:00
Johnny Lim
765b66c599
Add a missing @Test in JavaBeanBinderTests
...
See gh-17002
2019-05-29 14:17:41 +01:00
Andy Wilkinson
6b199c84d7
Upgrade to Jackson 2.9.9
...
Closes gh-16910
2019-05-29 09:02:25 +01:00
Phillip Webb
f380ba63eb
Exclude Groovy MetaClass from property meta-data
...
Update `TypeExcludeFilter` to exclude `groovy.lang.MetaClass`.
Closes gh-16981
2019-05-28 16:42:42 -07:00
Phillip Webb
09373622ca
Polish "Allow Tomcat be destroyed regardless of exceptions"
...
See gh-16892
2019-05-28 16:15:26 -07:00
Joao Silva
2b33e31a7c
Allow Tomcat be destroyed regardless of exceptions
...
Update `TomcatWebServer` so that lifecycle exceptions are silently
swallowed when attempting shutdown. Prior to this commit it was
possible that a Tomcat instance might not be properly destroyed and
could leave non daemon threads running, which prevent the JVM from
exiting.
Fixes gh-16892
2019-05-28 16:10:37 -07:00
Steve Crow
e0e871c77b
Add Nexmo to list of third-party starters
...
Closes gh-16944
2019-05-28 16:01:33 -07:00
Phillip Verheyden
2149ba4051
Use a regex that captures numbers and qualifiers
...
Fix the regular expression used in the devtools documentation to
include a version number pattern.
Closes gh-16946
2019-05-28 15:55:00 -07:00
Phillip Webb
af1720aa2e
Fix checkstyle issue
2019-05-28 15:52:00 -07:00
Phillip Webb
6913ea24b0
Polish "Fix NoClassDefFound when missing Spring Security"
...
See gh-16889
2019-05-28 14:56:58 -07:00
Vedran Pavic
e9bd11ee83
Fix NoClassDefFound when missing Spring Security
...
Update Spring Session auto-configuration to ensure that the
`DefaultCookieSerializer` doesn't break when Spring Security is not
present on the classpath.
Closes gh-16889
2019-05-28 14:55:18 -07:00
Phillip Webb
5fc67c545c
Work around Framework regression in handling of null model values
...
See https://github.com/spring-projects/spring-framework/issues/23038 .
2019-05-28 14:33:08 -07:00
Phillip Webb
278a0866cd
Polish "Fix Spring Data Cassandra auto-configure condition"
...
See gh-16971
2019-05-28 13:47:45 -07:00
Dmytro Nosan
be435130e6
Fix Spring Data Cassandra auto-configure condition
...
Update `CassandraDataAutoConfiguration` do that it's only applied when
a `Cluster` bean is found.
Fixes gh-16971
2019-05-28 13:47:40 -07:00
Phillip Webb
07ebfc036b
Polish
2019-05-28 13:17:56 -07:00
Johnny Lim
e2f69d040a
Use actual resolvedType when checking Binder cache
...
Update `JavaBeanBinder` so that the `isOfDifferentType` method checks
both the actual type and the resolved type. Prior to this commit, it
was possible that when `canCallGetValue` is `true` the `resolvedType`
could be different from `type.resolve`.
Closes gh-16974
2019-05-28 13:13:08 -07:00
Stephane Nicoll
2c364ceb89
Fix wrong ApplicationContext import
...
Closes gh-16978
2019-05-27 16:59:12 +02:00
Robeatoz
9f248c6043
Correct name and description of spring-boot-project module
...
This commit corrects the Maven project name and description of spring-boot-project to
avoid the already used name "Spring Boot Build".
See gh-16938
2019-05-25 08:08:36 +01:00
Andy Wilkinson
d964357bfa
Start building against snapshots for Reactor Californium-SR9
...
See gh-16962
2019-05-25 07:49:15 +01:00
Andy Wilkinson
636113823c
Start building against Spring Framework 5.1.8 snapshots
...
See gh-16961
2019-05-25 07:48:19 +01:00
Andy Wilkinson
60d60a8304
Use basedir as forked JVM's working directory in Maven plugin
...
Fixes gh-16811
2019-05-24 20:49:03 +01:00
Andy Wilkinson
32e1d68d2f
Upgrade to Couchbase Client 2.7.6
...
Closes gh-16909
2019-05-23 10:22:28 +01:00
Andy Wilkinson
46ecf7a928
Only unwrap when DataSource is a wrapper for required type
...
Closes gh-16863
2019-05-22 12:52:10 +01:00
Andy Wilkinson
da12ad0ca5
Make ReactiveSecurityAutoConfiguration back off without spring-webflux
...
Closes gh-16934
2019-05-22 12:33:59 +01:00
Andy Wilkinson
6c7a6a6c3d
Revert "Upgrade to Jackson 2.9.9"
...
This reverts commit 66fba9387a
.
See gh-16910
2019-05-21 17:00:16 +01:00
Andy Wilkinson
c8a02ed90a
Upgrade to Pooled Jms 1.0.5
...
Closes gh-16913
2019-05-21 09:29:07 +01:00
Andy Wilkinson
2ce650901f
Upgrade to Tomcat 9.0.20
...
Closes gh-16912
2019-05-21 09:29:07 +01:00
Andy Wilkinson
1af5fc7d62
Upgrade to Javax Cache 1.1.1
...
Closes gh-16911
2019-05-21 09:29:07 +01:00
Andy Wilkinson
66fba9387a
Upgrade to Jackson 2.9.9
...
Closes gh-16910
2019-05-21 09:29:07 +01:00
Phillip Webb
f790556f96
Polish 'Drop blocking RedisReactiveHealthIndicator calls'
...
See gh-16756
2019-05-14 21:28:30 -07:00
ayudovin
de857372a5
Drop blocking RedisReactiveHealthIndicator calls
...
Update `RedisReactiveHealthIndicator` so that `getReactiveConnection`
is not called directly since it blocks.
Fixed gh-16756
2019-05-14 21:23:40 -07:00
Phillip Webb
ed998ef0d3
Update copyright header of changed files
2019-05-14 21:04:50 -07:00
Phillip Webb
ab15b8e26d
Support overloaded setters when binding beans
...
Update `JavaBeanBinder` so that overloaded setters can be used when
binding. Prior to this commit the setter picked would depend on the
order that the JVM returned the declared methods. We now consistently
prefer using the setter with a parameter type that matches the getter.
Closes gh-16206
2019-05-14 21:02:16 -07:00
Phillip Webb
e2dc278cae
Use default SslContextFactory for JettyClient
...
Update the auto-configured Jetty `HttpClient` so that a default
`SslContextFactory` is used.
Prior to this commit connecting to https URLs would cause a
`NullPointerException`.
Fixed gh-16810
2019-05-14 20:04:02 -07:00
Phillip Webb
f665910cdb
Use generic type for binder cache comparisons
...
Update `JavaBeanBinder` so that previously cached beans are compared
using full generic type information. Prior to this commit binding would
fail if a class with the same resolved type, but different generics was
in the cache.
Fixes gh-16821
2019-05-14 18:42:16 -07:00
Stephane Nicoll
da96def966
Upgrade to Maven Jar Plugin 3.1.2
...
Closes gh-16842
2019-05-14 08:13:18 +02:00
Stephane Nicoll
eb6a2496e8
Upgrade to Spring Session Bom Bean-SR5
...
Closes gh-16841
2019-05-14 08:13:17 +02:00
Stephane Nicoll
6b0f1de5c8
Upgrade to Groovy 2.5.7
...
Closes gh-16840
2019-05-14 08:13:16 +02:00
Stephane Nicoll
870d31836b
Upgrade to Aspectj 1.9.4
...
Closes gh-16839
2019-05-14 08:13:15 +02:00
Stephane Nicoll
c4ab264bdb
Upgrade to Joda Time 2.10.2
...
Closes gh-16838
2019-05-14 08:13:14 +02:00
Stephane Nicoll
c2e077d9c1
Upgrade to Hazelcast 3.11.4
...
Closes gh-16837
2019-05-14 08:13:13 +02:00
Stephane Nicoll
424a6d21d8
Upgrade to Spring Data Lovelace-SR8
...
Closes gh-16724
2019-05-14 08:11:49 +02:00
Stephane Nicoll
98c94115de
Upgrade to Spring Integration 5.1.5
...
Closes gh-16749
2019-05-14 08:10:35 +02:00
Stephane Nicoll
3324125088
Upgrade to Spring Kafka 2.2.6
...
Closes gh-16751
2019-05-14 08:10:00 +02:00
Stephane Nicoll
8c77bf85f2
Upgrade to Spring AMQP 2.1.6
...
Closes gh-16753
2019-05-14 08:09:20 +02:00
Stephane Nicoll
4c1ef630c9
Restore lazy evaluation of project/build/finalName
...
This commit restores the read-only `finalName` so that its value can
be lazily resolved against `${project.build.finalName}`.
While doing the evaluation ourselves and not relying on a dedicated
field at all would have been better, the evaluation increased the
number of required dependencies for no good reason.
IDEs should not offer auto-completion for that read-only field and it
is not published in the generated site either.
Closes gh-16456
2019-05-13 11:14:21 +02:00
Marcus Eisele
94a9748ce0
Fix 'spring.resources.cache.period' for WebMvc
...
Before this change it got overwritten by forwarding an empty
CacheControl to Spring. Spring itself sets CacheSeconds already
correctly in absence (=null) of a CacheControl.
Also:
* Fixes bug in WebMvcAutoConfigurationTests.cachePeriod which
prevented it to assert anything
See gh-16488
Closes gh-16730
2019-05-10 23:18:54 +02:00
Brian Clozel
0b4934d140
Fix DefaultErrorWebExceptionHandler test
2019-05-10 17:43:45 +02:00
Stephane Nicoll
c4024d8b45
Upgrade to Spring Data Lovelace-SR7
...
Closes gh-16724
2019-05-10 17:04:11 +02:00
Stephane Nicoll
6f70ad9c1c
Upgrade to Spring Framework 5.1.7
...
Closes gh-16812
2019-05-09 18:14:29 +02:00
Andy Wilkinson
96f3a482f0
Polish "Enable minIdle by allowing timeBetweenEviction runs to be configured"
...
See gh-16703
2019-05-09 15:40:11 +01:00
Gemini Kim
1659d46028
Enable minIdle by allowing timeBetweenEviction runs to be configured
...
See gh-16703
2019-05-09 15:40:11 +01:00
Stephane Nicoll
7c92af003c
Upgrade to Reactor Californium-SR8
...
Closes gh-16723
2019-05-09 09:10:48 +02:00
Stephane Nicoll
c7141fbe9e
Upgrade to Maven Failsafe Plugin 2.22.2
...
Closes gh-16780
2019-05-09 09:10:27 +02:00
Stephane Nicoll
3f82b3327c
Upgrade to Maven Compiler Plugin 3.8.1
...
Closes gh-16779
2019-05-09 09:10:26 +02:00
Stephane Nicoll
b1f6a021ef
Upgrade to Lombok 1.18.8
...
Closes gh-16778
2019-05-09 09:10:25 +02:00
Stephane Nicoll
f2ea63d613
Upgrade to Neo4j Ogm 3.1.9
...
Closes gh-16777
2019-05-09 09:10:24 +02:00
Stephane Nicoll
73007757ec
Upgrade to Jetty El 8.5.40
...
Closes gh-16776
2019-05-09 09:10:23 +02:00
Stephane Nicoll
9629671a0a
Upgrade to Jooq 3.11.11
...
Closes gh-16775
2019-05-09 09:10:22 +02:00
Stephane Nicoll
6aeba7fcde
Upgrade to Jolokia 1.6.1
...
Closes gh-16774
2019-05-09 09:10:20 +02:00
Stephane Nicoll
4c92d88e60
Upgrade to Infinispan 9.4.13.Final
...
Closes gh-16773
2019-05-09 09:10:19 +02:00
Stephane Nicoll
25cb7ce814
Upgrade to Hibernate 5.3.10.Final
...
Closes gh-16772
2019-05-09 09:10:17 +02:00
Stephane Nicoll
a187376d54
Upgrade to Jetty 9.4.18.v20190429
...
Closes gh-16771
2019-05-09 09:10:16 +02:00