Skip to content

Commit 8b20c0c

Browse files
authored
Chore/bump version 2.8.0 (#405)
* Regenerate the docs * Bump version to 2.8.0
1 parent 21415a0 commit 8b20c0c

File tree

9 files changed

+686
-474
lines changed

9 files changed

+686
-474
lines changed

docs/api-reference/application.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class Application()
1111
```
1212

13-
[[VIEW SOURCE]](https://github.com/quixio/quix-streams/blob/d1c312905abaa551ea99b4db5afe2a25d428e445/quixstreams/app.py#L56)
13+
[[VIEW SOURCE]](https://github.com/quixio/quix-streams/blob/21415a0a23d113ed8191b9a062c4abaad2b9a124/quixstreams/app.py#L56)
1414

1515
The main Application class.
1616

@@ -83,7 +83,7 @@ def __init__(broker_address: Optional[Union[str, ConnectionConfig]] = None,
8383
processing_guarantee: ProcessingGuarantee = "at-least-once")
8484
```
8585

86-
[[VIEW SOURCE]](https://github.com/quixio/quix-streams/blob/d1c312905abaa551ea99b4db5afe2a25d428e445/quixstreams/app.py#L94)
86+
[[VIEW SOURCE]](https://github.com/quixio/quix-streams/blob/21415a0a23d113ed8191b9a062c4abaad2b9a124/quixstreams/app.py#L94)
8787

8888

8989
<br>
@@ -186,7 +186,7 @@ def Quix(
186186
) -> Self
187187
```
188188

189-
[[VIEW SOURCE]](https://github.com/quixio/quix-streams/blob/d1c312905abaa551ea99b4db5afe2a25d428e445/quixstreams/app.py#L330)
189+
[[VIEW SOURCE]](https://github.com/quixio/quix-streams/blob/21415a0a23d113ed8191b9a062c4abaad2b9a124/quixstreams/app.py#L330)
190190

191191
>***NOTE:*** DEPRECATED: use Application with `quix_sdk_token` argument instead.
192192

@@ -297,7 +297,7 @@ def topic(name: str,
297297
timestamp_extractor: Optional[TimestampExtractor] = None) -> Topic
298298
```
299299

300-
[[VIEW SOURCE]](https://github.com/quixio/quix-streams/blob/d1c312905abaa551ea99b4db5afe2a25d428e445/quixstreams/app.py#L471)
300+
[[VIEW SOURCE]](https://github.com/quixio/quix-streams/blob/21415a0a23d113ed8191b9a062c4abaad2b9a124/quixstreams/app.py#L471)
301301

302302
Create a topic definition.
303303

@@ -378,7 +378,7 @@ topic = app.topic("input-topic", timestamp_extractor=custom_ts_extractor)
378378
def dataframe(topic: Topic) -> StreamingDataFrame
379379
```
380380

381-
[[VIEW SOURCE]](https://github.com/quixio/quix-streams/blob/d1c312905abaa551ea99b4db5afe2a25d428e445/quixstreams/app.py#L551)
381+
[[VIEW SOURCE]](https://github.com/quixio/quix-streams/blob/21415a0a23d113ed8191b9a062c4abaad2b9a124/quixstreams/app.py#L551)
382382

383383
A simple helper method that generates a `StreamingDataFrame`, which is used
384384

@@ -428,7 +428,7 @@ to be used as an input topic.
428428
def stop(fail: bool = False)
429429
```
430430

431-
[[VIEW SOURCE]](https://github.com/quixio/quix-streams/blob/d1c312905abaa551ea99b4db5afe2a25d428e445/quixstreams/app.py#L590)
431+
[[VIEW SOURCE]](https://github.com/quixio/quix-streams/blob/21415a0a23d113ed8191b9a062c4abaad2b9a124/quixstreams/app.py#L590)
432432

433433
Stop the internal poll loop and the message processing.
434434

@@ -455,7 +455,7 @@ to unhandled exception, and it shouldn't commit the current checkpoint.
455455
def get_producer() -> Producer
456456
```
457457

458-
[[VIEW SOURCE]](https://github.com/quixio/quix-streams/blob/d1c312905abaa551ea99b4db5afe2a25d428e445/quixstreams/app.py#L613)
458+
[[VIEW SOURCE]](https://github.com/quixio/quix-streams/blob/21415a0a23d113ed8191b9a062c4abaad2b9a124/quixstreams/app.py#L613)
459459

460460
Create and return a pre-configured Producer instance.
461461
The Producer is initialized with params passed to Application.
@@ -490,7 +490,7 @@ with app.get_producer() as producer:
490490
def get_consumer(auto_commit_enable: bool = True) -> Consumer
491491
```
492492

493-
[[VIEW SOURCE]](https://github.com/quixio/quix-streams/blob/d1c312905abaa551ea99b4db5afe2a25d428e445/quixstreams/app.py#L643)
493+
[[VIEW SOURCE]](https://github.com/quixio/quix-streams/blob/21415a0a23d113ed8191b9a062c4abaad2b9a124/quixstreams/app.py#L643)
494494

495495
Create and return a pre-configured Consumer instance.
496496
The Consumer is initialized with params passed to Application.
@@ -539,7 +539,7 @@ with app.get_consumer() as consumer:
539539
def clear_state()
540540
```
541541

542-
[[VIEW SOURCE]](https://github.com/quixio/quix-streams/blob/d1c312905abaa551ea99b4db5afe2a25d428e445/quixstreams/app.py#L690)
542+
[[VIEW SOURCE]](https://github.com/quixio/quix-streams/blob/21415a0a23d113ed8191b9a062c4abaad2b9a124/quixstreams/app.py#L690)
543543

544544
Clear the state of the application.
545545

@@ -553,7 +553,7 @@ Clear the state of the application.
553553
def run(dataframe: StreamingDataFrame)
554554
```
555555

556-
[[VIEW SOURCE]](https://github.com/quixio/quix-streams/blob/d1c312905abaa551ea99b4db5afe2a25d428e445/quixstreams/app.py#L696)
556+
[[VIEW SOURCE]](https://github.com/quixio/quix-streams/blob/21415a0a23d113ed8191b9a062c4abaad2b9a124/quixstreams/app.py#L696)
557557

558558
Start processing data from Kafka using provided `StreamingDataFrame`
559559

docs/api-reference/context.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
def set_message_context(context: Optional[MessageContext])
1313
```
1414

15-
[[VIEW SOURCE]](https://github.com/quixio/quix-streams/blob/d1c312905abaa551ea99b4db5afe2a25d428e445/quixstreams/context.py#L20)
15+
[[VIEW SOURCE]](https://github.com/quixio/quix-streams/blob/21415a0a23d113ed8191b9a062c4abaad2b9a124/quixstreams/context.py#L20)
1616

1717
Set a MessageContext for the current message in the given `contextvars.Context`
1818

@@ -55,7 +55,7 @@ sdf = sdf.update(lambda value: alter_context(value))
5555
def message_context() -> MessageContext
5656
```
5757

58-
[[VIEW SOURCE]](https://github.com/quixio/quix-streams/blob/d1c312905abaa551ea99b4db5afe2a25d428e445/quixstreams/context.py#L51)
58+
[[VIEW SOURCE]](https://github.com/quixio/quix-streams/blob/21415a0a23d113ed8191b9a062c4abaad2b9a124/quixstreams/context.py#L51)
5959

6060
Get a MessageContext for the current message, which houses most of the message
6161

0 commit comments

Comments
 (0)