Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

app-dependency: update Cartridge to 2.10.0 #798

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,16 @@ 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
- Update `cartridge` to `2.10.0` in application template.

## [2.12.11] - 2024-04-02

### Changed

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

## [2.12.10] - 2023-12-14
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies = {
'tarantool',
'lua >= 5.1',
'checks == 3.3.0-1',
'cartridge == 2.8.4-1',
'cartridge == 2.10.0-1',
'metrics == 1.0.0-1',
'cartridge-metrics-role == 0.1.1-1',
'cartridge-cli-extensions == 1.1.1-1',
Expand Down
2 changes: 1 addition & 1 deletion examples/getting-started-app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,7 @@ dependencies = {
'tarantool',
'lua >= 5.1',
'checks == 3.3.0-1',
'cartridge == 2.8.4-1',
'cartridge == 2.10.0-1',
'ldecnumber == 1.1.3-1',
'metrics == 1.0.0-1',
'cartridge-metrics-role == 0.1.1-1',
Expand Down
2 changes: 1 addition & 1 deletion examples/getting-started-app/README_RUS.md
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ dependencies = {
'tarantool',
'lua >= 5.1',
'checks == 3.3.0-1',
'cartridge == 2.8.4-1',
'cartridge == 2.10.0-1',
'ldecnumber == 1.1.3-1',
'metrics == 1.0.0-1',
'cartridge-metrics-role == 0.1.1-1',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies = {
'tarantool',
'lua >= 5.1',
'checks == 3.3.0-1',
'cartridge == 2.8.4-1',
'cartridge == 2.10.0-1',
'ldecnumber == 1.1.3-1',
'metrics == 1.0.0-1',
'cartridge-metrics-role == 0.1.1-1',
Expand Down
2 changes: 1 addition & 1 deletion test/integration/cli/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.4-1" in output
assert "Version:\t2.10.0-1, 2.5.0-1" in output
assert "Found multiple versions of Cartridge in rocks manifest" in output
2 changes: 1 addition & 1 deletion test/integration/create/test_create.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def app_template(tmpdir):
'tarantool',
'lua >= 5.1',
'checks == 3.3.0-1',
'cartridge == 2.8.4-1',
'cartridge == 2.10.0-1',
'metrics == 1.0.0-1',
'cartridge-metrics-role == 0.1.1-1',
}
Expand Down