Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Commit f8b0884

Browse files
authored
Use version rather than 'latest' in starter urls (#2010)
See spring-attic/spring-cloud-dataflow#5897
1 parent 4640241 commit f8b0884

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

ui/src/app/apps/add/website-starters/website-starters.component.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ export class WebsiteStartersComponent {
1414
force = false;
1515

1616
uris = {
17-
'stream.kafka.maven': 'https://dataflow.spring.io/kafka-maven-latest',
18-
'stream.kafka.docker': 'https://dataflow.spring.io/kafka-docker-latest',
19-
'stream.rabbitmq.maven': 'https://dataflow.spring.io/rabbitmq-maven-latest',
20-
'stream.rabbitmq.docker': 'https://dataflow.spring.io/rabbitmq-docker-latest',
21-
'task.maven': 'https://dataflow.spring.io/task-maven-latest',
22-
'task.docker': 'https://dataflow.spring.io/task-docker-latest'
17+
'stream.kafka.maven': 'https://dataflow.spring.io/kafka-maven-5-0-x',
18+
'stream.kafka.docker': 'https://dataflow.spring.io/kafka-docker-5-0-x',
19+
'stream.rabbitmq.maven': 'https://dataflow.spring.io/rabbitmq-maven-5-0-x',
20+
'stream.rabbitmq.docker': 'https://dataflow.spring.io/rabbitmq-docker-5-0-x',
21+
'task.maven': 'https://dataflow.spring.io/task-maven-3-0-x',
22+
'task.docker': 'https://dataflow.spring.io/task-docker-3-0-x'
2323
};
2424

2525
constructor(

ui/src/app/dev/dashboard/dashboard.component.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ export class DashboardComponent implements OnDestroy {
5050
case 'IMPORT_APPS':
5151
return forkJoin([this.getOperation('IMPORT_APPS_STREAM'), this.getOperation('IMPORT_APPS_TASK')]);
5252
case 'IMPORT_APPS_STREAM':
53-
return this.appService.importUri('https://dataflow.spring.io/kafka-maven-latest');
53+
return this.appService.importUri('https://dataflow.spring.io/kafka-maven-5-0-x');
5454
case 'IMPORT_APPS_TASK':
55-
return this.appService.importUri('https://dataflow.spring.io/task-maven-latest');
55+
return this.appService.importUri('https://dataflow.spring.io/task-maven-3-0-x');
5656
}
5757
return null;
5858
}

ui/src/assets/i18n/de.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@
172172
"desc": "Geben Sie eine URI an die auf eine Eigenschaften-Datei verweist.<br />Die Eigenschaften-Datei ist formatiert, sodass jeder Schlüssel einen Typen und den Namen der Anwendung representiert, z.B. type.name. Die Werte sind die URIs der Anwendungen.",
173173
"placeholderUri": "https://url.to.properties",
174174
"eg": "e.g.",
175-
"egValue": "https://dataflow.spring.io/kafka-maven-latest",
175+
"egValue": "https://dataflow.spring.io/kafka-maven-5-0-x",
176176
"invalidUri": "Bitte geben sie eine gültige URI an, die auf eine Properties Datei verweist.",
177177
"force": "Forcieren, Anwendungen werden importiert und installiert auch wenn sie bereits existieren aber nicht verwendet werden.",
178178
"importing": "Importiere gerade Anwendung(en)",

ui/src/assets/i18n/en.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@
176176
"desc": "Provide a URI that points to the location of the properties file.<br />This properties file is formatted so that the keys represent the type and the name of the application, e.g. type.name. The property values are the URIs of the app.",
177177
"placeholderUri": "https://url.to.properties",
178178
"eg": "e.g.",
179-
"egValue": "https://dataflow.spring.io/kafka-maven-latest",
179+
"egValue": "https://dataflow.spring.io/kafka-maven-5-0-x",
180180
"invalidUri": "Please provide a valid URI pointing to the respective properties file.",
181181
"force": "Force, the applications will be imported and installed even if it already exists but only if not being used already.",
182182
"importing": "Importing application(s)",

ui/src/assets/i18n/ru.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@
172172
"desc": "Укажите URI, указывающий на расположение файла свойств.<br />Этот файл свойств отформатирован таким образом, что ключи представляют тип и имя приложения, например. тип.имя. Значения свойств — это URI приложения.",
173173
"placeholderUri": "https://url.to.properties",
174174
"eg": "e.g.",
175-
"egValue": "https://dataflow.spring.io/kafka-maven-latest",
175+
"egValue": "https://dataflow.spring.io/kafka-maven-5-0-x",
176176
"invalidUri": "Укажите действительный URI, указывающий на соответствующий файл свойств.",
177177
"force": "Принудительно, приложения будут импортированы и установлены, даже если они уже существуют, но только в том случае, если они еще не используются.",
178178
"importing": "Импортирование приложения(й)",

0 commit comments

Comments
 (0)