Skip to content

Commit

Permalink
create: less strict deps in cartridge template
Browse files Browse the repository at this point in the history
Make dependencies less strict to support newer rocks versions in local
repositories.
  • Loading branch information
psergee authored and LeonidVas committed Nov 14, 2023
1 parent d894732 commit c5dc543
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/full-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ jobs:

- name: Install dependencies
run: |
brew install --overwrite go mage wget
brew install --overwrite go mage wget node
pip3 install -r test/requirements.txt
- name: Install etcd
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:

- name: Install dependencies
run: |
brew install --overwrite go mage
brew install --overwrite go mage node
pip3 install -r test/requirements.txt
- name: Install etcd
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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

- Make cartridge app dependencies less strict.

## [2.0.0] - 2023-11-13

### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ source = {
dependencies = {
'tarantool',
'lua >= 5.1',
'checks == 3.3.0-1',
'cartridge == 2.8.4-1',
'metrics == 1.0.0-1',
'cartridge-metrics-role == 0.1.1-1',
'cartridge-cli-extensions == 1.1.2-1',
'checks >= 3.3.0-1',
'cartridge >= 2.8.3-1',
'metrics >= 1.0.0-1',
'cartridge-metrics-role >= 0.1.1-1',
'cartridge-cli-extensions >= 1.1.1-1',
}
build = {
type = 'none';
Expand Down

0 comments on commit c5dc543

Please sign in to comment.