kitchen-docker 3.2.3 → 3.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7c9d06e9cc15a17fcaa0658c0cb33719baf0bbe46211269975ae66dbf5bfed4c
4
- data.tar.gz: 367a618236ccbcb315dbe8d69cec049f7f26b5bcd35c640f7dea6d5c5528aed5
3
+ metadata.gz: ebac258abf8eee0f609f6a779759035f61cf02ded630abd813740112cb4e1730
4
+ data.tar.gz: 24844ad279e2b3baf5d44c08211e0c4c70a1c66950ce2e3db12ced167f4becc5
5
5
  SHA512:
6
- metadata.gz: b17b6a8042a54d09b0e77ef0955d41d3e7b4574e1c634429b1a8a5c06dfed9d02ad86b03d86588f11f328897ae028e0925fbcf4b30b014d3ad81f0670017b80e
7
- data.tar.gz: 4821086d0078af8b2919010e7373646922cb17e2549be27537572004f4c95ff7ac39c7fd39a61e1607bbff50e8090d564f309dd168f11b0d3560b242bbd7e1c9
6
+ metadata.gz: 96327f5340b2ef75abcb004555242441117c148442582d3d91b43b970bb89db09ce02606cc090f45b6976bf02d5be7420667470be9d2351c39c5fd63f4cb4128
7
+ data.tar.gz: 69d1caecb022affa9bf59690a25275a3f040167e46f799c9c7278f817c73c8cfb7baaa894168eb4b305e93f301fd041db6b133e48fc2bd38df9404a92957e28a
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "3.2.3"
2
+ ".": "3.2.4"
3
3
  }
data/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  Future CHANGELOG notes will be in GitHub release notes
4
4
 
5
+ ## [3.2.4](https://github.com/test-kitchen/kitchen-docker/compare/v3.2.3...v3.2.4) (2026-07-28)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * Avoid curl conflict with RHEL ubi in dockerfile helper ([#458](https://github.com/test-kitchen/kitchen-docker/issues/458)) ([028ce4c](https://github.com/test-kitchen/kitchen-docker/commit/028ce4c6ebdde7727f0e8aea7ae1a998f73f6eb8))
11
+
5
12
  ## [3.2.3](https://github.com/test-kitchen/kitchen-docker/compare/v3.2.2...v3.2.3) (2026-06-25)
6
13
 
7
14
 
@@ -16,6 +16,6 @@
16
16
  module Kitchen
17
17
  module Docker
18
18
  # Version string for Docker Kitchen driver
19
- DOCKER_VERSION = "3.2.3".freeze
19
+ DOCKER_VERSION = "3.2.4".freeze
20
20
  end
21
21
  end
@@ -111,7 +111,8 @@ module Kitchen
111
111
  <<-CODE
112
112
  ENV container=docker
113
113
  RUN yum clean all
114
- RUN yum install -y sudo openssh-server openssh-clients which curl
114
+ RUN yum install -y sudo openssh-server openssh-clients which
115
+ RUN which curl || yum install -y curl
115
116
  RUN [ -f "/etc/ssh/ssh_host_rsa_key" ] || ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key -N ''
116
117
  CODE
117
118
  end
@@ -61,9 +61,10 @@ describe Kitchen::Docker::Helpers::DockerfileHelper do
61
61
  expect(result).not_to include("--allowerasing")
62
62
  end
63
63
 
64
- it "installs required packages including curl" do
64
+ it "installs required packages including curl if needed" do
65
65
  result = helper.rhel_platform
66
- expect(result).to include("sudo openssh-server openssh-clients which curl")
66
+ expect(result).to include("sudo openssh-server openssh-clients which")
67
+ expect(result).to include("which curl || yum install -y curl")
67
68
  end
68
69
  end
69
70
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kitchen-docker
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.3
4
+ version: 3.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sean Porter
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-06-25 00:00:00.000000000 Z
11
+ date: 2026-07-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: test-kitchen