-
Notifications
You must be signed in to change notification settings - Fork 27
Commit 0d28679
authored
deps: update dependency importlib-metadata to v6 (#5699)
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [importlib-metadata](https://togithub.com/python/importlib_metadata) | `==4.8.3` -> `==6.0.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) |
---
### ⚠ Dependency Lookup Warnings ⚠
Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.
---
### Release Notes
<details>
<summary>python/importlib_metadata</summary>
### [`v6.0.0`](https://togithub.com/python/importlib_metadata/blob/HEAD/CHANGES.rst#v600)
[Compare Source](https://togithub.com/python/importlib_metadata/compare/v5.2.0...v6.0.0)
\======
- [#​419](https://togithub.com/python/importlib_metadata/issues/419): Declared `Distribution` as an abstract class, enforcing
definition of abstract methods in instantiated subclasses. It's no
longer possible to instantiate a `Distribution` or any subclasses
unless they define the abstract methods.
Please comment in the issue if this change breaks any projects.
This change will likely be rolled back if it causes significant
disruption.
### [`v5.2.0`](https://togithub.com/python/importlib_metadata/blob/HEAD/CHANGES.rst#v520)
[Compare Source](https://togithub.com/python/importlib_metadata/compare/v5.1.0...v5.2.0)
\======
- [#​371](https://togithub.com/python/importlib_metadata/issues/371): Deprecated expectation that `PackageMetadata.__getitem__`
will return `None` for missing keys. In the future, it will raise a
`KeyError`.
### [`v5.1.0`](https://togithub.com/python/importlib_metadata/blob/HEAD/CHANGES.rst#v510)
[Compare Source](https://togithub.com/python/importlib_metadata/compare/v5.0.0...v5.1.0)
\======
- [#​415](https://togithub.com/python/importlib_metadata/issues/415): Instrument `SimplePath` with generic support.
### [`v5.0.0`](https://togithub.com/python/importlib_metadata/blob/HEAD/CHANGES.rst#v500)
[Compare Source](https://togithub.com/python/importlib_metadata/compare/v4.13.0...v5.0.0)
\======
- [#​97](https://togithub.com/python/importlib_metadata/issues/97), [#​284](https://togithub.com/python/importlib_metadata/issues/284), [#​300](https://togithub.com/python/importlib_metadata/issues/300): Removed compatibility shims for deprecated entry
point interfaces.
### [`v4.13.0`](https://togithub.com/python/importlib_metadata/blob/HEAD/CHANGES.rst#v4130)
[Compare Source](https://togithub.com/python/importlib_metadata/compare/v4.12.0...v4.13.0)
\=======
- [#​396](https://togithub.com/python/importlib_metadata/issues/396): Added compatibility for `PathDistributions` originating
from Python 3.8 and 3.9.
### [`v4.12.0`](https://togithub.com/python/importlib_metadata/blob/HEAD/CHANGES.rst#v4120)
[Compare Source](https://togithub.com/python/importlib_metadata/compare/v4.11.4...v4.12.0)
\=======
- py-93259: Now raise `ValueError` when `None` or an empty
string are passed to `Distribution.from_name` (and other
callers).
### [`v4.11.4`](https://togithub.com/python/importlib_metadata/blob/HEAD/CHANGES.rst#v4114)
[Compare Source](https://togithub.com/python/importlib_metadata/compare/v4.11.3...v4.11.4)
\=======
- [#​379](https://togithub.com/python/importlib_metadata/issues/379): In `PathDistribution._name_from_stem`, avoid including
parts of the extension in the result.
- [#​381](https://togithub.com/python/importlib_metadata/issues/381): In `PathDistribution._normalized_name`, ensure names
loaded from the stem of the filename are also normalized, ensuring
duplicate entry points by packages varying only by non-normalized
name are hidden.
### [`v4.11.3`](https://togithub.com/python/importlib_metadata/blob/HEAD/CHANGES.rst#v4113)
[Compare Source](https://togithub.com/python/importlib_metadata/compare/v4.11.2...v4.11.3)
\=======
- [#​372](https://togithub.com/python/importlib_metadata/issues/372): Removed cast of path items in FastPath, not needed.
### [`v4.11.2`](https://togithub.com/python/importlib_metadata/blob/HEAD/CHANGES.rst#v4112)
[Compare Source](https://togithub.com/python/importlib_metadata/compare/v4.11.1...v4.11.2)
\=======
- [#​369](https://togithub.com/python/importlib_metadata/issues/369): Fixed bug where `EntryPoint.extras` was returning
match objects and not the extras strings.
### [`v4.11.1`](https://togithub.com/python/importlib_metadata/blob/HEAD/CHANGES.rst#v4111)
[Compare Source](https://togithub.com/python/importlib_metadata/compare/v4.11.0...v4.11.1)
\=======
- [#​367](https://togithub.com/python/importlib_metadata/issues/367): In `Distribution.requires` for egg-info, if `requires.txt`
is empty, return an empty list.
### [`v4.11.0`](https://togithub.com/python/importlib_metadata/blob/HEAD/CHANGES.rst#v4110)
[Compare Source](https://togithub.com/python/importlib_metadata/compare/v4.10.1...v4.11.0)
\=======
- bpo-46246: Added `__slots__` to `EntryPoints`.
### [`v4.10.1`](https://togithub.com/python/importlib_metadata/blob/HEAD/CHANGES.rst#v4101)
[Compare Source](https://togithub.com/python/importlib_metadata/compare/v4.10.0...v4.10.1)
\=======
### [`v4.10.0`](https://togithub.com/python/importlib_metadata/blob/HEAD/CHANGES.rst#v4100)
[Compare Source](https://togithub.com/python/importlib_metadata/compare/v4.9.0...v4.10.0)
\=======
- [#​354](https://togithub.com/python/importlib_metadata/issues/354): Removed `Distribution._local` factory. This
functionality was created as a demonstration of the
possible implementation. Now, the
`pep517 <https://pypi.org/project/pep517>`\_ package
provides this functionality directly through
`pep517.meta.load <https://togithub.com/pypa/pep517/blob/a942316305395f8f757f210e2b16f738af73f8b8/pep517/meta.py#L63-L73>`\_.
### [`v4.9.0`](https://togithub.com/python/importlib_metadata/blob/HEAD/CHANGES.rst#v490)
[Compare Source](https://togithub.com/python/importlib_metadata/compare/v4.8.3...v4.9.0)
\======
- Require Python 3.7 or later.
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-cloud-bom).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yNC4wIiwidXBkYXRlZEluVmVyIjoiMzQuMjQuMCJ9-->1 parent bee71aa commit 0d28679Copy full SHA for 0d28679
File tree
Expand file treeCollapse file tree
1 file changed
+3
-3
lines changedFilter options
- .kokoro
Expand file treeCollapse file tree
1 file changed
+3
-3
lines changed+3-3Lines changed: 3 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
232 | 232 |
| |
233 | 233 |
| |
234 | 234 |
| |
235 |
| - | |
236 |
| - | |
237 |
| - | |
| 235 | + | |
| 236 | + | |
| 237 | + | |
238 | 238 |
| |
239 | 239 |
| |
240 | 240 |
| |
|
0 commit comments