Skip to content

Commit 30c6d10

Browse files
committed
hotfix: restrict to activesupport versions earlier than 8
1 parent df32305 commit 30c6d10

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,14 @@ Inspired by [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
44

55
Note: this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [0.2.1] - 2024-06-17
7+
## [0.2.2] - 2024-06-17
88
### Fixed
99
- Fixed a bug allowing child process errors to be ignored while rendering.
1010

11+
## [0.2.1] - 2024-11-22
12+
### Fixed
13+
- Fixed a bug where attempting to use `activesupport` 8 was causing installation issues
14+
1115
## [0.2.0] - 2024-05-06
1216
### Added
1317
- Added support for passing `--source-repo` flag into command line so that the rendered manifest comments can include a link to the source repository.

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
PATH
22
remote: .
33
specs:
4-
kubernetes_template_rendering (0.2.1)
5-
activesupport
4+
kubernetes_template_rendering (0.2.2)
5+
activesupport (< 8)
66
invoca-utils
77
jsonnet
88

kubernetes_template_rendering.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Gem::Specification.new do |spec|
3434
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
3535
spec.require_paths = ["lib"]
3636

37-
spec.add_dependency "activesupport"
37+
spec.add_dependency "activesupport", "< 8"
3838
spec.add_dependency "jsonnet"
3939
spec.add_dependency "invoca-utils"
4040
end
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module KubernetesTemplateRendering
4-
VERSION = "0.2.1"
4+
VERSION = "0.2.2"
55
end

0 commit comments

Comments
 (0)