File tree Expand file tree Collapse file tree 6 files changed +14
-7
lines changed
lib/kubernetes_template_rendering
spec/kubernetes_template_rendering Expand file tree Collapse file tree 6 files changed +14
-7
lines changed Original file line number Diff line number Diff line change 66/pkg /
77/spec /reports /
88/tmp /
9+ .idea
910
1011# rspec failure tracking
1112.rspec_status
Original file line number Diff line number Diff line change @@ -4,6 +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.5] - 2025-05-08
8+ ### Fixed
9+ - Updated ` rexml ` dependency to avoid security issues
10+
11+ ## [ 0.2.4] - 2025-05-08
12+ ### Fixed
13+ - Fixed ` --prune ` to properly remove files in the rendered directory
14+
715## [ 0.2.3] - 2025-03-25
816### Fixed
917- Fixed ` --variable-override ` to accept multiple arguments to override multiple variables
Original file line number Diff line number Diff line change 11PATH
22 remote: .
33 specs:
4- kubernetes_template_rendering (0.2.3 )
4+ kubernetes_template_rendering (0.2.5 )
55 activesupport (< 8 )
66 invoca-utils
77 jsonnet
5151 rainbow (3.1.1 )
5252 rake (13.2.1 )
5353 regexp_parser (2.9.0 )
54- rexml (3.3.0 )
55- strscan
54+ rexml (3.4.1 )
5655 rspec (3.13.0 )
5756 rspec-core (~> 3.13.0 )
5857 rspec-expectations (~> 3.13.0 )
8685 simplecov_json_formatter (~> 0.1 )
8786 simplecov-html (0.12.3 )
8887 simplecov_json_formatter (0.1.4 )
89- strscan (3.1.0 )
9088 tzinfo (2.0.6 )
9189 concurrent-ruby (~> 1.0 )
9290 unicode-display_width (2.5.0 )
Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ def prune_directory(directory)
178178 The `prune` flag is set to true, #{ Color . green ( 'pruning' ) } directory #{ Color . magenta ( directory ) } before rendering
179179
180180 MESSAGE
181- FileUtils . rm_rf ( " #{ directory } /*" )
181+ FileUtils . rm_rf ( directory )
182182 end
183183 end
184184
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33module KubernetesTemplateRendering
4- VERSION = "0.2.3 "
4+ VERSION = "0.2.5 "
55end
Original file line number Diff line number Diff line change 7474
7575 it "prunes the directory" do
7676 expect ( FileUtils ) . to_not receive ( :mkdir_p )
77- expect ( FileUtils ) . to receive ( :rm_rf ) . with ( " #{ expanded_output_directory } /*" )
77+ expect ( FileUtils ) . to receive ( :rm_rf ) . with ( expanded_output_directory )
7878 resource_set . render ( args )
7979 end
8080 end
You can’t perform that action at this time.
0 commit comments