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

Commit 9695345

Browse files
author
Corneil du Plessis
committed
Update dataflow and skipper versions
1 parent 0b9a8eb commit 9695345

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

performance-tests/stream-perf-tests-initializer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<properties>
1919
<checkstyle.config.location>../../etc/checkstyle/checkstyle.xml</checkstyle.config.location>
2020
<checkstyle.header.file>../../etc/checkstyle/checkstyle-header.txt</checkstyle.header.file>
21-
<dataflow.version>2.11.1-SNAPSHOT</dataflow.version>
21+
<dataflow.version>2.11.2-SNAPSHOT</dataflow.version>
2222
<java-cfenv.version>2.3.0</java-cfenv.version>
2323
</properties>
2424

performance-tests/task-perf-tests-initializer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<version>1.1.0.BUILD-SNAPSHOT</version>
1717

1818
<properties>
19-
<dataflow.version>2.11.1-SNAPSHOT</dataflow.version>
19+
<dataflow.version>2.11.2-SNAPSHOT</dataflow.version>
2020
<java-cfenv.version>2.3.0</java-cfenv.version>
2121
<checkstyle.config.location>../../etc/checkstyle/checkstyle.xml</checkstyle.config.location>
2222
<checkstyle.header.file>../../etc/checkstyle/checkstyle-header.txt</checkstyle.header.file>

scdf_cf_setup/src/cloudfoundry/platform/registration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def register_apps(cf, installation, server_uri, app_import_path='app-imports.pro
4040

4141

4242
class AppRegistrations:
43-
DEFAULT_DATAFLOW_VERSION = '2.11.1-SNAPSHOT'
43+
DEFAULT_DATAFLOW_VERSION = '2.11.2-SNAPSHOT'
4444

4545
def __init__(self, cf, config_props, server_uri, app_import_path='app-imports.properties'):
4646
self.headers = headers = {'Authorization': cf.oauth_token()}

scdf_cf_setup/test/test_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ def installation(self):
9999
username="user",
100100
password="password")
101101
config_props = ConfigurationProperties()
102-
config_props.dataflow_version = '2.11.1-SNAPSHOT'
103-
config_props.skipper_version = '2.11.1-SNAPSHOT'
102+
config_props.dataflow_version = '2.11.2-SNAPSHOT'
103+
config_props.skipper_version = '2.11.2-SNAPSHOT'
104104
config_props.platform = 'cloudfoundry'
105105
return InstallationContext(deployer_config=deployer_config,
106106
config_props=config_props,

scdf_cf_setup/test/test_config.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ def test_cf_at_config_standalone(self):
5050
InstallationContext.from_env_vars(merged_env([deployer_env(), standalone_test_env()]))
5151

5252
def test_env_present_test_config(self):
53-
test_config = ConfigurationProperties.from_env_vars(env={'DATAFLOW_VERSION': '2.11.1-SNAPSHOT',
54-
'SKIPPER_VERSION': '2.11.1-SNAPSHOT',
53+
test_config = ConfigurationProperties.from_env_vars(env={'DATAFLOW_VERSION': '2.11.2-SNAPSHOT',
54+
'SKIPPER_VERSION': '2.11.2-SNAPSHOT',
5555
'DEPLOY_WAIT_SEC': '60',
5656
'MAX_RETRIES': '10'})
5757
self.assertEqual(60, test_config.deploy_wait_sec)
@@ -90,8 +90,8 @@ def deployer_config():
9090

9191

9292
def standalone_test_env():
93-
return {'DATAFLOW_VERSION': '2.11.1-SNAPSHOT',
94-
'SKIPPER_VERSION': '2.11.1-SNAPSHOT',
93+
return {'DATAFLOW_VERSION': '2.11.2-SNAPSHOT',
94+
'SKIPPER_VERSION': '2.11.2-SNAPSHOT',
9595
'PLATFORM': 'cloudfoundry'}
9696

9797

scdf_cf_setup/test/test_manifest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ def installation(self):
123123
env=deployer_env
124124
)
125125
config_props = ConfigurationProperties(
126-
dataflow_version='2.11.1-SNAPSHOT',
127-
skipper_version='2.11.1-SNAPSHOT',
126+
dataflow_version='2.11.2-SNAPSHOT',
127+
skipper_version='2.11.2-SNAPSHOT',
128128
skipper_jar_path='test/skipper.jar',
129129
dataflow_jar_path='test/dataflow.jar',
130130
maven_repos={'repo0': 'https://repo.spring.io/snapshot'},

0 commit comments

Comments
 (0)