Commit Graph

9407 Commits

Author SHA1 Message Date
Stephane Nicoll be3b5a9dc2 Only apply editorconfig for certain files
Closes gh-8497
2017-04-12 10:28:00 +02:00
Phillip Webb 758ddcd420 Polish 2017-04-11 20:17:23 -07:00
Madhura Bhave b2f0ebfcb8 Prevent empty json for parameters in trace endpoint
Fixes gh-8883
2017-04-11 15:30:39 -07:00
Stephane Nicoll 404bb2d171 Polish
See gh-8879
2017-04-11 09:37:22 +02:00
Stephane Nicoll ac98d2ac27 Merge pull request #8185 from phillipuniverse:master
* pr/8185:
  Polish "Clarify edge case docs on ConditionalOnClass"
  Clarify edge case docs on ConditionalOnClass
2017-04-10 16:12:53 +02:00
Stephane Nicoll 0a55e3e736 Polish "Clarify edge case docs on ConditionalOnClass"
Closes gh-8185
2017-04-10 16:12:11 +02:00
Phillip Verheyden 08f8219248 Clarify edge case docs on ConditionalOnClass
When used as a meta-annotation the value() attribute of
@ConditionalOnClass will fail silently resulting in the @Conditional
nature of the annotation being ignored.

See gh-8185
2017-04-10 15:58:17 +02:00
Stephane Nicoll a8860ba7e9 Clarify use of `@TestConfiguration`
As `@TestComponent` is an implementation detail at this point really, this
commit removes any reference to it from the doc.

Closes gh-8421
2017-04-10 15:54:08 +02:00
Andy Wilkinson 6564fb3d96 Consider all loader paths when checking template availability
Closes gh-8842
2017-04-10 13:37:32 +01:00
Stephane Nicoll caf30e3d9c Merge pull request #8703 from luispollo:patch-1
* pr/8703:
  Polish "Document HTTP response format of health endpoint"
  Document HTTP response format of health endpoint
2017-04-10 14:02:33 +02:00
Stephane Nicoll fd53945fe0 Polish "Document HTTP response format of health endpoint"
Closes gh-8703
2017-04-10 14:01:50 +02:00
Luis Fernando Pollo 1fa1ed2b28 Document HTTP response format of health endpoint
Add HTTP response format details for health endpoint, including default
status codes and sample responses.

See gh-8703
2017-04-10 13:51:07 +02:00
Stephane Nicoll 9d88e477f3 Fix Solr health indicator
This commit changes the solr health indicator to request the status of
all available cores, rather than invoking a generic ping on the admin
handler.

Recent versions of Solr now have a ping handler per core and the general
admin handler is gone, leading to incorrect health status. For backward
compatible reason the `solrStatus` attribute is kept to `OK` if all cores
are running properly (that's actually `0` behind the scenes).

Closes gh-8463
2017-04-10 13:38:08 +02:00
Stephane Nicoll 3c28687279 Merge pull request #8829 from stefan-huettemann:gh-8508
* pr/8829:
  Allow to disable max http post size limit
2017-04-10 10:55:08 +02:00
Dr. Stefan Hüttemann 0294ad3e95 Allow to disable max http post size limit
Closes gh-8508
2017-04-10 10:54:20 +02:00
Andy Wilkinson 492aee9cea Remove unused optional dependency
It should have been removed in 2522a5f9ef
2017-04-07 14:16:44 +01:00
Andy Wilkinson ceb80614e5 Polishing 2017-04-07 14:13:55 +01:00
Andy Wilkinson 60505a4fae Don't shut down "in-memory" DB running as a server on DevTools restart
Closes gh-8702
2017-04-07 13:47:40 +01:00
Andy Wilkinson 5dad7182db Address deprecation warnings 2017-04-07 12:01:01 +01:00
Andy Wilkinson d45d94520e Upgrade to Jolokia 1.3.6
Closes gh-8841
2017-04-06 20:27:47 +01:00
Andy Wilkinson f8767cc96e Upgrade to Freemarker 2.3.26-incubating
Closes gh-8840
2017-04-06 20:27:47 +01:00
Andy Wilkinson 2300dae88c Upgrade to Jetty 9.3.18.v20170406
Closes gh-8839
2017-04-06 20:27:47 +01:00
Andy Wilkinson 1375dfe102 Upgrade to Aspectj 1.8.10
Closes gh-8838
2017-04-06 20:27:47 +01:00
Andy Wilkinson 408b3c81df Upgrade to Tomcat 8.5.13
Closes gh-8837
2017-04-06 20:27:47 +01:00
Andy Wilkinson fe5e04c963 Upgrade to Hazelcast 3.6.8
Closes gh-8836
2017-04-06 20:27:47 +01:00
Andy Wilkinson d49a41e8cf Upgrade to Appengine 1.9.51
Closes gh-8835
2017-04-06 20:27:47 +01:00
Andy Wilkinson 5f77ef25e4 Upgrade to Jackson 2.8.8
Closes gh-8834
2017-04-06 20:27:47 +01:00
Phillip Webb ddcb5ee328 Polish 2017-04-04 09:36:27 -07:00
Andy Wilkinson 9374020b0e Stop -> from being replaced with → as the latter renders as # in PDF
Closes gh-8575
2017-04-04 17:00:16 +01:00
Andy Wilkinson 47de05b52c Update Devtools to ignore manifest Class-Path entries that do not exist
Closes gh-8623
2017-04-04 12:15:51 +01:00
Andy Wilkinson 456327260b Fail fast when a Zip64 jar is encountered
Previously, jars (either top-level or nested) in Zip64 format were
treated as normal jar files. This would lead to a failure later on
when an attempt was made to read an entry from the file.

This commit updates the loader to fail fast when it encounters a
Zip64 jar file. Such files are identified by the number of entries
in the central directory end record being 0xFFFF.

Closes gh-8735
2017-04-04 11:31:18 +01:00
Andy Wilkinson b280e3092d Don't forward to welcome page that won't exist due to custom mapping
Previously, WelcomePageHandlerMapping would forward to index.html.
This assumed that the static path pattern was always /**. If it had
been customised to, for example, /foo/**, then the forward would still
be to index.html and a 404 would result as the page is actually
available at /foo/index.html.

At first glance, it would appear that the forward should be made to
foo/index.html. However, as it's a forward rather than a redirect,
any relative URLs in the index.html page would then be resolved using
/ whereas they should be resolved using /foo/. This could be addressed
by using a redirect rather than a forward, but we don't want to do
that as it's more invasive and would require a roundtrip back to the
client. Instead, this commit simply stops performing the forward when
the static path pattern is not /**.

Closes gh-8788
2017-04-04 10:13:24 +01:00
Andy Wilkinson 4b1e5e9c43 Improve diagnostics when loading a property source from a file fails
Closes gh-8294
2017-04-04 10:02:10 +01:00
Andy Wilkinson 43f34546f6 Add .editorconfig to improve formatting when viewing on GitHub
Closes gh-8497
2017-04-04 09:26:50 +01:00
Andy Wilkinson 9fa8f2e317 Tweak Checkstyle plugin config so violations are output even with -q
Closes gh-8767
2017-03-28 19:59:08 +01:00
Stephane Nicoll 595fada2ff Merge pull request #8660 from dreis2211:cleanup-equals-exceptions
* pr/8660:
  Fix test assertions
2017-03-28 10:26:56 +02:00
dreis 1266642aba Fix test assertions
Closes gh-8660
2017-03-28 10:26:25 +02:00
Stephane Nicoll 113279c1bc Merge pull request #8678 from zeldan:patch-1
* pr/8678:
  Fix propdeps-plugin url in doc
2017-03-28 10:25:47 +02:00
Dániel Zelei cc30adf0df Fix propdeps-plugin url in doc
Closes gh-8678
2017-03-28 10:15:43 +02:00
Stephane Nicoll 22869f78a9 Merge pull request #8718 from andersonkyle:fix-typo
* pr/8718:
  Fix typo
2017-03-26 12:10:32 +02:00
Kyle Anderson 57977a654a Fix typo
Closes gh-8718
2017-03-26 12:10:04 +02:00
Andy Wilkinson a8788ba62c Upgrade to Webjars Locator 0.32-1
Closes gh-8734
2017-03-24 16:10:52 +00:00
Andy Wilkinson c49fb08c8f Upgrade to Spring Loaded 1.2.7.RELEASE
Closes gh-8733
2017-03-24 16:10:51 +00:00
Andy Wilkinson 35ce980b38 Upgrade to Slf4j 1.7.25
Closes gh-8732
2017-03-24 16:10:51 +00:00
Andy Wilkinson fb9ce48dc8 Upgrade to Lombok 1.16.16
Closes gh-8731
2017-03-24 16:10:50 +00:00
Andy Wilkinson de504f3464 Upgrade to Jooq 3.8.7
Closes gh-8730
2017-03-24 16:10:50 +00:00
Andy Wilkinson 0a5732bb14 Upgrade to Jboss Logging 3.3.1.Final
Closes gh-8729
2017-03-24 16:10:49 +00:00
Andy Wilkinson 31419ab038 Upgrade to Hibernate Validator 5.2.5.Final
Closes gh-8728
2017-03-24 16:10:48 +00:00
Andy Wilkinson 617bacbc44 Upgrade to Jetty 9.3.17.v20170317
Closes gh-8727
2017-03-24 16:10:47 +00:00
Andy Wilkinson 8e9975624e Upgrade to Groovy 2.4.10
Closes gh-8726
2017-03-24 16:10:47 +00:00