@fat-zebra/sdk 1.5.12-beta.0 → 1.5.12-beta.2
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/.husky/commit-msg +0 -3
- package/.husky/prepare-commit-msg +0 -3
- package/.tool-versions +1 -1
- package/CHANGELOG.md +18 -0
- package/package.json +9 -16
- package/.husky/pre-commit +0 -2
package/.husky/commit-msg
CHANGED
package/.tool-versions
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
nodejs
|
|
1
|
+
nodejs 24.0.0
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
## Change log
|
|
4
4
|
|
|
5
|
+
## [1.5.12] - 2025-10-14
|
|
6
|
+
## Updated
|
|
7
|
+
- Bump to react-dom and react 19 from react 18
|
|
8
|
+
- Bump husky from 8.0.3 to 9.1.7
|
|
9
|
+
- Bump jest-environment-jsdom from 29.6.1 to 30.2.0
|
|
10
|
+
- Bump nock from 12.0.3 to 13.5.6
|
|
11
|
+
- Bump brace-expansion from 1.1.11 to 1.1.12
|
|
12
|
+
- Bump @testing-library/user-event from 14.5.2 to 14.6.1
|
|
13
|
+
|
|
14
|
+
## Improved
|
|
15
|
+
- Replace webpack with esbuild
|
|
16
|
+
|
|
17
|
+
## [1.5.11] - 2025-09-25
|
|
18
|
+
## Updated
|
|
19
|
+
- Bump ts-loader from 9.4.4 to 9.5.4
|
|
20
|
+
## Improved
|
|
21
|
+
- added method decorator logging
|
|
22
|
+
|
|
5
23
|
## [1.5.10] - 2025-08-11
|
|
6
24
|
## Updated
|
|
7
25
|
- bumped jsdom from ^16.2.1 to jsdom 26.1.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fat-zebra/sdk",
|
|
3
|
-
"version": "1.5.12-beta.
|
|
3
|
+
"version": "1.5.12-beta.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -20,37 +20,30 @@
|
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@commitlint/cli": "^19.8.1",
|
|
22
22
|
"@commitlint/config-conventional": "^19.8.1",
|
|
23
|
-
"@inquirer/prompts": "^5.3.8",
|
|
24
23
|
"@testing-library/dom": "^10.4.0",
|
|
25
24
|
"@testing-library/react": "^16.0.0",
|
|
26
|
-
"@testing-library/react-hooks": "^8.0.1",
|
|
27
25
|
"@testing-library/user-event": "^14.5.2",
|
|
28
26
|
"@types/ajv": "^1.0.0",
|
|
29
27
|
"@types/axios": "^0.14.0",
|
|
30
28
|
"@types/dotenv": "^8.2.0",
|
|
31
|
-
"@types/inquirer": "^9.0.7",
|
|
32
29
|
"@types/jest": "^24.0.23",
|
|
33
30
|
"@types/jsdom": "^21.1.1",
|
|
34
|
-
"@types/
|
|
35
|
-
"@types/react": "^
|
|
36
|
-
"@types/react-dom": "^18.2.7",
|
|
31
|
+
"@types/react": "^19.1.16",
|
|
32
|
+
"@types/react-dom": "^19.1.9",
|
|
37
33
|
"audit-ci": "^6.6.1",
|
|
38
34
|
"commitizen": "^4.3.1",
|
|
39
35
|
"cz-conventional-changelog": "^3.3.0",
|
|
40
36
|
"dotenv": "^16.0.1",
|
|
41
|
-
"ejs": "^3.0.1",
|
|
42
37
|
"esbuild": "^0.25.10",
|
|
43
|
-
"husky": "^
|
|
44
|
-
"jest": "^
|
|
45
|
-
"jest-environment-jsdom": "^
|
|
38
|
+
"husky": "^9.1.7",
|
|
39
|
+
"jest": "^30.2.0",
|
|
40
|
+
"jest-environment-jsdom": "^30.2.0",
|
|
46
41
|
"jest-localstorage-mock": "^2.4.22",
|
|
47
42
|
"jsdom": "^26.1.0",
|
|
48
43
|
"jsonwebtoken": "^9.0.0",
|
|
49
|
-
"nock": "^
|
|
50
|
-
"react": "^
|
|
51
|
-
"react-dom": "^
|
|
52
|
-
"simple-git": "^3.25.0",
|
|
53
|
-
"source-map-loader": "^0.2.4",
|
|
44
|
+
"nock": "^13.0.1",
|
|
45
|
+
"react": "^19.1.1",
|
|
46
|
+
"react-dom": "^19.1.1",
|
|
54
47
|
"ts-jest": "^29.1.1",
|
|
55
48
|
"ts-loader": "^9.4.4",
|
|
56
49
|
"ts-node": "^10.9.2",
|
package/.husky/pre-commit
DELETED