mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-10 01:25:34 +00:00
Compare commits
3 Commits
c7b5a53307
...
precommit-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8d47ca10d0 | ||
|
|
c7bb59ecd8 | ||
|
|
2183690da3 |
@@ -3,14 +3,14 @@
|
|||||||
|
|
||||||
repos:
|
repos:
|
||||||
- repo: https://github.com/astral-sh/ruff-pre-commit
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
||||||
rev: v0.14.5
|
rev: v0.14.8
|
||||||
hooks:
|
hooks:
|
||||||
- id: ruff
|
- id: ruff
|
||||||
args: ["--output-format=full"]
|
args: ["--output-format=full"]
|
||||||
- id: ruff-format
|
- id: ruff-format
|
||||||
|
|
||||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
rev: v5.0.0
|
rev: v6.0.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: check-merge-conflict
|
- id: check-merge-conflict
|
||||||
- id: end-of-file-fixer
|
- id: end-of-file-fixer
|
||||||
|
|||||||
@@ -7,9 +7,21 @@ For a full list of triaged issues, bugs and PRs and what release they are target
|
|||||||
|
|
||||||
All help in providing PRs to close out bug issues is appreciated. Even if that is providing a repo that fully replicates issues. We have very generous contributors that have added these to bug issues which meant another contributor picked up the bug and closed it out.
|
All help in providing PRs to close out bug issues is appreciated. Even if that is providing a repo that fully replicates issues. We have very generous contributors that have added these to bug issues which meant another contributor picked up the bug and closed it out.
|
||||||
|
|
||||||
- Unreleased
|
- 8.0.0
|
||||||
- Drop support for Python 3.9
|
- BREAKING: Drop support for Python 3.9 (major version bump) - thanks @jairhenrique
|
||||||
- Drop support for urllib3 < 2
|
- BREAKING: Drop support for urllib3 < 2 - fixes CVE warnings from urllib3 1.x (#926, #880) - thanks @jairhenrique
|
||||||
|
- New feature: ``drop_unused_requests`` option to remove unused interactions from cassettes (#763) - thanks @danielnsilva
|
||||||
|
- Rewrite httpx support to patch httpcore instead of httpx (#943) - thanks @seowalex
|
||||||
|
- Fixes ``httpx.ResponseNotRead`` exceptions (#832, #834)
|
||||||
|
- Fixes ``KeyError: 'follow_redirects'`` (#945)
|
||||||
|
- Adds support for custom httpx transports
|
||||||
|
- Fix HTTPS proxy handling - proxy address no longer ends up in cassette URIs (#809, #914) - thanks @alga
|
||||||
|
- Fix ``iscoroutinefunction`` deprecation warning on Python 3.14 - thanks @kloczek
|
||||||
|
- Only log message if response is appended - thanks @talfus-laddus
|
||||||
|
- Optimize urllib.parse calls - thanks @Martin-Brunthaler
|
||||||
|
- Fix CI for Ubuntu 24.04 - thanks @hartwork
|
||||||
|
- Various CI improvements: migrate to uv, update GitHub Actions - thanks @jairhenrique
|
||||||
|
- Various linting and test improvements - thanks @jairhenrique and @hartwork
|
||||||
|
|
||||||
- 7.0.0
|
- 7.0.0
|
||||||
- Drop support for python 3.8 (major version bump) - thanks @jairhenrique
|
- Drop support for python 3.8 (major version bump) - thanks @jairhenrique
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ from logging import NullHandler
|
|||||||
from .config import VCR
|
from .config import VCR
|
||||||
from .record_mode import RecordMode as mode # noqa: F401
|
from .record_mode import RecordMode as mode # noqa: F401
|
||||||
|
|
||||||
__version__ = "7.0.0"
|
__version__ = "8.0.0"
|
||||||
|
|
||||||
logging.getLogger(__name__).addHandler(NullHandler())
|
logging.getLogger(__name__).addHandler(NullHandler())
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user