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 the production-dependencies group with 5 updates #928

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 26, 2024

Updates the requirements on kiwixstorage, docker, ujson, zimscraperlib and paramiko to permit the latest version.
Updates kiwixstorage from 0.6 to 0.8.3

Changelog

Sourced from kiwixstorage's changelog.

[0.8.3] - 2022-06-03

Added

  • s3upload script to upload single file using S3URL environment variable
  • kiwixstorage.__version__ now available as well

Changed

  • Default progress output when humanfriendly is not present now adds “ bytes” suffix.

[0.8.2] - 2022-05-18

Changed

  • Fixed delete_object() which contained a typo.

[0.8.1]

  • Added download_matching_file() and download_matching_fileobj() to download a key matching metadata in a single request. Comparison is performed after download

[0.8]

  • fixed upload_fileobj() (typo)

[0.7]

  • fixed download_fileobj() (typo)
Commits
  • ddf1662 Merge pull request #10 from openzim/upload-script
  • ba22929 Added s3upload script to upload single file using S3URL environ
  • 0082715 Fixed which contained a typo
  • 3556dae fixed get_wasabi_compliance when used without bucket_name
  • e432b19 Fixed a redefined-argument-from-local (pylint)
  • 1463a80 Fixed codefactor badge
  • c17c5a0 Merge pull request #9 from openzim/default-github-conf
  • fcb59c9 missing EOL
  • 3524a09 Merge pull request #8 from openzim/kelson42-patch-1
  • c1569c7 Github default configuration
  • Additional commits viewable in compare view

Updates docker to 7.0.0

Release notes

Sourced from docker's releases.

7.0.0

Upgrade Notes (from 6.x) ⚠️

  • Removed SSL version (ssl_version) and explicit hostname check (assert_hostname) options (#3185)
    • assert_hostname has not been used since Python 3.6 and was removed in 3.12
    • Python 3.7+ supports TLSv1.3 by default
  • Websocket support is no longer included by default (#3123)
    • Use pip install docker[websockets] to include websocket-client dependency
    • By default, docker-py hijacks the TCP connection and does not use Websockets
    • Websocket client is only required to use attach_socket(container, ws=True)
  • Python 3.7 no longer supported (reached end-of-life June 2023) (#3187)

Features ✨

  • Python 3.12 support (#3185)
  • Full networking_config support for containers.create() (#3121)
    • Replaces network_driver_opt (added in 6.1.0)
  • Add health() property to container that returns status (e.g. unhealthy) (#3147)
  • Add pause option to container.commit() (#3159)
  • Add support for bind mount propagation (e.g. rshared, private) (#3164)
  • Add support for filters, keep_storage, and all in prune_builds() on API v1.39+ (#3192)

Bugfixes 🐛

  • Consistently return docker.errors.NotFound on 404 responses (#3156)
  • Validate tag format before push (#3191)

Miscellaneous 🔧

  • Upgraded urllib3 version in requirements.txt (used for development/tests) (#3183)
  • Documentation typo fixes & formatting improvements (#3130)
  • Fixed integration test compatibility for newer Moby engine versions (#3165, #3166, #3145, #3169, #3170)
  • Switch to ruff for linting (#3126)

What's Changed

... (truncated)

Commits
  • 7d8a161 Merge pull request #3193 from milas/prep-7.0
  • 5388413 chore: update changelog and maintainer
  • 3d0a3f1 feat: accept all / filters / keep_storage in prune_builds (#3192)
  • a9b5494 fix: validate tag before build using OCI regex (#3191)
  • cb8f2c6 chore: fix missing setuptools in CI (#3189)
  • 7140969 chore: update MAINTAINERS and remove CODEOWNERS (#3188)
  • 586988c chore: remove support for Python 3.7 (#3187)
  • fd2f502 chore: add changelog for 7.0.0 (#3186)
  • db48781 breaking: Python 3.12 compatibility & remove custom SSL adapter (#3185)
  • 976c84c build(deps): Bump urllib3 from 1.26.11 to 1.26.18 (#3183)
  • Additional commits viewable in compare view

Updates ujson to 5.9.0

Release notes

Sourced from ujson's releases.

5.9.0

Breaking

  • Raise TypeError if toDict() returns a non-dict instead of silently converting it to null (#615) @​eltoder
  • Use lowercase strings for bool dict keys (#614) @​eltoder

Added

Changed

Fixed

Commits
  • 381f248 Speedup dumps with sorted keys
  • eda5ecd Speed-up and cleanup objToJSON
  • a08b75b Use lowercase strings for bool dict keys
  • 1c8188d Update pypa/cibuildwheel action to v2.16.2 (#612)
  • 40e342e Don't invoke setup.py directly
  • 87c2a9d Update pypa/cibuildwheel action to v2.16.2
  • 748dd1b README: replace expired esn.me with example.com (#611)
  • b348b90 README: replace expired esn.me with example.com
  • b7a4dfd Fix typos found by codespell (#610)
  • e00814c [pre-commit.ci] pre-commit autoupdate
  • Additional commits viewable in compare view

Updates zimscraperlib to 3.3.0

Release notes

Sourced from zimscraperlib's releases.

3.3.0

Added

  • New disable_metadata_checks parameter in zimscraperlib.zim.creator.Creator initializer, allowing to disable metadata check at startup (assuming the user will validate them on its own) #119

Changed

  • Rework the VideoWebmLow preset for faster encoding and smaller file size #122
    • preset has been bumped to version 2
    • when using an S3 cache, all videos using this preset will be reencoded and uploaded to cache again (it will replace the same file encoded with preset version 1)
  • When reencoding a video, ffmpeg now uses only 1 CPU thread by default (new arg to reencode allows to override this default value)
  • Using openZIM Python bootstrap conventions (including hatch-openzim plugin) #120
  • Add support for Python 3.12, drop Python 3.7 support #118
  • Replace "iso-369" by "iso639-lang" library
  • Replace "file-magic" by "python-magic" library for Alpine Linux support and better maintenance

Fixed

  • Fixed type hints of zimscraperlib.zim.Item and subclasses, and zimscraperlib.image.optimization:convert_image
Changelog

Sourced from zimscraperlib's changelog.

[3.3.0] - 2024-02-14

Added

  • New disable_metadata_checks parameter in zimscraperlib.zim.creator.Creator initializer, allowing to disable metadata check at startup (assuming the user will validate them on its own) #119

Changed

  • Rework the VideoWebmLow preset for faster encoding and smaller file size #122
    • preset has been bumped to version 2
    • when using an S3 cache, all videos using this preset will be reencoded and uploaded to cache again (it will replace the same file encoded with preset version 1)
  • When reencoding a video, ffmpeg now uses only 1 CPU thread by default (new arg to reencode allows to override this default value)
  • Using openZIM Python bootstrap conventions (including hatch-openzim plugin) #120
  • Add support for Python 3.12, drop Python 3.7 support #118
  • Replace "iso-369" by "iso639-lang" library
  • Replace "file-magic" by "python-magic" library for Alpine Linux support and better maintenance

Fixed

  • Fixed type hints of zimscraperlib.zim.Item and subclasses, and zimscraperlib.image.optimization:convert_image

[3.2.0] - 2023-12-16

Added

  • Add utility function to compute/check ZIM descriptions #110

Changed

  • Using pylibzim 3.4.0

Removed

  • Support for Python 3.7 (EOL)

[3.1.1] - 2023-07-18

Changed

  • Fixed declared (hint) return type of download.stream_file #104
  • Fixed declared (hint) type of content param for Creator.add_item_for #107

[3.1.0] - 2023-05-05

Changed

  • Using pylibzim 3.1.0
  • ZIM metadata check now allows multiple values (comma-separated) for Language
  • Using yt_dlp instead of youtube_dl

... (truncated)

Commits
  • 04181e9 Release 3.3.0
  • 97ff950 Polish changelog
  • 604e16d Merge pull request #136 from openzim/small_fixes
  • d180e35 Always set item attributes when passed, even if 'False'/empty/whatever
  • dab7b11 Use new StaticItem parameters for add_item_for
  • d2895ee libzim StringProvider support both bytes and str for content
  • 7e19b92 Fix disable_metadata_checks behavior
  • a25ec60 Merge pull request #135 from openzim/relax_metadata_check
  • 8d6795e Rename auto_metadata_checks to disable_metadata_checks
  • 1a9b8f7 New auto_metadata_check parameter in zimscraperlib.zim.creator.Creator in...
  • Additional commits viewable in compare view

Updates paramiko from 2.11.0 to 3.4.0

Commits
  • f0881ba Cut 3.4.0
  • 3e4bdf9 Changelog/comment updates
  • 30b447b Linting
  • 33508c9 Expand MessageOrderError use to handle more packet types
  • 96db1e2 Raise exception when sequence numbers rollover during initial kex
  • 58785d2 Changelog tweak re: other new Transport kwarg
  • 8dcb237 Test-suite-only bugfix: defer did not actually imply skip_verify
  • fa46de7 Reset sequence numbers on rekey
  • 75e311d Enforce zero seqno on kexinit
  • 73f079f Fill in CVE number for Terrapin attack
  • 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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Feb 26, 2024
Updates the requirements on [kiwixstorage](https://github.com/kiwix/python_storagelib), [docker](https://github.com/docker/docker-py), [ujson](https://github.com/ultrajson/ultrajson), [zimscraperlib](https://github.com/openzim/python-scraperlib) and [paramiko](https://github.com/paramiko/paramiko) to permit the latest version.

Updates `kiwixstorage` from 0.6 to 0.8.3
- [Changelog](https://github.com/openzim/python-storagelib/blob/main/CHANGELOG.md)
- [Commits](openzim/python-storagelib@v0.6...v0.8.3)

Updates `docker` to 7.0.0
- [Release notes](https://github.com/docker/docker-py/releases)
- [Commits](docker/docker-py@6.0.1...7.0.0)

Updates `ujson` to 5.9.0
- [Release notes](https://github.com/ultrajson/ultrajson/releases)
- [Commits](ultrajson/ultrajson@5.1.0...5.9.0)

Updates `zimscraperlib` to 3.3.0
- [Release notes](https://github.com/openzim/python-scraperlib/releases)
- [Changelog](https://github.com/openzim/python-scraperlib/blob/main/CHANGELOG.md)
- [Commits](openzim/python-scraperlib@v1.4.1...v3.3.0)

Updates `paramiko` from 2.11.0 to 3.4.0
- [Commits](paramiko/paramiko@2.11.0...3.4.0)

---
updated-dependencies:
- dependency-name: kiwixstorage
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: docker
  dependency-type: direct:production
  dependency-group: production-dependencies
- dependency-name: ujson
  dependency-type: direct:production
  dependency-group: production-dependencies
- dependency-name: zimscraperlib
  dependency-type: direct:production
  dependency-group: production-dependencies
- dependency-name: paramiko
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pip/production-dependencies-1854a65934 branch from 1130f34 to 3723efb Compare February 26, 2024 16:58
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 28, 2024

Superseded by #932.

@dependabot dependabot bot closed this Feb 28, 2024
@dependabot dependabot bot deleted the dependabot/pip/production-dependencies-1854a65934 branch February 28, 2024 04:26
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