Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: 0.74.0 #394

Open
wants to merge 27 commits into
base: main
Choose a base branch
from

Conversation

stainless-app[bot]
Copy link
Contributor

@stainless-app stainless-app bot commented Dec 9, 2024

Automated Release PR

0.74.0 (2025-01-07)

Full Changelog: v0.73.0...v0.74.0

⚠ BREAKING CHANGES

  • client: switch query params objects to use QueryParams (#410)
  • api: removes AccountHolder resubmit endpoint and KYC_ADVANCED workflow (#405)

Features

  • api: adds EventRuleResult to Transaction Events (#393) (ba514e8)
  • api: removes AccountHolder resubmit endpoint and KYC_ADVANCED workflow (#405) (e8203a1)
  • client: add various convenience setters to models (#420) (47d9bf9)
  • client: allow setting arbitrary JSON for top-level body params (47d9bf9)
  • client: expose getters for JsonField of body params (47d9bf9)
  • client: put body field in params, add more convenience methods, and add missing docs (#414) (57ff634)

Bug Fixes

  • client: allow passing null for nullable fields where missing (#417) (e23add6)
  • client: consistently throw on omitting required fields (47d9bf9)
  • client: convert JsonField containing list type to mutable in builder (47d9bf9)

Chores

  • api: new ConvertPhysical endpoint to convert a virtual card to a physical card (#404) (e48a2a7)
  • bump license year (#413) (d6527e5)
  • docs: add example project (#408) (52f1b55)
  • docs: fix unused import (#409) (f72f483)
  • docs: update readme (#407) (e3d68a6)
  • internal: remove unused and expand used wildcard imports (#401) (6a3a4b4)
  • internal: remove unused and expand used wildcard imports (#403) (646cd0a)
  • internal: remove unused imports (#398) (743d7ca)
  • internal: update examples (#418) (2f36a97)
  • test: remove unused imports (#399) (8cd6e20)
  • test: use JsonValue instead of JsonString (#400) (e57643e)
  • update example values in tests and docs (#395) (3324a94)
  • update parameter examples in tests and docs (#406) (12b741c)

Documentation

Styles

  • internal: explicitly add some method return types (47d9bf9)
  • internal: make enum value definitions less verbose (#396) (bfbee37)
  • internal: move enum identity methods to bottom of class (#397) (c5cabdd)
  • internal: move headers and query params setters below others (47d9bf9)
  • internal: simplify existing convenience setters on params (47d9bf9)
  • internal: sort fields (#416) (dbfefd4)

Refactors

  • client: switch query params objects to use QueryParams (#410) (2696a81)
  • internal: use constructor to deserialize json (#411) (34c9c20)

This pull request is managed by Stainless's GitHub App.

The semver version number is based on included commit messages. Alternatively, you can manually set the version number in the title of this pull request.

For a better experience, it is recommended to use either rebase-merge or squash-merge when merging this pull request.

🔗 Stainless website
📚 Read the docs
🙋 Reach out for help or questions

@stainless-app stainless-app bot force-pushed the release-please--branches--main--changes--next branch from 2be00f7 to 3324a94 Compare December 11, 2024 18:48
@stainless-app stainless-app bot force-pushed the release-please--branches--main--changes--next branch from cdfcb68 to bfbee37 Compare December 11, 2024 19:48
@stainless-app stainless-app bot force-pushed the release-please--branches--main--changes--next branch from 3436298 to c5cabdd Compare December 11, 2024 20:08
@stainless-app stainless-app bot force-pushed the release-please--branches--main--changes--next branch from 6722648 to 743d7ca Compare December 11, 2024 21:01
@stainless-app stainless-app bot force-pushed the release-please--branches--main--changes--next branch from 7a0c95a to 8cd6e20 Compare December 12, 2024 16:57
@stainless-app stainless-app bot force-pushed the release-please--branches--main--changes--next branch from 8332ee6 to e57643e Compare December 12, 2024 17:42
… a physical card (#404)

- adds `name` and `excluded_card_tokens` params to AuthRules
- adds `CARD_TRANSACTION_COUNT` attributes to AuthRules
- adds `pin` to Transaction simulations
- small updates to documentation on Cards
- adds `card.converted` Event
- adds `RETURNED_PAYMENT` and `RETURNED_PAYMENT_REVERSAL` Event types
@stainless-app stainless-app bot force-pushed the release-please--branches--main--changes--next branch 4 times, most recently from 41090a4 to e8203a1 Compare December 18, 2024 16:39
@stainless-app stainless-app bot force-pushed the release-please--branches--main--changes--next branch from b8255dc to 454b60f Compare December 18, 2024 21:13
@stainless-app stainless-app bot force-pushed the release-please--branches--main--changes--next branch from 79fad4f to 12b741c Compare December 19, 2024 02:20
@stainless-app stainless-app bot force-pushed the release-please--branches--main--changes--next branch 2 times, most recently from d25c987 to 42e65a0 Compare December 19, 2024 19:17
…410)

feat(client): add methods for removing additional properties
chore(internal): remove unnecessary validation methods
chore(internal): remove unnecessary nullable annotations
style(internal): minor changes to code ordering and syntax
# Migration
If you were accessing `_additionalProperties()` on a query params object, then previously it returned `Map<String, List<String>>`. Now it returns a dedicated `QueryParams` object. The `QueryParams` class is better suited for mapping a key to multiple values and has similar methods to `Map`.
@stainless-app stainless-app bot force-pushed the release-please--branches--main--changes--next branch from 9554795 to d6527e5 Compare January 2, 2025 20:27
@stainless-app stainless-app bot force-pushed the release-please--branches--main--changes--next branch from d4ab342 to 57ff634 Compare January 3, 2025 18:10
@stainless-app stainless-app bot force-pushed the release-please--branches--main--changes--next branch from ee9f498 to b00a43b Compare January 3, 2025 19:13
@stainless-app stainless-app bot force-pushed the release-please--branches--main--changes--next branch from ed3dc9d to dbfefd4 Compare January 6, 2025 18:53
@stainless-app stainless-app bot force-pushed the release-please--branches--main--changes--next branch from 84a4ef4 to e23add6 Compare January 6, 2025 19:19
@stainless-app stainless-app bot force-pushed the release-please--branches--main--changes--next branch from 38ac93b to 2f36a97 Compare January 7, 2025 20:00
@stainless-app stainless-app bot force-pushed the release-please--branches--main--changes--next branch from 6171666 to 090e5bd Compare January 7, 2025 20:45
feat(client): allow setting arbitrary JSON for top-level body params
feat(client): expose getters for `JsonField` of body params
fix(client): consistently throw on omitting required fields
fix(client): convert `JsonField` containing list type to mutable in builder
style(internal): simplify existing convenience setters on params
style(internal): move headers and query params setters below others
style(internal): explicitly add some method return types
@stainless-app stainless-app bot force-pushed the release-please--branches--main--changes--next branch from 24c7c73 to 47d9bf9 Compare January 7, 2025 21:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant