Skip to content

Commit

Permalink
Pin statsd instrument to 3.8.0 (#963)
Browse files Browse the repository at this point in the history
* Pin `statsd-instrument` to < 3.9 due to incompatible change

* Update `dev.yml` to run various test suites correctly.

* Update CHANNGELOG.md
  • Loading branch information
jpfourny authored Aug 21, 2024
1 parent 2089564 commit 9c7e632
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## next

- Pinning `stats-instrument` to < 3.9 to avoid breaking changes.

## 3.6.1

*Features*
Expand Down
10 changes: 9 additions & 1 deletion dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,15 @@ up:
image: kindest/node:v1.28.0@sha256:dad5a6238c5e41d7cac405fae3b5eda2ad1de6f1190fa8bfc64ff5bb86173213
commands:
test:
run: bin/test
run: bin/test unit_test && bin/test cli_test && bin/test serial_integration_test && bin/test integration_test
test-unit:
run: bin/test unit_test
test-cli:
run: bin/test cli_test
test-serial_integration:
run: bin/test serial_integration_test,
test-integration:
run: bin/test integration_test
tophat:
run: PRINT_LOGS=1 bundle exec ruby -I test test/integration/krane_deploy_test.rb -n/${1}/
desc: Tophat a change by running a test scenario with logging output enabled.
Expand Down
2 changes: 1 addition & 1 deletion krane.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
spec.add_dependency("googleauth", "~> 1.2")
spec.add_dependency("ejson", "~> 1.0")
spec.add_dependency("colorize", "~> 0.8")
spec.add_dependency("statsd-instrument", ['>= 2.8', "< 4"])
spec.add_dependency("statsd-instrument", ['>= 2.8', "< 3.9"])
spec.add_dependency("multi_json")
spec.add_dependency("concurrent-ruby", "~> 1.1")
spec.add_dependency("jsonpath", "~> 1.0")
Expand Down

0 comments on commit 9c7e632

Please sign in to comment.