-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(deps): update all non-major dependencies #1064
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
8 times, most recently
from
December 11, 2023 18:47
bcb8de3
to
a0d083a
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
6 times, most recently
from
December 18, 2023 19:18
9d6f3ef
to
827f8ef
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
5 times, most recently
from
December 26, 2023 02:49
70a275a
to
38a978f
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
7 times, most recently
from
January 3, 2024 00:45
c30ca6f
to
9f174f4
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
January 3, 2024 20:18
9f174f4
to
f41a98a
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
January 4, 2024 19:51
f41a98a
to
2e6bbd5
Compare
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. ⚠ Warning: custom changes will be lost. |
ianliuwk1019
reviewed
Jan 5, 2024
ianliuwk1019
reviewed
Jan 5, 2024
ianliuwk1019
previously approved these changes
Jan 8, 2024
Quality Gate passed for 'nr-forests-access-management_admin'Kudos, no new issues were introduced! 0 New issues |
ianliuwk1019
approved these changes
Jan 8, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.1.3
->^0.5.0
==2.0.22
->==2.0.25
==2.0.23
->==2.0.25
==1.2.1
->==1.3.0
==22.10.0
->==22.12.0
==41.0.6
->==41.0.7
==2.0.0.post2
->==2.1.0.post1
==0.100.0
->==0.108.0
==0.104.1
->==0.108.0
==6.0.0
->==6.1.0
==0.24.1
->==0.26.0
==1.5.1
->==1.8.0
3.34.0
->3.45.0
==2.9.7
->==2.9.9
==3.16.0
->==3.19.1
==2.4.2
->==2.5.3
==2.10.1
->==2.14.6
==2.10.1
->==2.14.6
3.8
->3.12
~4.7.4
->~4.9.0
^0.24.1
->^0.26.0
==0.23.2
->==0.25.0
==0.24.0
->==0.25.0
Release Notes
vuejs/tsconfig (@vue/tsconfig)
v0.5.1
Compare Source
v0.5.0
Compare Source
v0.4.0
Compare Source
v0.3.2
Compare Source
v0.3.1
Compare Source
v0.3.0
Compare Source
v0.2.0
Compare Source
lepture/authlib (authlib)
v1.3.0
: Version 1.3.0Compare Source
Bug fixes
Breaking changes
psf/black (black)
v22.12.0
Compare Source
Preview style
present) or as a single newline character (if a newline is present) (#3348)
parentheses (#3307)
fits on a single line (#3368)
(#3370)
Configuration
.gitignore
rules by considering the.gitignore
locationand the relative path to the target file (#3338)
.gitignore
presence when more than one source directory isspecified (#3336)
Parser
passed as function args (for example,
any(match := my_re.match(text) for text in texts)
) (#3327).Integrations
let g:black_use_virtualenv = 0
(#3309)pyca/cryptography (cryptography)
v41.0.7
Compare Source
JoshData/python-email-validator (email-validator)
v2.1.0
email
field on the returnedValidatedEmail
object, which in the previous version was superseded bynormalized
, will now raise a deprecation warning if used. See https://stackoverflow.com/q/879173 for strategies to suppress the DeprecationWarning.__version__
module attribute is added.tiangolo/fastapi (fastapi)
v0.108.0
Compare Source
Upgrades
>=0.29.0,<0.33.0
, update docs and usage of templates with new Starlette arguments. PR #10846 by @tiangolo.v0.107.0
Compare Source
Upgrades
Docs
v0.106.0
Compare Source
Breaking Changes
Using resources from dependencies with
yield
in background tasks is no longer supported.This change is what supports the new features, read below. 🤓
Dependencies with
yield
,HTTPException
and Background TasksDependencies with
yield
now can raiseHTTPException
and other exceptions afteryield
. 🎉Read the new docs here: Dependencies with
yield
andHTTPException
.Before FastAPI 0.106.0, raising exceptions after
yield
was not possible, the exit code in dependencies withyield
was executed after the response was sent, so Exception Handlers would have already run.This was designed this way mainly to allow using the same objects "yielded" by dependencies inside of background tasks, because the exit code would be executed after the background tasks were finished.
Nevertheless, as this would mean waiting for the response to travel through the network while unnecessarily holding a resource in a dependency with yield (for example a database connection), this was changed in FastAPI 0.106.0.
Additionally, a background task is normally an independent set of logic that should be handled separately, with its own resources (e.g. its own database connection).
If you used to rely on this behavior, now you should create the resources for background tasks inside the background task itself, and use internally only data that doesn't depend on the resources of dependencies with
yield
.For example, instead of using the same database session, you would create a new database session inside of the background task, and you would obtain the objects from the database using this new session. And then instead of passing the object from the database as a parameter to the background task function, you would pass the ID of that object and then obtain the object again inside the background task function.
The sequence of execution before FastAPI 0.106.0 was like the diagram in the Release Notes for FastAPI 0.106.0.
The new execution flow can be found in the docs: Execution of dependencies with
yield
.v0.105.0
Compare Source
Features
Annotated[str, Field(), Query()]
. PR #10773 by @tiangolo.Refactors
Docs
Internal
v0.104.1
Compare Source
Fixes
Docs
docs/en/docs/tutorial/metadata.md
. PR #10433 by @worldworm.docs/en/docs/tutorial/path-params.md
. PR #10043 by @giuliowaitforitdavide.docs/en/docs/reference/dependencies.md
. PR #10465 by @suravshresth.docs/en/docs/tutorial/body-nested-models.md
. PR #10468 by @yogabonito.pydantic.Required
indocs/en/docs/tutorial/query-params-str-validations.md
. PR #10469 by @yogabonito.docs/en/docs/reference/index.md
. PR #10467 by @tarsil.Internal
docs/en/docs/async.md
anddocs/zh/docs/async.md
to make them relative. PR #10498 by @hasnatsajid.docs/em/docs/async.md
. PR #10507 by @hasnatsajid.docs/em/docs/index.md
, Python 3.8. PR #10521 by @kerriop.CITATION.cff
file for academic citations. PR #10496 by @tiangolo.v0.104.0
Compare Source
Features
BackgroundTasks
, refactor docs structure. PR #10392 by @tiangolo. New docs at FastAPI Reference - Code API.Upgrades
Internal
v0.103.2
Compare Source
Refactors
Translations
docs/uk/docs/tutorial/extra-data-types.md
. PR #10132 by @ArtemKhymenko.docs/fr/docs/advanced/path-operation-advanced-configuration.md
,docs/fr/docs/alternatives.md
,docs/fr/docs/async.md
,docs/fr/docs/features.md
,docs/fr/docs/help-fastapi.md
,docs/fr/docs/index.md
,docs/fr/docs/python-types.md
,docs/fr/docs/tutorial/body.md
,docs/fr/docs/tutorial/first-steps.md
,docs/fr/docs/tutorial/query-params.md
. PR #10154 by @s-rigaud.docs/zh/docs/async.md
. PR #5591 by @mkdir700.docs/tutorial/security/simple-oauth2.md
. PR #3844 by @jaystone776.docs/ko/docs/deployment/cloud.md
. PR #10191 by @Sion99.docs/ja/docs/deployment/https.md
. PR #10298 by @tamtam-fitness.docs/ru/docs/tutorial/body-fields.md
. PR #10224 by @AlertRED.docs/pl/docs/help-fastapi.md
. PR #10121 by @romabozhanovgithub.docs/ru/docs/tutorial/header-params.md
. PR #10226 by @AlertRED.docs/zh/docs/deployment/versions.md
. PR #10276 by @xzmeng.Internal
v0.103.1
Compare Source
Fixes
Docs
regex
topattern
. PR #10085 by @pablodorrio.docs/en/docs/deployment/server-workers.md
. PR #10066 by @tamtam-fitness.docs/en/docs/tutorial/extra-data-types.md
. PR #10155 by @hasnatsajid.docs/en/docs/tutorial/handling-errors.md
. PR #10170 by @poupapaa.docs/en/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md
. PR #10172 by @ragul-kachiappan.Translations
docs/pt/docs/tutorial/path-params.md
. PR #10126 by @LecoOliveira.docs/yo/docs/index.md
. PR #10033 by @AfolabiOlaoluwa.docs/uk/docs/python-types.md
. PR #10080 by @rostik1410.docs/vi/docs/tutorial/first-steps.md
anddocs/vi/docs/tutorial/index.md
. PR #10088 by @magiskboy.docs/uk/docs/alternatives.md
. PR #10060 by @whysage.docs/uk/docs/tutorial/index.md
. PR #10079 by @rostik1410.docs/en/docs/how-to/separate-openapi-schemas.md
anddocs/en/docs/tutorial/schema-extra-example.md
. PR #10189 by @xzmeng.docs/zh/docs/advanced/generate-clients.md
. PR #9883 by @funny-cat-happy.Refactors
fastapi/applications.py
. PR #10045 by @AhsanSheraz.Internal
v0.103.0
Compare Source
Features
openapi_examples
in all FastAPI parameters. PR #10152 by @tiangolo.Docs
v0.102.0
Compare Source
Features
separate_input_output_schemas=False
. PR #10145 by @tiangolo.Refactors
Docs
Internal
v0.101.1
Compare Source
Fixes
ResponseValidationError
printable details, to show up in server error logs. PR #10078 by @tiangolo.Refactors
fastapi/params.py
. PR #9854 by @russbiggs.fastapi/concurrency.py
andfastapi/routing.py
. PR #9590 by @ElliottLarsen.Docs
docs/en/docs/contributing.md
. PR #9878 by @VicenteMerino.docs/en/docs/tutorial/bigger-applications.md
. PR #9806 by @theonlykingpin.Translations
docs/ja/docs/deployment/concepts.md
. PR #10062 by @tamtam-fitness.docs/ja/docs/deployment/server-workers.md
. PR #10064 by @tamtam-fitness.docs/ja/docs/deployment/docker.md
. PR #10073 by @tamtam-fitness.docs/uk/docs/fastapi-people.md
. PR #10059 by @rostik1410.docs/uk/docs/tutorial/cookie-params.md
. PR #10032 by @rostik1410.docs/ru/docs/deployment/docker.md
. PR #9971 by @Xewus.docs/vi/docs/python-types.md
. PR #10047 by @magiskboy.docs/ru/docs/tutorial/dependencies/global-dependencies.md
. PR #9970 by @dudyaosuplayer.docs/ur/docs/benchmarks.md
. PR #9974 by @AhsanSheraz.Internal
v0.101.0
Compare Source
Features
computed_field
, better OpenAPI for response models, proper required attributes, better generated clients. PR #10011 by @tiangolo.Refactors
jsonable_encoder
. PR #9840 by @iudeen.Upgrades
Translations
docs/ru/docs/tutorial/security/index.md
. PR #9963 by @eVery1337.Internal
v0.100.1
Compare Source
Fixes
MultHostUrl
toAnyUrl
for compatibility with older versions of Pydantic v1. PR #9852 by @Kludex.Docs
Translations
docs/uk/docs/tutorial/body.md
. PR #4574 by @ss-o-furda.docs/vi/docs/features.md
anddocs/vi/docs/index.md
. PR #3006 by @magiskboy.docs/ko/docs/async.md
. PR #4179 by @NinaHwang.docs/zh/docs/tutorial/background-tasks.md
. PR #9812 by @wdh99.docs/fr/docs/tutorial/query-params-str-validations.md
. PR #4075 by @Smlep.docs/fr/docs/tutorial/index.md
. PR #2234 by @JulianMaurin.docs/fr/docs/contributing.md
. PR #2132 by @JulianMaurin.docs/fr/docs/benchmarks.md
. PR #2155 by @clemsau.docs/ru/docs/tutorial/request-forms.md
. PR #9841 by @dedkot01.docs/zh/docs/tutorial/handling-errors.md
. PR #9485 by @Creat55.Internal
pycqa/flake8 (flake8)
v6.1.0
Compare Source
encode/httpx (httpx)
v0.26.0
Compare Source
Added
proxy
argument was added. You should use theproxy
argument instead of the deprecatedproxies
, or usemounts=
for more complex configurations. (#2879)Deprecated
proxies
argument is now deprecated. It will still continue to work, but it will be removed in the future. (#2879)Fixed
NO_PROXY
envvar cases when a fully qualified URL is supplied as the value. ([#2741](https://toConfiguration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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 has been generated by Mend Renovate. View repository job log here.