Skip to content

Commit d07e89b

Browse files
authored
Merge pull request #8866 from liranmauda/liran-bump-version-5.18
[5.18] Bumping version from 5.18.0 to 5.18.1
2 parents 2122c75 + 4fab1e4 commit d07e89b

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "noobaa-core",
3-
"version": "5.18.0",
3+
"version": "5.18.1",
44
"license": "SEE LICENSE IN LICENSE",
55
"description": "",
66
"homepage": "https://github.com/noobaa/noobaa-core",

src/test/unit_tests/jest_tests/test_cli_upgrade.test.js

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ const old_rpm_expected_system_json = {
3636

3737
const old_expected_system_json = {
3838
[hostname]: {
39-
'current_version': '5.18.0',
39+
'current_version': pkg.version,
4040
'upgrade_history': {
4141
'successful_upgrades': [{
4242
'timestamp': 1724687496424,
4343
'from_version': '5.17.0',
44-
'to_version': '5.18.0'
44+
'to_version': pkg.version
4545
}]
4646
},
4747
}
@@ -91,12 +91,12 @@ const old_expected_system_json2 = {
9191

9292
const old_expected_system_json5 = {
9393
[hostname]: {
94-
'current_version': '5.18.0',
94+
'current_version': pkg.version,
9595
'upgrade_history': {
9696
'successful_upgrades': [{
9797
'timestamp': 1724687496424,
9898
'from_version': '5.17.0',
99-
'to_version': '5.18.0'
99+
'to_version': pkg.version
100100
}]
101101
},
102102
},
@@ -120,12 +120,12 @@ const old_expected_system_json5 = {
120120

121121
const new_expected_system_json = {
122122
[hostname]: {
123-
'current_version': '5.18.0',
123+
'current_version': pkg.version,
124124
'upgrade_history': {
125125
'successful_upgrades': [{
126126
'timestamp': 1724687496424,
127127
'from_version': '5.17.0',
128-
'to_version': '5.18.0'
128+
'to_version': pkg.version
129129
}]
130130
},
131131
},
@@ -138,7 +138,7 @@ const new_expected_system_json = {
138138
'timestamp': 1724687496424,
139139
'running_host': hostname,
140140
'package_from_version': '5.17.0',
141-
'package_to_version': '5.18.0',
141+
'package_to_version': pkg.version,
142142
'config_dir_from_version': '0.0.0',
143143
'config_dir_to_version': '1.0.0'
144144
},
@@ -221,22 +221,22 @@ const expected_system_json = {
221221

222222
const invalid_hostname_system_json = {
223223
[hostname]: {
224-
'current_version': '5.18.0',
224+
'current_version': pkg.version,
225225
'upgrade_history': {
226226
'successful_upgrades': [{
227227
'timestamp': 1724687496424,
228228
'from_version': '5.17.0',
229-
'to_version': '5.18.0'
229+
'to_version': pkg.version
230230
}]
231231
},
232232
},
233233
'hostname1': {
234-
'current_version': '5.18.0',
234+
'current_version': pkg.version,
235235
'upgrade_history': {
236236
'successful_upgrades': [{
237237
'timestamp': 1724687496424,
238238
'from_version': '5.17.0',
239-
'to_version': '5.18.0'
239+
'to_version': pkg.version
240240
}]
241241
},
242242
},

0 commit comments

Comments
 (0)