Skip to content

Commit 11c9f79

Browse files
committed
Fix circular dependency with property sets
1 parent 78954b8 commit 11c9f79

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
### Fixed
10+
- Fix circular dependency with property sets
911

1012
## [0.30.1] - 2024-07-01
11-
1213
### Changed
1314
- Update dependencies
1415

src/main/scala/io/github/dataunitylab/jsonoid/discovery/schemas/PropertySets.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ final case class PropertySet(
102102
object PropertySets {
103103

104104
/** A property set with all supported properties. */
105-
implicit val AllProperties: PropertySet = PropertySet(
105+
lazy implicit val AllProperties: PropertySet = PropertySet(
106106
ArraySchema.AllProperties,
107107
BooleanSchema.AllProperties,
108108
IntegerSchema.AllProperties,

0 commit comments

Comments
 (0)