Skip to content

Commit c5dc543

Browse files
psergeeLeonidVas
authored andcommitted
create: less strict deps in cartridge template
Make dependencies less strict to support newer rocks versions in local repositories.
1 parent d894732 commit c5dc543

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

.github/workflows/full-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129

130130
- name: Install dependencies
131131
run: |
132-
brew install --overwrite go mage wget
132+
brew install --overwrite go mage wget node
133133
pip3 install -r test/requirements.txt
134134
135135
- name: Install etcd

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124

125125
- name: Install dependencies
126126
run: |
127-
brew install --overwrite go mage
127+
brew install --overwrite go mage node
128128
pip3 install -r test/requirements.txt
129129
130130
- name: Install etcd

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+
- Make cartridge app dependencies less strict.
13+
814
## [2.0.0] - 2023-11-13
915

1016
### Changed

cli/create/builtin_templates/templates/cartridge/{{.name}}-scm-1.rockspec.tt.template

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ source = {
77
dependencies = {
88
'tarantool',
99
'lua >= 5.1',
10-
'checks == 3.3.0-1',
11-
'cartridge == 2.8.4-1',
12-
'metrics == 1.0.0-1',
13-
'cartridge-metrics-role == 0.1.1-1',
14-
'cartridge-cli-extensions == 1.1.2-1',
10+
'checks >= 3.3.0-1',
11+
'cartridge >= 2.8.3-1',
12+
'metrics >= 1.0.0-1',
13+
'cartridge-metrics-role >= 0.1.1-1',
14+
'cartridge-cli-extensions >= 1.1.1-1',
1515
}
1616
build = {
1717
type = 'none';

0 commit comments

Comments
 (0)