python-bigquery-pandas
python-bigquery-pandas copied to clipboard
chore(deps): update all dependencies
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence | Type | Update |
|---|---|---|---|---|---|---|---|
| argcomplete (changelog) | ==3.2.3 -> ==3.4.0 |
minor | |||||
| filelock | ==3.13.1 -> ==3.15.3 |
minor | |||||
| nox | ==2024.3.2 -> ==2024.4.15 |
minor | |||||
| packaging | ==24.0 -> ==24.1 |
minor | |||||
| platformdirs | ==4.2.0 -> ==4.2.2 |
patch | |||||
| ubuntu | 22.04 -> 24.04 |
final | major | ||||
| virtualenv | ==20.25.1 -> ==20.26.2 |
minor |
Release Notes
kislyuk/argcomplete (argcomplete)
v3.4.0
===============================
-
No stdin for python calls from bash completion functions (#488)
Prevents usage of stdin by (python) executables that are called during completion generation. This prevents the completion locking up the entire shell when the python script is broken i.e. it enters an interactive mode (REPL) instead of generating the completions, as expected.
-
Localize shell variable REPLY to avoid overwriting users’ value (#489)
The variable REPLY is used by default by the
readshell builtin to store the return value, and like all bash/zsh variables, is scoped globally. This change allows this variable to be used for other needs by appropriately scoping its internal use by an argcomplete utility function that usesread.
v3.3.0
===============================
- 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+.
tox-dev/py-filelock (filelock)
v3.15.3
What's Changed
- Add test for virtualenv stability by @gaborbernat in https://github.com/tox-dev/filelock/pull/344
- Fix
TypeError: _CountedFileLock.__init__() got an unexpected keyword argument 'timeout'by @kwist-sgr in https://github.com/tox-dev/filelock/pull/345
Full Changelog: https://github.com/tox-dev/filelock/compare/3.15.2...3.15.3
v3.15.2
What's Changed
- Use a metaclass to implement the singleton pattern by @kwist-sgr in https://github.com/tox-dev/filelock/pull/340
New Contributors
- @kwist-sgr made their first contribution in https://github.com/tox-dev/filelock/pull/340
Full Changelog: https://github.com/tox-dev/filelock/compare/3.15.1...3.15.2
v3.15.1
What's Changed
- Hotfix: Restore init method; more robust initialization for singleton locks by @ethanbb in https://github.com/tox-dev/filelock/pull/338
Full Changelog: https://github.com/tox-dev/filelock/compare/3.15.0...3.15.1
v3.15.0
What's Changed
- asyncio support by @Ovizro in https://github.com/tox-dev/filelock/pull/332
- Don't initialize BaseFileLock when just returning existing instance by @ethanbb in https://github.com/tox-dev/filelock/pull/334
New Contributors
- @Ovizro made their first contribution in https://github.com/tox-dev/filelock/pull/332
- @ethanbb made their first contribution in https://github.com/tox-dev/filelock/pull/334
Full Changelog: https://github.com/tox-dev/filelock/compare/3.14.0...3.15.0
v3.14.0
What's Changed
- feat:
blockingparameter on lock constructor with tests and docs by @iamkhav in https://github.com/tox-dev/filelock/pull/325
New Contributors
- @iamkhav made their first contribution in https://github.com/tox-dev/filelock/pull/325
Full Changelog: https://github.com/tox-dev/filelock/compare/3.13.4...3.14.0
v3.13.4
What's Changed
- Raise error on incompatible singleton timeout and mode args by @nefrob in https://github.com/tox-dev/filelock/pull/320
Full Changelog: https://github.com/tox-dev/filelock/compare/3.13.3...3.13.4
v3.13.3
What's Changed
- Make singleton class instance dict unique per subclass by @nefrob in https://github.com/tox-dev/filelock/pull/318
Full Changelog: https://github.com/tox-dev/filelock/compare/3.13.2...3.13.3
v3.13.2
What's Changed
- Fixed small typo in _unix.py by @snemes in https://github.com/tox-dev/filelock/pull/302
- Update SECURITY.md to reflect Python 3.7 support dropoff by @kemzeb in https://github.com/tox-dev/filelock/pull/304
- Update index.rst to improve the demo usage by @youkaichao in https://github.com/tox-dev/filelock/pull/314
- [BugFix] fix permission denied error when lock file is placed in
/tmpby @kota-iizuka in https://github.com/tox-dev/filelock/pull/317
New Contributors
- @snemes made their first contribution in https://github.com/tox-dev/filelock/pull/302
- @kemzeb made their first contribution in https://github.com/tox-dev/filelock/pull/304
- @youkaichao made their first contribution in https://github.com/tox-dev/filelock/pull/314
- @kota-iizuka made their first contribution in https://github.com/tox-dev/filelock/pull/317
Full Changelog: https://github.com/tox-dev/filelock/compare/3.13.1...3.13.2
pypa/packaging (packaging)
v24.1
What's Changed
- pyupgrade/black/isort/flake8 → ruff by @DimitriPapadopoulos in https://github.com/pypa/packaging/pull/769
- Add support for Python 3.13 and drop EOL 3.7 by @hugovk in https://github.com/pypa/packaging/pull/783
- Bump the github-actions group with 4 updates by @dependabot in https://github.com/pypa/packaging/pull/782
- Fix typo in
_parserdocstring by @pradyunsg in https://github.com/pypa/packaging/pull/784 - Modernise type annotations using FA rules from ruff by @pradyunsg in https://github.com/pypa/packaging/pull/785
- Document
markers.default_environment()by @edgarrmondragon in https://github.com/pypa/packaging/pull/753 - Bump the github-actions group with 3 updates by @dependabot in https://github.com/pypa/packaging/pull/789
- Work around platform.python_version() returning non PEP 440 compliant version for non-tagged CPython builds by @sbidoul in https://github.com/pypa/packaging/pull/802
New Contributors
- @dependabot made their first contribution in https://github.com/pypa/packaging/pull/782
- @edgarrmondragon made their first contribution in https://github.com/pypa/packaging/pull/753
Full Changelog: https://github.com/pypa/packaging/compare/24.0...24.1
platformdirs/platformdirs (platformdirs)
v4.2.2
What's Changed
- Fix android detection when python4android is present by @tmolitor-stud-tu in https://github.com/platformdirs/platformdirs/pull/277
New Contributors
- @tmolitor-stud-tu made their first contribution in https://github.com/platformdirs/platformdirs/pull/277
Full Changelog: https://github.com/platformdirs/platformdirs/compare/4.2.1...4.2.2
v4.2.1
What's Changed
- Switch to ruff for formatting and use codespell and docformatter by @gaborbernat in https://github.com/platformdirs/platformdirs/pull/261
- Use hatch over tox by @gaborbernat in https://github.com/platformdirs/platformdirs/pull/262
- chore: various minor fixes by @deronnax in https://github.com/platformdirs/platformdirs/pull/263
- chore: update dead Microsoft's known folders documentation link by @deronnax in https://github.com/platformdirs/platformdirs/pull/267
- Allow working without ctypes by @youknowone in https://github.com/platformdirs/platformdirs/pull/275
New Contributors
- @deronnax made their first contribution in https://github.com/platformdirs/platformdirs/pull/263
- @youknowone made their first contribution in https://github.com/platformdirs/platformdirs/pull/275
Full Changelog: https://github.com/platformdirs/platformdirs/compare/4.2.0...4.2.1
pypa/virtualenv (virtualenv)
v20.26.2
v20.26.1
v20.26.0
What's Changed
- release 20.25.3 by @gaborbernat in https://github.com/pypa/virtualenv/pull/2704
- Fixed a case when template variable is WindowsPath by @NtWriteCode in https://github.com/pypa/virtualenv/pull/2707
- Allow builtin interpreter discovery to find specific Python versions given a general spec by @flying-sheep in https://github.com/pypa/virtualenv/pull/2709
New Contributors
- @NtWriteCode made their first contribution in https://github.com/pypa/virtualenv/pull/2707
- @flying-sheep made their first contribution in https://github.com/pypa/virtualenv/pull/2709
Full Changelog: https://github.com/pypa/virtualenv/compare/20.25.3...20.26.0
v20.25.3
What's Changed
- release 20.25.2 by @gaborbernat in https://github.com/pypa/virtualenv/pull/2703
- Fix for tests: Python 3.13.0a6 renamed pathmod to parser by @befeleme in https://github.com/pypa/virtualenv/pull/2702
New Contributors
- @befeleme made their first contribution in https://github.com/pypa/virtualenv/pull/2702
Full Changelog: https://github.com/pypa/virtualenv/compare/20.25.2...20.25.3
v20.25.2
What's Changed
- release 20.25.1 by @gaborbernat in https://github.com/pypa/virtualenv/pull/2692
- Fix windows utf8 encoding issue by @PzaThief in https://github.com/pypa/virtualenv/pull/2687
- Update changelog.rst by @Callek in https://github.com/pypa/virtualenv/pull/2701
- Fix indentation in activate.fish by @junzh0u in https://github.com/pypa/virtualenv/pull/2700
New Contributors
- @PzaThief made their first contribution in https://github.com/pypa/virtualenv/pull/2687
- @Callek made their first contribution in https://github.com/pypa/virtualenv/pull/2701
- @junzh0u made their first contribution in https://github.com/pypa/virtualenv/pull/2700
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.
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.