generated from freelawproject/new-project-template
-
-
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-dev): bump attrs from 20.3.0 to 22.1.0 #57
Closed
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
Bumps [attrs](https://github.com/python-attrs/attrs) from 20.3.0 to 22.1.0. - [Release notes](https://github.com/python-attrs/attrs/releases) - [Changelog](https://github.com/python-attrs/attrs/blob/main/CHANGELOG.rst) - [Commits](python-attrs/attrs@20.3.0...22.1.0) --- updated-dependencies: - dependency-name: attrs dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
@dependabot merge
…On Sun, Jul 31, 2022 at 9:02 PM dependabot[bot] ***@***.***> wrote:
Bumps attrs <https://github.com/python-attrs/attrs> from 20.3.0 to 22.1.0.
Release notes
*Sourced from attrs's releases
<https://github.com/python-attrs/attrs/releases>.*
22.1.0 Highlights
The main features of this release are:
- The departure of Python 2.7 (enjoy your retirement!),
- and the arrival of Python 3.11.
We had loftier goals feature-wise, but didn't want to block others
embracing Python 3.11.
❤️ *Huge* thanks to my GitHub sponsors <https://github.com/sponsors/hynek>,
Tidelift subscribers <https://tidelift.com/subscription/pkg/pypi-attrs>,
and Ko-fi buyers <https://ko-fi.com/the_hynek>! ❤️
None of my projects would exist in their current form without you!
Full Changelog Backwards-incompatible Changes
-
Python 2.7 is not supported anymore.
Dealing with Python 2.7 tooling has become too difficult for a
volunteer-run project.
We have supported Python 2 more than 2 years after it was officially
discontinued and feel that we have paid our dues. All version up to 21.4.0
from December 2021 remain fully functional, of course. #936
<https://github-redirect.dependabot.com/python-attrs/attrs/issues/936>
-
The deprecated cmp attribute of attrs.Attribute has been removed. This
does not affect the *cmp* argument to attr.s that can be used as a
shortcut to set *eq* and *order* at the same time. #939
<https://github-redirect.dependabot.com/python-attrs/attrs/issues/939>
Changes
- Instantiation of frozen slotted classes is now faster. #898
<https://github-redirect.dependabot.com/python-attrs/attrs/issues/898>
- If an eq key is defined, it is also used before hashing the
attribute. #909
<https://github-redirect.dependabot.com/python-attrs/attrs/issues/909>
- Added attrs.validators.min_len(). #916
<https://github-redirect.dependabot.com/python-attrs/attrs/issues/916>
- attrs.validators.deep_iterable()'s *member_validator* argument now
also accepts a list of validators and wraps them in an
attrs.validators.and_(). #925
<https://github-redirect.dependabot.com/python-attrs/attrs/issues/925>
- Added missing type stub re-imports for attrs.converters and
attrs.filters. #931
<https://github-redirect.dependabot.com/python-attrs/attrs/issues/931>
- Added missing stub for attr(s).cmp_using(). #949
<https://github-redirect.dependabot.com/python-attrs/attrs/issues/949>
- attrs.validators._in()'s ValueError is not missing the attribute,
expected options, and the value it got anymore. #951
<https://github-redirect.dependabot.com/python-attrs/attrs/issues/951>
- Python 3.11 is now officially supported. #969
<https://github-redirect.dependabot.com/python-attrs/attrs/issues/969>
21.4.0
This is a quick bug fix release for a regression that causes coverage
report fail under certain circumstances.
Full Changelog Changes
- Fixed the test suite on PyPy3.8 where cloudpickle does not work. #892
<https://github-redirect.dependabot.com/python-attrs/attrs/issues/892>
- Fixed coverage report for projects that use attrs and don't set a
--source. #895
<https://github-redirect.dependabot.com/python-attrs/attrs/issues/895>,
#896
<https://github-redirect.dependabot.com/python-attrs/attrs/issues/896>
21.3.0
This is a big release in the history of attrs and finishes an arc that
took way too long and also delayed this very overdue release. But it's
done: import attrs that has been talked about for years[^issue], but fell
victim to “just this one more thing” has *finally* landed.
... (truncated)
Changelog
*Sourced from attrs's changelog
<https://github.com/python-attrs/attrs/blob/main/CHANGELOG.rst>.*
22.1.0 (2022-07-28)
Backwards-incompatible Changes ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
Python 2.7 is not supported anymore.
Dealing with Python 2.7 tooling has become too difficult for a
volunteer-run project.
We have supported Python 2 more than 2 years after it was officially
discontinued and feel that we have paid our dues. All version up to 21.4.0
from December 2021 remain fully functional, of course. [#936](
python-attrs/attrs#936) <
python-attrs/attrs#936
-
The deprecated cmp attribute of attrs.Attribute has been removed. This
does not affect the *cmp* argument to attr.s that can be used as a
shortcut to set *eq* and *order* at the same time. [#939](
python-attrs/attrs#939) <
python-attrs/attrs#939
Changes ^^^^^^^
- Instantiation of frozen slotted classes is now faster. [#898](
python-attrs/attrs#898) <
python-attrs/attrs#898
- If an eq key is defined, it is also used before hashing the
attribute. [#909](python-attrs/attrs#909) <
python-attrs/attrs#909
- Added attrs.validators.min_len(). [#916](
python-attrs/attrs#916) <
python-attrs/attrs#916
- attrs.validators.deep_iterable()'s *member_validator* argument now
also accepts a list of validators and wraps them in an
attrs.validators.and_(). [#925](
python-attrs/attrs#925) <
python-attrs/attrs#925
- Added missing type stub re-imports for attrs.converters and
attrs.filters. [#931](python-attrs/attrs#931)
<python-attrs/attrs#931
- Added missing stub for attr(s).cmp_using(). [#949](
python-attrs/attrs#949) <
python-attrs/attrs#949
- attrs.validators._in()'s ValueError is not missing the attribute,
expected options, and the value it got anymore. [#951](
python-attrs/attrs#951) <
python-attrs/attrs#951
- Python 3.11 is now officially supported. [#969](
python-attrs/attrs#969) <
python-attrs/attrs#969
------------------------------
21.4.0 (2021-12-29)
Changes ^^^^^^^
- Fixed the test suite on PyPy3.8 where cloudpickle does not work.
[#892](python-attrs/attrs#892) <
python-attrs/attrs#892
... (truncated)
Commits
- b3dfebe
<python-attrs/attrs@b3dfebe>
Prepare 22.1.0
- c89abcd
<python-attrs/attrs@c89abcd>
It totally is correct
- 9f118b7
<python-attrs/attrs@9f118b7>
Tune first steps
- a3d7f20
<python-attrs/attrs@a3d7f20>
Polish contributing guide
- 899497f
<python-attrs/attrs@899497f>
Clarify (c) ownership
- 696fd78
<python-attrs/attrs@696fd78>
Hyphenate compound adjectives
- 65c0683
<python-attrs/attrs@65c0683>
Use NG APIs in glossary
- 5d84d9a
<python-attrs/attrs@5d84d9a>
Move mypy config to pyproject.toml
- 1590917
<python-attrs/attrs@1590917>
Update readme.rst (#986
<https://github-redirect.dependabot.com/python-attrs/attrs/issues/986>)
- a67c84f
<python-attrs/attrs@a67c84f>
Add more prominent callout about slots to API docs
- Additional commits viewable in compare view
<python-attrs/attrs@20.3.0...22.1.0>
[image: 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 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:
#57
Commit Summary
- 8de28eb
<8de28eb>
chore(deps-dev): bump attrs from 20.3.0 to 22.1.0
File Changes
(1 file
<https://github.com/freelawproject/bankruptcy-parser/pull/57/files>)
- *M* requirements-dev.txt
<https://github.com/freelawproject/bankruptcy-parser/pull/57/files#diff-2b4945591edfeaa4cf4d3f155e66d4b43d1bda7a55d881d5cf3107f1b05abbbc>
(2)
Patch Links:
- https://github.com/freelawproject/bankruptcy-parser/pull/57.patch
- https://github.com/freelawproject/bankruptcy-parser/pull/57.diff
—
Reply to this email directly, view it on GitHub
<#57>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AABZ3KVT336M2GSD5QUUKTLVW5D67ANCNFSM55GDBOVQ>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
--
Mike Lissner
Executive Director
Free Law Project
https://free.law
|
Superseded by #73. |
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.
Bumps attrs from 20.3.0 to 22.1.0.
Release notes
Sourced from attrs's releases.
... (truncated)
Changelog
Sourced from attrs's changelog.
... (truncated)
Commits
b3dfebe
Prepare 22.1.0c89abcd
It totally is correct9f118b7
Tune first stepsa3d7f20
Polish contributing guide899497f
Clarify (c) ownership696fd78
Hyphenate compound adjectives65c0683
Use NG APIs in glossary5d84d9a
Move mypy config to pyproject.toml1590917
Update readme.rst (#986)a67c84f
Add more prominent callout about slots to API docsDependabot 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 will merge this PR once CI passes on it, as requested by @mlissner.
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 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)