Skip to content

Commit e310db0

Browse files
yngvar-antonssonLeonidVas
authored andcommitted
app-dependency: update cartridge and metrics
1 parent 2121bb5 commit e310db0

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [Unreleased]
9+
10+
### Changed
11+
12+
- Updated `cartridge` to `2.7.6` and `metrics` to `0.15.1` in application template.
13+
814
## [2.12.3] - 2022-11-09
915

1016
### Changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ dependencies = {
88
'tarantool',
99
'lua >= 5.1',
1010
'checks == 3.1.0-1',
11-
'cartridge == 2.7.4-1',
12-
'metrics == 0.13.0-1',
11+
'cartridge == 2.7.6-1',
12+
'metrics == 0.15.1-1',
1313
'cartridge-cli-extensions == 1.1.1-1',
1414
}
1515
build = {

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ dependencies = {
88
'tarantool',
99
'lua >= 5.1',
1010
'checks == 3.1.0-1',
11-
'cartridge == 2.7.4-1',
11+
'cartridge == 2.7.6-1',
1212
'ldecnumber == 1.1.3-1',
13-
'metrics == 0.13.0-1',
13+
'metrics == 0.15.1-1',
1414
}
1515
build = {
1616
type = 'none';

test/integration/cli/test_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -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.4-1" in output
147+
assert "Version:\t2.5.0-1, 2.7.6-1" in output
148148
assert "Found multiple versions of Cartridge in rocks manifest" in output

test/integration/create/test_create.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ def app_template(tmpdir):
106106
'tarantool',
107107
'lua >= 5.1',
108108
'checks == 3.1.0-1',
109-
'cartridge == 2.7.4-1',
110-
'metrics == 0.13.0-1',
109+
'cartridge == 2.7.6-1',
110+
'metrics == 0.15.1-1',
111111
}
112112
build = {
113113
type = 'none';

0 commit comments

Comments
 (0)