Commit Graph

9507 Commits (1.4.x)
 

Author SHA1 Message Date
Andy Wilkinson 3a5a087b1f Merge branch '1.3.x' into 1.4.x 6 years ago
Andy Wilkinson c4d44574b2 Correct link to Groovy MarkupTemplateEngine documentation
See gh-16316
6 years ago
Andy Wilkinson f05f858286 Merge pull request #16317 from Spring Operator
* gh-16317:
  Polish "Use HTTPS for external links wherever possible"
  Use HTTPS for external links wherever possible

Closes gh-16317
6 years ago
Andy Wilkinson 5bc43ae76b Polish "Use HTTPS for external links wherever possible"
See gh-16317
6 years ago
Spring Operator 189eeefbb1 Use HTTPS for external links wherever possible
See gh-16317
6 years ago
Andy Wilkinson 8059dceee4 Merge branch '1.3.x' into 1.4.x 6 years ago
Andy Wilkinson cf2b0bc8c2 Use HTTPS in YAML exmaple
See gh-16316
6 years ago
Andy Wilkinson baec3d6e8e Merge branch '1.3.x' into 1.4.x 6 years ago
Andy Wilkinson 35572b6aae Merge pull request #16316 from Spring Operator
* gh-16316:
  Polish "Use HTTPS for external links wherever possible"
  Use HTTPS for external links wherever possible

Closes gh-16316
6 years ago
Andy Wilkinson 9be96c49e2 Polish "Use HTTPS for external links wherever possible"
See gh-16316
6 years ago
Spring Operator e401d02ced Use HTTPS for external links wherever possible
See gh-16316
6 years ago
Andy Wilkinson 61602c0851 Merge pull request #16312 from Spring Operator
* gh-16312:
  Use HTTPS for external links from XML files where possible

Closes gh-16312
6 years ago
Spring Operator 4e2739eceb Use HTTPS for external links from XML files where possible
See gh-16312
6 years ago
Andy Wilkinson 46d6fb0e1c Merge branch '1.3.x' into 1.4.x 6 years ago
Andy Wilkinson a732acaebf Merge pull request #16311 from Spring Operator
* gh-16311:
  Polish "Use HTTPS for external links from XML files where possible"
  Use HTTPS for external links from XML files where possible
6 years ago
Andy Wilkinson 24afa5951b Polish "Use HTTPS for external links from XML files where possible"
See gh-16311
6 years ago
Spring Operator adc2462689 Use HTTPS for external links from XML files where possible
See gh-16311
6 years ago
Andy Wilkinson f65018433f Use stable archive location for TomEE zip download 6 years ago
Andy Wilkinson 1fd6d1a60c Merge branch '1.3.x' into 1.4.x 6 years ago
Andy Wilkinson 7b044b2e3e Merge pull request #16283 from Spring Operator
* gh-16283:
  Use HTTPS to link to Apache License

Closes gh-16283
6 years ago
Spring Operator 08dce4f3ea Use HTTPS to link to Apache License
See gh-16283
6 years ago
Andy Wilkinson 6920c39349 Merge branch '1.3.x' into 1.4.x 6 years ago
Andy Wilkinson 0e009ef047 Use HTTPS to link to the Apache license 6 years ago
Andy Wilkinson 6636a23930 Merge pull request #16244 from Spring Operator
* gh-16244:
  Polish "Update build and setup configuration to use HTTPS"
  Update build and setup configuration to use HTTPS

Closes gh-16244
6 years ago
Andy Wilkinson 04434676c3 Polish "Update build and setup configuration to use HTTPS"
See gh-16244
6 years ago
Spring Operator e2837843e1 Update build and setup configuration to use HTTPS
See gh-16244
6 years ago
Andy Wilkinson a662563c28 Merge branch '1.3.x' into 1.4.x 6 years ago
Andy Wilkinson 526d91dbce Merge pull request #16243 from Spring Operator
* gh-16243:
  Polish "Update build and setup configuration to use HTTPS"
  Update build and setup configuration to use HTTPS

Closes gh-16243
6 years ago
Andy Wilkinson 122b2a1b0b Polish "Update build and setup configuration to use HTTPS"
See gh-16243
6 years ago
Spring Operator 7c314122f7 Update build and setup configuration to use HTTPS
See gh-16243
6 years ago
Stephane Nicoll 6b1d06cf09 Fixup version numbers following release 8 years ago
Spring Buildmaster 88e43c8421 Next Development Version 8 years ago
Stephane Nicoll 1061a99ccf Upgrade to Spring Integration 4.3.10.RELEASE
Closes gh-9385
8 years ago
Stephane Nicoll c8fdb33293 Upgrade to Spring Framework 4.3.9.RELEASE
Closes gh-9280
8 years ago
Stephane Nicoll ad5e212162 Merge pull request #9429 from artembilan:patch-1
* pr/9429:
  Upgrade to Spring AMQP 1.6.10
8 years ago
Artem Bilan bd1b230599 Upgrade to Spring AMQP 1.6.10
Closes gh-9429
8 years ago
Andy Wilkinson 8810450e64 Upgrade to Spring Data Hopper SR11
Closes gh-9424
8 years ago
Andy Wilkinson e60a261952 Do not allow failure to remove container to mask earlier failure 8 years ago
Andy Wilkinson 31ff7f1846 Tolerate Successfully built being found in response other than last
Different versions of Docker produce different responses when building
and tagging an image. On CI, a response with a stream like
"Successfully built 185991ffe24a" followed by a response with a
stream like "Successfully tagged spring-boot-it/centos:6.9-a23bced6"
is received. By default, for the building of an image to be considered
successful, the Docker Java client requires the stream for the last
response item to contain "Successfully built". This means that, on the
CI server, it incorrectly believes that the building of the tagged
image has failed.

This commit uses a custom BuildImageResultCallback that doesn't
require the last response to be the one that has a stream containing
"Successfully built". Instead, it looks back through the error-free
responses (newest to oldest) looking for one with a stream containing
"Successfully built".
8 years ago
Andy Wilkinson 0270ccafa5 Enable Docker command debug logging to improve diagnostics on CI server 8 years ago
Andy Wilkinson a69a851ae9 Drop CentOS 5 from launch script tests and upgrade to 6.9
CentOS 5 was declared EOL in March 2017 and yum on longer works
out of the box. 6.9 is the latest release of CentOS 6. Tests for
CentOS 7 have not been added as it uses systemd rather than SysVinit.

Closes gh-9395
8 years ago
Andy Wilkinson bf656c70ad Improve MultipartProperties' javadoc
Closes gh-9073
8 years ago
Andy Wilkinson 5b4f9edc86 Restore original TCCL in PropertiesLauncherTests
Calling launch of PropertiesLauncherTests sets the thread context
class loader to an instance of LaunchedURLClassLoader. To avoid this
class loader being used beyond the scope of the test and launcher
that created it, this commit updates PropertiesLauncherTests to
capture the TCCL before each test and restore it after each test.

Closes gh-9378
8 years ago
Stephane Nicoll 6415828693 Upgrade to Spring Security OAuth2 2.0.14.RELEASE
Closes gh-9346
8 years ago
Stephane Nicoll 250d5f9a52 Deprecate Atomikos console logs properties
Those properties are no longer honoured with Atomikos 3.8 and we're
using 3.9 by default.

Closes gh-9292
8 years ago
Stephane Nicoll a59000354c Support for TransactionAwareCacheDecorator
This commit makes sure to unwrap any transaction aware cache before
collecting metrics for them.

Closes gh-8984
8 years ago
Stephane Nicoll b73e1d46ae Start building against Spring Framework snapshots
See gh-9280
8 years ago
Phillip Webb 9a4a20537c Polish 8 years ago
Andy Wilkinson 198093c6a8 Fix violation reported by Checkstyle 8 years ago
Andy Wilkinson a6f8351dd6 Close Liquibase-specific DataSource once database has been migrated
Previously, when the liquibase.url, .username, and .password
properties were used to configure a DataSource specifically for
Liquibase that DataSource would never be explicitly closed. As it is
created by DataSourceBuilder with no explicitly configured type it
will use whichever connection pool is available and, therefore, will
create and keep open the pool's minimum number of connections. This
is an unnecessary use of resources both in the application and in the
database.

This commit updates LiquibaseAutoConfiguration so that if it uses
DataSourceBuilder to create a DataSource then it will also close that
DataSource once the database has been migrated.

Closes gh-9218
8 years ago