Skip to content

Commit d7fa8a3

Browse files
committed
3.3.1
- Optimized caching towards reducing retained memory after calling `OpenapiFirst.load` without using a global cache. (Removed `OpenapiFirst.clear_cache!`.) - Require ruby >= 3.3.0
1 parent d54a620 commit d7fa8a3

6 files changed

Lines changed: 13 additions & 11 deletions

File tree

.github/workflows/ruby.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ jobs:
88
os:
99
- ubuntu-latest
1010
ruby:
11-
- "3.2"
1211
- "3.3"
1312
- "3.4"
1413
- "4.0"

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22

33
## Unreleased
44

5-
- Optimized caching towards reducing retained memory after calling `OpenapiFirst.load` without using a global cache. Removed `OpenapiFirst.clear_cache!`.
5+
## 3.3.1
6+
7+
- Optimized caching towards reducing retained memory after calling `OpenapiFirst.load` without using a global cache. (Removed `OpenapiFirst.clear_cache!`.)
8+
- Require ruby >= 3.3.0
69

710
## 3.3.0
811

Gemfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
openapi_first (3.3.0)
4+
openapi_first (3.3.1)
55
drb (~> 2.0)
66
hana (~> 1.3)
77
json_schemer (>= 2.1, < 3.0)
@@ -151,7 +151,7 @@ GEM
151151
racc (~> 1.4)
152152
openapi_parameters (0.11.0)
153153
rack (>= 2.2)
154-
parallel (1.28.0)
154+
parallel (2.0.1)
155155
parser (3.3.11.1)
156156
ast (~> 2.4.1)
157157
racc
@@ -227,11 +227,11 @@ GEM
227227
diff-lcs (>= 1.2.0, < 2.0)
228228
rspec-support (~> 3.13.0)
229229
rspec-support (3.13.7)
230-
rubocop (1.86.0)
230+
rubocop (1.86.1)
231231
json (~> 2.3)
232232
language_server-protocol (~> 3.17.0.2)
233233
lint_roller (~> 1.1.0)
234-
parallel (~> 1.10)
234+
parallel (>= 1.10)
235235
parser (>= 3.3.0.2)
236236
rainbow (>= 2.2.2, < 4.0)
237237
regexp_parser (>= 2.9.3, < 3.0)
@@ -302,4 +302,4 @@ DEPENDENCIES
302302
sinatra
303303

304304
BUNDLED WITH
305-
4.0.6
305+
4.0.10

benchmarks/Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
openapi_first (3.3.0)
4+
openapi_first (3.3.1)
55
drb (~> 2.0)
66
hana (~> 1.3)
77
json_schemer (>= 2.1, < 3.0)
@@ -42,7 +42,7 @@ GEM
4242
optparse
4343
uri
4444
webrick
45-
puma (7.2.0)
45+
puma (8.0.0)
4646
nio4r (~> 2.0)
4747
rack (3.2.6)
4848
rack-protection (4.2.1)

lib/openapi_first/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module OpenapiFirst
4-
VERSION = '3.3.0'
4+
VERSION = '3.3.1'
55
end

openapi_first.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
2121
spec.files = Dir['{lib}/**/*.rb', 'LICENSE.txt', 'README.md', 'CHANGELOG.md']
2222
spec.require_paths = ['lib']
2323

24-
spec.required_ruby_version = '>= 3.2.0'
24+
spec.required_ruby_version = '>= 3.3.0'
2525

2626
spec.add_dependency 'drb', '~> 2.0'
2727
spec.add_dependency 'hana', '~> 1.3'

0 commit comments

Comments
 (0)