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 3 updates #3220

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 14, 2024

Bumps the pipenv group with 3 updates in the /services/datalad directory: falcon, pygithub and coverage.

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 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 coverage from 7.6.4 to 7.6.5

Changelog

Sourced from coverage's changelog.

Version 7.6.5 — 2024-11-14

  • fix: fine-tuned the exact Python version (3.12.6) when exiting from with statements changed how they traced. This affected whether people saw the fix for issue 1880_.

  • fix: isolate our code more from mocking in the os module that in rare cases can cause bizarre behavior <pytest-cov-666_>_.

  • refactor: some code unreachable code paths in parser.py were changed to asserts. If you encounter any of these, please let me know!

.. _pytest-cov-666: pytest-dev/pytest-cov#666

.. _changes_7-6-4:

Commits
  • 3f9a6fa docs: sample HTML for 7.6.5
  • 1def184 docs: prep for 7.6.5
  • ea5c685 chore: make upgrade
  • 85aa5fc fix: add more isolation from os-module mocking
  • 9a36d33 chore: bump the action-dependencies group with 3 updates (#1889)
  • 84baf6e refactor: remove an untaken branch in annotate.py
  • 864ef60 style: don't need the trailing blank line
  • c4acbfc build: use pre-commit to check stuff
  • 752f24d chore: bump the action-dependencies group across 1 directory with 3 updates (...
  • c46f2a5 build: oops, yaml syntax
  • Additional commits viewable in compare view

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the pipenv group with 3 updates in the /services/datalad directory: [falcon](https://github.com/falconry/falcon), [pygithub](https://github.com/pygithub/pygithub) and [coverage](https://github.com/nedbat/coveragepy).


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 `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 `coverage` from 7.6.4 to 7.6.5
- [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.5)

---
updated-dependencies:
- dependency-name: falcon
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pipenv
- dependency-name: pygithub
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pipenv
- dependency-name: coverage
  dependency-type: direct:development
  update-type: version-update:semver-patch
  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 Nov 14, 2024
Copy link

codecov bot commented Nov 14, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 45.65%. Comparing base (a6bde4b) to head (5bbb6c8).

Additional details and impacted files
@@            Coverage Diff             @@
##           master    #3220      +/-   ##
==========================================
+ Coverage   44.41%   45.65%   +1.23%     
==========================================
  Files         550      594      +44     
  Lines       36373    37999    +1626     
  Branches     1161     1161              
==========================================
+ Hits        16155    17348    +1193     
- Misses      20021    20454     +433     
  Partials      197      197              

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

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.

0 participants