@simplybusiness/services 1.2.19 → 1.3.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 +24 -0
- package/package.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- d1ad7db: Fetch trade image from chopin
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 0e4099c: Remove test type checking infrastructure in favor of faster @swc/jest transforms.
|
|
12
|
+
|
|
13
|
+
This removes the `JEST_CHECK_TYPES` environment variable and `ts-jest` dependency, simplifying Jest configuration across all packages. Type checking during tests is now handled separately by the `check-types` command.
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [1927a07]
|
|
16
|
+
- Updated dependencies [0e4099c]
|
|
17
|
+
- Updated dependencies [d1ad7db]
|
|
18
|
+
- @simplybusiness/mobius@6.8.0
|
|
19
|
+
|
|
20
|
+
## 1.2.20
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [1b71bb3]
|
|
25
|
+
- @simplybusiness/mobius@6.7.2
|
|
26
|
+
|
|
3
27
|
## 1.2.19
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/services",
|
|
3
3
|
"license": "UNLICENSED",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.3.0",
|
|
5
5
|
"description": "Internal library for services",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -74,13 +74,12 @@
|
|
|
74
74
|
"prettier": "^3.6.2",
|
|
75
75
|
"react": "^19.2.0",
|
|
76
76
|
"react-dom": "^19.2.0",
|
|
77
|
-
"ts-jest": "^29.4.5",
|
|
78
77
|
"tslib": "^2.8.1",
|
|
79
78
|
"typescript": "^5.9.3"
|
|
80
79
|
},
|
|
81
80
|
"dependencies": {
|
|
82
81
|
"@airbrake/browser": "^2.1.9",
|
|
83
|
-
"@simplybusiness/mobius": "^6.
|
|
82
|
+
"@simplybusiness/mobius": "^6.8.0",
|
|
84
83
|
"@snowplow/browser-tracker": "^3.24.6",
|
|
85
84
|
"classnames": "^2.5.1"
|
|
86
85
|
},
|