kube-dsl 0.7.4 → 0.7.5

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: 317a95c1f49b4f9460c92621300cfb523182369c51f6b2dc049a9a3be5b5b71c
4
- data.tar.gz: be508abd66a920df63db42e055da34ec9d43cceca82848dfb61e5af367ec8b1f
3
+ metadata.gz: c07145a85d3b5554f469688421d56fc64cf97a4ac9b05ee75b707abbd6ddffeb
4
+ data.tar.gz: 1cddc65cbda068182755c1259b00ea25f31a1a8409a68466ad6ff491009f9083
5
5
  SHA512:
6
- metadata.gz: 265b052d47f2b57acf953b28cabc544817d24f2786ac17c99fd18bbaf5eb9a3bfeaa880204a74d32602dcc086e9d702682c7240c1c373abf4f92aa4ddfe0ca09
7
- data.tar.gz: 9af6ecdbfdff1d22b115f7fc42e000bdede2f69a8ceedeb88f3e7d5658dd937dcde6801675044b2c6a00a4b8668dff0fc31e59c0b3b944456544377b357ae00c
6
+ metadata.gz: 5f7fe3ab71ddcc48e5ae26bfa9d02244831420a70dc02f88253517cd6c7d0d242f72ea00bf9073af210dd791405bbe946fd56f5dc11b598701454efaef660192
7
+ data.tar.gz: c39e8ea014235f101d0247329a8eaf09c051e5d92a9f860b29488f9f490237ad91cb525877b60c3b1e0e4b56d33352deabfe81d0da59606796ffe008257a5f25
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.7.5
2
+
3
+ * Fix RBIs for new version of Sorbet.
4
+
1
5
  ## 0.7.4
2
6
  * Strip type annotations during gem build using Curdle.
3
7
 
data/Gemfile CHANGED
@@ -9,9 +9,9 @@ end
9
9
 
10
10
  group :development do
11
11
  # lock to a specific version to prevent breaking CI when new versions come out
12
- gem 'sorbet'
13
- gem 'tapioca', '~> 0.7'
14
- gem 'parlour', github: 'camertron/parlour', branch: 'initialize_void' # '~> 7.0'
12
+ gem 'sorbet', '= 0.5.10851'
13
+ gem 'tapioca', '~> 0.11'
14
+ gem 'parlour', '~> 8.0'
15
15
  gem 'curdle', '~> 1.2'
16
16
  end
17
17
 
@@ -45,7 +45,7 @@ module KubeDSL
45
45
  end
46
46
  end
47
47
 
48
- # T::Sig::WithoutRuntime.sig { params(other: KeyValueFields).void }
48
+ # T::Sig::WithoutRuntime.sig { params(other: KubeDSL::KeyValueFields).void }
49
49
  def merge!(other)
50
50
  @kv_pairs.merge!(other.instance_variable_get(:@kv_pairs))
51
51
  end
@@ -30,7 +30,7 @@ module KubeDSL
30
30
  private
31
31
 
32
32
  # T::Sig::WithoutRuntime.sig {
33
- # params(obj: T.any(String, AllowBlank, T::Array[T.untyped], T::Hash[T.untyped, T.untyped]))
33
+ # params(obj: T.any(String, KubeDSL::AllowBlank, T::Array[T.untyped], T::Hash[T.untyped, T.untyped]))
34
34
  # .returns(T.nilable(T.any(String, T::Array[T.untyped], T::Hash[T.untyped, T.untyped])))
35
35
  # }
36
36
  def cleanup(obj)
@@ -1,5 +1,5 @@
1
1
  # typed: strict
2
2
 
3
3
  module KubeDSL
4
- VERSION = '0.7.4'
4
+ VERSION = '0.7.5'
5
5
  end
data/rbi/kube-dsl.rbi CHANGED
@@ -42,7 +42,7 @@ module KubeDSL
42
42
  sig { returns(T::Hash[Symbol, String]) }
43
43
  def serialize; end
44
44
 
45
- sig { params(other: KeyValueFields).void }
45
+ sig { params(other: KubeDSL::KeyValueFields).void }
46
46
  def merge!(other); end
47
47
 
48
48
  sig { params(data: String).returns(String) }
@@ -67,7 +67,7 @@ module KubeDSL
67
67
  sig { returns(KubeDSL::Resource) }
68
68
  def to_resource; end
69
69
 
70
- sig { params(obj: T.any(String, AllowBlank, T::Array[T.untyped], T::Hash[T.untyped, T.untyped])).returns(T.nilable(T.any(String, T::Array[T.untyped], T::Hash[T.untyped, T.untyped]))) }
70
+ sig { params(obj: T.any(String, KubeDSL::AllowBlank, T::Array[T.untyped], T::Hash[T.untyped, T.untyped])).returns(T.nilable(T.any(String, T::Array[T.untyped], T::Hash[T.untyped, T.untyped]))) }
71
71
  def cleanup(obj); end
72
72
  end
73
73
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kube-dsl
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.4
4
+ version: 0.7.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cameron Dutro
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-07 00:00:00.000000000 Z
11
+ date: 2023-06-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-inflector