This repository has been archived by the owner on Jan 14, 2025. It is now read-only.
chore(deps): update all non-major dependencies #181
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
==0.10.0
->==0.11.0
==4.4.0
->==4.6.2.post1
==0.11.0
->==0.12.0
==24.4.2
->==24.10.0
==2024.7.4
->==2024.8.30
==3.3.2
->==3.4.0
==2.4.0
->==2.6.0
7.1.12
->7.1.14
==7.6.0
->==7.6.3
==0.3.8
->==0.3.9
==2.6.1
->==2.7.0
3.7.0
->3.8.0
11.4.2
->11.5.2
3.12.3
->3.13.0
3.11.9-slim
->3.13.0-slim
==2.1.1
->==2.2.0
==0.111.0
->==0.115.2
==4.1.0
->==4.2.1
==3.15.4
->==3.16.1
==7.0.0
->==7.1.1
==24.4.26
->==24.8.19
==1.0.5
->==1.0.6
==0.6.1
->==0.6.4
==0.27.0
->==0.27.2
==2.6.0
->==2.6.1
==3.7
->==3.10
==6.4.0
->==6.4.5
==5.4.0
->==5.13.0
==0.6.1
->==0.7.2
==5.2.2
->==5.3.0
==10.2.0
->==10.5.0
==3.10.6
->==3.10.7
==24.0
->==24.1
==4.2.2
->==4.3.6
==3.7.1
->==3.8.0
==0.20.0
->==0.21.0
==2.11.1
->==2.12.1
==2.7.3
->==2.9.2
==2.8.2
->==2.9.2
==2.18.4
->==2.24.2
==2.20.1
->==2.24.2
==2.4.0
->==2.6.0
==8.2.1
->==8.3.3
==0.0.9
->==0.0.12
==6.0.1
->==6.0.2
==2.32.2
->==2.32.3
==13.7.1
->==13.9.2
==0.40.0
->==0.41.0
==24.2.0
->==24.4.0
==4.6.1
->==4.7.2
0.25.0
->0.25.1
==1.7
->==1.10
==0.12.3
->==0.12.5
==2.32.0.20240602
->==2.32.0.20241016
==2.32.0.20240712
->==2.32.0.20241016
==4.12.1
->==4.12.2
==2.2.2
->==2.2.3
==0.30.1
->==0.32.0
==0.19.0
->==0.21.0
==20.26.3
->==20.27.0
==0.22.0
->==0.24.0
Release Notes
aio-libs/aiokafka (aiokafka)
v0.11.0
Compare Source
===================
New features:
KIP-204
_) (pr #969 by @vmaurin).. _KIP-204: https://cwiki.apache.org/confluence/display/KAFKA/KIP-204+%3A+Adding+records+deletion+operation+to+the+new+Admin+Client+API
Bugfixes:
AIOKafkaAdminClient.create_partitions
(pr #978 by @alm0ra)
NotControllerError
inAIOKafkaAdminClient.create_topics
and othermethods (issue #995)
agronholm/anyio (anyio)
v4.6.2.post1
Compare Source
v4.6.2
Compare Source
v4.6.1
Compare Source
This release contains all the changes from both v4.5.1 and v4.6.0, plus:
v4.6.0
Compare Source
CancelledError
on exit when the enclosing cancel scope has been effectively cancelled (#698)v4.5.2
Compare Source
v4.5.1
Compare Source
As Python 3.8 support was dropped in v4.6.0, this interim release was created to bring a regression fix to Python 3.8, and adds a few other fixes also present in v4.6.1.
RuntimeError
(#798)self
being different than the test'sself
in class-based tests (#633) (PR by @agronholm and @graingert)TypeError
withTLSStream
on Windows when a certificate verification error occurs when using a truststore SSL certificate (#795)anyio.Path
regarding the limitations imposed by the current Python version on several of its methods, and made theis_junction
method unavailable on Python versions earlier than 3.12 (#794)v4.5.0
Compare Source
anyio.Lock
andanyio.Semaphore
on asyncio (even up to 50 %)fast_acquire
parameter toanyio.Lock
andanyio.Semaphore
to further boost performance at the expense of safety (acquire()
will not yield control back if there is no contention)from_uri()
,full_match()
,parser
methods/properties inanyio.Path
, newly added in Python 3.13 (#737)run_process()
andopen_process()
:startupinfo
,creationflags
,pass_fds
,user
,group
,extra_groups
andumask
(#742)PathLike
inrun_process()
andopen_process()
to allow for path-like arguments, just likesubprocess.Popen
ResourceWarning
from an unclosed memory object stream to include its address for easier identificationstart_blocking_portal()
to always use daemonic threads, to accommodate the "loitering event loop" use case__repr__()
ofMemoryObjectItemReceiver
, whenitem
is not defined (#767; PR by @Danipulok)to_process.run_sync()
failing to initialize if__main__.__file__
pointed to a file in a nonexistent directory (#696)AssertionError: feed_data after feed_eof
on asyncio when a subprocess is closed early, before its output has been read (#490)TaskInfo.has_pending_cancellation()
on asyncio not respecting shielded scopes (#771; PR by @gschaffner)SocketStream.receive()
returningbytearray
instead ofbytes
when using asyncio withProactorEventLoop
(Windows) (#776)KeyboardInterrupt
(ctrl+c) hanging the asyncio pytest runneraverbis/averbis-python-api (averbis-python-api)
v0.12.0
: Averbis Python API 0.12.0Compare Source
We are happy to announce release
0.12.0
of the Averbis Python API. This release introduces new features such as annotator listings, experimental PDF analysis, and document deletion from a collection, along with a new endpoint for uploading license files. Additionally, it resolves an evaluation process bug and updates compatibility to support Python 3.12, dropping support for Python 3.6 and 3.7.What's Changed
Full Changelog: averbis/averbis-python-api@0.11.0...0.12.0
psf/black (black)
v24.10.0
Compare Source
Highlights
mypyc-compiled wheels. (#4436) (#4449)
safety issue in Python 3.12.5 that can cause Black's AST safety checks to fail. Please
use Python 3.12.6 or Python 3.12.4 instead. (#4447)
Stable style
X | Y
style unions.(#4453)
%%
magic (#4462)Preview style
def fn(*args: *tuple[*Ts, T]) -> None: pass
) (#4440)Caching
--unstable
(#4466)Packaging
blackd
now requires a newer version of aiohttp. (#4451)Output
v24.8.0
Compare Source
Stable style
# fmt: off
is used before a closing parenthesis or bracket. (#4363)Packaging
Configuration
📅 Schedule: Branch creation - "every 3 months on the first day of the month" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.