Skip to content

Commit d9ad344

Browse files
app-dependency: update Cartridge to 2.13.0 and metrics to 1.2.0
1 parent 7f7efcf commit d9ad344

File tree

7 files changed

+18
-12
lines changed

7 files changed

+18
-12
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
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+
- Update `cartridge` to `2.13.0` and `metrics` to `1.2.0` in application template.
13+
814
## [2.12.12] - 2024-05-07
915

1016
### Fixed
@@ -15,7 +21,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1521

1622
### Changed
1723

18-
- Updated the `go` and `docker` package versions used to build the binary,
24+
- Updated the `go` and `docker` package versions used to build the binary,
1925
that fixes known security issues.
2026

2127
## [2.12.10] - 2023-12-14

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ dependencies = {
88
'tarantool',
99
'lua >= 5.1',
1010
'checks == 3.3.0-1',
11-
'cartridge == 2.8.4-1',
12-
'metrics == 1.0.0-1',
11+
'cartridge == 2.13.0-1',
12+
'metrics == 1.2.0-1',
1313
'cartridge-metrics-role == 0.1.1-1',
1414
'cartridge-cli-extensions == 1.1.1-1',
1515
}

examples/getting-started-app/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -661,9 +661,9 @@ dependencies = {
661661
'tarantool',
662662
'lua >= 5.1',
663663
'checks == 3.3.0-1',
664-
'cartridge == 2.8.4-1',
664+
'cartridge == 2.13.0-1',
665665
'ldecnumber == 1.1.3-1',
666-
'metrics == 1.0.0-1',
666+
'metrics == 1.2.0-1',
667667
'cartridge-metrics-role == 0.1.1-1',
668668
}
669669
build = {

examples/getting-started-app/README_RUS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -655,9 +655,9 @@ dependencies = {
655655
'tarantool',
656656
'lua >= 5.1',
657657
'checks == 3.3.0-1',
658-
'cartridge == 2.8.4-1',
658+
'cartridge == 2.13.0-1',
659659
'ldecnumber == 1.1.3-1',
660-
'metrics == 1.0.0-1',
660+
'metrics == 1.2.0-1',
661661
'cartridge-metrics-role == 0.1.1-1',
662662
}
663663
build = {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ dependencies = {
88
'tarantool',
99
'lua >= 5.1',
1010
'checks == 3.3.0-1',
11-
'cartridge == 2.8.4-1',
11+
'cartridge == 2.13.0-1',
1212
'ldecnumber == 1.1.3-1',
13-
'metrics == 1.0.0-1',
13+
'metrics == 1.2.0-1',
1414
'cartridge-metrics-role == 0.1.1-1',
1515
}
1616
build = {

test/integration/cli/test_version.py

Lines changed: 1 addition & 1 deletion
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.8.4-1" in output
147+
assert "Version:\t2.13.0-1, 2.5.0-1" in output
148148
assert "Found multiple versions of Cartridge in rocks manifest" in output

test/integration/create/test_create.py

Lines changed: 2 additions & 2 deletions
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.3.0-1',
109-
'cartridge == 2.8.4-1',
110-
'metrics == 1.0.0-1',
109+
'cartridge == 2.13.0-1',
110+
'metrics == 1.2.0-1',
111111
'cartridge-metrics-role == 0.1.1-1',
112112
}
113113
build = {

0 commit comments

Comments
 (0)