- 14 Aug, 2017 2 commits
-
-
Stephane Nicoll authored
* pr/10004: Upgrade to Narayana 5.5.30.Final
-
Gytis Trikleris authored
Closes gh-10004
-
- 11 Aug, 2017 3 commits
-
-
Stephane Nicoll authored
* pr/9989: Polish "Add missing dependency management for Jetty" Add missing dependency management for Jetty
-
Stephane Nicoll authored
Closes gh-9989
-
Benoit Lacelle authored
See gh-9989
-
- 09 Aug, 2017 12 commits
-
-
Andy Wilkinson authored
See gh-9944
-
Andy Wilkinson authored
* gh-9965: Clarify docs on effect RANDOM_PORT or DEFINED_PORT has on transactions
-
pulsation authored
Previously, when read too quickly, the current note may lead a user to think that RANDOM_PORT or DEFINED_PORT directly affect transaction management. This is not the case. This commit attempts to clarify that the difference in transaction behaviour is due to transactions being bound to a particular thread and separate threads being used for the client and server when tests are making HTTP requests. Closes gh-9965
-
Andy Wilkinson authored
* gh-9940: Add more ConditionalOnClass checks in HealthIndicatorAutoConfiguration
-
Johnny Lim authored
Closes gh-9940
-
Andy Wilkinson authored
* gh-9914: Avoid NPE in AnnotationsPropertySource if getAnnotations returns null Polish "Avoid NPE in PropertyMappingContextCustomizer" Avoid NPE in PropertyMappingContextCustomizer
-
Andy Wilkinson authored
Closes gh-9914
-
Andy Wilkinson authored
See gh-9914
-
Dennis Kieselhorst authored
See gh-9914
-
Andy Wilkinson authored
* gh-9944: Polish "Fix logged property names when initializing OAuth2 client" Fix logged property names when initializing OAuth2 client
-
Andy Wilkinson authored
See gh-9944
-
Christian Bühler authored
Closes gh-9944
-
- 04 Aug, 2017 1 commit
-
-
Andy Wilkinson authored
See gh-9956
-
- 03 Aug, 2017 4 commits
-
-
Andy Wilkinson authored
See gh-9928
-
Andy Wilkinson authored
* gh-9938: Polish
-
Johnny Lim authored
Closes gh-9938
-
Andy Wilkinson authored
Previously when Handler was creating a URL from a context URL and a spec, any occurrances of /../ or /./ in the spec would be left as-is. This differed from the JDK's Handler implementation which normalizes the URL by modifying the path to remove any occurrences of /../ or /./ This commit updates our Handler implementation to align it with the JDK's. Tests have been added to assert that, given the same inputs, the two Handler classes produce the same output. Closes gh-9917
-
- 01 Aug, 2017 2 commits
-
-
Andy Wilkinson authored
* gh-9641: Delay Narayana recovery manager until it's started explicitly
-
Gytis Trikleris authored
Closes gh-9641
-
- 31 Jul, 2017 1 commit
-
-
Andy Wilkinson authored
Closes gh-9918 See gh-8282
-
- 28 Jul, 2017 11 commits
-
-
Andy Wilkinson authored
* gh-9893: Polish "Make JarURLConnection return entry's last modified time" Make JarURLConnection return entry's last modified time
-
Andy Wilkinson authored
Closes gh-9893
-
rostislav.dudka authored
See gh-9893
-
Stephane Nicoll authored
Unfortunately, creating the schema in code did not offer the right condition to reproduce the error scenario. This commit restore the initial intent, but separating the configuration and cleaning the created context properly. See gh-9862
-
Stephane Nicoll authored
Closes gh-9862
-
Stephane Nicoll authored
* pr/9862: Polish "Use configured schema in Liquibase endpoint" Use configured schema in Liquibase endpoint
-
Stephane Nicoll authored
Closes gh-9862
-
Craig Andrews authored
This commit makes sure that the Liquibase endpoint uses the configured schema. See gh-98£62
-
Andy Wilkinson authored
* gh-9725: Polish "Simplify retrieval of Narayana XARecoveryModule" Simplify retrieval of Narayana XARecoveryModule
-
Andy Wilkinson authored
Closes gh-9725
-
Gytis Trikleris authored
See gh-9725
-
- 27 Jul, 2017 4 commits
-
-
Andy Wilkinson authored
* gh-9678: Polish "Deprecate JsonContent.assertThat()" Deprecate JsonContent.assertThat()
-
Andy Wilkinson authored
Closes gh-9678
-
Priyanshi authored
See gh-9678
-
Andy Wilkinson authored
Previously, background preinitialization was started in response to an ApplicationEnvironmentPreparedEvent and would complete at an undetermined time later. This opened a window where SpringApplication run could return and background preinitialization could still be in progress. If, within this window, something attempted to configure the logging system, an IO failure could occur as logging on the background preinitialization thread would attempt to use resources that had been closed. This commit updates BackgroundPreinitializer so that it waits for preinitialization to have completed when it receives an application ready or application failed event. This prevents SpringApplication run from returning while preinitialization is still in progress, closing the window described above. With info level logging enabled it appears that background preinitialization consistently completes before the application ready event is published. As a result, waiting should have no adverse effect on performance in normal circumstances. With logging configured such that background preinitialization outputs a large volume of log messages (enabling trace logging for the root logger, for example), it will be slowed down sufficiently for waiting to be necessary. Closes gh-5669
-