Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.3] - 2026-02-25

### Fixed

- Allow json schemer to validate with external refs

## [1.1.2] - 2026-02-24

### Fixed
Expand Down Expand Up @@ -58,7 +64,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- New JsonDateRangeResolver for composite date ranges
- Added a SchemaInspector to abstract away schema inspection and validation

[unreleased]: https://github.com/HealthDataInsight/structured_store/compare/v1.1.2...HEAD
[unreleased]: https://github.com/HealthDataInsight/structured_store/compare/v1.1.3...HEAD
[1.1.3]: https://github.com/HealthDataInsight/structured_store/compare/v1.1.2...v1.1.3
[1.1.2]: https://github.com/HealthDataInsight/structured_store/compare/v1.1.1...v1.1.2
[1.1.1]: https://github.com/HealthDataInsight/structured_store/compare/v1.1.0...v1.1.1
[1.1.0]: https://github.com/HealthDataInsight/structured_store/compare/v1.0.1...v1.1.0
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
structured_store (1.1.2)
structured_store (1.1.3)
json_schemer (~> 2.4)
rails (>= 7.0)
zeitwerk (~> 2.6)
Expand Down
2 changes: 1 addition & 1 deletion lib/structured_store/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module StructuredStore
VERSION = '1.1.2'.freeze
VERSION = '1.1.3'.freeze
end
6 changes: 3 additions & 3 deletions test/dummy/config/code_safety.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ file safety:
safe_revision: b042b663d220917c09f1995385581bf70ea83cc3
app/validators/json_schema_validator.rb:
comments:
reviewed_by: shilpigoeldev
safe_revision: 18dee2d51bb519c5be944c2821142676e25f5ff9
reviewed_by: timgentry
safe_revision: 2c0a5a4988c4c1820021f36be3691b730e611a60
bin/rails:
comments:
reviewed_by: timgentry
Expand Down Expand Up @@ -572,7 +572,7 @@ file safety:
test/validators/json_schema_validator_test.rb:
comments:
reviewed_by: timgentry
safe_revision: 18dee2d51bb519c5be944c2821142676e25f5ff9
safe_revision: 2c0a5a4988c4c1820021f36be3691b730e611a60
test/zeitwerk_loader_test.rb:
comments:
reviewed_by: timgentry
Expand Down
Loading