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

Commit c4f47cb

Browse files
yngvar-antonssonLeonidVas
authored andcommitted
app-dependency: update cartridge
1 parent 3cf08c2 commit c4f47cb

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
99

1010
### Changed
1111

12-
- Updated `cartridge` to `2.7.6` and `metrics` to `0.15.1` in application template.
12+
- Updated `cartridge` to `2.7.7` and `metrics` to `0.15.1` in application template.
1313
- Now file times are preserved when copying.
1414
- Now packing cache saves before post-build stage
1515

cli/create/templates/cartridge/{{ .NameToLower }}-scm-1.rockspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies = {
88
'tarantool',
99
'lua >= 5.1',
1010
'checks == 3.1.0-1',
11-
'cartridge == 2.7.6-1',
11+
'cartridge == 2.7.7-1',
1212
'metrics == 0.15.1-1',
1313
'cartridge-cli-extensions == 1.1.1-1',
1414
}

examples/getting-started-app/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,7 @@ dependencies = {
690690
'tarantool',
691691
'lua >= 5.1',
692692
'checks == 3.1.0-1',
693-
'cartridge == 2.7.6-1',
693+
'cartridge == 2.7.7-1',
694694
'ldecnumber == 1.1.3-1',
695695
'metrics == 0.15.1-1',
696696
}

examples/getting-started-app/README_RUS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ dependencies = {
689689
'tarantool',
690690
'lua >= 5.1',
691691
'checks == 3.1.0-1',
692-
'cartridge == 2.7.6-1',
692+
'cartridge == 2.7.7-1',
693693
'ldecnumber == 1.1.3-1',
694694
'metrics == 0.15.1-1',
695695
}

examples/getting-started-app/getting-started-app-scm-1.rockspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies = {
88
'tarantool',
99
'lua >= 5.1',
1010
'checks == 3.1.0-1',
11-
'cartridge == 2.7.6-1',
11+
'cartridge == 2.7.7-1',
1212
'ldecnumber == 1.1.3-1',
1313
'metrics == 0.15.1-1',
1414
}

test/integration/cli/test_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def test_duplicate_rocks(project_with_cartridge, cartridge_cmd, version_cmd):
118118

119119
rc, output = run_command_and_get_output(cmd)
120120
assert rc == 0
121-
assert "graphql 0.1.0-1, 0.1.4-1" in output
121+
assert "graphql 0.1.0-1, 0.2.0-1" in output
122122
assert "Found multiple versions in rocks manifest" in output
123123

124124

@@ -144,5 +144,5 @@ def test_duplicate_cartridge_no_rocks_flag(project_with_cartridge, cartridge_cmd
144144

145145
rc, output = run_command_and_get_output(cmd)
146146
assert rc == 0
147-
assert "Version:\t2.5.0-1, 2.7.6-1" in output
147+
assert "Version:\t2.5.0-1, 2.7.7-1" in output
148148
assert "Found multiple versions of Cartridge in rocks manifest" in output

test/integration/create/test_create.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def app_template(tmpdir):
106106
'tarantool',
107107
'lua >= 5.1',
108108
'checks == 3.1.0-1',
109-
'cartridge == 2.7.6-1',
109+
'cartridge == 2.7.7-1',
110110
'metrics == 0.15.1-1',
111111
}
112112
build = {

test/integration/failover/test_failover.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def test_default_app_stateboard_failover(cartridge_cmd, project_with_topology_an
2323
'fencing_pause': 2,
2424
'fencing_timeout': 10,
2525
'tarantool_params': {
26-
'uri': 'localhost:4401', 'password': 'passwd'
26+
'uri': 'localhost:4401', 'password': '******'
2727
},
2828
'mode': 'stateful',
2929
'state_provider': 'tarantool'
@@ -79,7 +79,7 @@ def test_setup_etcd2_failover(cartridge_cmd, project_with_topology_and_vshard):
7979
'etcd2_params': {
8080
'endpoints': ['http://127.0.0.1:4001', 'http://127.0.0.1:2379'],
8181
'lock_delay': 15,
82-
'password': '',
82+
'password': '******',
8383
'prefix': 'test_prefix',
8484
'username': ''
8585
},

0 commit comments

Comments
 (0)