http-retry-after 0.1.1 → 0.2.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 +4 -4
- data/.github/workflows/ci.yml +1 -1
- data/.github/workflows/release-please.yml +1 -3
- data/.release-please-manifest.json +3 -0
- data/AGENTS.md +1 -1
- data/CHANGELOG.md +9 -6
- data/Gemfile +1 -1
- data/Gemfile.lock +5 -3
- data/http-retry-after.gemspec +1 -1
- data/lib/http/retry_after/version.rb +1 -1
- data/release-please-config.json +9 -0
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f3070a68f7f052be109840a338fcd16c8d6fb046831ee21be97871f55fd9f5de
|
|
4
|
+
data.tar.gz: 5733bd2162ad3734075dcf1e38bb91d94ddf1c5fd43079fcd289ae57a40f8b4a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 021d5f81247a17b106400d1eb5c1eb50cc416c2735be6dec7c376d6a79b114645a470aa8b5843b9a7f1e964d0058ced3ea149123ded37c57ca46b688ad9dd849
|
|
7
|
+
data.tar.gz: f279c2ac31b05ad8468188d7d9cafb7d52b932b3dc1cd46c678cf4129660d4ea4f5415e189a0801f7d835883920bce90e0603324691b8e52e89c4136b6b3518a
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -17,8 +17,6 @@ jobs:
|
|
|
17
17
|
steps:
|
|
18
18
|
- id: release
|
|
19
19
|
uses: googleapis/release-please-action@16a9c90856f42705d54a6fda1823352bdc62cf38 # v4.4.0
|
|
20
|
-
with:
|
|
21
|
-
release-type: ruby
|
|
22
20
|
deploy:
|
|
23
21
|
runs-on: ubuntu-latest
|
|
24
22
|
needs:
|
|
@@ -32,4 +30,4 @@ jobs:
|
|
|
32
30
|
- run: gem build http-retry-after.gemspec
|
|
33
31
|
- run: gem push pkg/http-retry-after-*.gem
|
|
34
32
|
env:
|
|
35
|
-
|
|
33
|
+
GEM_HOST_API_KEY: ${{ secrets.GEM_HOST_API_KEY }}
|
data/AGENTS.md
CHANGED
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
## Commit and Pull Request
|
|
30
30
|
|
|
31
31
|
- Commit style mirrors current history: Conventional Commits-like prefixes (`feat|fix|chore|docs: ...`) with issue numbers `(#123)` when relevant.
|
|
32
|
-
- PRs: include summary, motivation, key changes, and test results as bullets.
|
|
32
|
+
- PRs: include summary, motivation, key changes, and test results as bullets. `CHANGELOG.md` is auto-updated; do not edit it manually.
|
|
33
33
|
- Keep one concern per PR, ensure Rake tests pass, and attach repro steps or screenshots only when helpful.
|
|
34
34
|
|
|
35
35
|
## Security and Maintenance
|
data/CHANGELOG.md
CHANGED
|
@@ -2,18 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
-
## [0.
|
|
5
|
+
## [0.2.0](https://github.com/kudoas/http-retry-after/compare/v0.1.1...v0.2.0) (2026-01-03)
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
###
|
|
8
|
+
### Features
|
|
9
9
|
|
|
10
|
-
*
|
|
10
|
+
* update CI Ruby version matrix and modify CHANGELOG formatting ([#15](https://github.com/kudoas/http-retry-after/issues/15)) ([3b3b05c](https://github.com/kudoas/http-retry-after/commit/3b3b05c36e0e1073171bd40dde2d7a730f32d790))
|
|
11
|
+
* update required Ruby version to 3.1 in gemspec ([#17](https://github.com/kudoas/http-retry-after/issues/17)) ([f85b32c](https://github.com/kudoas/http-retry-after/commit/f85b32ce7f9192e736362db2cc66f30f636d3736))
|
|
11
12
|
|
|
12
|
-
## [
|
|
13
|
+
## [0.1.1](https://github.com/kudoas/http-retry-after/compare/v0.1.0...v0.1.1) (2026-01-02)
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
13
16
|
|
|
14
|
-
-
|
|
17
|
+
- improve error handling in parse_seconds and parse_http_date methods ([#4](https://github.com/kudoas/http-retry-after/issues/4)) ([558c11b](https://github.com/kudoas/http-retry-after/commit/558c11b81f04bb9184bd1678b4c20d819c05d6e7))
|
|
15
18
|
|
|
16
|
-
##
|
|
19
|
+
## 0.1.0
|
|
17
20
|
|
|
18
21
|
### Added
|
|
19
22
|
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
http-retry-after (0.1.
|
|
4
|
+
http-retry-after (0.1.1)
|
|
5
5
|
|
|
6
6
|
GEM
|
|
7
7
|
remote: https://rubygems.org/
|
|
8
8
|
specs:
|
|
9
|
-
minitest (
|
|
9
|
+
minitest (6.0.1)
|
|
10
|
+
prism (~> 1.5)
|
|
11
|
+
prism (1.7.0)
|
|
10
12
|
rake (13.3.1)
|
|
11
13
|
|
|
12
14
|
PLATFORMS
|
|
@@ -16,7 +18,7 @@ PLATFORMS
|
|
|
16
18
|
DEPENDENCIES
|
|
17
19
|
bundler (>= 2.0)
|
|
18
20
|
http-retry-after!
|
|
19
|
-
minitest (~>
|
|
21
|
+
minitest (~> 6.0)
|
|
20
22
|
rake
|
|
21
23
|
|
|
22
24
|
BUNDLED WITH
|
data/http-retry-after.gemspec
CHANGED
|
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
|
|
|
16
16
|
spec.metadata["source_code_uri"] = spec.homepage
|
|
17
17
|
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
|
|
18
18
|
|
|
19
|
-
spec.required_ruby_version = ">= 3.
|
|
19
|
+
spec.required_ruby_version = ">= 3.1"
|
|
20
20
|
|
|
21
21
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
|
22
22
|
`git ls-files -z`.split("\x0")
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: http-retry-after
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daichi KUDO
|
|
@@ -21,6 +21,7 @@ files:
|
|
|
21
21
|
- ".github/workflows/ci.yml"
|
|
22
22
|
- ".github/workflows/release-please.yml"
|
|
23
23
|
- ".gitignore"
|
|
24
|
+
- ".release-please-manifest.json"
|
|
24
25
|
- AGENTS.md
|
|
25
26
|
- CHANGELOG.md
|
|
26
27
|
- Gemfile
|
|
@@ -32,6 +33,7 @@ files:
|
|
|
32
33
|
- lib/http-retry-after.rb
|
|
33
34
|
- lib/http/retry_after.rb
|
|
34
35
|
- lib/http/retry_after/version.rb
|
|
36
|
+
- release-please-config.json
|
|
35
37
|
- renovate.json
|
|
36
38
|
- test/http_retry_after_test.rb
|
|
37
39
|
- test/test_helper.rb
|
|
@@ -48,7 +50,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
48
50
|
requirements:
|
|
49
51
|
- - ">="
|
|
50
52
|
- !ruby/object:Gem::Version
|
|
51
|
-
version: '3.
|
|
53
|
+
version: '3.1'
|
|
52
54
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
53
55
|
requirements:
|
|
54
56
|
- - ">="
|