You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by ti...@apache.org on 2022/12/26 16:14:29 UTC

[pulsar-site] branch main updated: Add the release note for Python client 3.0.0 (#343)

This is an automated email from the ASF dual-hosted git repository.

tison pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-site.git


The following commit(s) were added to refs/heads/main by this push:
     new d7f2334f07d Add the release note for Python client 3.0.0 (#343)
d7f2334f07d is described below

commit d7f2334f07d061820ee349df72f58de26a4bb947
Author: Yunze Xu <xy...@163.com>
AuthorDate: Tue Dec 27 00:14:24 2022 +0800

    Add the release note for Python client 3.0.0 (#343)
---
 site2/website-next/data/release-python.js          |  1 +
 .../release-notes/versioned/client-python-3.0.0.md | 35 ++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/site2/website-next/data/release-python.js b/site2/website-next/data/release-python.js
index f2c50010ede..77ec2f2405b 100644
--- a/site2/website-next/data/release-python.js
+++ b/site2/website-next/data/release-python.js
@@ -1,4 +1,5 @@
 module.exports = [
+{tagName: "v3.0.0",vtag:"3.0.x",releaseNotes:"/release-notes/versioned/client-python-3.0.0/",doc:"/docs/client-libraries-python",version:"v3.0.x"},
 {tagName: "v2.10.1",vtag:"2.10.x",releaseNotes:"/release-notes/versioned/client-python-2.10.1/",doc:"/docs/client-libraries-python",version:"v2.10.x"},
 {tagName: "v2.10.0",vtag:"2.10.x",releaseNotes:"/release-notes/versioned/client-python-2.10.0/",doc:"/docs/client-libraries-python",version:""},
 {tagName: "v2.9.3",vtag:"2.9.x",releaseNotes:"/release-notes/versioned/client-python-2.9.3/",doc:"/docs/2.9.x/client-libraries-python",version:"v2.9.x"},
diff --git a/site2/website-next/release-notes/versioned/client-python-3.0.0.md b/site2/website-next/release-notes/versioned/client-python-3.0.0.md
new file mode 100644
index 00000000000..852cc1ec0e1
--- /dev/null
+++ b/site2/website-next/release-notes/versioned/client-python-3.0.0.md
@@ -0,0 +1,35 @@
+---
+id: client-python-3.0.0
+title: Client Python 3.0.0
+sidebar_label: Client Python 3.0.0
+---
+
+## What's Changed
+* Upgrade Pulsar C++ client to 3.1.0 by @BewareMyPower in https://github.com/apache/pulsar-client-python/pull/62
+* fix: make sure that the fallback avro class has the signature as fastravro's by @jaysonsantos in https://github.com/apache/pulsar-client-python/pull/57
+* Simplify dependency upgrade process and upgrade Pulsar C++ client to 3.1.0 by @BewareMyPower in https://github.com/apache/pulsar-client-python/pull/56
+* Migrate from Boost.Python to PyBind11 by @BewareMyPower in https://github.com/apache/pulsar-client-python/pull/54
+* Fixed building of Linux wheel files by @merlimat in https://github.com/apache/pulsar-client-python/pull/45
+* [improve][ci] check python doc syntax by @tisonkun in https://github.com/apache/pulsar-client-python/pull/38
+* [feat] Support consumer batch receive. by @shibd in https://github.com/apache/pulsar-client-python/pull/33
+* Improve apidoc with pydoctor tool  by @tisonkun in https://github.com/apache/pulsar-client-python/pull/28
+* Fetch C++ client official release by @merlimat in https://github.com/apache/pulsar-client-python/pull/25
+* Support building with MSVC by @BewareMyPower in https://github.com/apache/pulsar-client-python/pull/23
+* [feat] Support start message id inclusive by @Demogorgon314 in https://github.com/apache/pulsar-client-python/pull/19
+* Enable building Mac universal2 wheels for Python 3.7 by @merlimat in https://github.com/apache/pulsar-client-python/pull/18
+* Fixed missed version of zlib by @merlimat in https://github.com/apache/pulsar-client-python/pull/17
+* Enhance developer experience for debugging tests and add related README by @BewareMyPower in https://github.com/apache/pulsar-client-python/pull/16
+* Support auth param string for Basic authentication by @BewareMyPower in https://github.com/apache/pulsar-client-python/pull/15
+* Enable required check status for pr validation by @RobertIndie in https://github.com/apache/pulsar-client-python/pull/13
+* Allow to configure log level from Python by @merlimat in https://github.com/apache/pulsar-client-python/pull/12
+* Build wheel files in CI by @merlimat in https://github.com/apache/pulsar-client-python/pull/11
+* Add CI job to build and run Python tests by @merlimat in https://github.com/apache/pulsar-client-python/pull/9
+* Added license and notice files by @merlimat in https://github.com/apache/pulsar-client-python/pull/6
+* Add .asf.yaml file by @BewareMyPower in https://github.com/apache/pulsar-client-python/pull/2
+* PIP-209: Compile Python client wrapper by @merlimat in https://github.com/apache/pulsar-client-python/pull/1
+
+**Full Changelog**: https://github.com/apache/pulsar-client-python/commits/v3.0.0
+
+## New Contributors
+* @jaysonsantos made his first contribution in https://github.com/apache/pulsar-client-python/pull/57
+* @tisonkun made his first contribution in https://github.com/apache/pulsar-client-python/pull/28