diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2026-04-02 10:13:35 +0800 |
|---|---|---|
| committer | Khem Raj <khem.raj@oss.qualcomm.com> | 2026-04-01 19:29:07 -0700 |
| commit | b4a70a93730dbe2dfdb072dddc468550745b17b9 (patch) | |
| tree | 50fd9175d9dd8fb8c116ea6b7c4630aab69dc47d /meta-python/recipes-devtools/python/python3-dateparser_1.4.0.bb | |
| parent | 8e3de212f4fe3c6bb41960ecd0bade2603ac6da4 (diff) | |
| download | meta-openembedded-b4a70a93730dbe2dfdb072dddc468550745b17b9.tar.gz | |
python3-dateparser: upgrade 1.3.0 -> 1.4.0
Security fixes:
=================
- Remove import-time loading of timezone offset data from pickle to prevent
unsafe deserialization from packaged data
- Replace eval() use when parsing no_word_spacing with strict boolean
parsing to prevent code execution from locale metadata (#1056)
New features:
=============
- Add support for expressions like "N {interval} from now" in English (#1271)
- Add support for the en-US locale (#1222)
Fixes:
========
- Honor REQUIRE_PARTS for ambiguous month-number inputs by retrying with a
year-biased DATE_ORDER (#1298)
- Fix parsing word-number relative phrases such as "two days later" (#1316)
- Allow md5hash to work in FIPS environments (#1267)
Improvements:
=============
- Add Bosnian Cyrillic (ijekavica) date translations (#1293)
- Add a new browser-based demo to the project documentation (#1306)
- Update installation documentation to replace setup.py install guidance
- Add a project security policy
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-dateparser_1.4.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-dateparser_1.4.0.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-dateparser_1.4.0.bb b/meta-python/recipes-devtools/python/python3-dateparser_1.4.0.bb new file mode 100644 index 0000000000..27f9da83b6 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-dateparser_1.4.0.bb | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | DESCRIPTION = "Provides modules to easily parse localized dates in almost any string formats commonly found on web pages" | ||
| 2 | HOMEPAGE = "https://github.com/scrapinghub/dateparser" | ||
| 3 | LICENSE = "BSD-3-Clause" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3d3ed25571191e7aa3f55d0a6efe0051" | ||
| 5 | |||
| 6 | SRC_URI[sha256sum] = "97a21840d5ecdf7630c584f673338a5afac5dfe84f647baf4d7e8df98f9354a4" | ||
| 7 | |||
| 8 | PYPI_PACKAGE = "dateparser" | ||
| 9 | |||
| 10 | inherit pypi setuptools3 | ||
| 11 | |||
| 12 | CLEANBROKEN = "1" | ||
| 13 | |||
| 14 | RDEPENDS:${PN} += " \ | ||
| 15 | python3-dateutil \ | ||
| 16 | python3-logging \ | ||
| 17 | python3-pytz \ | ||
| 18 | python3-regex \ | ||
| 19 | python3-ruamel-yaml \ | ||
| 20 | python3-tzlocal \ | ||
| 21 | " | ||
| 22 | |||
| 23 | # Ommitted python3-convertdate, python3-jdatetime python3-umalqurra | ||
