From 3ab519b43511fb80cbfdbacbdfc99f065c87f0f8 Mon Sep 17 00:00:00 2001 From: Fantix King Date: Thu, 9 Oct 2025 23:21:33 -0400 Subject: [PATCH 1/3] uvloop 0.22.0 Changes ======= * Fixes for Python 3.14 (#638) (by @graingert @hroncok @paulocheque @fantix in 46456b6a for #637) Fixes ===== * Use Cython `enum` for `__PREALLOCED_BUFS` (#634) (by @jakirkham in 7bb12a17 for #634) * test: fix getaddrinfo test (#663) (by @fantix in 56807922 for #663) * test: fix task name for Python 3.13.3/3.14 (#662) (by @cjwatson in 96b7ed31 for #662) --- uvloop/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uvloop/_version.py b/uvloop/_version.py index 9e1722c0..c5fffb10 100644 --- a/uvloop/_version.py +++ b/uvloop/_version.py @@ -10,4 +10,4 @@ # supported platforms, publish the packages on PyPI, merge the PR # to the target branch, create a Git tag pointing to the commit. -__version__ = '0.21.0' +__version__ = '0.22.0' From e52d76c577d9131d1b5ac92672eeedd6e8852696 Mon Sep 17 00:00:00 2001 From: Paulo Cheque Date: Sat, 11 Oct 2025 14:52:29 -0300 Subject: [PATCH 2/3] Upgraded Deprecated GitHub Action upload-artifact to v4.6.2 --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d49bb4e7..5f3dd9a5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,7 +37,7 @@ jobs: mkdir -p dist/ echo "${VERSION}" > dist/VERSION - - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 + - uses: actions/upload-artifact@v4.6.2 with: name: dist path: dist/ @@ -64,7 +64,7 @@ jobs: python -m pip install --upgrade setuptools wheel pip python setup.py sdist - - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 + - uses: actions/upload-artifact@v4.6.2 with: name: dist path: dist/*.tar.* @@ -122,7 +122,7 @@ jobs: CIBW_ARCHS: ${{ matrix.cibw_arch }} CIBW_TEST_SKIP: "*universal2:arm64" - - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 + - uses: actions/upload-artifact@v4.6.2 with: name: dist path: wheelhouse/*.whl From a10922b6382b6d7836e881d317b1cc97f61fad40 Mon Sep 17 00:00:00 2001 From: Paulo Cheque Date: Tue, 14 Oct 2025 12:34:46 -0300 Subject: [PATCH 3/3] Adjusted exception message for test_create_connection_open_con_addr test --- tests/test_tcp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_tcp.py b/tests/test_tcp.py index 8759383d..d5cf3241 100644 --- a/tests/test_tcp.py +++ b/tests/test_tcp.py @@ -404,7 +404,7 @@ async def client(addr): writer.write(b'AAAA') self.assertEqual(await reader.readexactly(2), b'OK') - re = r'(a bytes-like object)|(must be byte-ish)' + re = r'(must be a bytes)|(a bytes-like object)|(must be byte-ish)' with self.assertRaisesRegex(TypeError, re): writer.write('AAAA')