Andy Wilkinson
58be01a790
Try to make Jest auto-configuration tests more robust
2018-07-04 15:25:10 +01:00
Andy Wilkinson
468453b66e
Upgrade to Kotlin 1.2.51
...
Closes gh-13705
2018-07-04 14:22:39 +01:00
Andy Wilkinson
0e8206cdf4
Start building against Spring Framework 5.0.8 snapshots
...
See gh-13704
2018-07-04 14:18:32 +01:00
Andy Wilkinson
f173429327
Upgrade to Flatten Maven Plugin 1.0.1
...
Closes gh-13650
2018-07-03 13:33:04 +01:00
Andy Wilkinson
5220a08228
Upgrade to Xml Maven Plugin 1.0.2
...
Closes gh-13649
2018-07-03 13:33:03 +01:00
Andy Wilkinson
573f736374
Upgrade to Maven Resources Plugin 3.0.2
...
Closes gh-13648
2018-07-03 13:33:02 +01:00
Andy Wilkinson
83a56bac60
Upgrade to Maven Javadoc Plugin 3.0.1
...
Closes gh-13647
2018-07-03 13:33:01 +01:00
Andy Wilkinson
d3ef9fd2ba
Upgrade to Maven Enforcer Plugin 3.0.0-M2
...
Closes gh-13646
2018-07-03 13:33:00 +01:00
Andy Wilkinson
1c64496470
Upgrade to Jooq 3.10.8
...
Closes gh-13645
2018-07-03 13:32:59 +01:00
Andy Wilkinson
797efbd259
Upgrade to Solr 6.6.5
...
Closes gh-13644
2018-07-03 13:32:58 +01:00
Andy Wilkinson
c6dae8f305
Upgrade to Johnzon Jsonb 1.1.8
...
Closes gh-13643
2018-07-03 13:32:57 +01:00
Andy Wilkinson
aa5b70c43c
Upgrade to Rxjava2 2.1.16
...
Closes gh-13642
2018-07-03 13:32:57 +01:00
Andy Wilkinson
9120f49721
Merge branch '1.5.x' into 2.0.x
2018-07-03 13:24:19 +01:00
Andy Wilkinson
2dd744dfed
Upgrade to Git Commit Id Plugin 2.2.4
...
Closes gh-13640
2018-07-03 13:00:57 +01:00
Andy Wilkinson
ada3d325c3
Upgrade to Maven Enforcer Plugin 1.4.1
...
Closes gh-13639
2018-07-03 13:00:56 +01:00
Andy Wilkinson
25824a202f
Upgrade to Tomcat 8.5.32
...
Closes gh-13638
2018-07-03 13:00:55 +01:00
Andy Wilkinson
3a793c655a
Upgrade to Httpcore 4.4.10
...
Closes gh-13637
2018-07-03 13:00:55 +01:00
Madhura Bhave
d15ca6e0de
Update sync-to-maven-central CI job
...
Closes gh-13296
2018-07-02 13:57:34 -07:00
Madhura Bhave
673a08d228
Support microseconds in Duration conversions
...
Closes gh-13624
2018-07-02 13:18:09 -07:00
Andy Wilkinson
06a8c41943
Preserve trailing whitespace in origin-tracked property values
...
Closes gh-13602
2018-07-02 19:17:02 +01:00
Andy Wilkinson
032d5488cd
Tolerate non-existent source folders in DevTools
...
Closes gh-13620
2018-07-02 16:26:19 +01:00
Madhura Bhave
fddc9e9c7e
Support multiple paths in DispatcherServletPathProvider
...
Closes gh-13603
2018-06-28 12:36:58 -07:00
Andy Wilkinson
43ea78f2ce
Merge branch '1.5.x' into 2.0.x
2018-06-28 14:42:17 +01:00
Andy Wilkinson
6219ea27e8
Remove unwanted override of resource plugin's version
...
Closes gh-13607
2018-06-28 14:41:35 +01:00
Andy Wilkinson
a5d20ffed7
Avoid NPE when creating method tag for WebFlux req with non-standard method
...
Previously, a NullPointerException would occur when WebFluxTags
attempted to create a method Tag for a request with a non-standard
method.
This commit updates WebFluxTags to use getMethodValue(), which will
never return null, rather than getMethod(), which may return null,
when determining the tag's value for the given request.
Closes gh-13596
2018-06-28 14:27:02 +01:00
Madhura Bhave
5fd30a9dc2
Merge pull request #13572 from Christoph Dreis
...
* gh-13572:
Fix typo
2018-06-27 11:32:40 -07:00
dreis2211
17edf0e2fe
Fix typo
2018-06-27 11:31:06 -07:00
Madhura Bhave
a1491be636
Refine DispatcherServletPathProvider creation
...
Closes gh-13527
2018-06-27 11:06:56 -07:00
Andy Wilkinson
04119585e8
Merge branch '1.5.x' into 2.0.x
2018-06-25 13:13:34 +01:00
Andy Wilkinson
205bb764d5
Specify ID for cache providers section in reference docs
...
Closes gh-13551
2018-06-25 13:11:18 +01:00
Andy Wilkinson
74b8836da4
Merge branch '1.5.x' into 2.0.x
2018-06-25 12:39:47 +01:00
Andy Wilkinson
2f952fde6c
Polish
2018-06-25 12:39:31 +01:00
Andy Wilkinson
02ad1893a2
Merge branch '1.5.x' into 2.0.x
2018-06-25 12:01:25 +01:00
Andy Wilkinson
454de0bfd7
Polish
2018-06-25 12:01:17 +01:00
Andy Wilkinson
911453d478
Merge branch '1.5.x' into 2.0.x
2018-06-25 11:25:10 +01:00
Andy Wilkinson
953df7cf86
Merge pull request #13559 from Dmitry Sergeyev
...
* gh-13559:
Polish “Close Database to reset Connection's auto commit property”
Close Database to reset Connection's auto commit property
2018-06-25 11:07:47 +01:00
Andy Wilkinson
24d5209738
Polish “Close Database to reset Connection's auto commit property”
...
Closes gh-13559
2018-06-25 11:02:31 +01:00
dmsergeevp44
3498a91259
Close Database to reset Connection's auto commit property
...
Previously, LiquibaseEndpoint closed the JdbcConnection but did not
close the Database. When using a connection pool, this could leave the
underlying SQL Connection with its auto commit property set to false.
This commit updates LiquibaseEndpoint to close the Database. This
ensures that it resets that Connection's auto commit property to the
value that it had when the Database was configured to use the
Connection.
See gh-13559
2018-06-25 10:58:51 +01:00
Madhura Bhave
f10972ad32
Remove redundant build_number
...
Fixes gh-13442
2018-06-21 11:59:05 -07:00
Madhura Bhave
a7fb3cf182
Remove extra / from artifactory server param
...
Fixes gh-13535
2018-06-21 11:43:19 -07:00
Andy Wilkinson
30f0fd1fe4
Merge branch '1.5.x' into 2.0.x
2018-06-21 17:31:16 +01:00
Andy Wilkinson
f32c66d0e1
Merge pull request #12859 from ralenmdp
...
* gh-12859:
Polish "Fix JSP availability check when not running as a packaged war"
Fix JSP availability check when not running as a packaged war
2018-06-21 17:30:24 +01:00
Andy Wilkinson
b1d8cc55fc
Polish "Fix JSP availability check when not running as a packaged war"
...
Closes gh-12859
2018-06-21 17:30:12 +01:00
Mandap
82465cf435
Fix JSP availability check when not running as a packaged war
...
See gh-12859
2018-06-21 17:21:00 +01:00
Andy Wilkinson
aafe754746
Merge branch '1.5.x' into 2.0.x
2018-06-21 16:21:34 +01:00
Andy Wilkinson
b35e1ad232
Avoid unbounded metrics creation for requests not handled by Spring MVC
...
Previously, if an HTTP request that used a templated URI was handled
by something other than Spring MVC, a potentially unbounded number of
metrics would be created. This happened because, in the absence of
Spring MVC's best matching pattern attribute, MetricsFilter would fall
back to using the request's path. If the handling route was templated,
MetricsFilter would be unaware and would record different metrics for
each different path, rather than a single metric for the matching
pattern.
This cimmit updates MetricsFilter so that it falls back to using
unmapped when Spring MVC's best matching pattern attribute is not
available. This ensures that an unbounded number of metrics will no
longer be created, at the cost of losing specific metrics for requests
that are not handled by Spring MVC and that do not use a templated
path.
Closes gh-5875
2018-06-21 15:10:47 +01:00
Andy Wilkinson
fd125b4a4a
Remove assumption that a file URI can be turned into a File
...
Closes gh-13493
2018-06-21 12:47:23 +01:00
Stephane Nicoll
f2cc6e2ef2
Fix link of RESTEasy repository
...
Closes gh-13538
2018-06-21 13:32:07 +02:00
Stephane Nicoll
c594768640
Remove wro4j starter reference
...
This starter does not look maintained anymore and there is an
alternative that we also reference and has support for Spring Boot 2.
2018-06-21 13:32:07 +02:00
Stephane Nicoll
8858c88a4c
Remove GraphQL starter reference
...
This starter does not look maintained anymore and there is a fork of it
that we also reference and has support for Spring Boot 2.
2018-06-21 13:32:07 +02:00