Quixstreams

Latest version: v3.12.0

Safety actively analyzes 723158 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 7 of 9

2.1.4a

What's Changed
* Add support for Column families by daniil-quix in https://github.com/quixio/quix-streams/pull/268
* Update the mapping of broker settings for Quix apps by daniil-quix in https://github.com/quixio/quix-streams/pull/270
* Fix bug in RocksDB transaction on deleting cached key by harisbotic in https://github.com/quixio/quix-streams/pull/269
* Add API to create a pre-configured Producer and Consumer on the Application level by harisbotic in https://github.com/quixio/quix-streams/pull/261


**Full Changelog**: https://github.com/quixio/quix-streams/compare/v2.1.3a...v2.1.4a

2.1.3a

What's Changed
* Implement better handling for all broker down error by peter-quix in https://github.com/quixio/quix-streams/pull/264

 Repo cleanup
* Make URLs absolute in the docs by daniil-quix in https://github.com/quixio/quix-streams/pull/256
* Update repo banner by SteveRosam in https://github.com/quixio/quix-streams/pull/262
* Update README.md by SteveRosam in https://github.com/quixio/quix-streams/pull/263


**Full Changelog**: https://github.com/quixio/quix-streams/compare/v2.1.2a...v2.1.3a

2.1.2a

What's Changed
* Fix ssl timeout errors for Quix applications (254)
* Various docs fixes & updates 252 253

**Full Changelog**: https://github.com/quixio/quix-streams/compare/v2.1.1a...v2.1.2a

2.1.1a

What's Changed
* [New] Implemented `StreamingDataFrame.apply(expand=True)` to produce multiple individual values based on the collection. [246]
You may use `.apply(expand=True)` to produce multiple values to the output topics for a single input message
[Docs](https://github.com/quixio/quix-streams/blob/main/docs/streamingdataframe.md#expanding-a-list-of-values-into-individual-items-with-streamingdataframeapplyexpandtrue)

* [Fix] Make "and" and "or" comparisons lazy in `StreamingSeries` [248]
In previous versions, code like `sdf['a'] | sdf['b']` and `sdf['a'] & sdf['b']` was always evaluating both sides of the expression, while usual `and` and `or` can evaluate the right side lazily.

* Various docs updates: 247 250 251


**Full Changelog**: https://github.com/quixio/quix-streams/compare/v2.1alpha1...v2.1.1a

2.1a1

This release brings new features and breaking API changes.
Read on for more details.

What's changed

Many updates to `StreamingDataFrame` and `StreamingSeries` (ex-`Column`) [[238](https://github.com/quixio/quix-streams/pull/238)]
We updated how streaming data is processed by `StreamingDataFrame` and `StreamingSeries` classes.
They now use the same engine to apply functions to the message values.

It introduces both new features and breaking changes:
1. [breaking] Changes to `StreamingDataFrame` and new methods `.update()` and `.filter()`

- **Functions passed to `StreamingDataFrame.apply()` should always return a new value.** The result of the function will be propagated downstream.
Previously, `.apply()` was used to both mutate values and generate new ones.
Now it's discouraged, and the `.update()` method should be used instead to mutate data and perform side effects (e.g. to print to the console).
[Docs](https://github.com/quixio/quix-streams/blob/v2.1alpha1/docs/streamingdataframe.md#streamingdataframeupdatefunction)

- **New method `StreamingDataFrame.update()` to mutate values in place.**
[Docs](https://github.com/quixio/quix-streams/blob/v2.1alpha1/docs/streamingdataframe.md#streamingdataframeupdatefunction)

- **New method `StreamingDataFrame.filter()` to filter values.**
[Docs](https://github.com/quixio/quix-streams/blob/v2.1alpha1/docs/streamingdataframe.md#streamingdataframeupdatefunction)

- **New syntax to filter values - `dataframe[dataframe.apply(<func>)]`**
`StreamingDataFrame` can now filter data using a similar API as `pandas.DataFrame`.
[Docs](https://github.com/quixio/quix-streams/blob/v2.1alpha1/docs/streamingdataframe.md#streamingdataframeapplyfunction)

- **New syntax to update values - `dataframe['field'] = dataframe.apply(<func>)`**
`StreamingDataFrame` can now assign new keys to the values using functions.
[Docs](https://github.com/quixio/quix-streams/blob/v2.1alpha1/docs/streamingdataframe.md#streamingdataframeapplyfunction)`

- **`StreamingDataFrame` doesn't require values to be dictionaries anymore.**

- **`StreamingDataFrame` methods now return a new `StreamingDataFrame`.**
Previously, many methods like `.apply()` and `.to_topic()` were mutating the state of the `StreamingDataFrame` instance.
Now all of them return a new instance, and the current instance remains intact.

- **Functions passed to `.apply()` now get only one argument - message value.**
Previously, functions passed to `.apply()` were provided with at least 2 positional arguments: message value and `MessageContext` with Kafka message metadata.
Now they don't need to accept `MessageContext` to access a current message key, and it is stored globally for each incoming message.
To get a current message key and or full message metadata use `quixstreams.message_key()` and `quixstreams.message_context()` in
your custom functions.
[Docs](https://github.com/quixio/quix-streams/blob/v2.1alpha1/docs/streamingdataframe.md#accessing-the-kafka-message-keys-and-metadata)


New method to check if the key exists in the message value - `StreamingDataFrame.contains()` [[235](https://github.com/quixio/quix-streams/pull/235)]

New method to clear the local state - `Application.clear_state()`[[239](https://github.com/quixio/quix-streams/pull/239)]
Use `Application.clear_state()` to clear the local state of the application.
Quix Streams keeps state data per consumer group, so the state will be cleared only for the
particular consumer group.


[breaking] Changes to logical operators `|`, `&` and `~` in `StreamingSeries` [[238](https://github.com/quixio/quix-streams/pull/238)]
The logical operators `|`, `&`, and `~` now do logical comparisons.
Previously it worked this way only with booleans, when for numbers it would do a bitwise operation.

Support for Python 3.12 [[244](https://github.com/quixio/quix-streams/pull/244)]
Quix Streams now works with Python 3.12


**Full Changelog**: https://github.com/quixio/quix-streams/compare/v2.0alpha2...v2.1alpha1

2.1alpha1

Page 7 of 9

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.