@adobe/spacecat-shared-data-access 3.75.0 → 3.75.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.
- package/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/src/models/site/config.js +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [@adobe/spacecat-shared-data-access-v3.75.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.75.0...@adobe/spacecat-shared-data-access-v3.75.1) (2026-06-15)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* quiet recoverable ERROR-severity log noise (config-validation fallback + missing metrics) ([#1681](https://github.com/adobe/spacecat-shared/issues/1681)) ([27be682](https://github.com/adobe/spacecat-shared/commit/27be6824d60af52a948e168a9a288239b402cdde))
|
|
6
|
+
|
|
1
7
|
## [@adobe/spacecat-shared-data-access-v3.75.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.74.3...@adobe/spacecat-shared-data-access-v3.75.0) (2026-06-15)
|
|
2
8
|
|
|
3
9
|
### Features
|
package/package.json
CHANGED
|
@@ -558,7 +558,9 @@ export const Config = (data = {}) => {
|
|
|
558
558
|
} catch (error) {
|
|
559
559
|
const logger = getLogger();
|
|
560
560
|
if (logger && logger !== console) {
|
|
561
|
-
|
|
561
|
+
// Recoverable: validation failed but we fall back to the provided data,
|
|
562
|
+
// so this is a warning, not an error (avoids prod ERROR-severity noise).
|
|
563
|
+
logger.warn('Site configuration validation failed, using provided data', {
|
|
562
564
|
error: error.message,
|
|
563
565
|
invalidConfig: data,
|
|
564
566
|
});
|