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

Bump distro from 1.5.0 to 1.6.0 in /tools/deps #2968

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 2, 2021

Bumps distro from 1.5.0 to 1.6.0.

Release notes

Sourced from distro's releases.

v1.6.0

BACKWARDS COMPATIBILITY:

  • Deprecated the distro.linux_distribution() function. Use distro.id(), distro.version() and distro.name() instead [#296]
  • Deprecated Python 2.7, 3.4 and 3.5 support. Further releases will only support Python 3.6+

ENHANCEMENTS:

  • Added type hints to distro module [#269]
  • Added __version__ for checking distro version [#292]
  • Added support for arbitrary rootfs via the root_dir parameter [#247]
  • Added the --root-dir option to CLI [#161]
  • Added fallback to /usr/lib/os-release when /etc/os-release isn't available [#262]

BUG FIXES:

  • Fixed subprocess.CalledProcessError when running lsb_release [#261]
  • Ignore /etc/iredmail-release file while parsing distribution [#268]
  • Use a binary file for /dev/null to avoid TextIOWrapper overhead [#271]

RELEASE:

Changelog

Sourced from distro's changelog.

1.6.0 (2021.7.30)

BACKWARDS COMPATIBILITY:

  • Deprecated the distro.linux_distribution() function. Use distro.id(), distro.version() and distro.name() instead [#296]
  • Deprecated Python 2.7, 3.4 and 3.5 support. Further releases will only support Python 3.6+

ENHANCEMENTS:

  • Added type hints to distro module [#269]
  • Added __version__ for checking distro version [#292]
  • Added support for arbitrary rootfs via the root_dir parameter [#247]
  • Added the --root-dir option to CLI [#161]
  • Added fallback to /usr/lib/os-release when /etc/os-release isn't available [#262]

BUG FIXES:

  • Fixed subprocess.CalledProcessError when running lsb_release [#261]
  • Ignore /etc/iredmail-release file while parsing distribution [#268]
  • Use a binary file for /dev/null to avoid TextIOWrapper overhead [#271]

RELEASE:

Commits
  • 116cdad Fix release date for 1.6.0
  • 64946a1 Release v1.6.0
  • b6dd149 Simplify tox and GitHub actions configuration
  • 80458de Fix warnings while building documentation
  • 529c9cf Recreate docsumentation config with modern options
  • f947776 Formally deprecate distro.linux_distribution()
  • f7371a4 Update platform.linux_distribution links to Python 3.7
  • a3da4d4 Replace setup.py with declarative setup.cfg
  • b5a1a1e Honors /usr/lib/os-release when /etc/os-release is not available (#262)
  • 53a031d Use binary file for devnull (#271)
  • Additional commits viewable in compare view

Dependabot compatibility score

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)

@codecov
Copy link

codecov bot commented Aug 2, 2021

Codecov Report

Merging #2968 (8e4266e) into master (247992b) will decrease coverage by 9.51%.
The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff             @@
##           master    #2968      +/-   ##
==========================================
- Coverage   45.07%   35.56%   -9.52%     
==========================================
  Files          92       92              
  Lines       15422    15422              
==========================================
- Hits         6952     5485    -1467     
- Misses       8470     9937    +1467     
Flag Coverage Δ
functional 17.54% <ø> (-18.13%) ⬇️
integration 1.16% <ø> (ø)
unit 35.51% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ
nxdrive/updater/base.py 25.64% <0.00%> (-49.58%) ⬇️
nxdrive/engine/tracker.py 50.00% <0.00%> (-45.29%) ⬇️
nxdrive/engine/engine.py 20.22% <0.00%> (-38.29%) ⬇️
nxdrive/poll_workers.py 39.32% <0.00%> (-34.84%) ⬇️
nxdrive/client/local/linux.py 58.33% <0.00%> (-29.17%) ⬇️
nxdrive/direct_edit.py 17.96% <0.00%> (-26.88%) ⬇️
nxdrive/client/local/windows.py 53.84% <0.00%> (-25.97%) ⬇️
nxdrive/osi/windows/windows.py 44.13% <0.00%> (-25.52%) ⬇️
nxdrive/client/local/darwin.py 65.75% <0.00%> (-24.66%) ⬇️
nxdrive/client/local/base.py 31.91% <0.00%> (-24.02%) ⬇️
... and 29 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 1c3d7ad...8e4266e. Read the comment docs.

@mr-shekhar
Copy link
Collaborator

@dependabot rebase

@dependabot dependabot bot force-pushed the dependabot/pip/tools/deps/distro-1.6.0 branch from 4b3c9b1 to 6cb4464 Compare November 9, 2021 10:58
@rom1win rom1win assigned mr-shekhar and unassigned rom1win Dec 2, 2021
@mr-shekhar
Copy link
Collaborator

@dependabot rebase

Bumps [distro](https://github.com/python-distro/distro) from 1.5.0 to 1.6.0.
- [Release notes](https://github.com/python-distro/distro/releases)
- [Changelog](https://github.com/python-distro/distro/blob/master/CHANGELOG.md)
- [Commits](python-distro/distro@v1.5.0...v1.6.0)

---
updated-dependencies:
- dependency-name: distro
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pip/tools/deps/distro-1.6.0 branch from 6cb4464 to 8e4266e Compare January 3, 2022 06:47
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 16, 2022

Superseded by #3391.

@dependabot dependabot bot closed this Feb 16, 2022
@dependabot dependabot bot deleted the dependabot/pip/tools/deps/distro-1.6.0 branch February 16, 2022 12:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants