@raclettejs/core 0.1.9 → 0.1.11
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 +41 -10
- package/dist/cli.js +54 -54
- package/dist/index.js +2 -2
- package/package.json +30 -30
- package/services/backend/package.json +34 -45
- package/services/backend/yarn.lock +420 -1178
- package/services/frontend/package.json +28 -40
- package/services/frontend/src/core/lib/data/dataApi.ts +9 -7
- package/services/frontend/src/core/lib/data/fetchDataHandler.ts +38 -20
- package/services/frontend/src/core/lib/data/queryApi.ts +7 -4
- package/services/frontend/src/core/lib/data/writeDataHandler.ts +12 -1
- package/services/frontend/src/core/lib/easteregg.ts +7 -1
- package/services/frontend/src/core/lib/eggs/asteroids/index.ts +2 -2
- package/services/frontend/src/core/setup/plugin-system/api/plugin-data.ts +2 -2
- package/services/frontend/src/orchestrator/assets/styles/main.scss +2 -0
- package/services/frontend/src/orchestrator/assets/styles/vuetifyStyles.scss +21 -0
- package/services/frontend/src/orchestrator/components/menu/UserNotifications.vue +4 -2
- package/services/frontend/src/orchestrator/components/welcomeScreen/AdminWelcomeScreen.vue +1 -0
- package/services/frontend/src/orchestrator/components/welcomeScreen/UserWelcomeScreen.vue +1 -0
- package/services/frontend/src/orchestrator/composables/useVueQueryObservableHelper.ts +5 -2
- package/services/frontend/src/orchestrator/composables/useVueWriteOperationHelper.ts +5 -2
- package/services/frontend/src/orchestrator/i18n/de-DE.json +4 -0
- package/services/frontend/src/orchestrator/i18n/en-EU.json +4 -0
- package/services/frontend/src/orchestrator/i18n/sk.json +4 -0
- package/services/frontend/src/orchestrator/i18n/tl-TL.json +5 -1
- package/services/frontend/src/orchestrator/setup/loginApp.ts +1 -0
- package/services/frontend/src/orchestrator/types/PluginApi.ts +4 -1
- package/services/frontend/yarn.lock +792 -1873
- package/yarn.lock +435 -618
package/CHANGELOG.md
CHANGED
|
@@ -7,19 +7,50 @@ 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.11] - 19.09.2025 <a href="https://gitlab.com/raclettejs/core/-/compare/v0.1.10...v0.1.11" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
|
|
11
11
|
|
|
12
|
-
###
|
|
12
|
+
### Security
|
|
13
|
+
|
|
14
|
+
- Updated all Node.js dependencies to latest versions
|
|
15
|
+
- Removed caret (^) version ranges from package.json to prevent automatic minor/patch updates
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
|
|
19
|
+
- buttons will not longer have `color: inherit`
|
|
20
|
+
|
|
21
|
+
## [0.1.10] - 12.09.2025 <a href="https://gitlab.com/raclettejs/core/-/compare/v0.1.9...v0.1.10" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- added "Overview of all changes" link to all previous versions
|
|
26
|
+
|
|
27
|
+
### Refactor
|
|
28
|
+
|
|
29
|
+
- changed response structure of queries execute. Will now always return {result:any, response:any} -> see docs for further information
|
|
30
|
+
- https://docs.raclettejs.com/docs/examples/recipes/creatingDataInTheBackend
|
|
31
|
+
- https://docs.raclettejs.com/docs/examples/recipes/readingDataFromTheBackend
|
|
32
|
+
- queries now always return dataArr
|
|
33
|
+
|
|
34
|
+
### Fixed
|
|
35
|
+
|
|
36
|
+
- fixed missing "raclette" string in welcome page
|
|
37
|
+
- fixed missing "new" i18n key in user Notifier
|
|
38
|
+
- fixed min-width in userNotifier
|
|
39
|
+
- Add `<button>` cursor styles from vuetify's reset css (which is disabled), to fix missing `cursor: pointer` css rule.
|
|
40
|
+
|
|
41
|
+
## [0.1.9] - 11.09.2025 <a href="https://gitlab.com/raclettejs/core/-/compare/v0.1.8...v0.1.9" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
|
|
42
|
+
|
|
43
|
+
### Added
|
|
13
44
|
|
|
14
45
|
- language preference is now properly respected in all components
|
|
15
46
|
|
|
16
|
-
## [0.1.8] - 11.09.2025
|
|
47
|
+
## [0.1.8] - 11.09.2025 <a href="https://gitlab.com/raclettejs/core/-/compare/v0.1.7...v0.1.8" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
|
|
17
48
|
|
|
18
49
|
### Changed
|
|
19
50
|
|
|
20
51
|
- language and theme toggle in user menu now always store preference in localstorage, not just in dev mode
|
|
21
52
|
|
|
22
|
-
## [0.1.7] - 11.09.2025
|
|
53
|
+
## [0.1.7] - 11.09.2025 <a href="https://gitlab.com/raclettejs/core/-/compare/v0.1.6...v0.1.7" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
|
|
23
54
|
|
|
24
55
|
### Style
|
|
25
56
|
|
|
@@ -29,25 +60,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
29
60
|
|
|
30
61
|
- fixed query handler id suffixing
|
|
31
62
|
|
|
32
|
-
## [0.1.6] - 11.09.2025
|
|
63
|
+
## [0.1.6] - 11.09.2025 <a href="https://gitlab.com/raclettejs/core/-/compare/v0.1.5...v0.1.6" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
|
|
33
64
|
|
|
34
65
|
- version updates
|
|
35
66
|
|
|
36
|
-
## [0.1.5] - 11.09.2025
|
|
67
|
+
## [0.1.5] - 11.09.2025 <a href="https://gitlab.com/raclettejs/core/-/compare/v0.1.4...v0.1.5" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
|
|
37
68
|
|
|
38
69
|
### Fixed
|
|
39
70
|
|
|
40
71
|
- "refresh all queries" functionallity in user menu now works as expected
|
|
41
72
|
- issue was introduced during query api update in v0.1.3
|
|
42
73
|
|
|
43
|
-
## [0.1.4] - 10.09.2025
|
|
74
|
+
## [0.1.4] - 10.09.2025 <a href="https://gitlab.com/raclettejs/core/-/compare/v0.1.3...v0.1.4" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
|
|
44
75
|
|
|
45
76
|
### Fixed
|
|
46
77
|
|
|
47
78
|
- aliases "@app", "@raclettejs/core/frontend" & "@raclettejs/core/backend" are now resolved properly in the IDE
|
|
48
79
|
- fixed unspecific locale fallback
|
|
49
80
|
|
|
50
|
-
## [0.1.3] - 10.09.2025
|
|
81
|
+
## [0.1.3] - 10.09.2025 <a href="https://gitlab.com/raclettejs/core/-/compare/v0.1.2...v0.1.3" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
|
|
51
82
|
|
|
52
83
|
### Fixed
|
|
53
84
|
|
|
@@ -57,14 +88,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
57
88
|
- renamed all Types and core internal imports from Client* to Frontend*
|
|
58
89
|
- this was forgotten in a former refactoring step and resolves build issues encountered after going Live
|
|
59
90
|
|
|
60
|
-
## [0.1.2] - 04.09.2025
|
|
91
|
+
## [0.1.2] - 04.09.2025 <a href="https://gitlab.com/raclettejs/core/-/compare/v0.1.1...v0.1.2" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
|
|
61
92
|
|
|
62
93
|
### Changed
|
|
63
94
|
|
|
64
95
|
- cache TTL can now be configured via raclette.config.js -> if none is set will default to -1 which implies indefinite ttl
|
|
65
96
|
- -> make sure to set ttl explicitly during cache.cache() if important for businesslogic!
|
|
66
97
|
|
|
67
|
-
## [0.1.1] - 03.09.2025
|
|
98
|
+
## [0.1.1] - 03.09.2025 <a href="https://gitlab.com/raclettejs/core/-/compare/v0.1.0...v0.1.1" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
|
|
68
99
|
|
|
69
100
|
### Added
|
|
70
101
|
|