recurly 4.82.0 → 4.83.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/.bumpversion.cfg +1 -1
- data/CHANGELOG.md +11 -0
- data/GETTING_STARTED.md +1 -1
- data/lib/recurly/version.rb +1 -1
- data/openapi/api.yaml +4 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '09c8470217eb077c386fd7513a2d8ba3d6cafb98cad49b165b727cd2987e3071'
|
|
4
|
+
data.tar.gz: 166e4643fdf7c8914769bb50f2f53fc4062e922d2b658281b154aa875356926a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fa09b974d0e2b6fe5b59a4ebd2db4d890d3dc8f4cc79d2f50b04d64dee722be789bd3672e2169f9f9e5b0edd1755420e62d47505232ba0e7967ee5fc1b8407f6
|
|
7
|
+
data.tar.gz: 6a3a6c05c662445a9814b1c946b038cb8b7ac45c7cf30fe939423883bc0f507516f3bd9c058609badf5ce5cd15414aa0592fa3862fcc44f9f6e4732a85a882ac
|
data/.bumpversion.cfg
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.83.0](https://github.com/recurly/recurly-client-ruby/tree/4.83.0) (2026-09-18)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.82.0...4.83.0)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
**Merged Pull Requests**
|
|
9
|
+
|
|
10
|
+
- Generated Latest Changes for v2021-02-25 [#971](https://github.com/recurly/recurly-client-ruby/pull/971) ([recurly-integrations](https://github.com/recurly-integrations))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
3
14
|
## [4.82.0](https://github.com/recurly/recurly-client-ruby/tree/4.82.0) (2026-09-15)
|
|
4
15
|
|
|
5
16
|
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.81.0...4.82.0)
|
data/GETTING_STARTED.md
CHANGED
|
@@ -5,7 +5,7 @@ This repository houses the official ruby client for Recurly's V3 API.
|
|
|
5
5
|
In your Gemfile, add `recurly` as a dependency.
|
|
6
6
|
|
|
7
7
|
```ruby
|
|
8
|
-
gem 'recurly', '~> 4.
|
|
8
|
+
gem 'recurly', '~> 4.83'
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
> *Note*: We try to follow [semantic versioning](https://semver.org/) and will only apply breaking changes to major versions.
|
data/lib/recurly/version.rb
CHANGED
data/openapi/api.yaml
CHANGED
|
@@ -9717,7 +9717,8 @@ paths:
|
|
|
9717
9717
|
schema:
|
|
9718
9718
|
"$ref": "#/components/schemas/Error"
|
|
9719
9719
|
'422':
|
|
9720
|
-
description: Invalid request parameters.
|
|
9720
|
+
description: Invalid request parameters. Check that redeem_by_interval_unit
|
|
9721
|
+
and redeem_by_interval_amount are consistent with the coupon type.
|
|
9721
9722
|
content:
|
|
9722
9723
|
application/json:
|
|
9723
9724
|
schema:
|
|
@@ -10292,7 +10293,8 @@ paths:
|
|
|
10292
10293
|
schema:
|
|
10293
10294
|
"$ref": "#/components/schemas/Error"
|
|
10294
10295
|
'422':
|
|
10295
|
-
description: Invalid request parameters
|
|
10296
|
+
description: Invalid request parameters. Check that redeem_by_interval_unit
|
|
10297
|
+
and redeem_by_interval_amount are consistent with the coupon type.
|
|
10296
10298
|
content:
|
|
10297
10299
|
application/json:
|
|
10298
10300
|
schema:
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: recurly
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.83.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Recurly
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-09-
|
|
11
|
+
date: 2026-09-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: base64
|
|
@@ -409,7 +409,7 @@ metadata:
|
|
|
409
409
|
changelog_uri: https://github.com/recurly/recurly-client-ruby/blob/master/CHANGELOG.md
|
|
410
410
|
documentation_uri: https://recurly.github.io/recurly-client-ruby/
|
|
411
411
|
homepage_uri: https://github.com/recurly/recurly-client-ruby
|
|
412
|
-
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.
|
|
412
|
+
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.83.0
|
|
413
413
|
post_install_message:
|
|
414
414
|
rdoc_options: []
|
|
415
415
|
require_paths:
|