-
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
⬆️(project) upgrade python dependencies #294
base: main
Are you sure you want to change the base?
Conversation
Current benchmark
Comparison with the latest previous benchmark
|
672b970
to
8435459
Compare
Current benchmark
Comparison with the latest previous benchmark
|
8435459
to
7e37b9d
Compare
Current benchmark
Comparison with the latest previous benchmark
|
7e37b9d
to
151e2a5
Compare
Current benchmark
Comparison with the latest previous benchmark
|
151e2a5
to
88b0a14
Compare
Current benchmark
Comparison with the latest previous benchmark
|
88b0a14
to
0842977
Compare
Current benchmark
Comparison with the latest previous benchmark
|
0842977
to
2672263
Compare
Current benchmark
Comparison with the latest previous benchmark
|
2672263
to
8434027
Compare
Current benchmark
Comparison with the latest previous benchmark
|
d0eee36
to
b475816
Compare
Current benchmark
Comparison with the latest previous benchmark
|
b475816
to
75e81ff
Compare
Current benchmark
Comparison with the latest previous benchmark
|
75e81ff
to
17a3880
Compare
Current benchmark
Comparison with the latest previous benchmark
|
17a3880
to
d0bb5c3
Compare
Current benchmark
Comparison with the latest previous benchmark
|
d0bb5c3
to
debd3c9
Compare
Current benchmark
Comparison with the latest previous benchmark
|
debd3c9
to
6886889
Compare
Current benchmark
Comparison with the latest previous benchmark
|
6886889
to
c8b49d2
Compare
Current benchmark
Comparison with the latest previous benchmark
|
c8b49d2
to
35f680b
Compare
Current benchmark
Comparison with the latest previous benchmark
|
35f680b
to
dec3a9c
Compare
Current benchmark
Comparison with the latest previous benchmark
|
dec3a9c
to
9f112d9
Compare
Current benchmark
Comparison with the latest previous benchmark
|
9f112d9
to
2f842c8
Compare
Current benchmark
Comparison with the latest previous benchmark
|
2f842c8
to
1d58346
Compare
Current benchmark
Comparison with the latest previous benchmark
|
1d58346
to
2ecb3f9
Compare
Current benchmark
Comparison with the latest previous benchmark
|
2ecb3f9
to
cc2dff2
Compare
Current benchmark
Comparison with the latest previous benchmark
|
| datasource | package | from | to | | ---------- | ----------------- | -------------- | -------------- | | pypi | django-dsfr | 1.4.3 | 1.4.5 | | pypi | djlint | 1.36.3 | 1.36.4 | | pypi | locust | 2.32.4 | 2.32.5 | | pypi | mypy | 1.13.0 | 1.14.0 | | pypi | prefect | 3.1.5 | 3.1.9 | | pypi | pydantic | 2.10.3 | 2.10.4 | | pypi | pydantic-settings | 2.6.1 | 2.7.0 | | pypi | python-multipart | 0.0.19 | 0.0.20 | | pypi | ruff | 0.8.2 | 0.8.4 | | pypi | types-passlib | 1.7.7.20240819 | 1.7.7.20241221 |
cc2dff2
to
f1111c5
Compare
Current benchmark
Comparison with the latest previous benchmark
|
This PR contains the following updates:
==1.4.3
->==1.4.5
==1.36.3
->==1.36.4
==2.32.4
->==2.32.5
1.13.0
->1.14.0
==1.13.0
->==1.14.0
==3.1.5
->==3.1.9
2.10.3
->2.10.4
==2.10.3
->==2.10.4
2.6.1
->2.7.0
==2.6.1
->==2.7.0
==0.0.19
->==0.0.20
0.8.2
->0.8.4
==0.8.2
->==0.8.4
==1.7.7.20240819
->==1.7.7.20241221
Release Notes
numerique-gouv/django-dsfr (django-dsfr)
v1.4.5
Compare Source
What's Changed
dsfr_input_class_attr
by @christophehenry in https://github.com/numerique-gouv/django-dsfr/pull/190Full Changelog: numerique-gouv/django-dsfr@v1.4.4...v1.4.5
v1.4.4
Compare Source
What's Changed
Full Changelog: numerique-gouv/django-dsfr@v1.4.3...v1.4.4
djlint/djLint (djlint)
v1.36.4
Compare Source
locustio/locust (locust)
v2.32.5
Compare Source
Full Changelog
Merged pull requests:
python/mypy (mypy)
v1.14.0
Compare Source
PrefectHQ/prefect (prefect)
v3.1.9
: : All I Want for Christmas is QueueCompare Source
What's Changed
Enhancements ➕➕
prefect.flow
decorator by @mjpieters in https://github.com/PrefectHQ/prefect/pull/16405Bug Fixes 🐞
enforce_parameter_schema
inprefect deploy
by @zzstoatzz in https://github.com/PrefectHQ/prefect/pull/16418from_source
safe to use concurrently by @zzstoatzz in https://github.com/PrefectHQ/prefect/pull/16458/csrf
by @aaazzam in https://github.com/PrefectHQ/prefect/pull/16464Integrations & Dependencies 🤝
MattermostWebhook
tests by @zzstoatzz in https://github.com/PrefectHQ/prefect/pull/16433OTLPLogExporter
andOTLPSpanExporter
in aQueueService
to pull them out of the main thread by @bunchesofdonald in https://github.com/PrefectHQ/prefect/pull/16439Development & Tidiness 🧹
Documentation 📓
Full Changelog: PrefectHQ/prefect@3.1.8...3.1.9
v3.1.8
: : A Tale of Two FeaturesCompare Source
What's Changed
Runner Heartbeats for Flow Run Monitoring
Flow runs can now emit heartbeat events to detect infrastructure failures (crashed machines, evicted containers, etc). When enabled, an automation can automatically mark flows as crashed when heartbeats stop, preventing stuck "zombie" flows in the running state.
Enable with:
PREFECT_RUNNER_HEARTBEAT_FREQUENCY
(requires Prefect 3.1.8+)Basic Authentication
We have also added a long requested feature: basic authentication support for the Prefect API. Enable by setting an auth string:
Start a protected server:
PREFECT_SERVER_API_AUTH_STRING="admin:admin" prefect server start
Authenticate client operations:
PREFECT_API_AUTH_STRING="admin:admin" python flow_script.py
Enhancements ➕➕
Runner
to send heartbeat events for flow runs by @desertaxle in https://github.com/PrefectHQ/prefect/pull/16410Integrations & Dependencies 🤝
prefect-redis
by @zzstoatzz in https://github.com/PrefectHQ/prefect/pull/16417Documentation 📓
Full Changelog: PrefectHQ/prefect@3.1.7...3.1.8
v3.1.7
: : Straight outta Half Moon BayCompare Source
What's Changed
Enhancements ➕➕
Bug Fixes 🐞
@task
decorator by @zzstoatzz in https://github.com/PrefectHQ/prefect/pull/16386websocket_connect
utility inSubscriptions
by @jakekaplan in https://github.com/PrefectHQ/prefect/pull/16388Development & Tidiness 🧹
Block.aload
method and remove@sync_compatible
fromBlock.load
by @desertaxle in https://github.com/PrefectHQ/prefect/pull/16341sync_compatible
fromgit_clone
by @zzstoatzz in https://github.com/PrefectHQ/prefect/pull/16340prefect.serializers
by @desertaxle in https://github.com/PrefectHQ/prefect/pull/16331sync_compatible
fromprefect.variables
by @zzstoatzz in https://github.com/PrefectHQ/prefect/pull/16349DateTime
toprefect.types
by @zzstoatzz in https://github.com/PrefectHQ/prefect/pull/16356Dockerfile
build time and add CI to catch future slow downs by @zzstoatzz in https://github.com/PrefectHQ/prefect/pull/16348prefect.tasks
andprefect.task_worker
by @zzstoatzz in https://github.com/PrefectHQ/prefect/pull/16332entrypoint.sh
to useuv
forEXTRA_PIP_PACKAGES
by @zzstoatzz in https://github.com/PrefectHQ/prefect/pull/16291prefect work-pool inspect
by @zzstoatzz in https://github.com/PrefectHQ/prefect/pull/16378Documentation 📓
RunTelemetry
class by @jeanluciano in https://github.com/PrefectHQ/prefect/pull/16233Full Changelog: PrefectHQ/prefect@3.1.6...3.1.7
v3.1.6
: : list[type[Improvements]]Compare Source
3.1.6: list[type[Improvements]]
This release begins a concerted effort to improve our public interface's type completeness; we hope that this will make the experience of authoring Prefect flows within IDEs more robust and allow for better autocomplete. We welcome all contributions to this effort - follow along with this issue to get involved!
Enhancements ➕➕
job_variables
inruntime.flow_run
by @zzstoatzz in https://github.com/PrefectHQ/prefect/pull/16124aserve
utility for serving multiple flows from an asynchronous context by @GitAlexxx in https://github.com/PrefectHQ/prefect/pull/15972sync_compatible
frombuild_server
by @zzstoatzz in https://github.com/PrefectHQ/prefect/pull/16314Bug Fixes 🐞
__getattr__
conflict inprefect.docker.__init__
by @zzstoatzz in https://github.com/PrefectHQ/prefect/pull/16172Integrations & Dependencies 🤝
Development & Tidiness 🧹
from_profiles_yml
to dbtTargetConfigs
by @kevingrismore in https://github.com/PrefectHQ/prefect/pull/16178prefect.server.database.migrations
toprefect.server.database._migrations
by @desertaxle in https://github.com/PrefectHQ/prefect/pull/16214blocks.abstract
andconcurrency
by @zzstoatzz in https://github.com/PrefectHQ/prefect/pull/16212husky
topre-commit
by @desertaxle in https://github.com/PrefectHQ/prefect/pull/16246flow
andtask
decorators pass strict typing by @zzstoatzz in https://github.com/PrefectHQ/prefect/pull/16251uv
to install dependencies in theDockerfile
by @zzstoatzz in https://github.com/PrefectHQ/prefect/pull/16235NODE_VERSION
to.nvmrc
by @desertaxle in https://github.com/PrefectHQ/prefect/pull/16282prefect.main
by @zzstoatzz in https://github.com/PrefectHQ/prefect/pull/16288debug.mdx
tutorial by @zzstoatzz in https://github.com/PrefectHQ/prefect/pull/16296efect/pull/16266
New Contributors
Full Changelog: PrefectHQ/prefect@3.1.5...3.1.6
pydantic/pydantic (pydantic)
v2.10.4
Compare Source
GitHub release
What's Changed
Packaging
pydantic-core
to v2.27.2 by @davidhewitt in #11138Fixes
AnyUrl
objects by @alexprabhat99 in #11082len
to_BaseUrl
to avoid TypeError by @Kharianne in #11111New Contributors
pydantic/pydantic-settings (pydantic-settings)
v2.7.0
Compare Source
What's Changed
test_protected_namespace_defaults
with -Wdefault by @CyberTailor in https://github.com/pydantic/pydantic-settings/pull/462__repr__
implementations by @dlax in https://github.com/pydantic/pydantic-settings/pull/465NoDecode
andForceDecode
annotations by @hramezani in https://github.com/pydantic/pydantic-settings/pull/492New Contributors
Full Changelog: pydantic/pydantic-settings@v2.6.1...v2.7.0
Kludex/python-multipart (python-multipart)
v0.0.20
Compare Source
astral-sh/ruff (ruff)
v0.8.4
Compare Source
Preview features
airflow
] ExtendAIR302
with additional functions and classes (#15015)airflow
] Implementmoved-to-provider-in-3
for modules that has been moved to Airflow providers (AIR303
) (#14764)flake8-use-pathlib
] Extend check for invalid path suffix to include the case"."
(PTH210
) (#14902)perflint
] Fix panic inPERF401
when list variable is after thefor
loop (#14971)perflint
] Simplify finding the loop target inPERF401
(#15025)pylint
] Preserve original value format (PLR6104
) (#14978)ruff
] Avoid false positives forRUF027
for typing context bindings (#15037)ruff
] Check for ambiguous pattern passed topytest.raises()
(RUF043
) (#14966)Rule changes
flake8-bandit
] CheckS105
for annotated assignment (#15059)flake8-pyi
] More autofixes forredundant-none-literal
(PYI061
) (#14872)pydocstyle
] Skip leading whitespace forD403
(#14963)ruff
] SkipSQLModel
base classes formutable-class-default
(RUF012
) (#14949)Bug
perflint
] Parenthesize walrus expressions in autofix formanual-list-comprehension
(PERF401
) (#15050)Server
v0.8.3
Compare Source
Preview features
airflow
] Add fix to remove deprecated keyword arguments (AIR302
) (#14887)airflow
]: Extend rule to include deprecated names for Airflow 3.0 (AIR302
) (#14765 and #14804)flake8-bugbear
] Improve error messages forexcept*
(B025
,B029
,B030
,B904
) (#14815)flake8-bugbear
]itertools.batched()
without explicitstrict
(B911
) (#14408)flake8-use-pathlib
] Dotless suffix passed toPath.with_suffix()
(PTH210
) (#14779)pylint
] Include parentheses and multiple comparators in check forboolean-chained-comparison
(PLR1716
) (#14781)ruff
] Do not simplifyround()
calls (RUF046
) (#14832)ruff
] Don't emitused-dummy-variable
on function parameters (RUF052
) (#14818)ruff
] Implementif-key-in-dict-del
(RUF051
) (#14553)ruff
] Mark autofix forRUF052
as always unsafe (#14824)ruff
] Teach autofix forused-dummy-variable
about TypeVars etc. (RUF052
) (#14819)Rule changes
flake8-bugbear
] Offer unsafe autofix forno-explicit-stacklevel
(B028
) (#14829)flake8-pyi
] Skip all type definitions instring-or-bytes-too-long
(PYI053
) (#14797)pyupgrade
] Do not report when a UTF-8 comment is followed by a non-UTF-8 one (UP009
) (#14728)pyupgrade
] Mark fixes forconvert-typed-dict-functional-to-class
andconvert-named-tuple-functional-to-class
as unsafe if they will remove comments (UP013
,UP014
) (#14842)Bug fixes
except
andexcept*
(#14895)flake8-bugbear
] FixB028
to allowstacklevel
to be explicitly assigned as a positional argument (#14868)flake8-bugbear
] SkipB028
ifwarnings.warn
is called with*args
or**kwargs
(#14870)flake8-comprehensions
] Skip iterables with named expressions inunnecessary-map
(C417
) (#14827)flake8-pyi
] Also removeself
andcls
's annotation (PYI034
) (#14801)flake8-pytest-style
] Fixpytest-parametrize-names-wrong-type
(PT006
) to edit bothargnames
andargvalues
if both of them are single-element tuples/lists (#14699)perflint
] Improve autofix forPERF401
(#14369)pylint
] FixPLW1508
false positive for default string created via a mult operation (#14841)Configuration
📅 Schedule: Branch creation - "before 7am on monday" (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.