@dwp/govuk-casa 6.9.9 → 6.9.11
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 +4 -0
- package/lib/Plan.js +2 -2
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [6.9.11](https://gitlab.com/dwp/engineering/capture-and-submit-application/govuk-casa/compare/6.9.10...6.9.11) (2023-04-21)
|
|
6
|
+
|
|
7
|
+
## [6.9.10](https://gitlab.com/dwp/engineering/capture-and-submit-application/govuk-casa/compare/6.9.9...6.9.10) (2023-03-23)
|
|
8
|
+
|
|
5
9
|
## [6.9.9](https://github.com/dwp/govuk-casa/compare/6.9.8...6.9.9) (2023-02-01)
|
|
6
10
|
|
|
7
11
|
## [6.9.8](https://github.com/dwp/govuk-casa/compare/6.9.7...6.9.8) (2023-01-24)
|
package/lib/Plan.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const { Graph } = require('graphlib');
|
|
1
|
+
const { Graph } = require('@dagrejs/graphlib');
|
|
2
2
|
const JourneyContext = require('./JourneyContext.js');
|
|
3
3
|
const logger = require('./Logger.js')('class.Plan');
|
|
4
4
|
|
|
@@ -413,7 +413,7 @@ class Plan {
|
|
|
413
413
|
* Get raw graph data structure. This can be used with other libraries to
|
|
414
414
|
* generate graph visualisations, for example.
|
|
415
415
|
*
|
|
416
|
-
* @returns {graphlib.Graph} Graph data structure.
|
|
416
|
+
* @returns {@dagrejs/graphlib.Graph} Graph data structure.
|
|
417
417
|
*/
|
|
418
418
|
getGraphStructure() {
|
|
419
419
|
return priv.get(this).dgraph;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dwp/govuk-casa",
|
|
3
|
-
"version": "6.9.
|
|
3
|
+
"version": "6.9.11",
|
|
4
4
|
"description": "Framework for creating basic GOVUK Collect-And-Submit-Applications",
|
|
5
5
|
"main": "casa.js",
|
|
6
6
|
"files": [
|
|
@@ -30,29 +30,29 @@
|
|
|
30
30
|
"url": "git@github.com:dwp/govuk-casa.git"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"
|
|
33
|
+
"@dagrejs/graphlib": "2.1.10",
|
|
34
|
+
"body-parser": "1.20.2",
|
|
34
35
|
"colors": "1.4.0",
|
|
35
36
|
"csurf": "1.11.0",
|
|
36
37
|
"debug": "4.3.4",
|
|
37
|
-
"fast-copy": "3.0.
|
|
38
|
+
"fast-copy": "3.0.1",
|
|
38
39
|
"fs-extra": "10.1.0",
|
|
39
40
|
"govuk-frontend": "3.14.0",
|
|
40
41
|
"govuk_template_jinja": "0.26.0",
|
|
41
|
-
"graphlib": "2.1.8",
|
|
42
42
|
"klaw-sync": "6.0.0",
|
|
43
43
|
"lodash.merge": "4.6.2",
|
|
44
44
|
"moment": "2.29.4",
|
|
45
|
-
"nunjucks": "3.2.
|
|
45
|
+
"nunjucks": "3.2.4",
|
|
46
46
|
"object-resolve-path": "1.1.1",
|
|
47
47
|
"serve-favicon": "2.5.0",
|
|
48
48
|
"uid-safe": "2.1.5",
|
|
49
|
-
"validator": "13.
|
|
49
|
+
"validator": "13.9.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@commitlint/cli": "17.
|
|
53
|
-
"@commitlint/config-conventional": "17.4.
|
|
54
|
-
"@dwp/commitlint-config-base": "4.0.
|
|
55
|
-
"@dwp/eslint-config-base": "6.
|
|
52
|
+
"@commitlint/cli": "17.5.1",
|
|
53
|
+
"@commitlint/config-conventional": "17.4.4",
|
|
54
|
+
"@dwp/commitlint-config-base": "4.0.6",
|
|
55
|
+
"@dwp/eslint-config-base": "6.1.1",
|
|
56
56
|
"@stryker-mutator/core": "5.6.1",
|
|
57
57
|
"@stryker-mutator/html-reporter": "3.1.0",
|
|
58
58
|
"@stryker-mutator/javascript-mutator": "4.0.0",
|
|
@@ -64,22 +64,22 @@
|
|
|
64
64
|
"chai-http": "4.3.0",
|
|
65
65
|
"cheerio": "1.0.0-rc.12",
|
|
66
66
|
"conventional-changelog-cli": "2.2.2",
|
|
67
|
-
"eslint": "8.
|
|
68
|
-
"eslint-plugin-sonarjs": "0.
|
|
67
|
+
"eslint": "8.37.0",
|
|
68
|
+
"eslint-plugin-sonarjs": "0.19.0",
|
|
69
69
|
"express": "4.18.2",
|
|
70
70
|
"express-session": "1.17.3",
|
|
71
71
|
"jsdom": "19.0.0",
|
|
72
|
-
"minimatch": "
|
|
72
|
+
"minimatch": "7.4.3",
|
|
73
73
|
"mocha": "10.2.0",
|
|
74
74
|
"nyc": "15.1.0",
|
|
75
75
|
"proxyquire": "2.1.3",
|
|
76
|
-
"sass": "1.
|
|
77
|
-
"sinon": "15.0.
|
|
76
|
+
"sass": "1.60.0",
|
|
77
|
+
"sinon": "15.0.3",
|
|
78
78
|
"sinon-chai": "3.7.0",
|
|
79
79
|
"supertest": "6.3.3",
|
|
80
80
|
"uglify-js": "3.17.4",
|
|
81
81
|
"uuid": "9.0.0",
|
|
82
|
-
"yargs": "17.
|
|
82
|
+
"yargs": "17.7.1"
|
|
83
83
|
},
|
|
84
84
|
"peerDependencies": {
|
|
85
85
|
"express": "4.18.2",
|