Skip to content

Latest commit

 

History

History
1539 lines (910 loc) · 106 KB

File metadata and controls

1539 lines (910 loc) · 106 KB

Changelog

1.10.0 (2026-01-17)

Full Changelog: v1.9.0...v1.10.0

⚠ BREAKING CHANGES

  • api: define shared model ConversionRateConfig

Features

Bug Fixes

  • ci: use java-version 21 for publish step (b290b3a)
  • client: cancel okhttp call when future cancelled (c9b8382)
  • client: deserialization of empty objects (1764089)
  • client: disallow coercion from float to int (03a24de)
  • client: ensure single timer is created per client (427df35)
  • client: fully respect max retries (032e2e6)
  • client: incorrect getPackageVersion impl (9bc6ac9)
  • client: multi-value header serialization (bf4d413)
  • client: r8 support (27da721)
  • client: send retry count header for max retries 0 (032e2e6)
  • date time deserialization leniency (bc5e9be)
  • schema: Rename unit price type to avoid naming conflict (7738ed4)

Chores

  • ci: upgrade actions/setup-java (023c1ff)
  • fix formatting (a6e527f)
  • improve formatter performance (5d37bc1)
  • internal: bump ci test timeout (0e68dd4)
  • internal: change some comment formatting (7e80bfe)
  • internal: clean up maven repo artifact script and add html documentation to repo root (c79bf46)
  • internal: codegen related update (97bd293)
  • internal: codegen related update (3a4300a)
  • internal: codegen related update (185acb8)
  • internal: codegen related update (76d269d)
  • internal: depend on packages directly in example (032e2e6)
  • internal: improve maven repo docs (f8215cc)
  • internal: reduce proguard ci logging (9b4d208)
  • internal: support uploading Maven repo artifacts to stainless package server (24af903)
  • internal: update actions/checkout version (f9c0414)
  • test on Jackson 2.14.0 to avoid encountering FasterXML/jackson-databind#3240 in tests (bc5e9be)

Documentation

  • remove $ for better copy-pasteabality (c20680a)

1.9.0 (2025-07-26)

Full Changelog: v1.8.0...v1.9.0

Features

1.8.0 (2025-07-24)

Full Changelog: v1.7.0...v1.8.0

Features

  • api: api update (d9b5f74)
  • client: add {QueryParams,Headers}#put(String, JsonValue) methods (1985d12)

Chores

  • internal: remove unnecessary [...] in [@see](https://github.com/see) (cc42cf6)

Documentation

1.7.0 (2025-07-21)

Full Changelog: v1.6.0...v1.7.0

Features

  • api: api update (b20980d)
  • client: add https config options (15ac3d4)
  • client: allow configuring env via system properties (c32c0d2)

Chores

  • internal: refactor delegating from client to options (12282fa)

1.6.0 (2025-07-17)

Full Changelog: v1.5.1...v1.6.0

Features

1.5.1 (2025-07-17)

Full Changelog: v1.5.0...v1.5.1

Bug Fixes

  • client: ensure error handling always occurs (833326e)

1.5.0 (2025-07-16)

Full Changelog: v1.4.0...v1.5.0

Features

Chores

  • internal: allow running specific example from cli (88917ff)

1.4.0 (2025-07-16)

Full Changelog: v1.3.0...v1.4.0

Features

Chores

  • ci: bump actions/setup-java to v4 (ee43b24)
  • ci: ensure docs generation always succeeds (00866a5)

1.3.0 (2025-07-08)

Full Changelog: v1.2.0...v1.3.0

Features

1.2.0 (2025-07-04)

Full Changelog: v1.1.0...v1.2.0

Features

1.1.0 (2025-07-02)

Full Changelog: v1.0.0...v1.1.0

Features

Bug Fixes

  • ci: release-doctor — report correct token name (d631afb)
  • client: bump max requests per host to max requests (5 -> 64) (5576ea4)
  • client: don't close client on withOptions usage when original is gc'd (002c10d)

Chores

  • ci: enable for pull requests (ecdbbd4)
  • ci: only run for pushes and fork pull requests (cbc078a)
  • fix formatting (fe0ad84)

Refactors

  • internal: minor ClientOptionsTest change (d7614c8)

1.0.0 (2025-06-09)

Full Changelog: v0.57.0...v1.0.0

⚠ BREAKING CHANGES

  • client: breaking change to re-use types

Features

Bug Fixes

  • internal: cleaning up custom code (a646246)
  • internal: fix typing error (31cc02e)

Chores

  • internal: codegen related update (0907df6)
  • internal: codegen related update (2a0fdab)
  • internal: codegen related update (1ce04bd)

0.57.0 (2025-05-22)

Full Changelog: v0.56.0...v0.57.0

⚠ BREAKING CHANGES

  • client: improve some class names
  • client: extract auto pagination to shared classes
  • client: Migration: - If you were referencing the AutoPager class on a specific *Page or *PageAsync type, then you should instead reference the shared AutoPager and AutoPagerAsync types, under the core package
    • AutoPagerAsync now has different usage. You can call .subscribe(...) on the returned object instead to get called back each page item. You can also call onCompleteFuture() to get a future that completes when all items have been processed. Finally, you can call .close() on the returned object to stop auto-paginating early
    • If you were referencing getNextPage or getNextPageParams:
      • Swap to nextPage() and nextPageParams()
      • Note that these both now return non-optional types (use hasNextPage() before calling these, since they will throw if it's impossible to get another page)

Features

  • client: allow providing some params positionally (7ddd872)
  • client: extract auto pagination to shared classes (9affbde)

Bug Fixes

  • internal: fix name collision errors from Unit import (1f7beef)

Performance Improvements

  • internal: improve compilation+test speed (f72c4ad)

Chores

  • ci: only use depot for staging repos (68dcdd8)
  • ci: run on more branches and use depot runners (ddcc77e)
  • docs: grammar improvements (7b5fb07)
  • internal: codegen related update (9df208b)
  • internal: codegen related update (7db8db6)
  • internal: java 17 -> 21 on ci (7f2fb10)
  • internal: remove flaky -Xbackend-threads=0 option (b085373)
  • internal: update java toolchain (2b4abdf)

Documentation

  • client: update jackson compat error message (b3ceb27)
  • explain http client customization (31827ac)
  • explain jackson compat in readme (fb2505d)

Refactors

  • client: improve some class names (9460c52)

0.56.0 (2025-04-09)

Full Changelog: v0.55.0...v0.56.0

Features

  • client: make pagination robust to missing data (bf8c89e)
  • client: support setting base URL via env var (#397) (4ac10b3)

Bug Fixes

  • client: bump to better jackson version (#400) (b9c0a00)

Chores

  • internal: expand CI branch coverage (#399) (17d8399)
  • internal: reduce CI branch coverage (06a8495)

Documentation

  • add comments for page methods (bf8c89e)

Refactors

  • client: deduplicate page response classes (#401) (bf8c89e)
  • client: migrate pages to builder pattern (#402) (bbcd954)

0.55.0 (2025-04-08)

Full Changelog: v0.54.0...v0.55.0

Features

Chores

0.54.0 (2025-04-07)

Full Changelog: v0.53.0...v0.54.0

Features

  • client: expose request body setter and getter (#383) (60cce59)

Bug Fixes

  • api: naming for sync_payment_methods methods (#389) (47fccba)

Chores

  • internal: codegen related update (#385) (067d5dd)
  • internal: codegen related update (#387) (9040df4)
  • internal: swap from getNullable to getOptional (#386) (6a6bc6d)

Documentation

  • document how to forcibly omit required field (1090267)
  • swap examples used in readme (#388) (1090267)

0.53.0 (2025-04-02)

Full Changelog: v0.52.2...v0.53.0

Features

  • client: add enum validation method (d6fdaa3)
  • client: make union deserialization more robust (#379) (d6fdaa3)

Chores

  • client: remove unnecessary json state from some query param classes (d6fdaa3)
  • internal: add invalid json deserialization tests (d6fdaa3)
  • internal: add json roundtripping tests (d6fdaa3)
  • internal: codegen related update (#381) (1373dc9)

0.52.2 (2025-04-01)

Full Changelog: v0.52.1...v0.52.2

Bug Fixes

Chores

0.52.1 (2025-03-31)

Full Changelog: v0.52.0...v0.52.1

Bug Fixes

  • client: limit json deserialization coercion (#373) (654e81c)

Chores

0.52.0 (2025-03-26)

Full Changelog: v0.51.0...v0.52.0

Features

  • client: support a lower jackson version (#368) (659e62b)
  • client: throw on incompatible jackson version (659e62b)

Bug Fixes

  • client: map deserialization bug (da01e21)

Chores

  • internal: delete unused methods and annotations (#369) (da01e21)
  • internal: fix example formatting (#364) (99e8b5b)
  • internal: make multipart assertions more robust (4f4527e)
  • internal: remove unnecessary assertNotNull calls (4f4527e)
  • internal: remove unnecessary import (#365) (3a0fe1e)

Documentation

0.51.0 (2025-03-20)

Full Changelog: v0.50.0...v0.51.0

Features

0.50.0 (2025-03-19)

Full Changelog: v0.49.1...v0.50.0

⚠ BREAKING CHANGES

  • client: refactor exception structure and methods (#357)

Bug Fixes

Chores

  • client: refactor exception structure and methods (#357) (adc2898)
  • internal: codegen related update (#356) (56e24bf)
  • internal: refactor enum query param serialization (#353) (06904bf)
  • internal: version bump (#354) (8d4d3e1)

0.49.1 (2025-03-18)

Full Changelog: v0.49.0...v0.49.1

Bug Fixes

Chores

  • internal: add generated comment (#346) (670dae5)
  • internal: add some tests for union classes (#351) (8daea2a)
  • internal: delete duplicate tests (a2ae257)
  • internal: generate more tests (399f1ce)
  • internal: make test classes internal (#345) (8566c48)
  • internal: refactor query param serialization impl and tests (#348) (15e112d)
  • internal: refactor some test assertions (a2ae257)
  • internal: reformat some tests (#350) (399f1ce)
  • internal: rename getPathParam (#349) (a2ae257)
  • internal: reorder some params methodsc (a2ae257)

Documentation

0.49.0 (2025-03-14)

Full Changelog: v0.48.0...v0.49.0

Features

Chores

  • api: correctly support ExternalCustomerID array filter on Subscriptions.List (#340) (f5c8c0b)
  • internal: remove extra empty newlines (#338) (fb8b1a2)

0.48.0 (2025-03-11)

Full Changelog: v0.47.0...v0.48.0

Features

Chores

0.47.0 (2025-03-10)

Full Changelog: v0.46.1...v0.47.0

Features

Chores

  • internal: don't use JvmOverloads in interfaces (19acfcf)
  • internal: reenable warnings as errors (#327) (19acfcf)

Documentation

  • document JsonValue construction in readme (#330) (9401e34)
  • revise readme docs about nested params (#329) (9a2a812)

0.46.1 (2025-03-07)

Full Changelog: v0.46.0...v0.46.1

Chores

0.46.0 (2025-03-07)

Full Changelog: v0.45.0...v0.46.0

Features

Bug Fixes

0.45.0 (2025-03-07)

Full Changelog: v0.44.0...v0.45.0

Features

0.44.0 (2025-03-06)

Full Changelog: v0.43.0...v0.44.0

Features

0.43.0 (2025-03-05)

Full Changelog: v0.42.0...v0.43.0

Features

0.42.0 (2025-03-05)

Full Changelog: v0.41.0...v0.42.0

Features

0.41.0 (2025-03-05)

Full Changelog: v0.40.0...v0.41.0

Features

0.40.0 (2025-03-05)

Full Changelog: v0.39.0...v0.40.0

⚠ BREAKING CHANGES

  • client: refactor multipart formdata impl (#296)

Features

Chores

  • client: expose Optional, not nullable, from ClientOptions (#299) (20f1914)
  • client: refactor multipart formdata impl (#296) (22e538b)
  • internal: refactor ErrorHandlingTest (#292) (d1ec6ff)

Documentation

  • add raw response readme documentation (#297) (648e2e6)
  • note required fields in builder javadoc (#298) (1af73ac)

0.39.0 (2025-03-01)

Full Changelog: v0.38.0...v0.39.0

Features

Documentation

  • update URLs from stainlessapi.com to stainless.com (#288) (c69a113)

0.38.0 (2025-02-27)

Full Changelog: v0.37.0...v0.38.0

Features

Chores

  • client: use deep identity methods for primitive array types (#283) (6e2862d)
  • internal: add async service tests (#281) (8171ba6)
  • internal: improve sync service tests (8171ba6)
  • internal: refactor ServiceParamsTest (#285) (7894edb)

Documentation

  • readme parameter tweaks (8171ba6)

0.37.0 (2025-02-26)

Full Changelog: v0.36.0...v0.37.0

Features

  • client: allow omitting params object when none required (#277) (7966838)

Bug Fixes

0.36.0 (2025-02-25)

Full Changelog: v0.35.0...v0.36.0

Features

Documentation

0.35.0 (2025-02-21)

Full Changelog: v0.34.0...v0.35.0

Features

0.34.0 (2025-02-21)

Full Changelog: v0.33.0...v0.34.0

Features

0.33.0 (2025-02-20)

Full Changelog: v0.32.0...v0.33.0

Features

Bug Fixes

  • client: mark some request bodies as optional (#263) (c6f1170)

Chores

  • docs: add faq to readme (#262) (67226ff)
  • internal: remove unnecessary non-null asserts in tests (c6f1170)
  • internal: use assertNotNull in tests for type narrowing (c6f1170)

Documentation

  • add immutability explanation to readme (#265) (2fee757)

0.32.0 (2025-02-20)

Full Changelog: v0.31.1...v0.32.0

Features

Chores

  • ci: update gradle actions to v4 (#257) (b11b2bc)
  • docs: reorganize readme (#254) (7c807a4)
  • internal: get rid of configuration cache (#256) (2315c82)
  • internal: update some formatting in Values.kt (95dc5c6)

0.31.1 (2025-02-17)

Full Changelog: v0.31.0...v0.31.1

Bug Fixes

Chores

  • internal: make body class constructors private (3a15ffd)
  • internal: make body classes for multipart requests (3a15ffd)
  • internal: misc formatting changes (3a15ffd)
  • internal: optimize build and test perf (be128e3)
  • internal: rename internal body classes (3a15ffd)
  • internal: update formatter (#247) (be128e3)
  • internal: use better test example values (#249) (3a15ffd)

0.31.0 (2025-02-14)

Full Changelog: v0.30.0...v0.31.0

Features

0.30.0 (2025-02-13)

Full Changelog: v0.29.0...v0.30.0

Features

Chores

  • internal: refactor PhantomReachableClosingAsyncStreamResponse impl (#240) (fbf592c)

Documentation

  • add more phantom reachability docs (fbf592c)

0.29.0 (2025-02-11)

Full Changelog: v0.28.0...v0.29.0

Features

0.28.0 (2025-02-07)

Full Changelog: v0.27.1...v0.28.0

Features

0.27.1 (2025-02-05)

Full Changelog: v0.27.0...v0.27.1

Bug Fixes

  • api: add missing @MustBeClosed annotations (#231) (bc11828)
  • api: switch CompletableFuture&lt;Void&gt; to CompletableFuture<Void?> (bc11828)
  • client: add missing validation calls on response (bc11828)
  • client: always provide a body for PATCH methods (bc11828)

Chores

  • internal: minor formatting/style changes (bc11828)
  • internal: rename some tests (bc11828)

0.27.0 (2025-02-04)

Full Changelog: v0.26.0...v0.27.0

Features

Chores

Documentation

  • fix incorrect additional properties info (#227) (8fe2133)

0.26.0 (2025-01-30)

Full Changelog: v0.25.0...v0.26.0

Features

Chores

0.25.0 (2025-01-23)

Full Changelog: v0.24.0...v0.25.0

Features

0.24.0 (2025-01-21)

Full Changelog: v0.23.1...v0.24.0

Features

0.23.1 (2025-01-20)

Full Changelog: v0.23.0...v0.23.1

Bug Fixes

  • client: make service impl constructors internal (#208) (50db282)

0.23.0 (2025-01-18)

Full Changelog: v0.22.0...v0.23.0

Features

Chores

  • internal: upgrade kotlin compiler and gradle (#203) (3e03f2b)

Documentation

0.22.0 (2025-01-16)

Full Changelog: v0.21.0...v0.22.0

Features

0.21.0 (2025-01-15)

Full Changelog: v0.20.0...v0.21.0

Features

Chores

  • internal: add and tweak check functions (#195) (059140b)
  • internal: codegen related update (#186) (80ba077)
  • internal: codegen related update (#189) (02ac7e7)
  • internal: extract a checkRequired function (#194) (4d7ef18)
  • internal: fix up root build.gradle.kts formatting (#190) (c6877ff)
  • internal: remove unused Gradle imports (#191) (dc9baca)
  • internal: remove unused or unnecessary Gradle imports (#192) (1d55476)
  • internal: tweak client options nullability handling (059140b)
  • internal: update some gradle formatting (#193) (84dffdc)
  • simplify examples involving lists (#196) (087813e)
  • simplify examples involving unions (#197) (6f4b238)

0.20.0 (2025-01-07)

Full Changelog: v0.19.0...v0.20.0

Features

  • client: add various convenience setters to models (#184) (5a7e67f)
  • client: allow setting arbitrary JSON for top-level body params (5a7e67f)
  • client: expose getters for JsonField of body params (5a7e67f)

Bug Fixes

  • client: consistently throw on omitting required fields (5a7e67f)
  • client: convert JsonField containing list type to mutable in builder (5a7e67f)

Documentation

Styles

  • internal: explicitly add some method return types (5a7e67f)
  • internal: move headers and query params setters below others (5a7e67f)
  • internal: simplify existing convenience setters on params (5a7e67f)

0.19.0 (2025-01-06)

Full Changelog: v0.18.0...v0.19.0

Features

  • api: api update (#180) (4aa16b5)
  • client: allow passing null or optional for nullable fields (#179) (1797a16)

Styles

0.18.0 (2025-01-06)

Full Changelog: v0.17.0...v0.18.0

Features

0.17.0 (2025-01-03)

Full Changelog: v0.16.0...v0.17.0

Features

Documentation

0.16.0 (2025-01-03)

Full Changelog: v0.15.0...v0.16.0

⚠ BREAKING CHANGES

  • api: endpoint expects amount of new allocation price to be a string, not a number (#10)
  • api: add semi_annual cadence and remove metadata from update items (#2)

Features

Bug Fixes

  • api: endpoint expects amount of new allocation price to be a string, not a number (#10) (f38419a)
  • docs: use correct putAdditionalProperty value (#42) (4f236bc)
  • internal: add missing options (49c0367)
  • unions: fix namespacing in example types for unions that have models (846d155)

Chores

Documentation

Styles

  • internal: make enum value definitions less verbose (#145) (1a3bc07)
  • internal: move enum identity methods to bottom of class (#146) (c2bc9d2)

0.15.0 (2025-01-02)

Full Changelog: v0.14.0...v0.15.0

Features

0.14.0 (2024-12-23)

Full Changelog: v0.13.0...v0.14.0

Features

Chores

0.13.0 (2024-12-17)

Full Changelog: v0.12.0...v0.13.0

Features

0.12.0 (2024-12-12)

Full Changelog: v0.11.0...v0.12.0

Features

Chores

  • internal: remove unused and expand used wildcard imports (#150) (125239d)
  • internal: remove unused and expand used wildcard imports (#151) (e31d1ed)
  • internal: remove unused imports (#147) (fbafbb5)
  • test: remove unused imports (#148) (b170c90)
  • test: use JsonValue instead of JsonString (#149) (b177193)
  • update example values in tests and docs (#143) (3ae9d16)

Styles

  • internal: make enum value definitions less verbose (#145) (618c1a3)
  • internal: move enum identity methods to bottom of class (#146) (8a9c393)

0.11.0 (2024-12-03)

Full Changelog: v0.10.0...v0.11.0

Features

0.10.0 (2024-11-27)

Full Changelog: v0.9.1...v0.10.0

Features

0.9.1 (2024-11-26)

Full Changelog: v0.9.0...v0.9.1

Chores

0.9.0 (2024-11-26)

Full Changelog: v0.8.0...v0.9.0

Features

0.8.0 (2024-11-25)

Full Changelog: v0.7.0...v0.8.0

Features

Chores

0.7.0 (2024-11-25)

Full Changelog: v0.6.1...v0.7.0

Features

Chores

0.6.1 (2024-11-19)

Full Changelog: v0.6.0...v0.6.1

Chores

  • rebuild project due to codegen change (#116) (94d7006)

0.6.0 (2024-11-18)

Full Changelog: v0.5.0...v0.6.0

Features

  • api: add webhook validation and parsing (#111) (993bd2b)

0.5.0 (2024-11-15)

Full Changelog: v0.4.1...v0.5.0

Features

Chores

0.4.1 (2024-11-12)

Full Changelog: v0.4.0...v0.4.1

Bug Fixes

  • internal: add missing options (1ed6c28)

Chores

  • rebuild project due to codegen change (#105) (6c52ea7)
  • rebuild project due to codegen change (#107) (0365098)

0.4.0 (2024-11-06)

Full Changelog: v0.3.0...v0.4.0

Features

Chores

0.3.0 (2024-11-06)

Full Changelog: v0.2.0...v0.3.0

Features

0.2.0 (2024-11-01)

Full Changelog: v0.1.0...v0.2.0

Features

Chores

0.1.0 (2024-10-28)

Full Changelog: v0.1.0-alpha.7...v0.1.0

Features

0.1.0-alpha.7 (2024-09-26)

Full Changelog: v0.1.0-alpha.6...v0.1.0-alpha.7

Features

  • api: OpenAPI spec update via Stainless API (#59) (8e8574c)
  • api: OpenAPI spec update via Stainless API (#61) (b48f9fe)
  • api: OpenAPI spec update via Stainless API (#63) (fd13223)
  • api: OpenAPI spec update via Stainless API (#67) (afffd96)
  • api: OpenAPI spec update via Stainless API (#68) (bd66065)
  • api: OpenAPI spec update via Stainless API (#70) (8ab0aab)
  • api: OpenAPI spec update via Stainless API (#76) (5013205)
  • client: added structured fields to errors (#65) (e6226f9)

Chores

Documentation

  • adjust additional properties example (#64) (f200314)

0.1.0-alpha.6 (2024-09-06)

Full Changelog: v0.1.0-alpha.5...v0.1.0-alpha.6

Features

  • api: codegen changes (#48) (8a0190e)
  • api: OpenAPI spec update via Stainless API (#45) (055d0a8)
  • api: OpenAPI spec update via Stainless API (#47) (cbb6cca)
  • api: OpenAPI spec update via Stainless API (#50) (2bd0af6)
  • api: OpenAPI spec update via Stainless API (#51) (c4e232e)
  • api: OpenAPI spec update via Stainless API (#52) (773d7e7)
  • api: OpenAPI spec update via Stainless API (#53) (7efa5f4)
  • api: OpenAPI spec update via Stainless API (#54) (f9006eb)
  • api: OpenAPI spec update via Stainless API (#55) (73ed069)
  • api: OpenAPI spec update via Stainless API (#57) (4a3ce75)

Chores

  • consistent string literal escaping (#49) (556e69d)
  • internal: codegen related update (#56) (837e1ed)

0.1.0-alpha.5 (2024-08-22)

Full Changelog: v0.1.0-alpha.4...v0.1.0-alpha.5

Features

  • api: codegen changes (#39) (4568489)
  • api: manual updates (#40) (423de9f)
  • api: OpenAPI spec update via Stainless API (#34) (3a42785)
  • api: OpenAPI spec update via Stainless API (#36) (03178df)
  • api: OpenAPI spec update via Stainless API (#37) (6d07d56)
  • api: OpenAPI spec update via Stainless API (#38) (a92d627)
  • api: OpenAPI spec update via Stainless API (#41) (64fdca5)
  • api: OpenAPI spec update via Stainless API (#43) (ed5e3c8)
  • api: OpenAPI spec update via Stainless API (#44) (9941471)

Bug Fixes

  • docs: use correct putAdditionalProperty value (#42) (4f236bc)

0.1.0-alpha.4 (2024-08-14)

Full Changelog: v0.1.0-alpha.3...v0.1.0-alpha.4

Features

  • api: OpenAPI spec update via Stainless API (#31) (aec4e89)

0.1.0-alpha.3 (2024-08-02)

Full Changelog: v0.1.0-alpha.2...v0.1.0-alpha.3

⚠ BREAKING CHANGES

  • api: remove methods 'customers.usage.create' and 'customers.usage.update_by_external_id' (#30)

Features

  • api: add 'status' to plan creation params (#14) (02ccf47)
  • api: add cadence enum value 'custom' (#25) (61cf205)
  • api: add methods to prices and invoices (#21) (5dbd997)
  • api: deprecate methods 'customers.usage.create' and 'customers.usage.update_by_external_id' (#29) (756a150)
  • api: remove methods 'customers.usage.create' and 'customers.usage.update_by_external_id' (#30) (988218e)
  • client: improve binary return values (#27) (e5abbb9)

Chores

  • ci: also run workflows for PRs targeting next (#17) (9f47531)
  • ci: limit release doctor target branches (#22) (92f41a2)
  • ci: run tests in CI (#28) (e4c2eb6)
  • docs: document minimum Java version (Java 8) in README (#16) (3630a08)
  • docs: minor update to formatting of API link in README (#19) (65f8385)
  • internal: refactor release doctor script (#23) (c039b0e)
  • internal: remove unused test file (#26) (71b39db)
  • minor updates (#20) (42c2a5c)
  • tests: update prism version (#24) (b14155d)

Documentation

0.1.0-alpha.2 (2024-06-28)

Full Changelog: v0.1.0-alpha.1...v0.1.0-alpha.2

⚠ BREAKING CHANGES

  • api: endpoint expects amount of new allocation price to be a string, not a number (#10)

Features

  • api: add support for adding allocation price to subscription (#8) (d150c33)
  • api: add support for query param include_all_blocks (#11) (73d5e94)
  • api: external connections made optional when updating items (#9) (d1a63a3)
  • api: updates (#5) (fb8c7d9)
  • client: add support for putQueryParam on ClientOptions (#6) (71d82b0)

Bug Fixes

  • api: endpoint expects amount of new allocation price to be a string, not a number (#10) (f38419a)

Chores

Documentation

0.1.0-alpha.1 (2024-06-06)

Full Changelog: v0.0.1-alpha.0...v0.1.0-alpha.1

⚠ BREAKING CHANGES

  • api: add semi_annual cadence and remove metadata from update items (#2)

Features

  • api: add semi_annual cadence and remove metadata from update items (#2) (abd4f60)

Bug Fixes

  • unions: fix namespacing in example types for unions that have models (846d155)