Skip to content

Commit 8b0ccdf

Browse files
authored
Merge pull request #272 from orbcorp/release-please--branches--main--changes--next
release: 1.0.0
2 parents a9aaa8e + e14215f commit 8b0ccdf

759 files changed

Lines changed: 93077 additions & 579979 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.12.0"
2+
".": "1.0.0"
33
}

.stats.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
configured_endpoints: 115
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-fee4c7438579fd72ae7c08ad11cc502da279ad3cccfe2235b18afcacc91ad0d9.yml
3-
openapi_spec_hash: dc9d553a388715ba22d873aee54a3ed1
4-
config_hash: 1e2186b09e57d7d27b6ab5c8e6410b31
1+
configured_endpoints: 116
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-c2a4808c828c8288c5c8dfe2fdfa51d4d7c1bcc33cacc6b859d0cf4b35ce95cc.yml
3+
openapi_spec_hash: a2b5a1bfabbd03dd1b411791576eb502
4+
config_hash: 3c3524be9607afb24d2139ce26ce5389

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Changelog
22

3+
## 1.0.0 (2025-06-09)
4+
5+
Full Changelog: [v0.12.0...v1.0.0](https://github.com/orbcorp/orb-ruby/compare/v0.12.0...v1.0.0)
6+
7+
### ⚠ BREAKING CHANGES
8+
9+
* **client:** breaking change to re-use types
10+
11+
### Features
12+
13+
* **api:** api update ([a04f1e8](https://github.com/orbcorp/orb-ruby/commit/a04f1e89e9188912bf860fc0214f657c2d135b6e))
14+
* **api:** api update ([bd80319](https://github.com/orbcorp/orb-ruby/commit/bd8031945315e344ca53add3fb00d33ff6453bd0))
15+
* **api:** manual updates ([c72f634](https://github.com/orbcorp/orb-ruby/commit/c72f6346f566626bc15ee71e218f7aebdbf9f3ff))
16+
* **client:** breaking change to re-use types ([4988d1c](https://github.com/orbcorp/orb-ruby/commit/4988d1cf7cf2ebdbb78227c8fed3cc63647942a2))
17+
18+
19+
### Chores
20+
21+
* **internal:** version bump ([46b439b](https://github.com/orbcorp/orb-ruby/commit/46b439b8d9cb1e7ea8fe97e2d81ec66d60f3aada))
22+
323
## 0.12.0 (2025-06-04)
424

525
Full Changelog: [v0.11.0...v0.12.0](https://github.com/orbcorp/orb-ruby/compare/v0.11.0...v0.12.0)

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ GIT
1111
PATH
1212
remote: .
1313
specs:
14-
orb-billing (0.11.0)
14+
orb-billing (0.12.0)
1515
connection_pool
1616

1717
GEM

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
1515
<!-- x-release-please-start-version -->
1616

1717
```ruby
18-
gem "orb-billing", "~> 0.12.0"
18+
gem "orb-billing", "~> 1.0.0"
1919
```
2020

2121
<!-- x-release-please-end -->

lib/orb.rb

Lines changed: 181 additions & 11 deletions
Large diffs are not rendered by default.

lib/orb/internal/type/base_model.rb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -395,11 +395,11 @@ def deep_to_h = self.class.recursively_to_h(@data, convert: false)
395395
# @return [Hash{Symbol=>Object}]
396396
#
397397
# @example
398-
# # `amount_discount` is a `Orb::AmountDiscount`
399-
# amount_discount => {
400-
# amount_discount: amount_discount,
401-
# discount_type: discount_type,
402-
# applies_to_price_ids: applies_to_price_ids
398+
# # `address` is a `Orb::Address`
399+
# address => {
400+
# city: city,
401+
# country: country,
402+
# line1: line1
403403
# }
404404
def deconstruct_keys(keys)
405405
(keys || self.class.known_fields.keys)

0 commit comments

Comments
 (0)