electrodb 1.8.2 → 1.8.3
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.
- package/CHANGELOG.md +9 -1
- package/package.json +1 -1
- package/src/validations.js +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -170,4 +170,12 @@ All notable changes to this project will be documented in this file. Breaking ch
|
|
|
170
170
|
|
|
171
171
|
## [1.8.1] - 2022-03-29
|
|
172
172
|
### Fixed
|
|
173
|
-
- Solidifying default application methodology: default values for nested properties will be applied up until an undefined default occurs or default callback returns undefined
|
|
173
|
+
- Solidifying default application methodology: default values for nested properties will be applied up until an undefined default occurs or default callback returns undefined
|
|
174
|
+
|
|
175
|
+
## [1.8.2] - 2022-05-13
|
|
176
|
+
### Fixed
|
|
177
|
+
- Issue impacting the successful propagation loggers and listeners from a Service definition to Entity children
|
|
178
|
+
|
|
179
|
+
## [1.8.3] - 2022-05-14
|
|
180
|
+
### Changed
|
|
181
|
+
- Removing validation that requires at least one attribute to be provided in a PK composite. This opens the door to static PKs if the user so chooses
|
package/package.json
CHANGED
package/src/validations.js
CHANGED
|
@@ -81,7 +81,6 @@ const Index = {
|
|
|
81
81
|
},
|
|
82
82
|
facets: {
|
|
83
83
|
type: ["array", "string"],
|
|
84
|
-
minItems: 1,
|
|
85
84
|
items: {
|
|
86
85
|
type: "string",
|
|
87
86
|
},
|
|
@@ -89,7 +88,6 @@ const Index = {
|
|
|
89
88
|
},
|
|
90
89
|
composite: {
|
|
91
90
|
type: ["array"],
|
|
92
|
-
minItems: 1,
|
|
93
91
|
items: {
|
|
94
92
|
type: "string",
|
|
95
93
|
},
|