Skip to content

Commit 43a63e0

Browse files
v5.19.0
1 parent 2497ce4 commit 43a63e0

3 files changed

Lines changed: 13 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
Here described only the breaking and most significant changes. The full changelog and documentation for all released versions could be found in nicely formatted [commit history](https://github.com/frictionlessdata/frictionless-py/commits/main).
44

5+
## v5.19.0
6+
7+
- Deprecation warning for Python 3.8 and 3.9 ahead of future end of support
8+
- fix: support latest versions for several dependencies (pandas v3, chardet
9+
v7)
10+
([#1768](https://github.com/frictionlessdata/frictionless-py/pull/1768))
11+
- fix: use an authentic User-Agent
12+
([#1758](https://github.com/frictionlessdata/frictionless-py/pull/1758))
13+
- fix: foreign keys accept self-referential and circular foreign keys
14+
([#1750](https://github.com/frictionlessdata/frictionless-py/pull/1750))
15+
516
## v5.18.1
617

718
- feat: add pass_row as configurable parameter for field_update

frictionless/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
try:
1414
# For python 3.8 only, that does not support pytest_cov v7
15-
from pytest_cov.embed import cleanup_on_sigterm
15+
from pytest_cov.embed import cleanup_on_sigterm # type: ignore
1616

1717
cleanup_on_sigterm()
1818
except ImportError:

frictionless/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# Version
77

8-
VERSION = "5.18.1"
8+
VERSION = "5.19.0"
99

1010
# General
1111

0 commit comments

Comments
 (0)