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 requirements group with 6 updates #1877

Closed
wants to merge 2 commits into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 13, 2024

Bumps the requirements group with 6 updates:

Package From To
azure-storage-blob 12.16.0 12.20.0
pymongo 4.6.3 4.7.2
fsspec 2023.12.2 2024.3.1
s3fs 2023.12.2 2024.3.1
setuptools-scm 8.0.4 8.1.0
pytest 8.1.1 8.2.0

Updates azure-storage-blob from 12.16.0 to 12.20.0

Release notes

Sourced from azure-storage-blob's releases.

azure-storage-blob_12.20.0

12.20.0 (2024-05-07)

Features Added

  • Stable release of features from 12.20.0b1

azure-storage-blob_12.20.0b1

12.20.0b1 (2024-04-16)

This version and all future versions will require Python 3.8+. Python 3.7 is no longer supported.

Features Added

  • Added support for service version 2024-05-04.
  • The services parameter has been added to the generate_account_sas API, which enables the ability to generate SAS tokens to be used with multiple services. By default, the SAS token service scope will default to the current service.

Bugs Fixed

  • Bumped dependency of typing-extensions to >=4.6.0 to avoid potential TypeError with typing.TypeVar on Python 3.12.
  • Fixed an issue where authentication errors could raise AttributeError instead of ClientAuthenticationError when using async OAuth credentials.
  • Fixed a typing issue which incorrectly typed the readinto API. The correct input type is IO[bytes].
  • Fixed a typo in the initialization of completion_time for the CopyProperties model.
  • Fixed a couple of issues with upload_blob when using Iterators/Generators as the data input.

Other Changes

  • Passing prefix to the following ContainerClient APIs now raises a ValueError: list_blobs, list_blobs_names, and walk_blobs. This change was made to avoid confusion for filtering results. The name_starts_with parameter is the correct parameter to pass for filtering.
Commits

Updates pymongo from 4.6.3 to 4.7.2

Release notes

Sourced from pymongo's releases.

PyMongo 4.7.2

Community Notes: https://www.mongodb.com/community/forums/t/pymongo-4-7-2-released/279584

PyMongo 4.7.1

Community release note: https://www.mongodb.com/community/forums/t/pymongo-4-7-1-released/278459

PyMongo 4.7.0

Community notes: https://www.mongodb.com/community/forums/t/pymongo-4-7-0-released/277656

Changelog

Sourced from pymongo's changelog.

Changes in Version 4.7.2

Version 4.7.2 fixes a bug introduced in 4.7.0:

  • Fixed a bug where PyMongo could not be used with the Nuitka compiler.

Issues Resolved ...............

See the PyMongo 4.7.2 release notes in JIRA_ for the list of resolved issues in this release.

.. _PyMongo 4.7.2 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=39710

Changes in Version 4.7.1

Version 4.7.1 fixes a bug introduced in 4.7.0:

  • Fixed a bug where PyMongo would cause an AttributeError if dns.resolver was imported and referenced after PyMongo was imported.
  • Clarified the behavior of the TOKEN_RESOURCE auth mechanism property for MONGODB-OIDC.

Issues Resolved ...............

See the PyMongo 4.7.1 release notes in JIRA_ for the list of resolved issues in this release.

.. _PyMongo 4.7.1 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=39680

Changes in Version 4.7

PyMongo 4.7 brings a number of improvements including:

  • Added support for MONGODB-OIDC authentication. The MONGODB-OIDC mechanism authenticates using an OpenID Connect (OIDC) access token. The driver supports OIDC for workload identity, defined as an identity you assign to a software workload (such as an application, service, script, or container) to authenticate and access other services and resources. Please see :doc:examples/authentication for more information.
  • Added support for Python's native logging library <https://docs.python.org/3/howto/logging.html>_, enabling developers to customize the verbosity of log messages for their applications. Please see :doc:examples/logging for more information.
  • Significantly improved the performance of encoding BSON documents to JSON.
  • Added support for named KMS providers for client side field level encryption. Previously supported KMS providers were only: aws, azure, gcp, kmip, and local. The KMS provider is now expanded to support name suffixes (e.g. local:myname).

... (truncated)

Commits

Updates fsspec from 2023.12.2 to 2024.3.1

Commits

Updates s3fs from 2023.12.2 to 2024.3.1

Commits

Updates setuptools-scm from 8.0.4 to 8.1.0

Release notes

Sourced from setuptools-scm's releases.

v8.1.0

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from setuptools-scm's changelog.

Commits
  • 234b74f Merge pull request #1039 from ap--/fix-timezone-error
  • 3e613cd [pre-commit.ci] auto fixes from pre-commit.com hooks
  • 49a89c9 setuptools_scm.git: fix handling of dates in isoformat ending with Z
  • 9645373 tests: add git get_head_date test for isoformat dates ending with Z
  • d75201a Merge pull request #1024 from danchr/hg-archive-branch
  • d8d2b86 Merge pull request #1033 from LecrisUT/fix/git_archival
  • 9ea57a0 Make .git_archival.txt more reproducible
  • d081257 Merge pull request #1027 from pypa/pre-commit-ci-update-config
  • c9b3860 [pre-commit.ci] pre-commit autoupdate
  • 1ac50c2 Merge pull request #1026 from pypa/pre-commit-ci-update-config
  • Additional commits viewable in compare view

Updates pytest from 8.1.1 to 8.2.0

Release notes

Sourced from pytest's releases.

8.2.0

pytest 8.2.0 (2024-04-27)

Deprecations

  • #12069: A deprecation warning is now raised when implementations of one of the following hooks request a deprecated py.path.local parameter instead of the pathlib.Path parameter which replaced it:

    • pytest_ignore_collect{.interpreted-text role="hook"} - the path parameter - use collection_path instead.
    • pytest_collect_file{.interpreted-text role="hook"} - the path parameter - use file_path instead.
    • pytest_pycollect_makemodule{.interpreted-text role="hook"} - the path parameter - use module_path instead.
    • pytest_report_header{.interpreted-text role="hook"} - the startdir parameter - use start_path instead.
    • pytest_report_collectionfinish{.interpreted-text role="hook"} - the startdir parameter - use start_path instead.

    The replacement parameters are available since pytest 7.0.0. The old parameters will be removed in pytest 9.0.0.

    See legacy-path-hooks-deprecated{.interpreted-text role="ref"} for more details.

Features

  • #11871: Added support for reading command line arguments from a file using the prefix character @, like e.g.: pytest @tests.txt. The file must have one argument per line.

    See Read arguments from file <args-from-file>{.interpreted-text role="ref"} for details.

Improvements

  • #11523: pytest.importorskip{.interpreted-text role="func"} will now issue a warning if the module could be found, but raised ImportError{.interpreted-text role="class"} instead of ModuleNotFoundError{.interpreted-text role="class"}.

    The warning can be suppressed by passing exc_type=ImportError to pytest.importorskip{.interpreted-text role="func"}.

    See import-or-skip-import-error{.interpreted-text role="ref"} for details.

  • #11728: For unittest-based tests, exceptions during class cleanup (as raised by functions registered with TestCase.addClassCleanup <unittest.TestCase.addClassCleanup>{.interpreted-text role="meth"}) are now reported instead of silently failing.

  • #11777: Text is no longer truncated in the short test summary info section when -vv is given.

  • #12112: Improved namespace packages detection when consider_namespace_packages{.interpreted-text role="confval"} is enabled, covering more situations (like editable installs).

  • #9502: Added PYTEST_VERSION{.interpreted-text role="envvar"} environment variable which is defined at the start of the pytest session and undefined afterwards. It contains the value of pytest.__version__, and among other things can be used to easily check if code is running from within a pytest run.

Bug Fixes

  • #12065: Fixed a regression in pytest 8.0.0 where test classes containing setup_method and tests using @staticmethod or @classmethod would crash with AttributeError: 'NoneType' object has no attribute 'setup_method'.

    Now the request.instance <pytest.FixtureRequest.instance>{.interpreted-text role="attr"} attribute of tests using @staticmethod and @classmethod is no longer None, but a fresh instance of the class, like in non-static methods.

... (truncated)

Commits
  • 6bd3f31 Tweak changelog for 8.2.0
  • 9b6219b Prepare release version 8.2.0
  • 835765c Merge pull request #12130 from bluetech/fixtures-inline
  • 7e7503c unittest: report class cleanup exceptions (#12250)
  • 882c4da fixtures: inline fail_fixturefunc
  • 2e8fb9f fixtures: extract a _check_fixturedef method
  • acf2971 fixtures: inline _getnextfixturedef into _get_active_fixturedef
  • 3c77aec fixtures: move "request" check early
  • d217d68 fixtures: inline _compute_fixture_value
  • 530be28 fixtures: use early return in _get_active_fixturedef
  • 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 requirements group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [azure-storage-blob](https://github.com/Azure/azure-sdk-for-python) | `12.16.0` | `12.20.0` |
| [pymongo](https://github.com/mongodb/mongo-python-driver) | `4.6.3` | `4.7.2` |
| [fsspec](https://github.com/fsspec/filesystem_spec) | `2023.12.2` | `2024.3.1` |
| [s3fs](https://github.com/fsspec/s3fs) | `2023.12.2` | `2024.3.1` |
| [setuptools-scm](https://github.com/pypa/setuptools_scm) | `8.0.4` | `8.1.0` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.1.1` | `8.2.0` |


Updates `azure-storage-blob` from 12.16.0 to 12.20.0
- [Release notes](https://github.com/Azure/azure-sdk-for-python/releases)
- [Changelog](https://github.com/Azure/azure-sdk-for-python/blob/main/doc/esrp_release.md)
- [Commits](Azure/azure-sdk-for-python@azure-storage-blob_12.16.0...azure-storage-blob_12.20.0)

Updates `pymongo` from 4.6.3 to 4.7.2
- [Release notes](https://github.com/mongodb/mongo-python-driver/releases)
- [Changelog](https://github.com/mongodb/mongo-python-driver/blob/master/doc/changelog.rst)
- [Commits](mongodb/mongo-python-driver@4.6.3...4.7.2)

Updates `fsspec` from 2023.12.2 to 2024.3.1
- [Commits](fsspec/filesystem_spec@2023.12.2...2024.3.1)

Updates `s3fs` from 2023.12.2 to 2024.3.1
- [Changelog](https://github.com/fsspec/s3fs/blob/main/release-procedure.md)
- [Commits](fsspec/s3fs@2023.12.2...2024.3.1)

Updates `setuptools-scm` from 8.0.4 to 8.1.0
- [Release notes](https://github.com/pypa/setuptools_scm/releases)
- [Changelog](https://github.com/pypa/setuptools_scm/blob/main/CHANGELOG.md)
- [Commits](pypa/setuptools_scm@v8.0.4...v8.1.0)

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

---
updated-dependencies:
- dependency-name: azure-storage-blob
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: requirements
- dependency-name: pymongo
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: requirements
- dependency-name: fsspec
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: requirements
- dependency-name: s3fs
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: requirements
- dependency-name: setuptools-scm
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: requirements
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: requirements
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels May 13, 2024
@jhamman
Copy link
Member

jhamman commented May 14, 2024

@martindurant - if you have a minute to look at the failures here, they all seem to be in TestFSStore.

@martindurant
Copy link
Member

The test_complex failures are genuine changes: fsspec now cached writes via the file-like API on a caching filesystem:

fs = fsspec.get_mapper("simplecache", ...)
with fs.open(..., "wb") as f: # created local file in cache directory
    f.write() # writes to that file
# file is uploaded on context exit, but local copy it retained

The remaining ones are doing ls(path) where path is a file (not a directory). For a filesystem, this returns [path] (when details=False) and has for some time. The only relevant change, is that paths have any trailing "/" characters removed, since keys must always be files not directories. I think, therefore, that the test is now showing correct behaviour and before wasn't - so it can be updated to the changed value of ["f"] in the affected line.

@jhamman jhamman mentioned this pull request May 17, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github May 23, 2024

The group that created this PR has been removed from your configuration.

@dependabot dependabot bot closed this May 23, 2024
@dependabot dependabot bot deleted the dependabot/pip/requirements-f0ddffe76a branch May 23, 2024 22:42
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.

None yet

2 participants