fix(deps): update dependency tastytrade to v12#627
Open
escargatoiresnailbot[bot] wants to merge 1 commit intomainfrom
Open
fix(deps): update dependency tastytrade to v12#627escargatoiresnailbot[bot] wants to merge 1 commit intomainfrom
escargatoiresnailbot[bot] wants to merge 1 commit intomainfrom
Conversation
Contributor
Author
|
875103c to
686de12
Compare
686de12 to
deec275
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
==11.1.0→==12.0.2Release Notes
tastyware/tastytrade (tastytrade)
v12.0.2: tastyware/tastytrade:v12.0.2Compare Source
What's Changed
Iterabletype in API calls where any iterable works. Previously alistwas required.BlockingPortals to use the SDK in a sync context.Full Changelog: tastyware/tastytrade@v12.0.1...v12.0.2
v12.0.1: tastyware/tastytrade:v12.0.1Compare Source
What's Changed
DXLinkStreamerkeepalive pings were not actually keeping the connection alive, since the pings were expected to be of a specific format and not generic. This issue did not affectAlertStreamerwhich keeps on usinghttpx_ws' default keepalive implementation.Full Changelog: tastyware/tastytrade@v12.0.0...v12.0.1
v12.0.0: tastyware/tastytrade:v12.0.0Compare Source
What's Changed
For a long time this library was mostly sync, with the streamers being the exception. #168 added async endpoints on top of the existing endpoints, which gave users more flexibility. With this change, I the library moves to async-only.
There are a few reasons for this. First of all, having both sync and async versions of everything resulted in a ton of code duplication. Second, both streamers are (and always have been) async, meaning that almost all users are already implementing at least some async code, so having the separate sync versions makes less sense. Finally, this change allows us to support Trio and clean up the streamer implementation which was hard to reason about and prone to bugs.
httpx-wslibrary replaceswebsockets, allowing for Trio support. As a consequence of this, reconnect and disconnect functionality is gone (however, this is almost certainly better handled on the user side anyways).httpx-wswebsockets and structured concurrency, making them much simpler and easier to reason about (which implies a lower chance of bugs in the future). We also get to use the helpfulsend_jsonandreceive_jsonfunctions instead of wrapping everything injson.dumps/json.loads.ExceptionGroups. This would likely have happened soon anyways as the official support lifecycle only goes through October 2026.Account.a_getfor async andAccount.getfor sync, we have a single endpoint namedAccount.get, which is async).tastytrade.dxfeed.Quoteevents now have helpfulmid_priceandmicro_priceproperties calculated from its bid/ask prices.tastytrade.order.OrderActionhas amultiplierproperty which is-1when it's a "Sell" leg and1when it's a "Buy" leg.Full Changelog: tastyware/tastytrade@v11.1.0...v12.0.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.