cozy-ui 127.17.0 → 128.0.0
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 +12 -0
- package/package.json +6 -4
- package/patches/@fastify+deepmerge+2.0.2.patch +27 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# [128.0.0](https://github.com/cozy/cozy-ui/compare/v127.17.0...v128.0.0) (2025-09-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* upgrade cozy-client ([6dc714d](https://github.com/cozy/cozy-ui/commit/6dc714d))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### BREAKING CHANGES
|
|
10
|
+
|
|
11
|
+
* You must have `cozy-client >=60.5.0`
|
|
12
|
+
|
|
1
13
|
# [127.17.0](https://github.com/cozy/cozy-ui/compare/v127.16.0...v127.17.0) (2025-08-28)
|
|
2
14
|
|
|
3
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cozy-ui",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "128.0.0",
|
|
4
4
|
"description": "Cozy apps UI SDK",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"bin": {
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"test": "jest",
|
|
51
51
|
"screenshots:server": "nodemon ./scripts/pixelmatch-server/server.js -e js,hbs",
|
|
52
52
|
"postbuild": "postcss transpiled/react/stylesheet.css --replace",
|
|
53
|
+
"postinstall": "patch-package",
|
|
53
54
|
"travis-deploy-once": "travis-deploy-once",
|
|
54
55
|
"start:css:utils": "yarn build:css:utils --watch",
|
|
55
56
|
"start:css": "yarn build:css --watch",
|
|
@@ -93,12 +94,12 @@
|
|
|
93
94
|
"browserslist-config-cozy": "0.4.0",
|
|
94
95
|
"bundlemon": "3.1.0",
|
|
95
96
|
"copyfiles": "2.4.1",
|
|
96
|
-
"cozy-client": "^
|
|
97
|
+
"cozy-client": "^60.5.0",
|
|
97
98
|
"cozy-device-helper": "2.0.0",
|
|
98
99
|
"cozy-flags": "^2.10.1",
|
|
99
100
|
"cozy-intent": "^2.29.1",
|
|
100
101
|
"cozy-logger": "^1.9.0",
|
|
101
|
-
"cozy-stack-client": "^
|
|
102
|
+
"cozy-stack-client": "^60.1.0",
|
|
102
103
|
"css-loader": "0.28.11",
|
|
103
104
|
"cssnano": "4.1.11",
|
|
104
105
|
"cssnano-preset-advanced": "4.0.8",
|
|
@@ -127,6 +128,7 @@
|
|
|
127
128
|
"mini-css-extract-plugin": "0.6.0",
|
|
128
129
|
"nodemon": "1.19.4",
|
|
129
130
|
"npm-run-all": "4.1.5",
|
|
131
|
+
"patch-package": "^8.0.0",
|
|
130
132
|
"postcss-cli": "6.1.3",
|
|
131
133
|
"postcss-loader": "2.1.6",
|
|
132
134
|
"prettier": "2.6.0",
|
|
@@ -186,7 +188,7 @@
|
|
|
186
188
|
"rooks": "7.14.1"
|
|
187
189
|
},
|
|
188
190
|
"peerDependencies": {
|
|
189
|
-
"cozy-client": ">=
|
|
191
|
+
"cozy-client": ">=60.5.0",
|
|
190
192
|
"cozy-device-helper": ">=2.0.0",
|
|
191
193
|
"cozy-flags": ">=2.10.1",
|
|
192
194
|
"cozy-intent": ">=2.29.1",
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
diff --git a/node_modules/@fastify/deepmerge/index.js b/node_modules/@fastify/deepmerge/index.js
|
|
2
|
+
index e3ba232..e733358 100644
|
|
3
|
+
--- a/node_modules/@fastify/deepmerge/index.js
|
|
4
|
+
+++ b/node_modules/@fastify/deepmerge/index.js
|
|
5
|
+
@@ -65,11 +65,11 @@ function deepmergeConstructor (options) {
|
|
6
|
+
return result
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
- const getKeys = options?.symbols
|
|
10
|
+
+ const getKeys = (options && options.symbols)
|
|
11
|
+
? getSymbolsAndKeys
|
|
12
|
+
: Object.keys
|
|
13
|
+
|
|
14
|
+
- const cloneProtoObject = typeof options?.cloneProtoObject === 'function'
|
|
15
|
+
+ const cloneProtoObject = (options && typeof options.cloneProtoObject === 'function')
|
|
16
|
+
? options.cloneProtoObject
|
|
17
|
+
: undefined
|
|
18
|
+
|
|
19
|
+
@@ -161,7 +161,7 @@ function deepmergeConstructor (options) {
|
|
20
|
+
return result
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
- return options?.all
|
|
24
|
+
+ return (options && options.all)
|
|
25
|
+
? _deepmergeAll
|
|
26
|
+
: _deepmerge
|
|
27
|
+
}
|