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:
==2.1.0
->==2.1.3
==1.16.0
->==1.17.0
==8.14.0
->==8.15.0
==0.111.1
->==0.112.1
0.112.2
~=2.32.0
->~=2.34.0
==1.51.0
->==1.62.0
1.63.0
==1.60.0
->==1.62.0
1.63.0
==2.16.0
->==2.18.2
==2.18.0
->==2.18.2
==4.39.0
->==4.41.0
4.42.0
==0.4.30
->==0.4.31
==0.4.30
->==0.4.31
==0.1.20
->==0.2.14
==0.2.11
->==0.2.14
==0.2.10
->==0.2.12
==1.0.7
->==1.0.8
1.0.10
(+1)==1.24.3
->==1.24.9
==1.10.1
->==1.11.0
1.11.1
==5.0.7
->==5.0.8
>=0.5,<=0.5.5
->>=0.6,<=0.6.1
0.6.2
==1.37.0
->==1.37.1
==4.43.3
->==4.44.0
4.44.2
(+1)==0.30.3
->==0.30.6
==4.6.5
->==4.7.1
Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
lukasschwab/arxiv.py (arxiv)
v2.1.3
Compare Source
What's Changed
Optional
type hints where appropriate by @lukasschwab in https://github.com/lukasschwab/arxiv.py/pull/168Full Changelog: lukasschwab/arxiv.py@2.1.2...2.1.3
v2.1.2
Compare Source
What's Changed
setup.py
by @kgleba in https://github.com/lukasschwab/arxiv.py/pull/165New Contributors
Full Changelog: lukasschwab/arxiv.py@2.1.1...2.1.2
v2.1.1
Compare Source
Patch.
~=
by @lukasschwab in https://github.com/lukasschwab/arxiv.py/pull/162Development changes
ruff
by @lukasschwab in https://github.com/lukasschwab/arxiv.py/pull/147requests.Session.get
inTestClient
by @lukasschwab in https://github.com/lukasschwab/arxiv.py/pull/150Full Changelog: lukasschwab/arxiv.py@2.1.0...2.1.1
python-cffi/cffi (cffi)
v1.17.0
Compare Source
python3.13t
and the3.13t
ABI) are not currently supported.fn = lib.myfunc
, you get an object of a special type for performancereasons, instead of a
<cdata 'C-function-type'>
. Before version 1.17you could only call such objects. You could write
ffi.addressof(lib, "myfunc")
in order to get a real<cdata>
object,based on the idea that in these cases in C you'd usually write
&myfunc
instead of
myfunc
. In version 1.17, the special objectlib.myfunc
can now be passed in many places where CFFI expectsa regular
<cdata>
object. For example, you can now passit as a callback to a C function call, or write it inside a C
structure field of the correct pointer-to-function type, or use
ffi.cast()
orffi.typeof()
on it.Full Changelog: python-cffi/cffi@v1.16.0...v1.17.0
elastic/elasticsearch-py (elasticsearch)
v8.15.0
: 8.15.0Compare Source
dry_run
andforce
parameters to the Perform inference APIfastapi/fastapi (fastapi)
v0.112.1
Compare Source
Upgrades
>=0.37.2,<0.39.0
. PR #11876 by @musicinmybrain.Docs
Translations
docs/pt/docs/tutorial/bigger-applications.md
. PR #11971 by @marcelomarkus.docs/pt/docs/advanced/testing-websockets.md
. PR #11994 by @ceb10n.docs/pt/docs/advanced/testing-dependencies.md
. PR #11995 by @ceb10n.docs/pt/docs/advanced/using-request-directly.md
. PR #11956 by @ceb10n.docs/fr/docs/tutorial/body-multiple-params.md
. PR #11796 by @pe-brian.docs/zh/docs/tutorial/query-params.md
. PR #11557 by @caomingpei.docs/zh/docs/advanced/testing-dependencies.md
. PR #11944 by @bestony.docs/pt/docs/advanced/sub-applications.md
anddocs/pt/docs/advanced/behind-a-proxy.md
. PR #11856 by @marcelomarkus.docs/pt/docs/tutorial/cors.md
anddocs/pt/docs/tutorial/middleware.md
. PR #11916 by @wesinalves.docs/fr/docs/tutorial/path-params-numeric-validations.md
. PR #11788 by @pe-brian.Internal
pyproject.toml
, shows in PyPI. PR #11152 by @Pierre-VF.deploy_docs_status.py
to account for deploy URLs with or without trailing slash. PR #11965 by @tiangolo.v0.112.0
Compare Source
Breaking Changes
pip install "fastapi[standard]"
with standard dependencies andpython -m fastapi
. PR #11935 by @tiangolo.Summary
Install with:
pip install "fastapi[standard]"
Other Changes
fastapi-cli[standard] >=0.0.5
.Technical Details
Before this,
fastapi
would include the standard dependencies, with Uvicorn and thefastapi-cli
, etc.And
fastapi-slim
would not include those standard dependencies.Now
fastapi
doesn't include those standard dependencies unless you install withpip install "fastapi[standard]"
.Before, you would install
pip install fastapi
, now you should include thestandard
optional dependencies (unless you want to exclude one of those):pip install "fastapi[standard]"
.This change is because having the standard optional dependencies installed by default was being inconvenient to several users, and having to install instead
fastapi-slim
was not being a feasible solution.Discussed here: #11522 and here: #11525
Docs
Translations
docs/pt/docs/alternatives.md
. PR #11931 by @ceb10n.docs/ru/docs/tutorial/dependencies/sub-dependencies.md
. PR #10515 by @AlertRED.docs/pt/docs/advanced/response-change-status-code.md
. PR #11863 by @ceb10n.docs/pt/docs/reference/background.md
. PR #11849 by @lucasbalieiro.docs/pt/docs/tutorial/dependencies/dependencies-with-yield.md
. PR #11848 by @Joao-Pedro-P-Holanda.docs/pt/docs/reference/apirouter.md
. PR #11843 by @lucasbalieiro.Internal
approved-1
. PR #11907 by @tiangolo.googleapis/google-auth-library-python (google-auth)
v2.34.0
Compare Source
Features
Bug Fixes
v2.33.0
Compare Source
Features
StaticCredentials
using access tokens (#1559) (dc17dfc)Bug Fixes
Documentation
googleapis/python-aiplatform (google-cloud-aiplatform)
v1.62.0
Compare Source
Features
Bug Fixes
Documentation
v1.61.0
Compare Source
Features
ImageGenerationModel
to GA (718c199)Documentation
v1.60.0
Compare Source
Features
GenerativeModel.compute_tokens
(cfe0cc6)Bug Fixes
Documentation
v1.59.0
Compare Source
Features
Bug Fixes
v1.58.0
Compare Source
Features
Bug Fixes
IndexConfig
- use TreeAhConfig as defaultalgorithm_config
. (341d287)Video.load_from_file()
to support storage.googleapis.com links (b63f960)Documentation
v1.57.0
Compare Source
Features
vertexai.preview.evaluation.metrics
and allow metric spec customization (536f1d5)_AutomaticMetric
type and support customizing metric spec for automatic pointwise metrics. AddRouge
metric tovertexai.preview.evaluation.metrics
(f6b6dee)vertexai.preview.evaluation.metrics
(4742a87).google.cloud.aiplatform.v1beta1.content.Candidate.FinishReason
(5a6ce78)Bug Fixes
FeatureGroup.create()
- remove unused entity id column param (c46f3e9)Documentation
distibution
in message.google.cloud.aiplatform.v1beta1.model_monitoring_stats.ModelMonitoringStatsDataPoint
is changed. (5a6ce78)name
in message.google.cloud.aiplatform.v1beta1.cached_content.CachedContent
is changed (5a6ce78)source
in message.google.cloud.aiplatform.v1beta1.tool.Retrieval
is added. (5a6ce78)time_series_dataset
andvideo_dataset
classes (2cf4cb9)v1.56.0
Compare Source
Features
retry_timeout
to EvalTask invertexai.preview.evaluation
(4d9ee9d)Configuration
📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR becomes conflicted, 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.