Skip to content

Commit

Permalink
app-dependency: update cartridge to 2.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yngvar-antonsson committed May 29, 2023
1 parent c76e1e2 commit 2bdd45c
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 17 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## Unreleased

### Changed

- Updated `checks` to `3.3.0`, `cartridge` to `2.8.0`, `metrics` to `1.0.0` and
`cartridge-metrics-role` to `0.1.0` in application template.

## [2.12.5] - 2023-04-25

### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ source = {
dependencies = {
'tarantool',
'lua >= 5.1',
'checks == 3.2.0-1',
'cartridge == 2.7.9-1',
'metrics == 0.16.0-1',
'checks == 3.3.0-1',
'cartridge == 2.8.0-1',
'metrics == 1.0.0-1',
'cartridge-metrics-role == 0.1.0-1',
'cartridge-cli-extensions == 1.1.1-1',
}
build = {
Expand Down
7 changes: 4 additions & 3 deletions examples/getting-started-app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -660,10 +660,11 @@ source = {
dependencies = {
'tarantool',
'lua >= 5.1',
'checks == 3.2.0-1',
'cartridge == 2.7.9-1',
'checks == 3.3.0-1',
'cartridge == 2.8.0-1',
'ldecnumber == 1.1.3-1',
'metrics == 0.16.0-1',
'metrics == 1.0.0-1',
'cartridge-metrics-role == 0.1.0-1',
}
build = {
type = 'none';
Expand Down
7 changes: 4 additions & 3 deletions examples/getting-started-app/README_RUS.md
Original file line number Diff line number Diff line change
Expand Up @@ -654,10 +654,11 @@ source = {
dependencies = {
'tarantool',
'lua >= 5.1',
'checks == 3.2.0-1',
'cartridge == 2.7.9-1',
'checks == 3.3.0-1',
'cartridge == 2.8.0-1',
'ldecnumber == 1.1.3-1',
'metrics == 0.16.0-1',
'metrics == 1.0.0-1',
'cartridge-metrics-role == 0.1.0-1',
}
build = {
type = 'none';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ source = {
dependencies = {
'tarantool',
'lua >= 5.1',
'checks == 3.2.0-1',
'cartridge == 2.7.9-1',
'checks == 3.3.0-1',
'cartridge == 2.8.0-1',
'ldecnumber == 1.1.3-1',
'metrics == 0.16.0-1',
'metrics == 1.0.0-1',
'cartridge-metrics-role == 0.1.0-1',
}
build = {
type = 'none';
Expand Down
4 changes: 2 additions & 2 deletions test/integration/cli/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def test_duplicate_rocks(project_with_cartridge, cartridge_cmd, version_cmd):

rc, output = run_command_and_get_output(cmd)
assert rc == 0
assert "graphql 0.1.0-1, 0.2.0-1" in output
assert "graphql 0.1.0-1, 0.3.0-1" in output
assert "Found multiple versions in rocks manifest" in output


Expand All @@ -144,5 +144,5 @@ def test_duplicate_cartridge_no_rocks_flag(project_with_cartridge, cartridge_cmd

rc, output = run_command_and_get_output(cmd)
assert rc == 0
assert "Version:\t2.5.0-1, 2.7.9-1" in output
assert "Version:\t2.5.0-1, 2.8.0-1" in output
assert "Found multiple versions of Cartridge in rocks manifest" in output
7 changes: 4 additions & 3 deletions test/integration/create/test_create.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,10 @@ def app_template(tmpdir):
dependencies = {
'tarantool',
'lua >= 5.1',
'checks == 3.2.0-1',
'cartridge == 2.7.9-1',
'metrics == 0.16.0-1',
'checks == 3.3.0-1',
'cartridge == 2.8.0-1',
'metrics == 1.0.0-1',
'cartridge-metrics-role == 0.1.0-1',
}
build = {
type = 'none';
Expand Down

0 comments on commit 2bdd45c

Please sign in to comment.