Skip to content
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): Bump the pipenv group across 1 directory with 11 updates #3264

Merged
merged 1 commit into from
Jan 7, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 1, 2025

Bumps the pipenv group with 10 updates in the /services/datalad directory:

Package From To
falcon 3.1.3 4.0.2
boto3 1.35.60 1.35.90
pygithub 2.4.0 2.5.0
uvicorn 0.32.0 0.34.0
sentry-sdk 2.18.0 2.19.2
bidsschematools 0.11.3.post3 1.0.0
datalad 1.1.3 1.1.5
pytest 8.3.3 8.3.4
coverage 7.6.4 7.6.10
pytest-asyncio 0.24.0 0.25.0

Updates falcon from 3.1.3 to 4.0.2

Release notes

Sourced from falcon's releases.

4.0.2

Falcon 4.0.2 is a minor point release (following the major Falcon 4.0.0 release, and Falcon 4.0.1 bugfix) to fix some missed re-exports for type checkers. In addition, we have also included a couple of documentation improvements.

🐍 Falcon 4.0.2 on PyPI

Fixed

Running Mypy on code that uses parts of falcon.testing would previously lead to errors like:

Name "falcon.testing.TestClient" is not defined

This has been fixed by explicitly exporting the names that are imported into the falcon.testing namespace. (#2387)

Misc

The printable PDF version of our documentation was enabled on Read the Docs. (#2365)

4.0.1

Falcon 4.0.1 is a minor point release addressing a Python distribution issue in Falcon 4.0.0.

Fixed

Installing Falcon 4.0.0 unexpectedly copies many unintended directories from the source tree to the venv’s site-packages. This issue has been rectified, and our CI has been extended with new tests (that verify what is actually installed from the distribution) to make sure this regression does not resurface. (#2384)

4.0.0

We are happy to present Falcon 4.0, a new major version of the framework that brings a couple of commonly requested features including support for matching multiple path segments (using PathConverter), and a fully typed codebase. (Please read more about typing in the notes on RtD.)

🐍 Falcon 4.0.0 on PyPI 📚 Changelog on RtD

The timeframe for Falcon 4.0 was challenging due to the need to balance our high standards with the CPython 3.13 timeline. We aimed to deliver the main development branch in this release, without resorting to another compatibility micro update (as we did with Falcon 3.1.1-3.1.3). Following community feedback, we also want to improve our overall release schedule by shipping smaller increments more often. To support this goal, we have made several tooling and testing improvements: the build process for binary wheels has been simplified using cibuildwheel, and our test suite now only requires pytest as a hard dependency. Additionally, you can run pytest against our tests from any directory. We hope that these changes should also benefit packaging Falcon in Linux distributions.

As with every SemVer major release, we have removed a number of previously deprecated functions, classes, compatibility shims, as well as made other potentially breaking changes that we could not risk in a minor version. If you have been paying attention the deprecation warnings from the 3.x series, the impact should be minimal, but please do take a look at the list of breaking changes on RtD.

This release would not have been possible without the numerous contributions from our community. This release alone comprises a number of pull requests submitted by a group of 30 talented individuals. What is more, we were particularly impressed by the high-quality discussions and code submissions during our EuroPython 2024 Sprint. Some notable sprint contributions include CHIPS support, and a new WebSocket Tutorial, among others. In fact, according to the statistics on GitHub, we are thrilled to report that the total number of Falcon contributors has now exceeded 200. We find it fascinating that our framework has become a collaborative effort involving so many individuals, and would like to thank everyone who has made this release possible!

4.0.0rc1

We are almost ready to release Falcon 4.0! :snake: 4.0.0rc1 on PyPI 📚 Changelog on RtD

We would greatly appreciate it if you could help us with the final round of testing on your apps (pip install falcon==4.0.0rc1), and let us know if you run into any issues!

Thank You!

4.0.0b4

Falcon 4.0.0b4 is hopefully the final beta release of Falcon 4.0. Compared to 4.0.0b3, we have made the timezone-aware datetime breaking changes more consistent, and documented the scope clearer.

🐍 4.0.0b4 on PyPI 📚 Changelog on RtD

Please test this beta release with your apps (pip install falcon==4.0.0b4), and let us know if you run into any issues!

... (truncated)

Changelog

Sourced from falcon's changelog.

Release Manager's Guide

Release Process:

  1. Bump version (including the suffix for pre-release, if applicable).
  2. Update changelog and render towncrier fragments.
  3. Release beta or rc.
  4. Run benchmark and check for regressions.
  5. Review and edit doc changes since the last release for clarity and consistency.
  6. Publish final version and add a release note.
  7. Run benchmark and update falconframework.org with latest numbers.
  8. Announce the new version in Gitter channels and on the socials.
  9. Improve this document.

Bump version

Modify falcon/version.py if it has not been updated since the previous release. Examine the rendered changelog to determine the appropriate SEMVER field to modify.

Note that we have dropped setup.cfg altogether, so __version__ in falcon/version.py must contain the whole version (including the previously separately managed tag_build), for instance:

# Development version
__version__ = '4.0.0.dev1'
First alpha
version = '4.0.0a1'
Release candidate
version = '4.0.0rc1'
Stable release
version = '4.0.0'

Update changelog filename in pyproject.toml to suit.

Update changelog and render towncrier fragments

If a changelog RST has not yet been created, add one under docs/changes using the following template, and update the summary and changes to supported platforms to suit:

Changelog for Falcon 4.0.1
==========================
Summary
</tr></table>

... (truncated)

Commits
  • 4ac5ec6 chore: prepare Falcon 4.0.2 (in-tree) (#2392)
  • ab2ce4c docs(FAQ): add entry for error tracebacks in ASGI apps (#2395)
  • ca2e6d9 docs(typing): restructure typing docs into a separate chapter (#2401)
  • 5c4406c docs(changes): add a newsfragment for #2365 (#2400)
  • 8d03fb5 chore: publish sdist & pure-Python wheel without waiting for binaries (#2391)
  • 6d7a45b fix: explicitly export the items in the falcon.testing namespace (#2388)
  • 4d04e9b chore: incorporate Falcon 4.0.1 release notes (#2386)
  • c5c1247 fix(dist): only detect falcon* as packages (#2385)
  • 1bfb819 Enabled pdf build format (#2371)
  • f7189d7 chore: open 4.1.0.dev1 development
  • Additional commits viewable in compare view

Updates boto3 from 1.35.60 to 1.35.90

Commits
  • 65d95ad Merge branch 'release-1.35.90'
  • 33df750 Bumping version to 1.35.90
  • b54eb5d Add changelog entries from botocore
  • 0706ded Merge branch 'release-1.35.89'
  • 2b115a7 Merge branch 'release-1.35.89' into develop
  • 654390e Bumping version to 1.35.89
  • eca7cb7 Add changelog entries from botocore
  • 2693d3b Merge branch 'release-1.35.88'
  • bdae5ec Merge branch 'release-1.35.88' into develop
  • ff72dee Bumping version to 1.35.88
  • Additional commits viewable in compare view

Updates pygithub from 2.4.0 to 2.5.0

Release notes

Sourced from pygithub's releases.

v2.5.0

Breaking Changes

  • Parameters of method github.Requester.Requester.graphql_named_mutation have been renamed:
    • Parameter variables renamed to mutation_input
    • Parameter output renamed to output_schema
    • Default value of parameter output has been removed

New features

Improvements

Bug Fixes

  • Fix requesting urls containing parameters with parameters dict @​EnricoMi (#2929)
  • PullRequest.delete_branch: fix the remaining pull requests check @​fetsko (#3063)

Maintenance

Changelog

Sourced from pygithub's changelog.

Version 2.5.0 (November 06, 2024)

Breaking Changes ^^^^^^^^^^^^^^^^

  • Parameters of method github.Requester.Requester.graphql_named_mutation have been renamed:

    • Parameter variables renamed to mutation_input
    • Parameter output renamed to output_schema
    • Default value of parameter output has been removed

New features ^^^^^^^^^^^^

  • Rework GraphQL mutations (#3046) (27222251)
  • Make pagination work with GraphQL response data (#3047) (cd30e379)
  • Add RepositoryDiscussion powered by GraphQL API (#3048) (29359f3c)
  • Add Repository.get_discussion() to get a single Discussion (#3072) (44120b1e)

Improvements ^^^^^^^^^^^^

  • Adds List organization memberships for the authenticated user (#3040) (cf443955)
  • Add actor property to WorkflowRun (#2764) (612ba68e)
  • Make requester a public attribute (#3056) (c44ec523)

Bug Fixes ^^^^^^^^^

  • Fix requesting urls containing parameters with parameters dict (#2929) (e1d67ada)
  • PullRequest.delete_branch: fix the remaining pull requests check (#3063) (72fa6278)

Maintenance ^^^^^^^^^^^

  • Remove stale bot (510c1402)
  • Upgrade Github actions (#3075) (323e2828)
  • Add top issues dashboard action (#3049) (c91f26a7)
  • Make tests pass some more years (#3045) (352c55aa)
  • Run top issues workflow only in PyGithub repo (0d395d4e)
  • Replace pre-commit Github action in order to pin pre-commit version (#3059) (1a05b43d)
Commits

Updates charset-normalizer from 3.4.0 to 3.4.1

Release notes

Sourced from charset-normalizer's releases.

Version 3.4.1

🚀 We're still raising awareness around HTTP/2, and HTTP/3!

Did you know that Internet Explorer 11 shipped with an optional HTTP/2 support back in 2013? also libcurl did ship it in 2014[...] Using Requests today is the rough equivalent of using EOL Windows 8! We promptly invite Python developers to look at the first drop-in replacement for Requests, namely Niquests. Ship with native WebSocket, SSE, Happy Eyeballs, DNS over HTTPS, and so on[...] All of this while remaining compatible with all Requests prior plug-ins / add-ons.

It leverages charset-normalizer in a better way! Check it out, you will gain up to being 3X faster and get a real/respectable support with it.

3.4.1 (2024-12-24)

Changed

  • Project metadata are now stored using pyproject.toml instead of setup.cfg using setuptools as the build backend.
  • Enforce annotation delayed loading for a simpler and consistent types in the project.
  • Optional mypyc compilation upgraded to version 1.14 for Python >= 3.8

Added

  • pre-commit configuration.
  • noxfile.

Removed

  • build-requirements.txt as per using pyproject.toml native build configuration.
  • bin/integration.py and bin/serve.py in favor of downstream integration test (see noxfile).
  • setup.cfg in favor of pyproject.toml metadata configuration.
  • Unused utils.range_scan function.

Fixed

  • Converting content to Unicode bytes may insert utf_8 instead of preferred utf-8. (#572)
  • Deprecation warning "'count' is passed as positional argument" when converting to Unicode bytes on Python 3.13+
Changelog

Sourced from charset-normalizer's changelog.

3.4.1 (2024-12-24)

Changed

  • Project metadata are now stored using pyproject.toml instead of setup.cfg using setuptools as the build backend.
  • Enforce annotation delayed loading for a simpler and consistent types in the project.
  • Optional mypyc compilation upgraded to version 1.14 for Python >= 3.8

Added

  • pre-commit configuration.
  • noxfile.

Removed

  • build-requirements.txt as per using pyproject.toml native build configuration.
  • bin/integration.py and bin/serve.py in favor of downstream integration test (see noxfile).
  • setup.cfg in favor of pyproject.toml metadata configuration.
  • Unused utils.range_scan function.

Fixed

  • Converting content to Unicode bytes may insert utf_8 instead of preferred utf-8. (#572)
  • Deprecation warning "'count' is passed as positional argument" when converting to Unicode bytes on Python 3.13+
Commits
  • ffdf7f5 🔧 fix long description content-type inferred as rst instead of md
  • c7197b7 📝 fix changelog entries (#582)
  • c390e1f Merge pull request #581 from jawah/refresh-part-2
  • f9d6b8c 🔒 add CODEOWNERS
  • 7ce1ef1 🔧 use ubuntu-22.04 for cibuildwheel in continuous deployment workflow
  • deed205 🔧 update LICENSE copyright
  • f11f571 🔧 include noxfile in sdist
  • 1ec7c06 🔧 update changelog
  • 14b4649 🐛 output(...) replace declarative mark using non iana compliant encoding ...
  • 1b06bc0 Merge branch 'refresh-part-2' of github.com:jawah/charset_normalizer into ref...
  • Additional commits viewable in compare view

Updates uvicorn from 0.32.0 to 0.34.0

Release notes

Sourced from uvicorn's releases.

Version 0.34.0

What's Changed


Full Changelog: encode/uvicorn@0.33.0...0.34.0

Version 0.33.0

What's Changed

New Contributors

Full Changelog: encode/uvicorn@0.32.1...0.33.0

Version 0.32.1

What's Changed


Full Changelog: encode/uvicorn@0.32.0...0.32.1

Changelog

Sourced from uvicorn's changelog.

0.34.0 (December 15, 2024)

Added

  • Add content-length to 500 response in wsproto implementation (#2542)

Removed

  • Drop support for Python 3.8 (#2543)

0.33.0 (December 14, 2024)

Removed

  • Remove WatchGod support for --reload (#2536)

0.32.1 (November 20, 2024)

Fixed

  • Drop ASGI spec version to 2.3 on HTTP scope (#2513)
  • Enable httptools lenient data on httptools >= 0.6.3 (#2488)
Commits

Updates sentry-sdk from 2.18.0 to 2.19.2

Release notes

Sourced from sentry-sdk's releases.

2.19.2

Various fixes & improvements

2.19.1

Various fixes & improvements

2.19.0

Various fixes & improvements

Changelog

Sourced from sentry-sdk's changelog.

2.19.2

Various fixes & improvements

2.19.1

Various fixes & improvements

2.19.0

Various fixes & improvements

Commits
  • 163762f release: 2.19.2
  • 8f9461e Deepcopy and ensure get_all function always terminates (#3861)
  • fd56608 Merge branch 'release/2.19.1'
  • 7ab7fe6 Cleanup chalice test environment (#3858)
  • 231a6a1 Update CHANGELOG.md
  • c591b64 release: 2.19.1
  • 7a6d460 Copy scope.client reference as well (#3857)
  • 5a09770 fix(spotlight): Don't give up on Spotlight on 3 errors (#3856)
  • 31fdcfa fix(django): Fix errors when instrumenting Django cache (#3855)
  • 5891717 Script for checking if our instrumented libs are python 3.13 compatible (#3425)
  • Additional commits viewable in compare view

Updates bidsschematools from 0.11.3.post3 to 1.0.0

Commits

Updates datalad from 1.1.3 to 1.1.5

Release notes

Sourced from datalad's releases.

1.1.5

🧪 Tests

1.1.4

🐛 Bug Fixes

🏎 Performance

🧪 Tests

Changelog

Sourced from datalad's changelog.

1.1.5 (2024-12-15)

🧪 Tests

1.1.4 (2024-11-18)

🐛 Bug Fixes

🏎 Performance

🧪 Tests

Description has been truncated

Bumps the pipenv group with 10 updates in the /services/datalad directory:

| Package | From | To |
| --- | --- | --- |
| [falcon](https://github.com/falconry/falcon) | `3.1.3` | `4.0.2` |
| [boto3](https://github.com/boto/boto3) | `1.35.60` | `1.35.90` |
| [pygithub](https://github.com/pygithub/pygithub) | `2.4.0` | `2.5.0` |
| [uvicorn](https://github.com/encode/uvicorn) | `0.32.0` | `0.34.0` |
| [sentry-sdk](https://github.com/getsentry/sentry-python) | `2.18.0` | `2.19.2` |
| [bidsschematools](https://github.com/bids-standard/bids-specification) | `0.11.3.post3` | `1.0.0` |
| [datalad](https://github.com/datalad/datalad) | `1.1.3` | `1.1.5` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.3.3` | `8.3.4` |
| [coverage](https://github.com/nedbat/coveragepy) | `7.6.4` | `7.6.10` |
| [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.24.0` | `0.25.0` |



Updates `falcon` from 3.1.3 to 4.0.2
- [Release notes](https://github.com/falconry/falcon/releases)
- [Changelog](https://github.com/falconry/falcon/blob/master/RELEASE.md)
- [Commits](falconry/falcon@3.1.3...4.0.2)

Updates `boto3` from 1.35.60 to 1.35.90
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.35.60...1.35.90)

Updates `pygithub` from 2.4.0 to 2.5.0
- [Release notes](https://github.com/pygithub/pygithub/releases)
- [Changelog](https://github.com/PyGithub/PyGithub/blob/main/doc/changes.rst)
- [Commits](PyGithub/PyGithub@v2.4.0...v2.5.0)

Updates `charset-normalizer` from 3.4.0 to 3.4.1
- [Release notes](https://github.com/jawah/charset_normalizer/releases)
- [Changelog](https://github.com/jawah/charset_normalizer/blob/master/CHANGELOG.md)
- [Commits](jawah/charset_normalizer@3.4.0...3.4.1)

Updates `uvicorn` from 0.32.0 to 0.34.0
- [Release notes](https://github.com/encode/uvicorn/releases)
- [Changelog](https://github.com/encode/uvicorn/blob/master/docs/release-notes.md)
- [Commits](encode/uvicorn@0.32.0...0.34.0)

Updates `sentry-sdk` from 2.18.0 to 2.19.2
- [Release notes](https://github.com/getsentry/sentry-python/releases)
- [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-python@2.18.0...2.19.2)

Updates `bidsschematools` from 0.11.3.post3 to 1.0.0
- [Release notes](https://github.com/bids-standard/bids-specification/releases)
- [Changelog](https://github.com/bids-standard/bids-specification/blob/master/Release_Protocol.md)
- [Commits](bids-standard/bids-specification@schema-0.11.3.post3...schema-1.0.0)

Updates `datalad` from 1.1.3 to 1.1.5
- [Release notes](https://github.com/datalad/datalad/releases)
- [Changelog](https://github.com/datalad/datalad/blob/maint/CHANGELOG.md)
- [Commits](datalad/datalad@1.1.3...1.1.5)

Updates `pytest` from 8.3.3 to 8.3.4
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.3.3...8.3.4)

Updates `coverage` from 7.6.4 to 7.6.10
- [Release notes](https://github.com/nedbat/coveragepy/releases)
- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst)
- [Commits](nedbat/coveragepy@7.6.4...7.6.10)

Updates `pytest-asyncio` from 0.24.0 to 0.25.0
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
- [Commits](pytest-dev/pytest-asyncio@v0.24.0...v0.25.0)

---
updated-dependencies:
- dependency-name: falcon
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pipenv
- dependency-name: boto3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pipenv
- dependency-name: pygithub
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pipenv
- dependency-name: charset-normalizer
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pipenv
- dependency-name: uvicorn
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pipenv
- dependency-name: sentry-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pipenv
- dependency-name: bidsschematools
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pipenv
- dependency-name: datalad
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pipenv
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pipenv
- dependency-name: coverage
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pipenv
- dependency-name: pytest-asyncio
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pipenv
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Jan 1, 2025
Copy link

codecov bot commented Jan 1, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 46.68%. Comparing base (f59fe01) to head (ae9e9e8).
Report is 8 commits behind head on master.

Additional details and impacted files
@@           Coverage Diff           @@
##           master    #3264   +/-   ##
=======================================
  Coverage   46.68%   46.68%           
=======================================
  Files         609      609           
  Lines       38701    38701           
  Branches     1225     1225           
=======================================
  Hits        18068    18068           
  Misses      20438    20438           
  Partials      195      195           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@nellh nellh merged commit 40130bb into master Jan 7, 2025
15 checks passed
@nellh nellh deleted the dependabot/pip/services/datalad/pipenv-6760e8182c branch January 7, 2025 21:04
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 Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant