forked from pool/python-fastjsonschema
Compare commits
6 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 8d77fc6a1c | |||
| 4554d259ca | |||
| e8284a515d | |||
| a822a38f4b | |||
| bc087e46a4 | |||
| bab64eeeee |
BIN
fastjsonschema-2.19.1.tar.gz
LFS
BIN
fastjsonschema-2.19.1.tar.gz
LFS
Binary file not shown.
3
fastjsonschema-2.21.2.tar.gz
Normal file
3
fastjsonschema-2.21.2.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b1eb43748041c880796cd077f1a07c3d94e93ae84bba5ed36800a33554ae05de
|
||||
size 374130
|
||||
@@ -1,3 +1,38 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 29 10:38:05 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
-update to 2.21.2:
|
||||
* correct the escaping of periods in the ipv6 format regex
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 5 09:35:07 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 2.21.1:
|
||||
* Fixed ResourceWarning where file was not properly closed
|
||||
* Fixed regexp for date format
|
||||
* Updated test suite
|
||||
* Fixed detecting when infinity is reached with multipleOf
|
||||
* Fixed that min/max items/lenght/properties can be float
|
||||
* Fixed that everything with empty `not` is invalid
|
||||
* Fixed missing re import when using regex pattern
|
||||
* Improved regexp for email format to comfort test suite
|
||||
* Improved regexp for date format to comfort test suite
|
||||
* Improved regexp for ipv4 format to comfort test suite
|
||||
* Added partial support of idn-hostname format
|
||||
* Added `detailed_exceptions` flag (default to True to avoid
|
||||
breaking change) - when used, results are twice as fast
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 09:47:35 UTC 2024 - Matej Cepl <mcepl@cepl.eu>
|
||||
|
||||
- Update to 2.20.0:
|
||||
- Added validations at compile time:
|
||||
- `required` must have unique items
|
||||
- checking if schema is not allowing `required` items (item
|
||||
is required, but is not listed in properties)
|
||||
- Remove upstreamed patch:
|
||||
- support-pytest-8.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 7 07:15:45 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-fastjsonschema
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -18,14 +18,12 @@
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-fastjsonschema
|
||||
Version: 2.19.1
|
||||
Version: 2.21.2
|
||||
Release: 0
|
||||
Summary: Fastest Python implementation of JSON schema
|
||||
License: BSD-3-Clause
|
||||
URL: https://github.com/horejsek/python-fastjsonschema
|
||||
Source: https://files.pythonhosted.org/packages/source/f/fastjsonschema/fastjsonschema-%{version}.tar.gz
|
||||
# PATCH-FIX-UPSTREAM gh#horejsek/python-fastjsonschema#180
|
||||
Patch0: support-pytest-8.patch
|
||||
BuildRequires: %{python_module devel}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module pytest-benchmark}
|
||||
|
||||
@@ -1,64 +0,0 @@
|
||||
From 427a34e9ef409fefd8f1f7ae7e1c2a2bb7eb4496 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?=
|
||||
<edgarrm358@gmail.com>
|
||||
Date: Tue, 14 Nov 2023 18:05:17 -0600
|
||||
Subject: [PATCH] Use `warnings.catch_warnings` instead of `pytest.warns(None)`
|
||||
in tests
|
||||
|
||||
---
|
||||
tests/test_pattern_properties.py | 7 ++++---
|
||||
tests/test_string.py | 7 ++++---
|
||||
2 files changed, 8 insertions(+), 6 deletions(-)
|
||||
|
||||
diff --git a/tests/test_pattern_properties.py b/tests/test_pattern_properties.py
|
||||
index ae86946..945315b 100644
|
||||
--- a/tests/test_pattern_properties.py
|
||||
+++ b/tests/test_pattern_properties.py
|
||||
@@ -1,3 +1,5 @@
|
||||
+import warnings
|
||||
+
|
||||
import pytest
|
||||
|
||||
|
||||
@@ -59,12 +61,11 @@ def test_pattern_with_escape_no_warnings(asserter):
|
||||
'bar': {}
|
||||
}
|
||||
|
||||
- with pytest.warns(None) as record:
|
||||
+ with warnings.catch_warnings():
|
||||
+ warnings.simplefilter("error")
|
||||
asserter({
|
||||
'type': 'object',
|
||||
'patternProperties': {
|
||||
'\\w+': {'type': 'object'}
|
||||
}
|
||||
}, value, value)
|
||||
-
|
||||
- assert len(record) == 0
|
||||
diff --git a/tests/test_string.py b/tests/test_string.py
|
||||
index a8e8318..12fc3c9 100644
|
||||
--- a/tests/test_string.py
|
||||
+++ b/tests/test_string.py
|
||||
@@ -1,3 +1,5 @@
|
||||
+import warnings
|
||||
+
|
||||
import pytest
|
||||
|
||||
from fastjsonschema import JsonSchemaValueException
|
||||
@@ -74,14 +76,13 @@ def test_pattern_with_space(asserter, pattern):
|
||||
|
||||
|
||||
def test_pattern_with_escape_no_warnings(asserter):
|
||||
- with pytest.warns(None) as record:
|
||||
+ with warnings.catch_warnings():
|
||||
+ warnings.simplefilter("error")
|
||||
asserter({
|
||||
'type': 'string',
|
||||
'pattern': '\\s'
|
||||
}, ' ', ' ')
|
||||
|
||||
- assert len(record) == 0
|
||||
-
|
||||
|
||||
exc = JsonSchemaValueException('data must be a valid regex', value='{data}', name='data', definition='{definition}', rule='format')
|
||||
@pytest.mark.parametrize('value, expected', [
|
||||
Reference in New Issue
Block a user