From abb8183d82caac0939b9d19be743bcaffbb6961e Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Sun, 24 Sep 2017 09:20:13 +0100 Subject: [PATCH 1/6] Upgrade to Gson 2.8.2 Closes gh-10393 --- spring-boot-dependencies/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-dependencies/pom.xml b/spring-boot-dependencies/pom.xml index 28a746f04f..b56e2d9a2c 100644 --- a/spring-boot-dependencies/pom.xml +++ b/spring-boot-dependencies/pom.xml @@ -79,7 +79,7 @@ 3.0.0 2.9 2.4.12 - 2.8.1 + 2.8.2 1.4.196 1.3 3.7.8 From 29c84dff4ade7d92e25adb11977877d24a9a4b7c Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Sun, 24 Sep 2017 09:20:13 +0100 Subject: [PATCH 2/6] Upgrade to Httpcore 4.4.7 Closes gh-10394 --- spring-boot-dependencies/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-dependencies/pom.xml b/spring-boot-dependencies/pom.xml index b56e2d9a2c..c76a345f90 100644 --- a/spring-boot-dependencies/pom.xml +++ b/spring-boot-dependencies/pom.xml @@ -94,7 +94,7 @@ 2.21 4.1.3 4.5.3 - 4.4.6 + 4.4.7 8.2.8.Final 2.8.10 2.7.8 From f9c44b46b63d5c4f30bcb7c7c280802ad727cc4f Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Sun, 24 Sep 2017 09:20:14 +0100 Subject: [PATCH 3/6] Upgrade to Tomcat 8.5.21 Closes gh-10395 --- spring-boot-dependencies/pom.xml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/spring-boot-dependencies/pom.xml b/spring-boot-dependencies/pom.xml index c76a345f90..173be2ebaa 100644 --- a/spring-boot-dependencies/pom.xml +++ b/spring-boot-dependencies/pom.xml @@ -184,7 +184,7 @@ 1.4.0 1.3 2.1.0.RELEASE - 8.5.20 + 8.5.21 1.4.20.Final 3.2.1 9f96c74 @@ -1284,6 +1284,11 @@ tomcat-embed-websocket ${tomcat.version} + + org.apache.tomcat + tomcat-annotations-api + ${tomcat.version} + org.apache.tomcat tomcat-jdbc From 2136bea4912ef250751ab158f708637d75766aab Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Sun, 24 Sep 2017 09:20:14 +0100 Subject: [PATCH 4/6] Upgrade to Jetty 9.4.7.v20170914 Closes gh-10396 --- spring-boot-dependencies/pom.xml | 2 +- spring-boot-starters/spring-boot-starter-jetty/pom.xml | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/spring-boot-dependencies/pom.xml b/spring-boot-dependencies/pom.xml index 173be2ebaa..054ea5513b 100644 --- a/spring-boot-dependencies/pom.xml +++ b/spring-boot-dependencies/pom.xml @@ -111,7 +111,7 @@ 2.9.0 2.25.1 2.0.4 - 9.4.6.v20170531 + 9.4.7.v20170914 2.2.0.v201112011158 8.0.33 1.1-rev-1 diff --git a/spring-boot-starters/spring-boot-starter-jetty/pom.xml b/spring-boot-starters/spring-boot-starter-jetty/pom.xml index 181ba2c96a..fc907fe787 100644 --- a/spring-boot-starters/spring-boot-starter-jetty/pom.xml +++ b/spring-boot-starters/spring-boot-starter-jetty/pom.xml @@ -39,6 +39,10 @@ org.eclipse.jetty jetty-jndi + + javax.websocket + javax.websocket-client-api + From cf92e5515098314e14fb62c9c6f32eb3a5d56e6e Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Sun, 24 Sep 2017 09:20:15 +0100 Subject: [PATCH 5/6] Upgrade to Spring Kafka 1.1.7.RELEASE Closes gh-10397 --- spring-boot-dependencies/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-dependencies/pom.xml b/spring-boot-dependencies/pom.xml index 054ea5513b..a685dbd240 100644 --- a/spring-boot-dependencies/pom.xml +++ b/spring-boot-dependencies/pom.xml @@ -159,7 +159,7 @@ 0.23.0.RELEASE 4.3.12.RELEASE 1.2.3.RELEASE - 1.1.6.RELEASE + 1.1.7.RELEASE 2.3.1.RELEASE 1.2.8.RELEASE 1.1.5.RELEASE From 681921fd872a45b49aa37b45ba77c54a007012b5 Mon Sep 17 00:00:00 2001 From: dreis2211 Date: Sun, 24 Sep 2017 13:41:46 +0200 Subject: [PATCH 6/6] Typo in external config documentation Closes gh-10411 --- spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index e4eb731bf9..00b5fc8c7e 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -980,7 +980,7 @@ does not inject other beans from the context. Having said that, The `@EnableConfigurationProperties` annotation is _also_ automatically applied to your project so that any _existing_ bean annotated with `@ConfigurationProperties` will be configured from the `Environment`. You could shortcut `MyConfiguration` above by making sure -`FooProperties` is a already a bean: +`FooProperties` is already a bean: [source,java,indent=0] ----