File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed
lib/kubernetes_template_rendering Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,14 @@ Inspired by [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
44
55Note: 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.
Original file line number Diff line number Diff line change 11PATH
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
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ Gem::Specification.new do |spec|
3434 spec . executables = spec . files . grep ( %r{\A exe/} ) { |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"
4040end
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33module KubernetesTemplateRendering
4- VERSION = "0.2.1 "
4+ VERSION = "0.2.2 "
55end
You can’t perform that action at this time.
0 commit comments