Skip to content

Commit 240dce0

Browse files
[SECURITY] Update json-schema requirement from ~> 4 to >= 4, < 6 (#892)
Updates the requirements on [json-schema](https://github.com/voxpupuli/json-schema) to permit the latest version. - [Changelog](https://github.com/voxpupuli/json-schema/blob/master/CHANGELOG.md) - [Commits](voxpupuli/json-schema@v4.3.0...v5.1.1) --- updated-dependencies: - dependency-name: json-schema dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andrei Bondarev <[email protected]>
1 parent f474be6 commit 240dce0

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Gemfile.lock

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ PATH
44
langchainrb (0.19.4)
55
baran (~> 0.1.9)
66
csv
7-
json-schema (~> 4)
7+
json-schema (>= 4, < 6)
88
matrix
99
pragmatic_segmenter (~> 0.3.0)
1010
zeitwerk (~> 2.5)
@@ -204,8 +204,9 @@ GEM
204204
reline (>= 0.4.2)
205205
jmespath (1.6.2)
206206
json (2.9.1)
207-
json-schema (4.3.0)
208-
addressable (>= 2.8)
207+
json-schema (5.1.1)
208+
addressable (~> 2.8)
209+
bigdecimal (~> 3.1)
209210
jwt (2.10.1)
210211
base64
211212
language_server-protocol (3.17.0.3)

langchain.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
2929
# Not sure if we should require this as it only applies to OpenAI usecase.
3030
spec.add_dependency "baran", "~> 0.1.9"
3131
spec.add_dependency "csv"
32-
spec.add_dependency "json-schema", "~> 4"
32+
spec.add_dependency "json-schema", ">= 4", "< 6"
3333
spec.add_dependency "zeitwerk", "~> 2.5"
3434
spec.add_dependency "pragmatic_segmenter", "~> 0.3.0"
3535
spec.add_dependency "matrix"

0 commit comments

Comments
 (0)