-
Notifications
You must be signed in to change notification settings - Fork 162
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
0.6.0 #1779
Draft
Lancetnik
wants to merge
232
commits into
main
Choose a base branch
from
0.6.0
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains 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
* refactor: add ack handling for brokers * fix: warnings arguments and is_manual flag * refactor: complete NATS * docs: generate API References * fix: update ack_policy * refactor: new tests * refactor: move ack_policy reject outside of return functions * tests: fix NATS tests * refactor: validate warnings * chore: remove loguru usage * chore: remove deprecated type option * chore: correct warnings stacklevel --------- Co-authored-by: vectorvp <[email protected]> Co-authored-by: Pastukhov Nikita <[email protected]>
* refactor: new Specification Schema * fix: add missing pre-commit changes * refactor: delete defaults * refactor: polish AsyncAPI all brokers * fix: add missing pre-commit changes --------- Co-authored-by: Lancetnik <[email protected]>
* feat: added ack_first * docs: generate API References * feat: ack_first added deprecated and docstrings to Ack_Policy * docs: generate API References * feat: ack_first refactored ack_first check * chore: merge 0.6 * docs: generate API References --------- Co-authored-by: Rusich90 <[email protected]> Co-authored-by: Nikita Pastukhov <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Core
Issues related to core FastStream functionality and affects to all brokers
enhancement
New feature or request
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.
Description
Please include a summary of the change and specify which issue is being addressed. Additionally, provide relevant motivation and context.
fixes #1742, close #1308, close #1228, close #980, fixes #1742, #1895 feature
Breaking changes:
@broker.subscriber(..., filters=...)
removedmessage.decoded_body
removed, useawait message.decode()
insteadpublish(..., rpc=True)
removed, usebroker.request()
instead@broker.subscriber(..., reply_config=...)
removed, useResponse
insteadContext("broker")
andContext("logger")
moved to local context. They can not be accessed in lifespan hooks anymoreFastStream(broker)
is positional-only argument now (preparing toFastStream(*brokers)
support)FastStream(**asyncapi_options)
doesn't work anymore. Now, you have to create specialAsyncAPI(broker, **asyncapi_options)
to render documentationFastStream(broker)
is POSITIONAL-ONLY option now.FastStream(broker=broker)
doesn't work anymorebroker.subscriber(..., retry=True)
removed, useack_policy
instead