Commit Graph

10674 Commits (00823d41a99b0f490bc27ab038c1eb1e80b350af)
 

Author SHA1 Message Date
Andy Wilkinson ac3071670f Merge branch '1.4.x' into 1.5.x 8 years ago
Andy Wilkinson 492aee9cea Remove unused optional dependency
It should have been removed in 2522a5f9ef
8 years ago
Andy Wilkinson ceb80614e5 Polishing 8 years ago
Andy Wilkinson bccbbc145e Merge branch '1.4.x' into 1.5.x 8 years ago
Andy Wilkinson 60505a4fae Don't shut down "in-memory" DB running as a server on DevTools restart
Closes gh-8702
8 years ago
Andy Wilkinson c74f0a70ca Merge branch '1.4.x' into 1.5.x 8 years ago
Andy Wilkinson 5dad7182db Address deprecation warnings 8 years ago
Andy Wilkinson ddd3f8ee6e Upgrade to Narayana 5.5.6.Final
Closes gh-8847
8 years ago
Andy Wilkinson 18f0e95442 Upgrade to Ehcache3 3.2.2
Closes gh-8846
8 years ago
Andy Wilkinson 82b809229e Upgrade to Undertow 1.4.12.Final
Closes gh-8845
8 years ago
Andy Wilkinson cf169e79b9 Upgrade to Hazelcast 3.7.7
Closes gh-8844
8 years ago
Stephane Nicoll fffb53ccf5 Fix neo4j embedded documentation
The neo4j embedded driver no longer embeds the neo4j kernel and users are
expected to add that dependency manually. We don't provide dependency
management for any of them so this commit updates the documentation to
refers to the official documentation.

Closes gh-8567
8 years ago
Andy Wilkinson 13a3f7c0c1 Merge branch '1.4.x' into 1.5.x 8 years ago
Andy Wilkinson 18e112821f Merge branch '1.4.x' into 1.5.x 8 years ago
Andy Wilkinson d45d94520e Upgrade to Jolokia 1.3.6
Closes gh-8841
8 years ago
Andy Wilkinson f8767cc96e Upgrade to Freemarker 2.3.26-incubating
Closes gh-8840
8 years ago
Andy Wilkinson 2300dae88c Upgrade to Jetty 9.3.18.v20170406
Closes gh-8839
8 years ago
Andy Wilkinson 1375dfe102 Upgrade to Aspectj 1.8.10
Closes gh-8838
8 years ago
Andy Wilkinson 408b3c81df Upgrade to Tomcat 8.5.13
Closes gh-8837
8 years ago
Andy Wilkinson fe5e04c963 Upgrade to Hazelcast 3.6.8
Closes gh-8836
8 years ago
Andy Wilkinson d49a41e8cf Upgrade to Appengine 1.9.51
Closes gh-8835
8 years ago
Andy Wilkinson 5f77ef25e4 Upgrade to Jackson 2.8.8
Closes gh-8834
8 years ago
Phillip Webb 3b93bb46e0 Revert accidental call to `.close()`
Remove call to `.close()` which was accidentally left in after some
performance testing.
8 years ago
Phillip Webb ad38776de3 Polish 8 years ago
Phillip Webb ddcb5ee328 Polish 8 years ago
Andy Wilkinson df6167dd71 Merge branch '1.4.x' into 1.5.x 8 years ago
Andy Wilkinson 9374020b0e Stop -> from being replaced with → as the latter renders as # in PDF
Closes gh-8575
8 years ago
Andy Wilkinson 155d55097f Merge branch '1.4.x' into 1.5.x 8 years ago
Andy Wilkinson 47de05b52c Update Devtools to ignore manifest Class-Path entries that do not exist
Closes gh-8623
8 years ago
Andy Wilkinson c55bfb00b1 Merge branch '1.4.x' into 1.5.x 8 years ago
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
8 years ago
Andy Wilkinson 94e9c9417d Merge branch '1.4.x' into 1.5.x 8 years ago
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
8 years ago
Andy Wilkinson 4d71bfbf5c Merge branch '1.4.x' into 1.5.x 8 years ago
Andy Wilkinson 4b1e5e9c43 Improve diagnostics when loading a property source from a file fails
Closes gh-8294
8 years ago
Andy Wilkinson 6d8846d95b Merge branch '1.4.x' into 1.5.x 8 years ago
Andy Wilkinson 43f34546f6 Add .editorconfig to improve formatting when viewing on GitHub
Closes gh-8497
8 years ago
Stephane Nicoll 5cc2e103f2 Disable unexpected datasource initialization
This commit restore the disabling of datasource initialization that was
accidently removed in db33a75 so that other tests aren't affected by it.
8 years ago
Stephane Nicoll 0163731043 Automatically enable transaction management for Neo4j
This commit makes sure that `@EnableTransactionManagement` is
auto-configured with Neo4j. It actually reuses what was done in #8434,
making sure that the `Neo4jDataAutoConfiguration` is ordered properly.

Closes gh-8587
8 years ago
Stephane Nicoll db33a75484 Enable transaction management consistently
Previously to this commit, transaction management was only enabled when
a `DataSource` is configured. The processing of `@Transactional`
annotations are now enabled as long as a `PlatformTransactionManager` is
present.

Also, the `spring.aop.proxy-target-class` is now honoured if set, still
defaulting to CGLIB mode.

Closes gh-8434
8 years ago
Stephane Nicoll 751cd6e0b2 Merge pull request #8781 from ptamarit:short-commit-id-custom-length
* pr/8781:
  Polish "Use git.commit.id.abbrev if present" contribution
  Use git.commit.id.abbrev if present
8 years ago
Stephane Nicoll 52527c7298 Polish "Use git.commit.id.abbrev if present" contribution
Closes gh-8781
8 years ago
Pablo Tamarit 30b6166bc1 Use git.commit.id.abbrev if present
Currently GitProperties always shortens the property git.commit.id to an
hardcoded length of 7.

However, both the Maven plugin git-commit-id-plugin and the Gradle
plugin gradle-git-properties are now providing the property
git.commit.id.abbrev along with the propery git.commit.id.
Moreover, the Maven plugin allows to customize the length of the
abbreviated commit ID with the configuration abbrevLength. The Gradle
plugin doesn't allow (yet) to configure this length.

Closes gh-8773
8 years ago
Andy Wilkinson 181cfd5ca8 Merge branch '1.4.x' into 1.5.x 8 years ago
Andy Wilkinson 9fa8f2e317 Tweak Checkstyle plugin config so violations are output even with -q
Closes gh-8767
8 years ago
Stephane Nicoll d8e90af3bf Merge branch '1.4.x' into 1.5.x 8 years ago
Stephane Nicoll 595fada2ff Merge pull request #8660 from dreis2211:cleanup-equals-exceptions
* pr/8660:
  Fix test assertions
8 years ago
dreis 1266642aba Fix test assertions
Closes gh-8660
8 years ago
Stephane Nicoll 113279c1bc Merge pull request #8678 from zeldan:patch-1
* pr/8678:
  Fix propdeps-plugin url in doc
8 years ago
Dániel Zelei cc30adf0df Fix propdeps-plugin url in doc
Closes gh-8678
8 years ago