sorbet_typed-props 1.3.57 → 1.4.0

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: 0bd8b7c86324c3ce9fa79e37cab9382d5262e934515e8ae341a32b1615706564
4
- data.tar.gz: 6ca74d0acc71dbc9f52c1cad27c35222de2d09a259295a97b72ecda99d6732c7
3
+ metadata.gz: d75d26f9d4ce8fae5a4d485cdc0f34b48022b858cf9858d07abb1350cd318f08
4
+ data.tar.gz: 71d4cb2814dfcf770731d42d0837d4eb12ac165888de3071d12231d6f7be80a2
5
5
  SHA512:
6
- metadata.gz: 6502eb6a2e559013c9d4a0513275ab215af3e49874968376a7e8674888388cc00f7a8a49611fdc625deba6547d5ca5f5d29cece68d3dfc4a5b730fd7a1d1b942
7
- data.tar.gz: 1b18d52de101c8fc5a90018ab54aea3e28ed2c40876174b666b172d2ee39fcf95b5efbf766f193e63b474875cadf543a2058c756a341477d15f5bc0cf7578997
6
+ metadata.gz: 6f32d2099bde759467ed2228fd35faf17f3512ea42943cd26d82b44ec0a82ef52fd9d77ebda87529dcf5846066f8308a2708144b4ffbb86b245b46346064b8e1
7
+ data.tar.gz: d277f49266b116d6d9050dfb88a09bd1ed7def6504aed453af804f0b7902011f495ff26f555b80d61ac4916c45aedcffdf153c1259e54d42a3ba3da4361923db
data/.cz.yaml CHANGED
@@ -15,7 +15,7 @@ commitizen:
15
15
  - mise run format
16
16
  tag_format: v$version
17
17
  update_changelog_on_bump: true
18
- version: 1.3.57
18
+ version: 1.4.0
19
19
  version_files:
20
20
  - lib/sorbet_typed/props/version.rb
21
21
  version_scheme: semver2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## v1.4.0 (2026-05-29)
2
+
3
+ ### Feat
4
+
5
+ - **deps**: remove upper version bounds from gemspec
6
+
7
+ ### Fix
8
+
9
+ - **tapioca**: add missing require for sorbet_typed/props in constructor compiler
10
+
1
11
  ## v1.3.57 (2026-05-28)
2
12
 
3
13
  ### Fix
data/README.md CHANGED
@@ -23,6 +23,19 @@ in parallel).
23
23
  - [Development](#development)
24
24
  - [Contributing](#contributing)
25
25
 
26
+ ## Tested with
27
+
28
+ <!-- begin:tested-versions -->
29
+
30
+ | | Tested versions |
31
+ | -------------- | ---------------- |
32
+ | Ruby | 3.3, 3.4, 4.0 |
33
+ | sorbet-runtime | 0.6 |
34
+ | tapioca | 0.17, 0.18, 0.19 |
35
+ | sorbet | 0.6 |
36
+
37
+ <!-- end:tested-versions -->
38
+
26
39
  ## Installation
27
40
 
28
41
  Install the gem and add to the application's Gemfile by executing:
@@ -5,7 +5,7 @@
5
5
 
6
6
  module SorbetTyped
7
7
  module Props
8
- VERSION = '1.3.57'
8
+ VERSION = '1.4.0'
9
9
  end
10
10
  end
11
11
 
@@ -2,6 +2,7 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  require_relative 'sorbet_typed_props_constructor/prop_to_param_converter'
5
+ require_relative '../../../sorbet_typed/props'
5
6
 
6
7
  module Tapioca
7
8
  module Dsl
@@ -0,0 +1,7 @@
1
+ # Source of truth for which dependency versions are tested in appraisals.
2
+ # Renovate manages updates to these versions.
3
+ #
4
+ # Each value is the definitive upper bound (patch-level inclusive); update:appraisal
5
+ # tests all minors from the gemspec lower bound up to and including this exact version.
6
+ sorbet-runtime: '0.6.13256'
7
+ tapioca: '0.19.1'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sorbet_typed-props
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.57
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard Kramer
@@ -16,9 +16,6 @@ dependencies:
16
16
  - - ">="
17
17
  - !ruby/object:Gem::Version
18
18
  version: 0.6.0
19
- - - "<="
20
- - !ruby/object:Gem::Version
21
- version: 0.6.13256
22
19
  type: :runtime
23
20
  prerelease: false
24
21
  version_requirements: !ruby/object:Gem::Requirement
@@ -26,9 +23,6 @@ dependencies:
26
23
  - - ">="
27
24
  - !ruby/object:Gem::Version
28
25
  version: 0.6.0
29
- - - "<="
30
- - !ruby/object:Gem::Version
31
- version: 0.6.13256
32
26
  - !ruby/object:Gem::Dependency
33
27
  name: tapioca
34
28
  requirement: !ruby/object:Gem::Requirement
@@ -36,9 +30,6 @@ dependencies:
36
30
  - - ">="
37
31
  - !ruby/object:Gem::Version
38
32
  version: 0.17.0
39
- - - "<="
40
- - !ruby/object:Gem::Version
41
- version: 0.19.1
42
33
  type: :runtime
43
34
  prerelease: false
44
35
  version_requirements: !ruby/object:Gem::Requirement
@@ -46,9 +37,6 @@ dependencies:
46
37
  - - ">="
47
38
  - !ruby/object:Gem::Version
48
39
  version: 0.17.0
49
- - - "<="
50
- - !ruby/object:Gem::Version
51
- version: 0.19.1
52
40
  description: A small wrapper around sorbets T::Props and T::Props::Constructor. Also
53
41
  provides an accompanying tapioca compiler to allow using the prop-syntax in any
54
42
  class and getting the correct signature for an initializer.
@@ -72,6 +60,7 @@ files:
72
60
  - lib/sorbet_typed/props/without_init_param_and_no_default_plugin.rb
73
61
  - lib/tapioca/dsl/compilers/sorbet_typed_props_constructor.rb
74
62
  - lib/tapioca/dsl/compilers/sorbet_typed_props_constructor/prop_to_param_converter.rb
63
+ - tested_gem_versions.yml
75
64
  homepage: https://gitlab.com/sorbet_typed/props
76
65
  licenses:
77
66
  - GPL-3.0-or-later
@@ -88,9 +77,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
88
77
  - - ">="
89
78
  - !ruby/object:Gem::Version
90
79
  version: '3.3'
91
- - - "<="
92
- - !ruby/object:Gem::Version
93
- version: 4.0.5
94
80
  required_rubygems_version: !ruby/object:Gem::Requirement
95
81
  requirements:
96
82
  - - ">="