From ecaf57586af1b400b619ca39b28e1c40383d5b70 Mon Sep 17 00:00:00 2001 From: Felipe Cardozo Date: Wed, 21 Aug 2024 12:27:54 -0300 Subject: [PATCH 1/4] chore: fix readme examples (#465) --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e76da917..1131ed5f 100644 --- a/README.md +++ b/README.md @@ -30,13 +30,14 @@ from fluvio import Fluvio fluvio = Fluvio.connect() producer = fluvio.topic_producer('my-topic') producer.send_string("FOOBAR") +producer.flush() ``` ## Consumer ```python from fluvio import (Fluvio, Offset) fluvio = Fluvio.connect() -consumer = fluvio.partition_consumer('my-topic-while', 0) +consumer = fluvio.partition_consumer('my-topic', 0) stream = consumer.stream(Offset.beginning()) for i in stream: From 5bc39b4742a9bc2f99eb20649ac354d2c178da77 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 00:02:38 -0400 Subject: [PATCH 2/4] build(deps): bump pypa/gh-action-pypi-publish from 1.9.0 to 1.10.0 (#469) Bumps [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) from 1.9.0 to 1.10.0. - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.9.0...v1.10.0) --- updated-dependencies: - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index fc18a466..711301d9 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -165,7 +165,7 @@ jobs: path: dist merge-multiple: true - - uses: pypa/gh-action-pypi-publish@v1.9.0 + - uses: pypa/gh-action-pypi-publish@v1.10.0 with: user: __token__ password: ${{ secrets.PYPI_ACCESS_TOKEN }} From 178eb73c910866cb19540a258a6bf70628e6a575 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 00:02:46 -0400 Subject: [PATCH 3/4] build(deps): update cc requirement from =1.1.12 to =1.1.15 (#467) Updates the requirements on [cc](https://github.com/rust-lang/cc-rs) to permit the latest version. - [Release notes](https://github.com/rust-lang/cc-rs/releases) - [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-lang/cc-rs/compare/cc-v1.1.12...cc-v1.1.15) --- updated-dependencies: - dependency-name: cc dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d04b097b..989805f9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ async-h1 = "2.3.3" async-lock = "3.3.0" async-std = "1.6.5" aws-lc-rs = { version = "1", features = ["bindgen"] } -cc = "=1.1.12" +cc = "=1.1.15" dirs = "5.0.1" futures = "0.3.30" hex = "0.4.2" From 53ee177469a9fe31213b5ec0d19c666a8f4b1a1d Mon Sep 17 00:00:00 2001 From: Alan Chen Date: Fri, 11 Oct 2024 13:21:34 -0700 Subject: [PATCH 4/4] chore: update to fluvio 0.12.0 (#495) --- Cargo.toml | 13 ++++++++----- setup.py | 2 +- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 989805f9..efc5c7f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "_fluvio_python" -version = "0.16.3" +version = "0.16.4" edition = "2021" authors = ["Fluvio Contributors "] @@ -38,7 +38,10 @@ url = "2.5.0" webbrowser = "1.0.0" fluvio-future = { version = "0.7.0", features = ["task", "io", "native_tls", "subscriber"] } -fluvio = { features = ["admin", "rustls"], git = "https://github.com/infinyon/fluvio.git", tag = "v0.11.11" } -fluvio-types = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.11.11" } -fluvio-sc-schema = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.11.11" } -fluvio-controlplane-metadata = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.11.11" } +fluvio = { features = ["admin", "rustls"], git = "https://github.com/infinyon/fluvio.git", tag = "v0.12.0" } +fluvio-types = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.12.0" } +fluvio-sc-schema = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.12.0" } +fluvio-controlplane-metadata = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.12.0" } + +# transitive version selection +parking_lot = "0.12.3" \ No newline at end of file diff --git a/setup.py b/setup.py index 84121200..937ecc1e 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="fluvio", - version="0.16.3", + version="0.16.4", long_description=open("README.md").read(), long_description_content_type="text/markdown", author="Fluvio Contributors",