forked from wolfi-dev/os
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ruby3.2-kubeclient - Loosen restriction on recursive-open-struct version
ruby3.2-kubeclient is currently not passing a test. That means it can't get any new version should one be created. I hit this when trying to create ruby 3.3 versions of it. If this does not work, then we will need to create a ruby3.2-recursive-open-struct-1.3 package and depend on it. I proposed upstream ManageIQ/kubeclient#640. Fixes: wolfi-dev#31938
- Loading branch information
Showing
2 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
From 0eb594296597e45011d8e4090244597f76d06d53 Mon Sep 17 00:00:00 2001 | ||
From: Scott Moser <[email protected]> | ||
Date: Fri, 25 Oct 2024 12:55:29 -0400 | ||
Subject: [PATCH] Try bumping recursive-open-struct | ||
|
||
recursive-open-struct moved forward to 1.3 on 2024-10-03 and then | ||
immediately forward to 2.0 which does include this entry in changelog: | ||
|
||
* BREAKING: Restore #72, which is an API-breaking change because it changes | ||
what data is serialized with marshalling. | ||
|
||
I proposed https://github.com/ManageIQ/kubeclient/pull/640 upstream | ||
to see if it is plausible to do this versus adding | ||
ruby3.2-recursive-open-struct-1.3 . | ||
|
||
--- | ||
kubeclient.gemspec | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/kubeclient.gemspec b/kubeclient.gemspec | ||
index 4df0014..f1b9911 100644 | ||
--- a/kubeclient.gemspec | ||
+++ b/kubeclient.gemspec | ||
@@ -37,6 +37,6 @@ Gem::Specification.new do |spec| | ||
|
||
spec.add_dependency 'jsonpath', '~> 1.0' | ||
spec.add_dependency 'rest-client', '~> 2.0' | ||
- spec.add_dependency 'recursive-open-struct', '~> 1.1', '>= 1.1.1' | ||
+ spec.add_dependency 'recursive-open-struct', '> 1.1.1', '< 3.0' | ||
spec.add_dependency 'http', '>= 3.0', '< 6.0' | ||
end | ||
|
||
-- | ||
2.47.0 | ||
|