From 2bb5d038d7c9a99a9589544baf83c8b215bc324b Mon Sep 17 00:00:00 2001 From: Borja Lafuente Romero Date: Wed, 8 Feb 2017 21:28:28 +0100 Subject: [PATCH 1/3] Fixed quickstart snippet for Camden and Dalston release trains --- js/projectDocumentationWidget.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/js/projectDocumentationWidget.js b/js/projectDocumentationWidget.js index f948b82..187743a 100644 --- a/js/projectDocumentationWidget.js +++ b/js/projectDocumentationWidget.js @@ -150,8 +150,10 @@ Spring.SnippetView = Backbone.View.extend({ }, render: function () { - - this.model.bootVersion = this.model.version.indexOf("Camden")!=-1 ? "1.4.0.RELEASE" : (this.model.version.indexOf("Brixton")!=-1 ? "1.3.7.RELEASE" : "1.2.8.RELEASE"); + this.model.bootVersion = this.model.version.indexOf("Dalston")!=-1 ? "1.5.0.BUILD-SNAPSHOT" : + this.model.version.indexOf("Camden")!=-1 ? "1.4.4.RELEASE" : + this.model.version.indexOf("Brixton")!=-1 ? "1.3.8.RELEASE" : + "1.2.8.RELEASE"; console.log(JSON.stringify(this.model)) var html = $(this.combinedTemplate(this.model)); this.$el.html(html); From 2c7fb467e051098f0634e9810cfb39fe51cb9357 Mon Sep 17 00:00:00 2001 From: Borja Lafuente Romero Date: Wed, 8 Feb 2017 21:32:18 +0100 Subject: [PATCH 2/3] Fixed spring boot version for Dalston in 'release trains' table --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index f7e3c63..3b5d758 100644 --- a/index.html +++ b/index.html @@ -262,7 +262,7 @@ Release train contents: |spring-cloud-sleuth | | 1.0.11.RELEASE | 1.1.2.RELEASE | 1.1.3.BUILD-SNAPSHOT | |spring-cloud-stream | | 1.0.2.RELEASE | Brooklyn.SR2 | Brooklyn.BUILD-SNAPSHOT | |spring-cloud-zookeeper | | 1.0.3.RELEASE | 1.0.3.RELEASE | 1.0.4.BUILD-SNAPSHOT | -|spring-boot | 1.2.8.RELEASE| 1.3.8.RELEASE | 1.4.4.RELEASE | 1.4.5.BUILD-SNAPSHOT | +|spring-boot | 1.2.8.RELEASE| 1.3.8.RELEASE | 1.4.4.RELEASE | 1.5.0.BUILD-SNAPSHOT | |spring-cloud-task | |1.0.3.RELEASE | 1.0.3.RELEASE | 1.0.4.BUILD-SNAPSHOT | The Brixton release train builds on Spring Boot 1.3.x, but is also From 796733cda60c486dabfa98a06b473add54258d38 Mon Sep 17 00:00:00 2001 From: Borja Lafuente Romero Date: Thu, 9 Feb 2017 17:53:59 +0100 Subject: [PATCH 3/3] Dalston is built on boot 1.5.1.BUILD-SNAPSHOT --- index.html | 2 +- js/projectDocumentationWidget.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 3b5d758..75182ec 100644 --- a/index.html +++ b/index.html @@ -262,7 +262,7 @@ Release train contents: |spring-cloud-sleuth | | 1.0.11.RELEASE | 1.1.2.RELEASE | 1.1.3.BUILD-SNAPSHOT | |spring-cloud-stream | | 1.0.2.RELEASE | Brooklyn.SR2 | Brooklyn.BUILD-SNAPSHOT | |spring-cloud-zookeeper | | 1.0.3.RELEASE | 1.0.3.RELEASE | 1.0.4.BUILD-SNAPSHOT | -|spring-boot | 1.2.8.RELEASE| 1.3.8.RELEASE | 1.4.4.RELEASE | 1.5.0.BUILD-SNAPSHOT | +|spring-boot | 1.2.8.RELEASE| 1.3.8.RELEASE | 1.4.4.RELEASE | 1.5.1.BUILD-SNAPSHOT | |spring-cloud-task | |1.0.3.RELEASE | 1.0.3.RELEASE | 1.0.4.BUILD-SNAPSHOT | The Brixton release train builds on Spring Boot 1.3.x, but is also diff --git a/js/projectDocumentationWidget.js b/js/projectDocumentationWidget.js index 187743a..16c0802 100644 --- a/js/projectDocumentationWidget.js +++ b/js/projectDocumentationWidget.js @@ -150,7 +150,7 @@ Spring.SnippetView = Backbone.View.extend({ }, render: function () { - this.model.bootVersion = this.model.version.indexOf("Dalston")!=-1 ? "1.5.0.BUILD-SNAPSHOT" : + this.model.bootVersion = this.model.version.indexOf("Dalston")!=-1 ? "1.5.1.BUILD-SNAPSHOT" : this.model.version.indexOf("Camden")!=-1 ? "1.4.4.RELEASE" : this.model.version.indexOf("Brixton")!=-1 ? "1.3.8.RELEASE" : "1.2.8.RELEASE";