@truedat/dq 4.59.2 → 4.59.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 CHANGED
@@ -1,6 +1,14 @@
1
1
  # Changelog
2
2
 
3
- ## [Unreleased]
3
+ ## [4.59.4] 2023-01-12
4
+
5
+ ### Fixed
6
+
7
+ - [TD-5434] [TD-5219] [TD-5414]:
8
+ - Correct ordering by version and date in Rule results
9
+ - Show published implementations in structures
10
+
11
+ ## [4.59.2] 2023-01-11
4
12
 
5
13
  ### Fixed
6
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/dq",
3
- "version": "4.59.2",
3
+ "version": "4.59.4",
4
4
  "description": "Truedat Web Data Quality Module",
5
5
  "sideEffects": false,
6
6
  "jsnext:main": "src/index.js",
@@ -92,8 +92,8 @@
92
92
  },
93
93
  "dependencies": {
94
94
  "@apollo/client": "^3.7.1",
95
- "@truedat/core": "4.59.2",
96
- "@truedat/df": "4.59.2",
95
+ "@truedat/core": "4.59.4",
96
+ "@truedat/df": "4.59.4",
97
97
  "decode-uri-component": "^0.2.2",
98
98
  "graphql": "^15.5.3",
99
99
  "moment": "^2.29.4",
@@ -118,5 +118,5 @@
118
118
  "react-dom": ">= 16.8.6 < 17",
119
119
  "semantic-ui-react": ">= 2.0.3 < 2.2"
120
120
  },
121
- "gitHead": "ca377bf89e219c1687f27386cb59cd9049551964"
121
+ "gitHead": "2d4c472974cff58b18bd915b219bed75f75e6e37"
122
122
  }
@@ -73,6 +73,7 @@ export const RuleResultsTable = ({ columns, implementation, results }) => {
73
73
  _.groupBy("implementation.version"),
74
74
  _.toPairs, // first element: version number; second element: version results.
75
75
  // order by descending version number
76
+ _.map(([id, info]) => [parseInt(id), info]),
76
77
  _.orderBy(
77
78
  (versionAndResultsTuple) => versionAndResultsTuple[0],
78
79
  "desc"