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

build(deps): bump the pip group with 9 updates #62

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 14, 2023

Bumps the pip group with 9 updates:

Package From To
dataclasses-json 0.5.9 0.6.0
httpx 0.24.1 0.25.0
ruff 0.0.284 0.0.289
pytest 7.4.0 7.4.2
pytest-docker 2.0.0 2.0.1
sphinx 7.1.2 7.2.6
black 23.7.0 23.9.1
mypy 1.4.1 1.5.1
build 0.10.0 1.0.3

Updates dataclasses-json from 0.5.9 to 0.6.0

Release notes

Sourced from dataclasses-json's releases.

v0.6.0

What's Changed

Due to a behaviour change discovered in lidatong/dataclasses-json#466 and also as a matter of preparation for full deprecation of Py3.7, we are bumping the minor version to 0.6.0. Most important change is that since 0.5.9 builtins are coerced automatically without throwing an exception. Please visit the issue for more info :)

New Contributors

Full Changelog: lidatong/dataclasses-json@v0.5.15...v0.6.0

v0.5.15

What's Changed

This release will not be available on PyPI as Poetry 1.6 no longer works with our Python 3.7 test suite. We will most likely remove Python 3.7 from the version matrix that is used to test commits, but keep the minimum version in Requires-Python set to >=3.7, as we still have around 4% of Py3.7 users. That said, dear Py3.7 users, please consider migrating to a newer Python version as Py3.7 is out of support and we will no longer provide patches or feature backports for it.

Next version of DCJ will be 0.6.0 and it will still allow Python 3.7, but we retain the right to remove support of 3.7 in any future minor release after 0.6.0.

Full Changelog: lidatong/dataclasses-json@v0.5.14...v0.5.15

v0.5.14

What's Changed

New Contributors

Full Changelog: lidatong/dataclasses-json@v0.5.13...v0.5.14

v0.5.13

What's Changed

Full Changelog: lidatong/dataclasses-json@v0.5.12...v0.5.13

... (truncated)

Commits
  • 02c561f Fix for #239: Union inside List or Dict is not deserialized as the correspond...
  • 54c6061 Update Poetry version used for 3.7 test suite and change Requires-Python boun...
  • dd4c414 Improve dataclass_json and _process_class type annotations (#475)
  • 89578cb Support for Counter objects (#471)
  • dcb9372 Add documentation for how to use with Numpy and Pandas (#470)
  • 04ddea8 Fix: if field has custom decoder, schema takes it into account (#462)
  • d1a4464 feat: Implement dymamic versioning (#454)
  • c6e248c Update Python version boundaries to include 3.12 (#449)
  • 4c087eb Fixes recursion bug related to enum flags (#447)
  • 5a1174c Fix global_config.mm_fields having no effect (#253)
  • Additional commits viewable in compare view

Updates httpx from 0.24.1 to 0.25.0

Release notes

Sourced from httpx's releases.

Version 0.25.0

0.25.0 (11th Sep, 2023)

Removed

  • Drop support for Python 3.7. (#2813)

Added

  • Support HTTPS proxies. (#2845)
  • Change the type of Extensions from Mapping[Str, Any] to MutableMapping[Str, Any]. (#2803)
  • Add socket_options argument to httpx.HTTPTransport and httpx.AsyncHTTPTransport classes. (#2716)
  • The Response.raise_for_status() method now returns the response instance. For example: data = httpx.get('...').raise_for_status().json(). (#2776)

Fixed

  • Return 500 error response instead of exceptions when raise_app_exceptions=False is set on ASGITransport. (#2669)
  • Ensure all WSGITransport environs have a SERVER_PROTOCOL. (#2708)
  • Always encode forward slashes as %2F in query parameters (#2723)
  • Use Mozilla documentation instead of httpstatuses.com for HTTP error reference (#2768)
Changelog

Sourced from httpx's changelog.

0.25.0 (11th Sep, 2023)

Removed

  • Drop support for Python 3.7. (#2813)

Added

  • Support HTTPS proxies. (#2845)
  • Change the type of Extensions from Mapping[Str, Any] to MutableMapping[Str, Any]. (#2803)
  • Add socket_options argument to httpx.HTTPTransport and httpx.AsyncHTTPTransport classes. (#2716)
  • The Response.raise_for_status() method now returns the response instance. For example: data = httpx.get('...').raise_for_status().json(). (#2776)

Fixed

  • Return 500 error response instead of exceptions when raise_app_exceptions=False is set on ASGITransport. (#2669)
  • Ensure all WSGITransport environs have a SERVER_PROTOCOL. (#2708)
  • Always encode forward slashes as %2F in query parameters (#2723)
  • Use Mozilla documentation instead of httpstatuses.com for HTTP error reference (#2768)
Commits

Updates ruff from 0.0.284 to 0.0.289

Release notes

Sourced from ruff's releases.

v0.0.289

What's Changed

Bug Fixes

Preview

This release includes a new preview mode which can be used to opt-in to unstable rules and features.

See the documentation and versioning discussion for more details.

New Contributors

Full Changelog: astral-sh/ruff@v0.0.288...v0.0.289

v0.0.288

What's Changed

Breaking Changes

Rules

Settings

Bug Fixes

... (truncated)

Changelog

Sourced from ruff's changelog.

Breaking Changes

0.0.288

Remove support for emoji identifiers (#7212)

Previously, Ruff supported the non-standard compliant emoji identifiers e.g. 📦 = 1. We decided to remove this non-standard language extension, and Ruff now reports syntax errors for emoji identifiers in your code, the same as CPython.

Improved GitLab fingerprints (#7203)

GitLab uses fingerprints to identify new, existing, or fixed violations. Previously, Ruff included the violation's position in the fingerprint. Using the location has the downside that changing any code before the violation causes the fingerprint to change, resulting in GitLab reporting one fixed and one new violation even though it is a pre-existing violation.

Ruff now uses a more stable location-agnostic fingerprint to minimize that existing violations incorrectly get marked as fixed and re-reported as new violations.

Expect GitLab to report each pre-existing violation in your project as fixed and a new violation in your Ruff upgrade PR.

0.0.283 / 0.284

The target Python version now defaults to 3.8 instead of 3.10 (#6397)

Previously, when a target Python version was not specified, Ruff would use a default of Python 3.10. However, it is safer to default to an older Python version to avoid assuming the availability of new features. We now default to the oldest supported Python version which is currently Python 3.8.

(We still support Python 3.7 but since it has reached EOL we've decided not to make it the default here.)

Note this change was announced in 0.0.283 but not active until 0.0.284.

0.0.277

.ipynb_checkpoints, .pyenv, .pytest_cache, and .vscode are now excluded by default (#5513)

Ruff maintains a list of default exclusions, which now consists of the following patterns:

  • .bzr
  • .direnv
  • .eggs
  • .git
  • .git-rewrite
  • .hg
  • .ipynb_checkpoints
  • .mypy_cache
  • .nox
  • .pants.d
  • .pyenv
  • .pytest_cache
  • .pytype
  • .ruff_cache
  • .svn
  • .tox
  • .venv

... (truncated)

Commits
  • e7a2779 Bump version to v0.0.289 (#7308)
  • 008da95 Add preview documentation section (#7281)
  • 5d4dd3e Set the target deployment to main during dispatched documentation deploymen...
  • e561f57 Fix(vscode): Respect line length ruff.toml configuration (#7306)
  • ee0f127 Add NotebookIndex to the cache (#6863)
  • e7b7e4a Add documentation to duplicate-union-member (#7225)
  • b4419c3 Ignore @override method when enforcing bad-dunder-name rule (#7224)
  • 08f1922 Fix panic when formatting binary expression with two implicit concatenated st...
  • 1e6df19 Bool expression comment placement (#7269)
  • c21b960 Display the --preview option in the CLI help menu (#7274)
  • Additional commits viewable in compare view

Updates pytest from 7.4.0 to 7.4.2

Release notes

Sourced from pytest's releases.

pytest 7.4.2 (2023-09-07)

Bug Fixes

  • #11237: Fix doctest collection of functools.cached_property objects.

  • #11306: Fixed bug using --importmode=importlib which would cause package __init__.py files to be imported more than once in some cases.

  • #11367: Fixed bug where user_properties where not being saved in the JUnit XML file if a fixture failed during teardown.

  • #11394: Fixed crash when parsing long command line arguments that might be interpreted as files.

Improved Documentation

  • #11391: Improved disclaimer on pytest plugin reference page to better indicate this is an automated, non-curated listing.

pytest 7.4.1 (2023-09-02)

Bug Fixes

  • #10337: Fixed bug where fake intermediate modules generated by --import-mode=importlib would not include the child modules as attributes of the parent modules.

  • #10702: Fixed error assertion handling in pytest.approx when None is an expected or received value when comparing dictionaries.

  • #10811: Fixed issue when using --import-mode=importlib together with --doctest-modules that caused modules to be imported more than once, causing problems with modules that have import side effects.

Commits
  • 45f34df Prepare release version 7.4.2
  • e4f022f Merge pull request #11406 from nicoddemus/backport-11404-to-7.4.x
  • 63b0c6f Use _pytest.pathlib.safe_exists in get_dirs_from_args
  • 884b911 Fix crash when passing a very long cmdline argument (#11404)
  • 6e49a74 [7.4.x] Fix doctest collection of functools.cached_property objects. (#11403)
  • 79c2012 [7.4.x] doc: Remove done training (#11400)
  • de69883 [7.4.x] improve plugin list disclaimer (#11398)
  • 1de00e9 [7.4.x] Fix import_path for packages (#11395)
  • 7f5d9b9 Fix user_properties not saved to XML if fixture errors during teardown (#11382)
  • 82eb86f Merge pull request #11377 from pytest-dev/release-7.4.1
  • Additional commits viewable in compare view

Updates pytest-docker from 2.0.0 to 2.0.1

Release notes

Sourced from pytest-docker's releases.

v2.0.1

More tolerant port parsing.

Changelog

Sourced from pytest-docker's changelog.

Changelog

Commits
  • 508b82d Adjust docker port resolution to be more tolerant (podman-compose)
  • See full diff in compare view

Updates sphinx from 7.1.2 to 7.2.6

Release notes

Sourced from sphinx's releases.

Sphinx 7.2.6

Changelog: https://www.sphinx-doc.org/en/master/changes.html

Sphinx 7.2.5

Changelog: https://www.sphinx-doc.org/en/master/changes.html

Sphinx 7.2.4

Changelog: https://www.sphinx-doc.org/en/master/changes.html

Sphinx 7.2.3

Changelog: https://www.sphinx-doc.org/en/master/changes.html

Sphinx 7.2.2

Changelog: https://www.sphinx-doc.org/en/master/changes.html

Sphinx 7.2.1

Changelog: https://www.sphinx-doc.org/en/master/changes.html

Sphinx 7.2.0

Changelog: https://www.sphinx-doc.org/en/master/changes.html

Changelog

Sourced from sphinx's changelog.

Release 7.2.6 (released Sep 13, 2023)

Bugs fixed

  • #11679: Add the :envvar:!SPHINX_AUTODOC_RELOAD_MODULES environment variable, which if set reloads modules when using autodoc with TYPE_CHECKING = True. Patch by Matt Wozniski and Adam Turner.
  • #11679: Use :py:func:importlib.reload to reload modules in autodoc. Patch by Matt Wozniski and Adam Turner.

Release 7.2.5 (released Aug 30, 2023)

Bugs fixed

  • #11645: Fix a regression preventing autodoc from importing modules within packages that make use of if typing.TYPE_CHECKING: to guard circular imports needed by type checkers. Patch by Matt Wozniski.
  • #11634: Fixed inheritance diagram relative link resolution for sibling files in a subdirectory. Patch by Albert Shih.
  • #11659: Allow ?config=... in :confval:mathjax_path.
  • #11654: autodoc: Fail with a more descriptive error message when an object claims to be an instance of type, but is not a class. Patch by James Braza.
  • 11620: Cease emitting :event:source-read events for files read via the :dudir:include directive.
  • 11620: Add a new :event:include-read for observing and transforming the content of included files via the :dudir:include directive.
  • #11627: Restore support for copyright lines of the form YYYY when SOURCE_DATE_EPOCH is set.

Release 7.2.4 (released Aug 28, 2023)

Bugs fixed

  • #11618: Fix a regression in the MoveModuleTargets transform, introduced in #10478 (#9662).
  • #11649: linkcheck: Resolve hanging tests for timezones west of London and incorrect conversion from UTC to offsets from the UNIX epoch. Patch by Dmitry Shachnev and Adam Turner.

Release 7.2.3 (released Aug 23, 2023)

... (truncated)

Commits

Updates black from 23.7.0 to 23.9.1

Release notes

Sourced from black's releases.

23.9.1

Due to various issues, the previous release (23.9.0) did not include compiled mypyc wheels, which make Black significantly faster. These issues have now been fixed, and this release should come with compiled wheels once again.

There will be no wheels for Python 3.12 due to a bug in mypyc. We will provide 3.12 wheels in a future release as soon as the mypyc bug is fixed.

Packaging

  • Upgrade to mypy 1.5.1 (#3864)

Performance

  • Store raw tuples instead of NamedTuples in Black's cache, improving performance and decreasing the size of the cache (#3877)

23.9.0

Preview style

  • More concise formatting for dummy implementations (#3796)
  • In stub files, add a blank line between a statement with a body (e.g an if sys.version_info > (3, x):) and a function definition on the same level (#3862)
  • Fix a bug whereby spaces were removed from walrus operators within subscript(#3823)

Configuration

  • Black now applies exclusion and ignore logic before resolving symlinks (#3846)

Performance

  • Avoid importing IPython if notebook cells do not contain magics (#3782)
  • Improve caching by comparing file hashes as fallback for mtime and size (#3821)

Blackd

  • Fix an issue in blackd with single character input (#3558)

Integrations

  • Black now has an official pre-commit mirror. Swapping https://github.com/psf/black to https://github.com/psf/black-pre-commit-mirror in your .pre-commit-config.yaml will make Black about 2x faster (#3828)
  • The .black.env folder specified by ENV_PATH will now be removed on the completion of the GitHub Action (#3759)
Changelog

Sourced from black's changelog.

23.9.1

Due to various issues, the previous release (23.9.0) did not include compiled mypyc wheels, which make Black significantly faster. These issues have now been fixed, and this release should come with compiled wheels once again.

There will be no wheels for Python 3.12 due to a bug in mypyc. We will provide 3.12 wheels in a future release as soon as the mypyc bug is fixed.

Packaging

  • Upgrade to mypy 1.5.1 (#3864)

Performance

  • Store raw tuples instead of NamedTuples in Black's cache, improving performance and decreasing the size of the cache (#3877)

23.9.0

Preview style

  • More concise formatting for dummy implementations (#3796)
  • In stub files, add a blank line between a statement with a body (e.g an if sys.version_info > (3, x):) and a function definition on the same level (#3862)
  • Fix a bug whereby spaces were removed from walrus operators within subscript(#3823)

Configuration

  • Black now applies exclusion and ignore logic before resolving symlinks (#3846)

Performance

  • Avoid importing IPython if notebook cells do not contain magics (#3782)
  • Improve caching by comparing file hashes as fallback for mtime and size (#3821)

Blackd

  • Fix an issue in blackd with single character input (#3558)

Integrations

  • Black now has an official pre-commit mirror. Swapping https://github.com/psf/black to https://github.com/psf/black-pre-commit-mirror in your .pre-commit-config.yaml will make Black about 2x faster (#3828)
  • The .black.env folder specified by ENV_PATH will now be removed on the completion of the GitHub Action (#3759)
Commits

Updates mypy from 1.4.1 to 1.5.1

Commits

Updates build from 0.10.0 to 1.0.3

Release notes

Sourced from build's releases.

Version 1.0.3

What's Changed

New Contributors

Full Changelog: pypa/build@1.0.0...1.0.3

Version 1.0.0

What's Changed

... (truncated)

Changelog

Sourced from build's changelog.

1.0.3 (2023-09-06)

  • Avoid CPython 3.8.17, 3.9.17, 3.10.12, and 3.11.4 tarfile symlink bug triggered by adding data_filter in 1.0.0. (PR :pr:675, fixes issue :issue:674)

1.0.0 (2023-09-01)

  • Removed the toml library fallback; toml can no longer be used as a substitute for tomli (PR :pr:567)
  • Added runner parameter to util.project_wheel_metadata (PR :pr:566, fixes issue :issue:553)
  • Modified ProjectBuilder constructor signature, added alternative ProjectBuilder.from_env constructor, redefined env.IsolatedEnv interface, and exposed env.DefaultIsolatedEnv, replacing env.IsolatedEnvBuilder. The aim has been to shift responsibility for modifying the environment from the project builder to the IsolatedEnv entirely and to ensure that the builder will be initialised from an IsolatedEnv in a consistent manner. Mutating the project builder is no longer supported. (PR :pr:537)
  • virtualenv is no longer imported when using -n, for faster builds (PR :pr:636, fixes issue :issue:510)
  • The SDist now contains the repository contents, including tests. Flit-core 3.8+ required. (PR :pr:657, :pr:661, fixes issue :issue:656)
  • The minimum version of importlib-metadata has been increased to 4.6 and Python 3.10 due to a bug in the standard library version with URL requirements in extras. This is still not required for 3.8 when bootstrapping (as long as you don't have URL requirements in extras). (PR :pr:631, fixes issue :issue:630)
  • Docs now built with Sphinx 7 (PR :pr:660)
  • Tests now contain a network marker (PR :pr:649, fixes issue :issue:648)
  • Config-settings are now passed to get_requires* hooks, fixing a long standing bug. If this affects your setuptools build, you can use -C--build-option=<cmd> -C--build-option=<option> to workaround an issue with Setuptools not allowing unrecognised build options when running this hook. (PR :pr:627, fixes issue :issue:[#264](https://github.com/pypa/build/issues/264))
  • Test on Python 3.12 betas/RCs (PR :pr:624)
  • Filter out malicious files when extracting tar archives when Python supports it (PR :pr:609)
  • Specify encoding, fixing issues when PYTHONWARNDEFAULTENCODING is set.

... (truncated)

Commits
  • 38d1a68 chore: bump to 1.0.3
  • 17cefaf tox: format file
  • c48f4ca chore: release 1.0.1
  • 4b61b8e Apply suggestions from code review
  • d6138f5 fix: avoid bug in various patch releases of Python
  • eada811 build(deps): bump actions/checkout from 3 to 4 (#673)
  • 955e697 pre-commit: bump repositories (#672)
  • f51c089 changelog: fix issue reference
  • 1fff01e style: ignore W005, since we are build
  • 06e0481 ci: build and test SDist/wheels
  • 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 versi...

Description has been truncated

Bumps the pip group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [dataclasses-json](https://github.com/lidatong/dataclasses-json) | `0.5.9` | `0.6.0` |
| [httpx](https://github.com/encode/httpx) | `0.24.1` | `0.25.0` |
| [ruff](https://github.com/astral-sh/ruff) | `0.0.284` | `0.0.289` |
| [pytest](https://github.com/pytest-dev/pytest) | `7.4.0` | `7.4.2` |
| [pytest-docker](https://github.com/avast/pytest-docker) | `2.0.0` | `2.0.1` |
| [sphinx](https://github.com/sphinx-doc/sphinx) | `7.1.2` | `7.2.6` |
| [black](https://github.com/psf/black) | `23.7.0` | `23.9.1` |
| [mypy](https://github.com/python/mypy) | `1.4.1` | `1.5.1` |
| [build](https://github.com/pypa/build) | `0.10.0` | `1.0.3` |


Updates `dataclasses-json` from 0.5.9 to 0.6.0
- [Release notes](https://github.com/lidatong/dataclasses-json/releases)
- [Commits](lidatong/dataclasses-json@v0.5.9...v0.6.0)

Updates `httpx` from 0.24.1 to 0.25.0
- [Release notes](https://github.com/encode/httpx/releases)
- [Changelog](https://github.com/encode/httpx/blob/master/CHANGELOG.md)
- [Commits](encode/httpx@0.24.1...0.25.0)

Updates `ruff` from 0.0.284 to 0.0.289
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/BREAKING_CHANGES.md)
- [Commits](astral-sh/ruff@v0.0.284...v0.0.289)

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

Updates `pytest-docker` from 2.0.0 to 2.0.1
- [Release notes](https://github.com/avast/pytest-docker/releases)
- [Changelog](https://github.com/avast/pytest-docker/blob/master/CHANGELOG.md)
- [Commits](avast/pytest-docker@v2.0.0...v2.0.1)

Updates `sphinx` from 7.1.2 to 7.2.6
- [Release notes](https://github.com/sphinx-doc/sphinx/releases)
- [Changelog](https://github.com/sphinx-doc/sphinx/blob/master/CHANGES)
- [Commits](sphinx-doc/sphinx@v7.1.2...v7.2.6)

Updates `black` from 23.7.0 to 23.9.1
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@23.7.0...23.9.1)

Updates `mypy` from 1.4.1 to 1.5.1
- [Commits](python/mypy@v1.4.1...v1.5.1)

Updates `build` from 0.10.0 to 1.0.3
- [Release notes](https://github.com/pypa/build/releases)
- [Changelog](https://github.com/pypa/build/blob/main/CHANGELOG.rst)
- [Commits](pypa/build@0.10.0...1.0.3)

---
updated-dependencies:
- dependency-name: dataclasses-json
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: httpx
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: ruff
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: pytest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: pytest-docker
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: sphinx
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: black
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: build
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 14, 2023
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 18, 2023

Superseded by #63.

@dependabot dependabot bot closed this Sep 18, 2023
@dependabot dependabot bot deleted the dependabot/pip/pip-09ccbc5b51 branch September 18, 2023 06:17
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants