elasticgraph-json_schema 0.19.2.0 → 0.19.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/elastic_graph/json_schema/validator_factory.rb +2 -2
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 10d63e4b73df2881f6d10b3336c71cb3088d4605455ae9912d3508003802ec36
|
4
|
+
data.tar.gz: 1566b16304a032a5f09353b9ff95ffc14f59a1fd61ff18061b8975c221a0911c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e7837c6c520fb53000702dbbc6430820e254892c86fbef403a6276cf44efaf17f09e395560aff1d617d4f5fe57711cf699233889005f4c516e9d5ea920488f5
|
7
|
+
data.tar.gz: 0f0d008c79b4da52c15fe72f63c91f8f86f6f361d7e9059851b3c4430325e1412f7ca9027dfcdbf8f39607a42776e38ac5dd0f0b81e255f4d3dd0508e9754fd2
|
@@ -24,12 +24,12 @@ module ElasticGraph
|
|
24
24
|
@root_schema = ::JSONSchemer.schema(
|
25
25
|
schema,
|
26
26
|
meta_schema: schema.fetch("$schema"),
|
27
|
-
# Here we opt to have regular expressions resolved using an
|
27
|
+
# Here we opt to have regular expressions resolved using an ecma-compatible resolver, instead of Ruby's.
|
28
28
|
#
|
29
29
|
# We do this because regexp patterns in our JSON schema are intended to be used by JSON schema libraries
|
30
30
|
# in many languages, not just in Ruby, and we want to support the widest compatibility. For example,
|
31
31
|
# Ruby requires that we use `\A` and `\z` to anchor the start and end of the string (`^` and `$` anchor the
|
32
|
-
# start and end of a line instead), where as
|
32
|
+
# start and end of a line instead), where as ecma regexes treat `^` and `$` as the start and end of the string.
|
33
33
|
# For a pattern to be usable by non-Ruby publishers, we need to use `^/`$` for our start/end anchors, and we
|
34
34
|
# want our validator to treat it the same way here.
|
35
35
|
#
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: elasticgraph-json_schema
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.19.2.
|
4
|
+
version: 0.19.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Myron Marston
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
- Block Engineering
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2025-04-
|
12
|
+
date: 2025-04-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: elasticgraph-support
|
@@ -17,14 +17,14 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - '='
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 0.19.2.
|
20
|
+
version: 0.19.2.1
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - '='
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: 0.19.2.
|
27
|
+
version: 0.19.2.1
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: json_schemer
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
@@ -56,10 +56,10 @@ licenses:
|
|
56
56
|
- MIT
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/block/elasticgraph/issues
|
59
|
-
changelog_uri: https://github.com/block/elasticgraph/releases/tag/v0.19.2.
|
60
|
-
documentation_uri: https://block.github.io/elasticgraph/api-docs/v0.19.2.
|
59
|
+
changelog_uri: https://github.com/block/elasticgraph/releases/tag/v0.19.2.1
|
60
|
+
documentation_uri: https://block.github.io/elasticgraph/api-docs/v0.19.2.1/
|
61
61
|
homepage_uri: https://block.github.io/elasticgraph/
|
62
|
-
source_code_uri: https://github.com/block/elasticgraph/tree/v0.19.2.
|
62
|
+
source_code_uri: https://github.com/block/elasticgraph/tree/v0.19.2.1/elasticgraph-json_schema
|
63
63
|
gem_category: core
|
64
64
|
rdoc_options: []
|
65
65
|
require_paths:
|