python-bigquery-dataframes icon indicating copy to clipboard operation
python-bigquery-dataframes copied to clipboard

chore(deps): update all dependencies

Open renovate-bot opened this issue 1 year ago • 1 comments

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
argcomplete (changelog) ==3.2.3 -> ==3.3.0 age adoption passing confidence minor
bigframes ==1.4.0 -> ==1.6.0 age adoption passing confidence minor
filelock ==3.13.1 -> ==3.14.0 age adoption passing confidence minor
nox ==2024.3.2 -> ==2024.4.15 age adoption passing confidence minor
platformdirs ==4.2.0 -> ==4.2.2 age adoption passing confidence patch
pytest (changelog) ==8.1.1 -> ==8.2.0 age adoption passing confidence minor
ubuntu 22.04 -> 24.04 age adoption passing confidence final major
virtualenv ==20.25.1 -> ==20.26.2 age adoption passing confidence minor

Release Notes

kislyuk/argcomplete (argcomplete)

v3.3.0

Compare Source

===============================

  • Preserve compatibility with argparse option tuples of length 4. This update is required to use argcomplete on Python 3.11.9+ or 3.12.3+.
googleapis/python-bigquery-dataframes (bigframes)

v1.6.0

Compare Source

Features
Bug Fixes
  • Include index_col when selecting columns and filters in read_gbq_table (#​648) (e084e54)
Dependencies
  • Add jellyfish as a dependency for spelling correction (57ccabc)
Documentation

v1.5.0

Compare Source

Features
  • bigframes.options and bigframes.option_context now uses thread-local variables to prevent context managers in separate threads from affecting each other (#​652) (651fd7d)
  • Add ARIMAPlus.coef_ property exposing ML.ARIMA_COEFFICIENTS functionality (#​585) (81d1262)
  • Add a unique session_id to Session and allow cleaning up sessions (#​553) (c8d4e23)
  • Add the bigframes.bigquery sub-package with a bigframes.bigquery.array_length function (#​630) (9963f85)
  • Always do a query dry run when option.repr_mode == "deferred" (#​652) (651fd7d)
  • Custom query labels for compute options (#​638) (f561799)
  • Warn with DefaultIndexWarning from read_gbq on clustered/partitioned tables with no index_col or filters set (#​631, #​658) (2715d2b, 73064dd)
  • Support index_col=False in read_csv and engine="bigquery" (73064dd)
  • Support gcf max instance count in remote_function (#​657) (36578ab)
Bug Fixes
  • Don't raise UnknownLocationWarning for US or EU multi-regions (#​653) (8e4616b)
  • Fix bug with na in the column labels in stack (#​659) (4a34293)
  • Use explicit session in PaLM2TextGenerator (#​651) (e4f13c3)
Documentation
  • Add python code sample for multiple forecasting time series (#​531) (16866d2)
  • Fix the Palm2TextGenerator output token size (#​649) (c67e501)
tox-dev/py-filelock (filelock)

v3.14.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/tox-dev/filelock/compare/3.13.4...3.14.0

v3.13.4

Compare Source

What's Changed

Full Changelog: https://github.com/tox-dev/filelock/compare/3.13.3...3.13.4

v3.13.3

Compare Source

What's Changed

Full Changelog: https://github.com/tox-dev/filelock/compare/3.13.2...3.13.3

v3.13.2

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/tox-dev/filelock/compare/3.13.1...3.13.2

wntrblm/nox (nox)

v2024.4.15

Compare Source

platformdirs/platformdirs (platformdirs)

v4.2.2

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/platformdirs/platformdirs/compare/4.2.1...4.2.2

v4.2.1

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/platformdirs/platformdirs/compare/4.2.0...4.2.1

pytest-dev/pytest (pytest)

v8.2.0

Compare Source

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. Previously it was None, and all fixtures of such tests would share a single self.

  • #​12135: Fixed issue where fixtures adding their finalizer multiple times to fixtures they request would cause unreliable and non-intuitive teardown ordering in some instances.

  • #​12194: Fixed a bug with --importmode=importlib and --doctest-modules where child modules did not appear as attributes in parent modules.

  • #​1489: Fixed some instances where teardown of higher-scoped fixtures was not happening in the reverse order they were initialized in.

Trivial/Internal Changes

  • #​12069: pluggy>=1.5.0 is now required.
  • #​12167: cache <cache>{.interpreted-text role="ref"}: create supporting files (CACHEDIR.TAG, .gitignore, etc.) in a temporary directory to provide atomic semantics.

v8.1.2

Compare Source

pytest 8.1.2 (2024-04-26)

Bug Fixes

  • #​12114: Fixed error in pytest.approx{.interpreted-text role="func"} when used with [numpy]{.title-ref} arrays and comparing with other types.
pypa/virtualenv (virtualenv)

v20.26.2

Compare Source

v20.26.1

Compare Source

v20.26.0

Compare Source

What's Changed
New Contributors

Full Changelog: https://github.com/pypa/virtualenv/compare/20.25.3...20.26.0

v20.25.3

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/pypa/virtualenv/compare/20.25.2...20.25.3

v20.25.2

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/pypa/virtualenv/compare/20.25.1...20.25.2


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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • [ ] If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

renovate-bot avatar May 15 '24 14:05 renovate-bot

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

forking-renovate[bot] avatar May 15 '24 19:05 forking-renovate[bot]