@raclettejs/core 0.1.14 → 0.1.15
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
CHANGED
|
@@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
-
## [0.1.
|
|
10
|
+
## [0.1.15] - 02.11.2025 <a href="https://gitlab.com/raclettejs/core/-/compare/v0.1.13...v0.1.15" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
|
|
11
11
|
|
|
12
12
|
### Fixed
|
|
13
13
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@raclettejs/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.15",
|
|
4
4
|
"description": "racletteJS core package",
|
|
5
5
|
"repository": "https://gitlab.com/raclettejs/core",
|
|
6
6
|
"author": "Pacifico Digital Explorations GmbH <info@raclettejs.com>",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"@eslint/js": "9.35.0",
|
|
72
|
-
"@raclettejs/types": "0.1.
|
|
72
|
+
"@raclettejs/types": "0.1.15",
|
|
73
73
|
"@types/fs-extra": "11.0.4",
|
|
74
74
|
"@types/js-yaml": "4.0.9",
|
|
75
75
|
"@types/node": "24.5.1",
|
|
@@ -44,13 +44,6 @@ const queriesEffects = (store) => {
|
|
|
44
44
|
if (updatedQuery) {
|
|
45
45
|
const { item, itemBefore } = updatedQuery
|
|
46
46
|
const { actionId } = action
|
|
47
|
-
if (!actionId || !item) {
|
|
48
|
-
log.store("effect queries/setCacheKey no Item or ActionId", {
|
|
49
|
-
updatedQuery,
|
|
50
|
-
action,
|
|
51
|
-
})
|
|
52
|
-
return
|
|
53
|
-
}
|
|
54
47
|
if (itemBefore?.cacheKey && itemBefore?.cacheKey !== item?.cacheKey) {
|
|
55
48
|
store.dispatch({
|
|
56
49
|
type: "queriesCache/remove",
|