- 19 Feb, 2017 1 commit
-
-
Raja Kolli authored
Closes gh-8273
-
- 17 Feb, 2017 3 commits
-
-
Stephane Nicoll authored
-
Stephane Nicoll authored
* pr/8319: Fix audit events related documentation
-
Vedran Pavic authored
Closes gh-8319
-
- 16 Feb, 2017 2 commits
-
-
Andy Wilkinson authored
Previously, bootRepackage's excludeDevtools property would be overridden by the springBoot extension's excludeDevtools property. This prevented devtools from being included by configuring it on the repackaging task. This commit corrects the logic so that the setting on the repackaging task takes priority. It also adds some tests to verify the behaviour. Closes gh-8308
-
Stephane Nicoll authored
Closes gh-8305
-
- 15 Feb, 2017 6 commits
-
-
Madhura Bhave authored
If `jwk.key-set-uri` is present. Closes gh-4437
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Closes gh-8304
-
Stephane Nicoll authored
-
Stephane Nicoll authored
* pr/8300: Fix a broken AsciiDoc attribute declaration
-
Johnny Lim authored
Closes gh-8300
-
- 14 Feb, 2017 7 commits
-
-
Stephane Nicoll authored
Closes gh-8253
-
Stephane Nicoll authored
Closes gh-8192
-
Andy Wilkinson authored
-
Andy Wilkinson authored
* gh-8263: Tests that lists of lists are sanitized correctly Ensure that entries in a list of lists are not lost during sanitization
-
Andy Wilkinson authored
See gh-8263
-
Johnny Lim authored
Closes gh-8263 See gh-8197
-
Stephane Nicoll authored
Closes gh-8277
-
- 13 Feb, 2017 6 commits
-
-
Andy Wilkinson authored
-
Andy Wilkinson authored
This reverts commit 66194003. See gh-8248
-
Andy Wilkinson authored
The verifier's type checker is required to check that a type returned from a method (an areturn instruction) is assignable to the method's declared return type. When the return type is an interface, the JLS states that it should be treated as java.lang.Object. This means that no analysis of the type being returned is required and verification passes. When the return type is a class, the type being returned must be analyzed to ensure that it is compatible. This analysis causes the return type to be loaded during verification. Prior to this commit, BasicBatchConfigurer's createAppropriateTransactionManager method had a return type of AbstractPlatformTransactionManager and a branch that could return a JpaTransactionManager. This caused the verifier to attempt to load JpaTransactionManager so that it could check that it was assignable to AbstractPlatformTransactionManager. This would fail when spring-orm is not on the classpath as JpaTransactionManager could not be loaded. This commit updates BasicBatchConfigurer to change the return type of createAppropriateTransactionManager so that it returns a PlatformTransactionManager which is an interface. As described above, this relaxes the verification of any areturn instructions in the method and, in this particular case stops the verifier from trying to load JpaTransactionManager. Closes gh-8181
-
Stephane Nicoll authored
-
Stephane Nicoll authored
Closes gh-8271
-
Stephane Nicoll authored
Closes gh-8272
-
- 12 Feb, 2017 4 commits
-
-
Stephane Nicoll authored
-
Stephane Nicoll authored
See gh-8248
-
Stephane Nicoll authored
-
Stephane Nicoll authored
Closes gh-8259
-
- 10 Feb, 2017 1 commit
-
-
Madhura Bhave authored
Instead of validating the signature against all the public keys, we can validate it only against the public key with the kid that matches the one in the token header. Closes gh-8126
-
- 09 Feb, 2017 5 commits
-
-
Andy Wilkinson authored
-
Andy Wilkinson authored
393cfe50 expanded the scope of spring.profiles.include so that it could be used in any property source, and not just in a configuration file. However, it did so in such a way that it would only take effect when used outside of a configuration file if spring.profiles.active was also set. This commit updates ConfigFileApplicationListener so that included profiles are activated when spring.profiles.active has not be set. Closes gh-8244
-
Stephane Nicoll authored
* pr/8215: Allow property expansion for *.yaml
-
Davin Kevin authored
Closes gh-8215
-
Stephane Nicoll authored
This commit improves `SimpleRabbitListenerContainerFactoryConfigurer` to use a custom `MessageConverter`. If such a bean is present, it is used for the default factory that is auto-configured. Closes gh-8194
-
- 08 Feb, 2017 5 commits
-
-
Andy Wilkinson authored
In Gradle 3.3, when an API that will be removed in 4.0 is called, a deprecation warning is output as part of the build. Users have noticed his warning and, quite reasonably, complained about it. Unfortunately, avoiding the warning requires the use of an API that was introduced in Gradle 3.x which we can't use directly as we want to remain compatible with Gradle 2.x. This commit introduces the use of reflection to call ProjectDependency.getTargetConfiguration() via reflection when it's available (Gradle 3) and ProjectDependency.getProjectConfiguration() when it's not (Gradle 2). Closes gh-8154
-
Andy Wilkinson authored
-
Andy Wilkinson authored
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Closes gh-8146
-