Skip to content

Commit

Permalink
feat: remove vcr dependency and upgrade urllib3 (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlacho authored Jun 27, 2024
1 parent f4e9753 commit 98fa063
Show file tree
Hide file tree
Showing 9 changed files with 202 additions and 219 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning].
[Keep a Changelog]: https://keepachangelog.com/en/1.0.0/
[Semantic Versioning]: https://semver.org/spec/v2.0.0.html

## [4.3.2] - 2024-06-26
- Remove VCR dependencies
- Replaced unit tests that depended on VCR using `request_mock`
- Updated urllib3 to latest secure version

## [4.3.1] - 2024-06-20
- Update the urllib3 dependency to a secure version

Expand Down
2 changes: 1 addition & 1 deletion chartmogul/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "4.3.1"
__version__ = "4.3.2"
142 changes: 0 additions & 142 deletions fixtures/delete_invoice.yaml

This file was deleted.

60 changes: 0 additions & 60 deletions fixtures/fetch_account.yaml

This file was deleted.

1 change: 0 additions & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
-r requirements.txt
mock>=5.1.0
requests-mock>=1.11.0
vcrpy>=4.4.0
PyYAML>=6.0.1
httpretty>=1.1.4
wrapt>=1.15.0
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ uritemplate>=3.0.0
promise>=1.0.1
marshmallow>=3.19.0
future>=0.18.3
urllib3==1.26.19
urllib3==2.2.2
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,11 @@
"promise>=2.3.0",
"marshmallow>=3.19.0",
"future>=0.18.3",
"urllib3==1.26.19",
"urllib3==2.2.2",
]
test_requirements = [
"mock>=5.1.0",
"requests-mock>=1.11.0",
"vcrpy>=4.4.0",
"PyYAML>=6.0.1",
"httpretty>=1.1.4",
"wrapt>=1.15.0",
Expand Down
Loading

0 comments on commit 98fa063

Please sign in to comment.