-
Notifications
You must be signed in to change notification settings - Fork 0
build(deps): bump click from 8.2.1 to 8.3.0 #172
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
Merged
Merged
Conversation
This file contains hidden or 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
Bumps [click](https://github.com/pallets/click) from 8.2.1 to 8.3.0. - [Release notes](https://github.com/pallets/click/releases) - [Changelog](https://github.com/pallets/click/blob/main/CHANGES.rst) - [Commits](pallets/click@8.2.1...8.3.0) --- updated-dependencies: - dependency-name: click dependency-version: 8.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
@dependabot squash and merge
…________________________________
From: dependabot[bot] ***@***.***>
Sent: Monday, September 22, 2025 6:08:50 PM
To: vasudev-gm/django_ninja_tutorial ***@***.***>
Cc: Subscribed ***@***.***>
Subject: [vasudev-gm/django_ninja_tutorial] build(deps): bump click from 8.2.1 to 8.3.0 (PR #172)
Bumps click<https://github.com/pallets/click> from 8.2.1 to 8.3.0.
Release notes
Sourced from click's releases<https://github.com/pallets/click/releases>.
8.3.0
This is the Click 8.3.0 feature release. A feature release may include new features, remove previously deprecated code, add new deprecation, or introduce potentially breaking changes.
We encourage everyone to upgrade. You can read more about our Version Support Policy<https://palletsprojects.com/versions> on our website.
PyPI: https://pypi.org/project/click/8.3.0/ Changes: https://click.palletsprojects.com/page/changes/#version-8-3-0 Milestone https://github.com/pallets/click/milestone/27
* Improved flag option handling: Reworked the relationship between flag_value and default parameters for better consistency:
* The default parameter value is now preserved as-is and passed directly to CLI functions (no more unexpected transformations)
* Exception: flag options with default=True maintain backward compatibility by defaulting to their flag_value
* The default parameter can now be any type (bool, None, etc.)
* Fixes inconsistencies reported in: #1992<https://redirect.github.com/pallets/click/issues/1992> #2514<https://redirect.github.com/pallets/click/issues/2514> #2610<https://redirect.github.com/pallets/click/issues/2610> #3024<https://redirect.github.com/pallets/click/issues/3024> #3030<https://redirect.github.com/pallets/click/issues/3030>
* Allow default to be set on Argument for nargs = -1. #2164<https://redirect.github.com/pallets/click/issues/2164> #3030<https://redirect.github.com/pallets/click/issues/3030>
* Show correct auto complete value for nargs option in combination with flag option #2813<https://redirect.github.com/pallets/click/issues/2813>
* Show correct auto complete value for nargs option in combination with flag option #2813<https://redirect.github.com/pallets/click/issues/2813>
* Fix handling of quoted and escaped parameters in Fish autocompletion. #2995<https://redirect.github.com/pallets/click/issues/2995> #3013<https://redirect.github.com/pallets/click/issues/3013>
* Lazily import shutil. #3023<https://redirect.github.com/pallets/click/issues/3023>
* Properly forward exception information to resources registered with click.core.Context.with_resource(). #2447<https://redirect.github.com/pallets/click/issues/2447> #3058<https://redirect.github.com/pallets/click/issues/3058>
* Fix regression related to EOF handling in CliRunner. #2939<https://redirect.github.com/pallets/click/issues/2939> #2940<https://redirect.github.com/pallets/click/issues/2940>
8.2.2
This is the Click 8.2.2 fix release, which fixes bugs but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.
PyPI: https://pypi.org/project/click/8.2.2/ Changes: https://click.palletsprojects.com/page/changes/#version-8-2-2 Milestone: https://github.com/pallets/click/milestone/25
* Fix reconciliation of default, flag_value and type parameters for flag options, as well as parsing and normalization of environment variables. #2952<https://redirect.github.com/pallets/click/issues/2952> #2956<https://redirect.github.com/pallets/click/issues/2956>
* Fix typing issue in BadParameter and MissingParameter exceptions for the parameter param_hint that did not allow for a sequence of string where the underlying functino _join_param_hints allows for it. #2777<https://redirect.github.com/pallets/click/issues/2777> #2990<https://redirect.github.com/pallets/click/issues/2990>
* Use the value of Enum choices to render their default value in help screen. #2911<https://redirect.github.com/pallets/click/issues/2911> #3004<https://redirect.github.com/pallets/click/issues/3004>
* Fix completion for the Z shell (zsh) for completion items containing colons. #2703<https://redirect.github.com/pallets/click/issues/2703> #2846<https://redirect.github.com/pallets/click/issues/2846>
* Don't include envvar in error hint when not configured. #2971<https://redirect.github.com/pallets/click/issues/2971> #2972<https://redirect.github.com/pallets/click/issues/2972>
... (truncated)
Changelog
Sourced from click's changelog<https://github.com/pallets/click/blob/main/CHANGES.rst>.
Version 8.3.0
Released 2025-09-15
* Improved flag option handling: Reworked the relationship between flag_value and default parameters for better consistency:
* The default parameter value is now preserved as-is and passed directly to CLI functions (no more unexpected transformations)
* Exception: flag options with default=True maintain backward compatibility by defaulting to their flag_value
* The default parameter can now be any type (bool, None, etc.)
* Fixes inconsistencies reported in: :issue:1992 :issue:2514 :issue:2610 :issue:3024 :pr:3030
* Allow default to be set on Argument for nargs = -1. :issue:2164 :pr:3030
* Show correct auto complete value for nargs option in combination with flag option :issue:2813
* Show correct auto complete value for nargs option in combination with flag option :issue:2813
* Fix handling of quoted and escaped parameters in Fish autocompletion. :issue:2995 :pr:3013
* Lazily import shutil. :pr:3023
* Properly forward exception information to resources registered with click.core.Context.with_resource(). :issue:2447 :pr:3058
* Fix regression related to EOF handling in CliRunner. :issue:2939:pr:2940
Version 8.2.2
Released 2025-07-31
* Fix reconciliation of default, flag_value and type parameters for flag options, as well as parsing and normalization of environment variables. :issue:2952 :pr:2956
* Fix typing issue in BadParameter and MissingParameter exceptions for the parameter param_hint that did not allow for a sequence of string where the underlying function _join_param_hints allows for it. :issue:2777 :pr:2990
* Use the value of Enum choices to render their default value in help screen. Refs :issue:2911 :pr:3004
* Fix completion for the Z shell (zsh) for completion items containing colons. :issue:2703 :pr:2846
* Don't include envvar in error hint when not configured. :issue:2971 :pr:2972
* Fix a rare race in click.testing.StreamMixer's finalization that manifested as a ValueError on close in a multi-threaded test session. :issue:2993 :pr:2991
Commits
* 00fadb8<pallets/click@00fadb8> Release version 8.3.0
* 2a0e3ba<pallets/click@2a0e3ba> testing/CliRunner: Fix regression related to EOF introduced in 262bdf0 (#2940<https://redirect.github.com/pallets/click/issues/2940>)
* e11a1ef<pallets/click@e11a1ef> Merge branch 'main' into fix-cli-runner-prompt-eof-handling
* 36deba8<pallets/click@36deba8> Forward exception information to resources registered in a context (#3058<https://redirect.github.com/pallets/click/issues/3058>)
* f2cae7a<pallets/click@f2cae7a> #2447<https://redirect.github.com/pallets/click/issues/2447> Add summary of PR to changelog for 8.3.x
* 7c7ec36<pallets/click@7c7ec36> #2447<https://redirect.github.com/pallets/click/issues/2447> Split resource exception handling tests in single and nested
* 92129c5<pallets/click@92129c5> #2447<https://redirect.github.com/pallets/click/issues/2447> Added exception forwarding to context tests
* 555fa9b<pallets/click@555fa9b> #2447<https://redirect.github.com/pallets/click/issues/2447> Forward exception data to exit stack when calling __exit__
* 16fe802<pallets/click@16fe802> Add more tests on Enum rendering (#3053<https://redirect.github.com/pallets/click/issues/3053>)
* d36de6f<pallets/click@d36de6f> Add more tests on Enum rendering their item's names and not values
* Additional commits viewable in compare view<pallets/click@8.2.1...8.3.0>
[Dependabot compatibility score]<https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores>
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
________________________________
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
* @dependabot rebase will rebase this PR
* @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
* @dependabot merge will merge this PR after your CI passes on it
* @dependabot squash and merge will squash and merge this PR after your CI passes on it
* @dependabot cancel merge will cancel a previously requested merge and block automerging
* @dependabot reopen will reopen this PR if it is closed
* @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
* @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
* @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
* @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
* @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
________________________________
You can view, comment on, or merge this pull request online at:
#172
Commit Summary
* 5881418<5881418> build(deps): bump click from 8.2.1 to 8.3.0
File Changes
(3 files<https://github.com/vasudev-gm/django_ninja_tutorial/pull/172/files>)
* M pyproject.toml<https://github.com/vasudev-gm/django_ninja_tutorial/pull/172/files#diff-50c86b7ed8ac2cf95bd48334961bf0530cdc77b5a56f852c5c61b89d735fd711> (2)
* M requirements.txt<https://github.com/vasudev-gm/django_ninja_tutorial/pull/172/files#diff-4d7c51b1efe9043e44439a949dfd92e5827321b34082903477fd04876edb7552> (6)
* M uv.lock<https://github.com/vasudev-gm/django_ninja_tutorial/pull/172/files#diff-84321598744d84dbee2318e634c74c9aae39a1c253f1c4bd17ebf9ef2f807b11> (8)
Patch Links:
* https://github.com/vasudev-gm/django_ninja_tutorial/pull/172.patch
* https://github.com/vasudev-gm/django_ninja_tutorial/pull/172.diff
—
Reply to this email directly, view it on GitHub<#172>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/ANCXKE2RLBAMPAWBQGURLZT3T7UVVAVCNFSM6AAAAACHFEG6FGVHI2DSMVQWIX3LMV43ASLTON2WKOZTGQ2DANZYGEYDIMA>.
You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
dependencies
Pull requests that update a dependency file
python:uv
Pull requests that update python:uv code
requirements
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.
Bumps click from 8.2.1 to 8.3.0.
Release notes
Sourced from click's releases.
... (truncated)
Changelog
Sourced from click's changelog.
Commits
00fadb8
Release version 8.3.02a0e3ba
testing/CliRunner: Fix regression related to EOF introduced in 262bdf0 (#2940)e11a1ef
Merge branch 'main' into fix-cli-runner-prompt-eof-handling36deba8
Forward exception information to resources registered in a context (#3058)f2cae7a
#2447 Add summary of PR to changelog for 8.3.x7c7ec36
#2447 Split resource exception handling tests in single and nested92129c5
#2447 Added exception forwarding to context tests555fa9b
#2447 Forward exception data to exit stack when calling__exit__
16fe802
Add more tests onEnum
rendering (#3053)d36de6f
Add more tests on Enum rendering their item's names and not valuesDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)