@truedat/core 4.58.2 → 4.58.4
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 +5 -3
- package/src/routes.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.58.4] 2022-12-22
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- [TD-4300] Basic implementation route
|
|
8
|
+
|
|
9
|
+
## [4.58.3] 2022-12-21
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- [TD-5426] Update decode-uri-component (CVE-2022-38900)
|
|
14
|
+
|
|
3
15
|
## [4.58.1] 2022-12-19
|
|
4
16
|
|
|
5
17
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/core",
|
|
3
|
-
"version": "4.58.
|
|
3
|
+
"version": "4.58.4",
|
|
4
4
|
"description": "Truedat Web Core",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@testing-library/jest-dom": "^5.16.5",
|
|
36
36
|
"@testing-library/react": "^12.0.0",
|
|
37
37
|
"@testing-library/user-event": "^13.2.1",
|
|
38
|
-
"@truedat/test": "4.58.
|
|
38
|
+
"@truedat/test": "4.58.4",
|
|
39
39
|
"babel-jest": "^28.1.0",
|
|
40
40
|
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
41
41
|
"babel-plugin-lodash": "^3.3.4",
|
|
@@ -90,11 +90,13 @@
|
|
|
90
90
|
"dependencies": {
|
|
91
91
|
"@apollo/client": "^3.7.1",
|
|
92
92
|
"axios": "^0.27.2",
|
|
93
|
+
"decode-uri-component": "^0.2.2",
|
|
93
94
|
"immutable": "^4.1.0",
|
|
94
95
|
"is-hotkey": "^0.1.6",
|
|
95
96
|
"is-url": "^1.2.4",
|
|
96
97
|
"moment": "^2.29.4",
|
|
97
98
|
"prop-types": "^15.8.1",
|
|
99
|
+
"query-string": "^6.11.0",
|
|
98
100
|
"react-csv": "^2.2.2",
|
|
99
101
|
"react-dropzone": "^4.2.13",
|
|
100
102
|
"react-intl": "^5.20.10",
|
|
@@ -115,5 +117,5 @@
|
|
|
115
117
|
"react-dom": ">= 16.8.6 < 17",
|
|
116
118
|
"semantic-ui-react": ">= 2.0.3 < 2.2"
|
|
117
119
|
},
|
|
118
|
-
"gitHead": "
|
|
120
|
+
"gitHead": "852f36764d42a458272b3d5a5d204d928d5243c4"
|
|
119
121
|
}
|
package/src/routes.js
CHANGED
|
@@ -80,6 +80,7 @@ export const IMPLEMENTATION_HISTORY =
|
|
|
80
80
|
"/implementations/:implementation_id/history";
|
|
81
81
|
export const IMPLEMENTATION_MOVE = "/implementations/:implementation_id/move";
|
|
82
82
|
export const IMPLEMENTATION_NEW = "/implementations/new";
|
|
83
|
+
export const IMPLEMENTATION_NEW_BASIC = "/implementations/basic";
|
|
83
84
|
export const IMPLEMENTATION_NEW_RAW = "/implementations/new_raw";
|
|
84
85
|
export const IMPLEMENTATION_RESULTS =
|
|
85
86
|
"/implementations/:implementation_id/results";
|
|
@@ -270,6 +271,7 @@ const routes = {
|
|
|
270
271
|
IMPLEMENTATION_HISTORY,
|
|
271
272
|
IMPLEMENTATION_MOVE,
|
|
272
273
|
IMPLEMENTATION_NEW,
|
|
274
|
+
IMPLEMENTATION_NEW_BASIC,
|
|
273
275
|
IMPLEMENTATION_NEW_RAW,
|
|
274
276
|
IMPLEMENTATION_RESULTS,
|
|
275
277
|
IMPLEMENTATION_RESULTS_DETAILS,
|