Skip to content

Commit c004f06

Browse files
authored
Merge branch 'aio-libs:master' into master
2 parents 3d5b58e + fa239a2 commit c004f06

File tree

13 files changed

+33
-16
lines changed

13 files changed

+33
-16
lines changed

.appveyor.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@ environment:
33
KAFKA_VERSION: "2.8.1"
44
SCALA_VERSION: "2.13"
55
matrix:
6+
- PYTHON: "C:\\Python311"
7+
- PYTHON: "C:\\Python311-x64"
8+
- PYTHON: "C:\\Python310"
9+
- PYTHON: "C:\\Python310-x64"
610
- PYTHON: "C:\\Python39"
711
- PYTHON: "C:\\Python39-x64"
812
- PYTHON: "C:\\Python38"
913
- PYTHON: "C:\\Python38-x64"
1014
- PYTHON: "C:\\Python37"
1115
- PYTHON: "C:\\Python37-x64"
12-
- PYTHON: "C:\\Python36"
13-
- PYTHON: "C:\\Python36-x64"
1416

1517
image: Visual Studio 2022
1618

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ jobs:
9898

9999
- name: Install python dependencies
100100
run: |
101-
pip install --upgrade pip setuptools wheel
102-
pip install -r requirements-win-test.txt
103-
pip install ${{ matrix.aiokafka_whl }}
101+
python -m pip install --upgrade pip setuptools wheel
102+
python -m pip install -r requirements-win-test.txt
103+
python -m pip install ${{ matrix.aiokafka_whl }}
104104
shell: bash
105105

106106
- name: Run Unit Tests

CHANGES.rst

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,31 @@ Changelog
33
=========
44

55

6+
0.8.0 (2022-11-21)
7+
==================
8+
9+
New features:
10+
11+
* Add codec for ZStandard compression (KIP-110) (pr #801)
12+
* Add basic admin client functionality (pr #811 started by @gabriel-tincu)
13+
* Drop support for Python 3.6, add support and pre-built packages for Python
14+
3.10 (pr #841)
15+
16+
17+
Bugfixes:
18+
19+
* Fix `KeyError` on solitary abort marker (issue #781, pr #782 by @pikulmar)
20+
* Fix handling unsupported compression codec (issue #795)
21+
* Handled other SASL mechanism in logging (issue #852, pr #861 by @mangin)
22+
23+
24+
Improved Documentation:
25+
26+
* Fix documentation on how to install optional features (issue #645)
27+
* Improve the rendering of the documentation (pr #722 by @multani)
28+
* Fix `MyRebalancer` example in `docs/consumer.rst` (pr #731 by @aamalev)
29+
30+
631
0.7.2 (2021-09-02)
732
==================
833

CHANGES/645.doc

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/722.doc

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/731.doc

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/782.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/795.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/801.feature

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/811.feature

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)