@hmcts/rpx-xui-node-lib 2.29.4-rc2 → 2.29.5-content-security-truth

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.
@@ -0,0 +1,16 @@
1
+ export declare const SECURITY_POLICY: {
2
+ directives: {
3
+ connectSrc: string[];
4
+ defaultSrc: string[];
5
+ fontSrc: string[];
6
+ formAction: string[];
7
+ frameAncestors: string[];
8
+ frameSrc: string[];
9
+ imgSrc: string[];
10
+ mediaSrc: string[];
11
+ scriptSrc: string[];
12
+ styleSrc: string[];
13
+ };
14
+ };
15
+ export declare const getContentSecurityPolicy: (helmet: any) => any;
16
+ //# sourceMappingURL=contentSecurityPolicy.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"contentSecurityPolicy.d.ts","sourceRoot":"","sources":["../../../src/common/util/contentSecurityPolicy.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe;;;;;;;;;;;;;CAgD3B,CAAA;AAED,eAAO,MAAM,wBAAwB,WAAY,GAAG,QAEnD,CAAA"}
@@ -0,0 +1,57 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getContentSecurityPolicy = exports.SECURITY_POLICY = void 0;
4
+ exports.SECURITY_POLICY = {
5
+ directives: {
6
+ connectSrc: [
7
+ "'self' blob: data:",
8
+ '*.gov.uk',
9
+ 'dc.services.visualstudio.com',
10
+ '*.launchdarkly.com',
11
+ 'https://*.google-analytics.com',
12
+ 'https://*.googletagmanager.com',
13
+ 'https://*.analytics.google.com',
14
+ '*.hmcts.net',
15
+ 'wss://*.webpubsub.azure.com',
16
+ 'https://*.in.applicationinsights.azure.com',
17
+ 'https://*.monitor.azure.com',
18
+ ],
19
+ defaultSrc: ["'self'"],
20
+ fontSrc: ["'self'", 'https://fonts.gstatic.com', 'data:'],
21
+ formAction: ["'none'"],
22
+ frameAncestors: ["'self'"],
23
+ frameSrc: ["'self'"],
24
+ imgSrc: [
25
+ "'self'",
26
+ 'data:',
27
+ 'https://*.google-analytics.com',
28
+ 'https://*.googletagmanager.com',
29
+ 'https://raw.githubusercontent.com/hmcts/',
30
+ 'http://stats.g.doubleclick.net/',
31
+ 'http://ssl.gstatic.com/',
32
+ 'http://www.gstatic.com/',
33
+ 'https://fonts.gstatic.com',
34
+ ],
35
+ mediaSrc: ["'self'"],
36
+ scriptSrc: [
37
+ "'self'",
38
+ "'unsafe-inline'",
39
+ "'unsafe-eval'",
40
+ 'https://*.google-analytics.com',
41
+ 'https://*.googletagmanager.com',
42
+ 'az416426.vo.msecnd.net',
43
+ ],
44
+ styleSrc: [
45
+ "'self'",
46
+ "'unsafe-inline'",
47
+ 'https://fonts.googleapis.com',
48
+ 'https://fonts.gstatic.com',
49
+ 'http://tagmanager.google.com/',
50
+ ],
51
+ },
52
+ };
53
+ const getContentSecurityPolicy = (helmet) => {
54
+ return helmet.contentSecurityPolicy(exports.SECURITY_POLICY);
55
+ };
56
+ exports.getContentSecurityPolicy = getContentSecurityPolicy;
57
+ //# sourceMappingURL=contentSecurityPolicy.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"contentSecurityPolicy.js","sourceRoot":"","sources":["../../../src/common/util/contentSecurityPolicy.ts"],"names":[],"mappings":";;;AAAa,QAAA,eAAe,GAAG;IAC3B,UAAU,EAAE;QACR,UAAU,EAAE;YACR,oBAAoB;YACpB,UAAU;YACV,8BAA8B;YAC9B,oBAAoB;YACpB,gCAAgC;YAChC,gCAAgC;YAChC,gCAAgC;YAChC,aAAa;YACb,6BAA6B;YAC7B,4CAA4C;YAC5C,6BAA6B;SAChC;QACD,UAAU,EAAE,CAAC,QAAQ,CAAC;QACtB,OAAO,EAAE,CAAC,QAAQ,EAAE,2BAA2B,EAAE,OAAO,CAAC;QACzD,UAAU,EAAE,CAAC,QAAQ,CAAC;QACtB,cAAc,EAAE,CAAC,QAAQ,CAAC;QAC1B,QAAQ,EAAE,CAAC,QAAQ,CAAC;QACpB,MAAM,EAAE;YACJ,QAAQ;YACR,OAAO;YACP,gCAAgC;YAChC,gCAAgC;YAChC,0CAA0C;YAC1C,iCAAiC;YACjC,yBAAyB;YACzB,yBAAyB;YACzB,2BAA2B;SAC9B;QACD,QAAQ,EAAE,CAAC,QAAQ,CAAC;QACpB,SAAS,EAAE;YACP,QAAQ;YACR,iBAAiB;YACjB,eAAe;YACf,gCAAgC;YAChC,gCAAgC;YAChC,wBAAwB;SAC3B;QACD,QAAQ,EAAE;YACN,QAAQ;YACR,iBAAiB;YACjB,8BAA8B;YAC9B,2BAA2B;YAC3B,+BAA+B;SAClC;KACJ;CACJ,CAAA;AAEM,MAAM,wBAAwB,GAAG,CAAC,MAAW,EAAE,EAAE;IACpD,OAAO,MAAM,CAAC,qBAAqB,CAAC,uBAAe,CAAC,CAAA;AACxD,CAAC,CAAA;AAFY,QAAA,wBAAwB,4BAEpC"}
@@ -1,5 +1,6 @@
1
1
  export { hasKey } from './hasKey';
2
2
  export { getLogger, XuiLogger } from './debug.logger';
3
+ export { getContentSecurityPolicy } from './contentSecurityPolicy';
3
4
  export { sortArray } from './sortArray';
4
5
  export { isStringPatternMatch } from './stringPatternMatch';
5
6
  export { arrayPatternMatch } from './arrayPatternMatch';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/common/util/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA;AACjC,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAA;AACrD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAA;AAC3D,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AACvD,OAAO,EAAE,qBAAqB,EAAE,uBAAuB,EAAE,MAAM,eAAe,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/common/util/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA;AACjC,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAA;AACrD,OAAO,EAAE,wBAAwB,EAAE,MAAM,yBAAyB,CAAA;AAClE,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAA;AAC3D,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AACvD,OAAO,EAAE,qBAAqB,EAAE,uBAAuB,EAAE,MAAM,eAAe,CAAA"}
@@ -1,10 +1,12 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.getUserSessionTimeout = exports.arrayPatternMatch = exports.isStringPatternMatch = exports.sortArray = exports.getLogger = exports.hasKey = void 0;
3
+ exports.getUserSessionTimeout = exports.arrayPatternMatch = exports.isStringPatternMatch = exports.sortArray = exports.getContentSecurityPolicy = exports.getLogger = exports.hasKey = void 0;
4
4
  var hasKey_1 = require("./hasKey");
5
5
  Object.defineProperty(exports, "hasKey", { enumerable: true, get: function () { return hasKey_1.hasKey; } });
6
6
  var debug_logger_1 = require("./debug.logger");
7
7
  Object.defineProperty(exports, "getLogger", { enumerable: true, get: function () { return debug_logger_1.getLogger; } });
8
+ var contentSecurityPolicy_1 = require("./contentSecurityPolicy");
9
+ Object.defineProperty(exports, "getContentSecurityPolicy", { enumerable: true, get: function () { return contentSecurityPolicy_1.getContentSecurityPolicy; } });
8
10
  var sortArray_1 = require("./sortArray");
9
11
  Object.defineProperty(exports, "sortArray", { enumerable: true, get: function () { return sortArray_1.sortArray; } });
10
12
  var stringPatternMatch_1 = require("./stringPatternMatch");
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/common/util/index.ts"],"names":[],"mappings":";;;AAAA,mCAAiC;AAAxB,gGAAA,MAAM,OAAA;AACf,+CAAqD;AAA5C,yGAAA,SAAS,OAAA;AAClB,yCAAuC;AAA9B,sGAAA,SAAS,OAAA;AAClB,2DAA2D;AAAlD,0HAAA,oBAAoB,OAAA;AAC7B,yDAAuD;AAA9C,sHAAA,iBAAiB,OAAA;AAC1B,6CAA8E;AAArE,oHAAA,qBAAqB,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/common/util/index.ts"],"names":[],"mappings":";;;AAAA,mCAAiC;AAAxB,gGAAA,MAAM,OAAA;AACf,+CAAqD;AAA5C,yGAAA,SAAS,OAAA;AAClB,iEAAkE;AAAzD,iIAAA,wBAAwB,OAAA;AACjC,yCAAuC;AAA9B,sGAAA,SAAS,OAAA;AAClB,2DAA2D;AAAlD,0HAAA,oBAAoB,OAAA;AAC7B,yDAAuD;AAA9C,sHAAA,iBAAiB,OAAA;AAC1B,6CAA8E;AAArE,oHAAA,qBAAqB,OAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hmcts/rpx-xui-node-lib",
3
- "version": "2.29.4-rc2",
3
+ "version": "2.29.5-content-security-truth",
4
4
  "description": "Common nodejs library components for XUI",
5
5
  "main": "dist/index",
6
6
  "types": "dist/index.d.ts",
@@ -111,5 +111,6 @@
111
111
  "@babel/traverse": "7.23.2",
112
112
  "minimatch": "3.0.5",
113
113
  "minimist": "1.2.6"
114
- }
114
+ },
115
+ "packageManager": "yarn@4.5.1"
115
116
  }
package/CHANGELOG.md DELETED
@@ -1,579 +0,0 @@
1
- ## [2.29.1](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.29.0...v2.29.1) (2024-07-18)
2
-
3
-
4
- ### Bug Fixes
5
-
6
- * yarn lock ([#242](https://github.com/hmcts/rpx-xui-node-lib/issues/242)) ([d38f1e5](https://github.com/hmcts/rpx-xui-node-lib/commit/d38f1e5296c5c855f22eb0c5132a28ab847a18e9))
7
-
8
- # [2.28.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.27.2...v2.28.0) (2024-01-18)
9
-
10
-
11
- ### Features
12
-
13
- * EXUI-382 session cookie ([#236](https://github.com/hmcts/rpx-xui-node-lib/issues/236)) ([f3a8d29](https://github.com/hmcts/rpx-xui-node-lib/commit/f3a8d29fc57084525b1171b8ca47d950137e13bf))
14
-
15
- ## [2.27.1](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.27.0...v2.27.1) (2023-08-15)
16
-
17
-
18
- ### Bug Fixes
19
-
20
- * **strategy.class.ts:** routeCredential for anonymous user ([#209](https://github.com/hmcts/rpx-xui-node-lib/issues/209)) ([63b2474](https://github.com/hmcts/rpx-xui-node-lib/commit/63b247451f7841d10884df5dc99afc83dd1a35ea))
21
-
22
- # [2.27.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.26.13...v2.27.0) (2023-06-19)
23
-
24
-
25
- ### Bug Fixes
26
-
27
- * **strategy.class.ts:** error handling ([#204](https://github.com/hmcts/rpx-xui-node-lib/issues/204)) ([a6ff50d](https://github.com/hmcts/rpx-xui-node-lib/commit/a6ff50d5d0980f81bbdab7b39607e5e185c8f4bd))
28
- * added engine version to package.json ([#201](https://github.com/hmcts/rpx-xui-node-lib/issues/201)) ([1658a2b](https://github.com/hmcts/rpx-xui-node-lib/commit/1658a2b25314dc0407c8951d304604c0663ac5bf))
29
- * change for sonar ([#202](https://github.com/hmcts/rpx-xui-node-lib/issues/202)) ([1482d9c](https://github.com/hmcts/rpx-xui-node-lib/commit/1482d9ceb8fb00e045b2ba22a25e8cc9a7092833))
30
- * removed unused variable ([#199](https://github.com/hmcts/rpx-xui-node-lib/issues/199)) ([e4930ae](https://github.com/hmcts/rpx-xui-node-lib/commit/e4930ae37d2abef24c41c06691559119dcae4658))
31
- * sonar fix ([#203](https://github.com/hmcts/rpx-xui-node-lib/issues/203)) ([4407649](https://github.com/hmcts/rpx-xui-node-lib/commit/44076498e4d452dbd1ec99a5deffb47ba610bf9d))
32
- * updated nvmrc ([#200](https://github.com/hmcts/rpx-xui-node-lib/issues/200)) ([c8ee89d](https://github.com/hmcts/rpx-xui-node-lib/commit/c8ee89d04e33669a6564c4f80ec9ff611e1b4e5f))
33
-
34
-
35
- ### Features
36
-
37
- * eUI-7844 Update packages ([#196](https://github.com/hmcts/rpx-xui-node-lib/issues/196)) ([b420253](https://github.com/hmcts/rpx-xui-node-lib/commit/b4202532126c2e7179df42f207413a6033cafc74))
38
-
39
- ## [2.26.13](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.26.12...v2.26.13) (2023-03-08)
40
-
41
-
42
- ### Reverts
43
-
44
- * Revert "test: test Yarn upgrade (#194)" (#195) ([1ceed75](https://github.com/hmcts/rpx-xui-node-lib/commit/1ceed75a016b155737bdd9ec9e52e285faccd78e)), closes [#194](https://github.com/hmcts/rpx-xui-node-lib/issues/194) [#195](https://github.com/hmcts/rpx-xui-node-lib/issues/195)
45
-
46
- ## [2.26.12](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.26.11...v2.26.12) (2023-03-03)
47
-
48
-
49
- ### Bug Fixes
50
-
51
- * added more logs ([#193](https://github.com/hmcts/rpx-xui-node-lib/issues/193)) ([409b07d](https://github.com/hmcts/rpx-xui-node-lib/commit/409b07d2123bc4533febd52e68b634f1e9608e74))
52
-
53
- ## [2.26.11](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.26.10...v2.26.11) (2023-03-01)
54
-
55
-
56
- ### Bug Fixes
57
-
58
- * Added loginHandler logs ([#191](https://github.com/hmcts/rpx-xui-node-lib/issues/191)) ([ed83652](https://github.com/hmcts/rpx-xui-node-lib/commit/ed836527a6430a44c2200a25f7c4d219a64bd61c))
59
-
60
- ## [2.26.10](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.26.9...v2.26.10) (2023-03-01)
61
-
62
-
63
- ### Bug Fixes
64
-
65
- * eUI 7753 reverted codeback ([#190](https://github.com/hmcts/rpx-xui-node-lib/issues/190)) ([601434d](https://github.com/hmcts/rpx-xui-node-lib/commit/601434df27cb56b781987f8575956b657378ba06))
66
-
67
- ## [2.26.9](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.26.8...v2.26.9) (2023-03-01)
68
-
69
-
70
- ### Bug Fixes
71
-
72
- * eUI 7753 reverted codeback ([#189](https://github.com/hmcts/rpx-xui-node-lib/issues/189)) ([73a9e5d](https://github.com/hmcts/rpx-xui-node-lib/commit/73a9e5d79076660aa0fca1566b647c984a453097))
73
-
74
- ## [2.26.8](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.26.7...v2.26.8) (2023-02-28)
75
-
76
-
77
- ### Bug Fixes
78
-
79
- * reverted back to a previously working and compiling state ([#187](https://github.com/hmcts/rpx-xui-node-lib/issues/187)) ([6e690d2](https://github.com/hmcts/rpx-xui-node-lib/commit/6e690d2ea9e84b557f9271077223228e8ee32f7e))
80
-
81
- ## [2.26.7](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.26.6...v2.26.7) (2023-02-28)
82
-
83
-
84
- ### Bug Fixes
85
-
86
- * e UI 7753 ([#186](https://github.com/hmcts/rpx-xui-node-lib/issues/186)) ([4da854e](https://github.com/hmcts/rpx-xui-node-lib/commit/4da854ed15d5cd4c5bdf1e026c4d2cea9a8be133))
87
-
88
- ## [2.26.6](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.26.5...v2.26.6) (2023-02-28)
89
-
90
-
91
- ### Bug Fixes
92
-
93
- * eUI-7753 Fixed the promises on login handler ([#185](https://github.com/hmcts/rpx-xui-node-lib/issues/185)) ([2b1afff](https://github.com/hmcts/rpx-xui-node-lib/commit/2b1afff738a5c548a1d1725f5fcd19713da2494d))
94
-
95
- ## [2.26.5](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.26.4...v2.26.5) (2023-02-15)
96
-
97
-
98
- ### Bug Fixes
99
-
100
- * EUI 7753 OIDC upgrade ([#181](https://github.com/hmcts/rpx-xui-node-lib/issues/181)) ([0246f11](https://github.com/hmcts/rpx-xui-node-lib/commit/0246f111fdc9ce0232f5c77b5fafba647a278147))
101
-
102
- ## [2.26.4](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.26.3...v2.26.4) (2023-02-09)
103
-
104
-
105
- ### Bug Fixes
106
-
107
- * EUI 7753 enhance log ([#179](https://github.com/hmcts/rpx-xui-node-lib/issues/179)) ([a55f737](https://github.com/hmcts/rpx-xui-node-lib/commit/a55f73771849f3826dd6d0ddea1fdd6c7353e7a0))
108
-
109
- ## [2.26.3](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.26.2...v2.26.3) (2022-10-06)
110
-
111
-
112
- ### Bug Fixes
113
-
114
- * fixed the app insight log ([eb7db94](https://github.com/hmcts/rpx-xui-node-lib/commit/eb7db9466cb044e675efaffa1eb548ce77038da5))
115
-
116
- ## [2.26.2](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.26.1...v2.26.2) (2022-10-05)
117
-
118
-
119
- ### Bug Fixes
120
-
121
- * added shorter timeout ([b9d6f2a](https://github.com/hmcts/rpx-xui-node-lib/commit/b9d6f2a421af100c117942af1dab6633cc0ba3eb))
122
- * enhance the logs ([b0b1eb9](https://github.com/hmcts/rpx-xui-node-lib/commit/b0b1eb910a8296789777fac8221073d65d4a8c76))
123
-
124
- ## [2.26.1](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.26.0...v2.26.1) (2022-09-30)
125
-
126
-
127
- ### Bug Fixes
128
-
129
- * **strategy.class.ts:** refactored the failure emit ([0510dbb](https://github.com/hmcts/rpx-xui-node-lib/commit/0510dbb7327fb494519e6b5d26193fec47bbe3e0))
130
-
131
- # [2.26.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.25.13...v2.26.0) (2022-09-30)
132
-
133
-
134
- ### Features
135
-
136
- * **strategy.class.ts:** improved the auth emit logs ([9b709f3](https://github.com/hmcts/rpx-xui-node-lib/commit/9b709f3eb9f6cc41a587afdfcdcc0e4ca006c6c7))
137
-
138
- ## [2.25.13](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.25.12...v2.25.13) (2022-09-29)
139
-
140
-
141
- ### Bug Fixes
142
-
143
- * **openid.class.ts:** increased OIDC timeout ([cd1de56](https://github.com/hmcts/rpx-xui-node-lib/commit/cd1de56771cfce53338b79c84820f3991c121828))
144
- * **reverted version:** reverted the version increase ([9dd208f](https://github.com/hmcts/rpx-xui-node-lib/commit/9dd208ffb70efdba3346f8caf9799e6022ff9e16))
145
-
146
- ## [2.25.12](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.25.11...v2.25.12) (2022-06-09)
147
-
148
- ## [2.25.11](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.25.10...v2.25.11) (2022-05-23)
149
-
150
-
151
- ### Bug Fixes
152
-
153
- * reverted version number as it is done automatically ([50cd12f](https://github.com/hmcts/rpx-xui-node-lib/commit/50cd12fb9b01b49ab9b8d51a0005bc365280a132))
154
-
155
- ## [2.25.9](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.25.8...v2.25.9) (2022-03-21)
156
-
157
-
158
- ### Bug Fixes
159
-
160
- * Emit invalid state in all cases ([#160](https://github.com/hmcts/rpx-xui-node-lib/issues/160)) ([a1a9cbe](https://github.com/hmcts/rpx-xui-node-lib/commit/a1a9cbe7ee3b0f3aacde093693b9870ce8dde2d4))
161
-
162
- ## [2.25.8](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.25.7...v2.25.8) (2022-03-16)
163
-
164
-
165
- ### Bug Fixes
166
-
167
- * Feature/e UI 4584 invalid state pw ([#158](https://github.com/hmcts/rpx-xui-node-lib/issues/158)) ([d16a8ef](https://github.com/hmcts/rpx-xui-node-lib/commit/d16a8efd54a9622c83a73999b6b2d79eda5150a9))
168
-
169
- ## [2.25.7](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.25.6...v2.25.7) (2022-03-09)
170
-
171
-
172
- ### Bug Fixes
173
-
174
- * **workflow:** workflow test ([#157](https://github.com/hmcts/rpx-xui-node-lib/issues/157)) ([9aef507](https://github.com/hmcts/rpx-xui-node-lib/commit/9aef507599fc6aa3ed43f231790df63025d75354))
175
-
176
- ## [2.25.6](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.25.5...v2.25.6) (2022-03-09)
177
-
178
-
179
- ### Bug Fixes
180
-
181
- * workflow test ([#156](https://github.com/hmcts/rpx-xui-node-lib/issues/156)) ([9307fe6](https://github.com/hmcts/rpx-xui-node-lib/commit/9307fe6e6813f3ccb127cda67502fcee0c1dea8d))
182
-
183
- ## [2.25.5](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.25.4...v2.25.5) (2022-03-08)
184
-
185
-
186
- ### Bug Fixes
187
-
188
- * made sure that state failures are emitted to the consuming app ([#152](https://github.com/hmcts/rpx-xui-node-lib/issues/152)) ([5c2e2d2](https://github.com/hmcts/rpx-xui-node-lib/commit/5c2e2d22dea62414af18b46bad82bc58794867ba))
189
-
190
- ## [2.25.4](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.25.3...v2.25.4) (2021-07-14)
191
-
192
-
193
- ### Bug Fixes
194
-
195
- * **strategy.class.ts:** remove node redirect ([#140](https://github.com/hmcts/rpx-xui-node-lib/issues/140)) ([fcea809](https://github.com/hmcts/rpx-xui-node-lib/commit/fcea809b66940ad349e535520c859bbd9d136957))
196
-
197
- ## [2.25.3](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.25.2...v2.25.3) (2021-05-24)
198
-
199
-
200
- ### Bug Fixes
201
-
202
- * **strategy.class.ts:** password is URL encoded now ([#134](https://github.com/hmcts/rpx-xui-node-lib/issues/134)) ([d556c84](https://github.com/hmcts/rpx-xui-node-lib/commit/d556c84a5e5dd23aa3c28df740fc6221fd0d88c4))
203
-
204
- ## [2.25.2](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.25.1...v2.25.2) (2021-03-09)
205
-
206
-
207
- ### Bug Fixes
208
-
209
- * **strategy.class.ts:** add extra logging ([#127](https://github.com/hmcts/rpx-xui-node-lib/issues/127)) ([06384d8](https://github.com/hmcts/rpx-xui-node-lib/commit/06384d8ea243b85e7693971b4d71fcb59035cf78))
210
-
211
- ## [2.25.1](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.25.0...v2.25.1) (2021-03-08)
212
-
213
-
214
- ### Bug Fixes
215
-
216
- * **strategy.class.ts:** routeCredentialToken expiry fix ([#124](https://github.com/hmcts/rpx-xui-node-lib/issues/124)) ([e895178](https://github.com/hmcts/rpx-xui-node-lib/commit/e895178110df8a7f22619932ea217a3d9d1fbe3d))
217
-
218
- # [2.25.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.24.4...v2.25.0) (2021-02-24)
219
-
220
-
221
- ### Features
222
-
223
- * **strategy.ts:** client app now add credentials per route ([#123](https://github.com/hmcts/rpx-xui-node-lib/issues/123)) ([c6d18b0](https://github.com/hmcts/rpx-xui-node-lib/commit/c6d18b032564dab05aa982f9bc1b50acb68b78fd))
224
-
225
- ## [2.24.4](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.24.3...v2.24.4) (2021-01-22)
226
-
227
-
228
- ### Bug Fixes
229
-
230
- * **test workflow:** test bug fix workflow ([#115](https://github.com/hmcts/rpx-xui-node-lib/issues/115)) ([9e6e937](https://github.com/hmcts/rpx-xui-node-lib/commit/9e6e937091f2552a42fe4e9ca046fad68996a96d))
231
-
232
- ## [2.24.2](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.24.1...v2.24.2) (2020-10-06)
233
-
234
-
235
- ### Bug Fixes
236
-
237
- * **csrf:** cookie only set on login ([#110](https://github.com/hmcts/rpx-xui-node-lib/issues/110)) ([4846832](https://github.com/hmcts/rpx-xui-node-lib/commit/4846832f398d772596dd5e821a4ee04c35fcaf38))
238
-
239
- ## [2.24.1](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.24.0...v2.24.1) (2020-10-05)
240
-
241
-
242
- ### Bug Fixes
243
-
244
- * **csrf:** value not read from cookie ([#109](https://github.com/hmcts/rpx-xui-node-lib/issues/109)) ([b85298b](https://github.com/hmcts/rpx-xui-node-lib/commit/b85298b3475d027c8f131316d5bd24de9fbbe673))
245
-
246
- # [2.24.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.23.5...v2.24.0) (2020-09-21)
247
-
248
-
249
- ### Features
250
-
251
- * **csrf:** added functionality for cross site request forgery (csrf) ([#107](https://github.com/hmcts/rpx-xui-node-lib/issues/107)) ([1ad4697](https://github.com/hmcts/rpx-xui-node-lib/commit/1ad469735470ef3ed192869fdfb1f82da4cee2cb))
252
-
253
- ## [2.23.5](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.23.4...v2.23.5) (2020-09-10)
254
-
255
-
256
- ### Bug Fixes
257
-
258
- * **session:** destroy redis session store on logout ([#105](https://github.com/hmcts/rpx-xui-node-lib/issues/105)) ([f61cb3a](https://github.com/hmcts/rpx-xui-node-lib/commit/f61cb3a77759e7d45b0d3759b2eb1afbecd5ce57))
259
-
260
- ## [2.23.4](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.23.3...v2.23.4) (2020-07-20)
261
-
262
-
263
- ### Bug Fixes
264
-
265
- * **oidc:** adding reference to interface ([4505929](https://github.com/hmcts/rpx-xui-node-lib/commit/4505929a062461687405e7bb3650ad56fc7ea803))
266
-
267
- ## [2.23.3](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.23.2...v2.23.3) (2020-07-20)
268
-
269
-
270
- ### Bug Fixes
271
-
272
- * **oidc:** adding getUserSessionTimeout reference to the common lib ([5142035](https://github.com/hmcts/rpx-xui-node-lib/commit/5142035b7fb61f9e01e140930a48c7605505806c))
273
-
274
- ## [2.23.2](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.23.1...v2.23.2) (2020-07-16)
275
-
276
-
277
- ### Bug Fixes
278
-
279
- * **oidc:** increased timeouts and retry count ([#102](https://github.com/hmcts/rpx-xui-node-lib/issues/102)) ([2d58807](https://github.com/hmcts/rpx-xui-node-lib/commit/2d58807bd3f2522756320b3d3c30de97ba711e40))
280
-
281
- ## [2.23.1](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.23.0...v2.23.1) (2020-07-16)
282
-
283
-
284
- ### Bug Fixes
285
-
286
- * **auth:** login first time not working ([#101](https://github.com/hmcts/rpx-xui-node-lib/issues/101)) ([e7ce154](https://github.com/hmcts/rpx-xui-node-lib/commit/e7ce1542a25f515b2dc475b789cd461db1e47c60))
287
-
288
- # [2.23.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.22.2...v2.23.0) (2020-07-13)
289
-
290
-
291
- ### Features
292
-
293
- * **oidc:** session timeout finder logic ([3f59af4](https://github.com/hmcts/rpx-xui-node-lib/commit/3f59af42ebf873ec895628f3908766a1ae7b7477))
294
-
295
- ## [2.22.2](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.22.1...v2.22.2) (2020-07-10)
296
-
297
-
298
- ### Bug Fixes
299
-
300
- * **debug logger:** fixed issue with compiled version of debug logger ([#94](https://github.com/hmcts/rpx-xui-node-lib/issues/94)) ([daba682](https://github.com/hmcts/rpx-xui-node-lib/commit/daba682303ee8be7608c992026accf66bf4234a4))
301
-
302
- ## [2.22.1](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.22.0...v2.22.1) (2020-07-06)
303
-
304
-
305
- ### Bug Fixes
306
-
307
- * **tidy up:** auth event success callback ([#89](https://github.com/hmcts/rpx-xui-node-lib/issues/89)) ([fc84583](https://github.com/hmcts/rpx-xui-node-lib/commit/fc84583ae7a4c6bead6aa6c73e16dbf9e7133a0d))
308
-
309
- # [2.22.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.21.0...v2.22.0) (2020-07-03)
310
-
311
-
312
- ### Features
313
-
314
- * **allow roles:** added optional regex pattern for allowing roles ([#88](https://github.com/hmcts/rpx-xui-node-lib/issues/88)) ([e2203a3](https://github.com/hmcts/rpx-xui-node-lib/commit/e2203a3e9bddad9ffa8e5d6e2666f95b24a5ac03))
315
-
316
- # [2.21.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.20.1...v2.21.0) (2020-06-23)
317
-
318
-
319
- ### Features
320
-
321
- * **debug log:** replaced console with debug log ([#87](https://github.com/hmcts/rpx-xui-node-lib/issues/87)) ([a5ed0cb](https://github.com/hmcts/rpx-xui-node-lib/commit/a5ed0cb844f6fdaa6d202064567ac06b1cb34c7e))
322
-
323
- ## [2.20.1](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.20.0...v2.20.1) (2020-06-21)
324
-
325
-
326
- ### Bug Fixes
327
-
328
- * **oidc:** refresh handler not being called ([#85](https://github.com/hmcts/rpx-xui-node-lib/issues/85)) ([e2ad5a0](https://github.com/hmcts/rpx-xui-node-lib/commit/e2ad5a0150aaf5d4332cdd1843c59a442ad180f9))
329
-
330
- # [2.20.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.19.0...v2.20.0) (2020-06-20)
331
-
332
-
333
- ### Features
334
-
335
- * **callback url:** middleware for dynamic callback ([#84](https://github.com/hmcts/rpx-xui-node-lib/issues/84)) ([dd5915f](https://github.com/hmcts/rpx-xui-node-lib/commit/dd5915f755bfd732bb9703c1d3612ea453e36015))
336
-
337
- # [2.19.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.18.1...v2.19.0) (2020-06-19)
338
-
339
-
340
- ### Features
341
-
342
- * **auth:** added bearer tokens and roles onto request headers ([#83](https://github.com/hmcts/rpx-xui-node-lib/issues/83)) ([809e0a9](https://github.com/hmcts/rpx-xui-node-lib/commit/809e0a9bd5383ab5cbe6e9023993c1e02ca576c0))
343
-
344
- ## [2.18.1](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.18.0...v2.18.1) (2020-06-12)
345
-
346
-
347
- ### Bug Fixes
348
-
349
- * **xuinode:** fixed dynamic import issue when compiling with webpack ([#75](https://github.com/hmcts/rpx-xui-node-lib/issues/75)) ([215f80e](https://github.com/hmcts/rpx-xui-node-lib/commit/215f80e0b5fcb1d057eec9b53e0853292e87fd37))
350
-
351
- # [2.18.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.17.0...v2.18.0) (2020-06-11)
352
-
353
-
354
- ### Features
355
-
356
- * **XuiNode:** node wrapper event hooks ([#68](https://github.com/hmcts/rpx-xui-node-lib/issues/68)) ([d63d51c](https://github.com/hmcts/rpx-xui-node-lib/commit/d63d51c8f15bec5d4f2e1874ed899446dc6db6ea))
357
-
358
- # [2.17.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.16.0...v2.17.0) (2020-06-10)
359
-
360
-
361
- ### Bug Fixes
362
-
363
- * **pipeline:** fix stpes ([#58](https://github.com/hmcts/rpx-xui-node-lib/issues/58)) ([a976a0b](https://github.com/hmcts/rpx-xui-node-lib/commit/a976a0bcfacd3b625f60db2d582c7fba5f36a7a9))
364
- * **pipeline:** seperate pr title lint to another workflow ([#60](https://github.com/hmcts/rpx-xui-node-lib/issues/60)) ([8e4cee7](https://github.com/hmcts/rpx-xui-node-lib/commit/8e4cee7f39fa6dee9f1191b8d21094e0d1d1990b))
365
-
366
-
367
- ### Features
368
-
369
- * **pipeline:** add PR commit rules for master ([#47](https://github.com/hmcts/rpx-xui-node-lib/issues/47)) ([45d89fe](https://github.com/hmcts/rpx-xui-node-lib/commit/45d89fe511316a619a43054362a0fcf612c67f8a))
370
- * **pipeline:** amend steps ([#56](https://github.com/hmcts/rpx-xui-node-lib/issues/56)) ([c6f5480](https://github.com/hmcts/rpx-xui-node-lib/commit/c6f5480f2a448bc3eca24ecd574bce53f2b02ef9))
371
- * **pipeline:** amend workflow steps ([#55](https://github.com/hmcts/rpx-xui-node-lib/issues/55)) ([a63b85e](https://github.com/hmcts/rpx-xui-node-lib/commit/a63b85e26ed4f7dfdbb59e520f601ee41507ac1d))
372
- * **pipeline:** Enforce commit rule ([#54](https://github.com/hmcts/rpx-xui-node-lib/issues/54)) ([165df77](https://github.com/hmcts/rpx-xui-node-lib/commit/165df779cc3a504e2e4d4cb5d556a3cadb9950b4))
373
- * **pipeline:** Enforce commit rule ([#65](https://github.com/hmcts/rpx-xui-node-lib/issues/65)) ([6d84057](https://github.com/hmcts/rpx-xui-node-lib/commit/6d8405755a302951e3dd801e359228835697fac5))
374
- * **pipeline:** Separate pr lint ([#64](https://github.com/hmcts/rpx-xui-node-lib/issues/64)) ([3303203](https://github.com/hmcts/rpx-xui-node-lib/commit/330320333a5569e0b2d38766eb57d115328e688d))
375
- * **pipeline:** test new steps ([#62](https://github.com/hmcts/rpx-xui-node-lib/issues/62)) ([b9c9d13](https://github.com/hmcts/rpx-xui-node-lib/commit/b9c9d13513c2470ebb3d0ff1d5385a98c987e6a0))
376
-
377
- # [2.16.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.15.2...v2.16.0) (2020-06-09)
378
-
379
-
380
- ### Features
381
-
382
- * **nodelib:** added node library wrapper and refactored file structure ([#46](https://github.com/hmcts/rpx-xui-node-lib/issues/46)) ([2440d46](https://github.com/hmcts/rpx-xui-node-lib/commit/2440d46311b5f1bafc050a54922e856bad99f85f))
383
-
384
- # [2.15.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.14.1...v2.15.0) (2020-06-08)
385
-
386
-
387
- ### Features
388
-
389
- * **oidc:** reinstate previously failing test (now passing) ([1630ce0](https://github.com/hmcts/rpx-xui-node-lib/commit/1630ce047c4eaac1cfcdba56f79c2c5ab197b583))
390
- * **s2s:** add unit tests and refactor ([620cd77](https://github.com/hmcts/rpx-xui-node-lib/commit/620cd7728a446594b5e3d2aa79791d98d9e27436))
391
- * **s2s:** add unit tests and refactor ([ede1d55](https://github.com/hmcts/rpx-xui-node-lib/commit/ede1d5544b59fa697b05d1508f523d6c9c40b136))
392
- * **s2s:** minor rename of test ([7e08929](https://github.com/hmcts/rpx-xui-node-lib/commit/7e0892901d73dc83e3c19d9eaaed6ec6f2817a14))
393
- * **s2s:** move back to otp for OTP generation ([60539b8](https://github.com/hmcts/rpx-xui-node-lib/commit/60539b893e0a216dcf4a13679f1f2a944054207e))
394
- * **s2s:** move package ordering ([a1b52b4](https://github.com/hmcts/rpx-xui-node-lib/commit/a1b52b43d374feb0a18f69dbd8733acc0341a291))
395
- * **s2s:** revert move back to otp for OTP generation ([208ea9e](https://github.com/hmcts/rpx-xui-node-lib/commit/208ea9e24da47ec014e8f215957853e03d66e57b)), closes [#40](https://github.com/hmcts/rpx-xui-node-lib/issues/40)
396
- * **s2s:** temporarily disable failing test ([8131d89](https://github.com/hmcts/rpx-xui-node-lib/commit/8131d891e5a5374b1e83dc6e95b95190628cfe40))
397
- * **s2s:** unit tests ([520e27d](https://github.com/hmcts/rpx-xui-node-lib/commit/520e27da3ac7e0b9f3c55b2c5506d5f1a25be911))
398
- * **s2s:** unit tests ([51852de](https://github.com/hmcts/rpx-xui-node-lib/commit/51852de7d1b2f2669e1553d4fd238c982a5ee5f0))
399
-
400
- ## [2.14.1](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.14.0...v2.14.1) (2020-06-08)
401
-
402
-
403
- ### Bug Fixes
404
-
405
- * **oidc logout and s2s:** new implementation using otplib ([d45cfe4](https://github.com/hmcts/rpx-xui-node-lib/commit/d45cfe4037848fbf1e350d3a7fc2ec1f8a56763b))
406
-
407
- # [2.14.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.13.3...v2.14.0) (2020-06-05)
408
-
409
-
410
- ### Bug Fixes
411
-
412
- * **pipeline:** test protected branch ([#36](https://github.com/hmcts/rpx-xui-node-lib/issues/36)) ([80415c1](https://github.com/hmcts/rpx-xui-node-lib/commit/80415c1d3b3e75fd85aa47695ba22f8ab43d213a))
413
-
414
-
415
- ### Features
416
-
417
- * **s2s:** add unit tests and refactor ([#34](https://github.com/hmcts/rpx-xui-node-lib/issues/34)) ([71c27a3](https://github.com/hmcts/rpx-xui-node-lib/commit/71c27a309161bae46f58f0712ed8616fca7aa0bd)), closes [#35](https://github.com/hmcts/rpx-xui-node-lib/issues/35) [#36](https://github.com/hmcts/rpx-xui-node-lib/issues/36) [#29](https://github.com/hmcts/rpx-xui-node-lib/issues/29)
418
-
419
- ## [2.13.3](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.13.2...v2.13.3) (2020-06-05)
420
-
421
-
422
- ### Bug Fixes
423
-
424
- * **pipeline:** test protected branch ([#30](https://github.com/hmcts/rpx-xui-node-lib/issues/30)) ([c609cfd](https://github.com/hmcts/rpx-xui-node-lib/commit/c609cfd1b53e719f6f67ea015d1d5cb876964e5a))
425
-
426
- ## [2.13.2](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.13.1...v2.13.2) (2020-06-05)
427
-
428
-
429
- ### Bug Fixes
430
-
431
- * **auth:** Unit Tests ([#28](https://github.com/hmcts/rpx-xui-node-lib/issues/28)) ([fa27be5](https://github.com/hmcts/rpx-xui-node-lib/commit/fa27be5c292024fdeeae501f47759f582b160940))
432
-
433
- ## [2.13.1](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.13.0...v2.13.1) (2020-06-04)
434
-
435
-
436
- ### Bug Fixes
437
-
438
- * **pipeline:** combine workflow ([#27](https://github.com/hmcts/rpx-xui-node-lib/issues/27)) ([3b8ee0e](https://github.com/hmcts/rpx-xui-node-lib/commit/3b8ee0e1497f3ef86497ba37f78a2f4e32269ac6))
439
-
440
- # [2.13.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.12.0...v2.13.0) (2020-06-04)
441
-
442
-
443
- ### Features
444
-
445
- * **pipeline:** enable sonar on master ([#25](https://github.com/hmcts/rpx-xui-node-lib/issues/25)) ([beae26b](https://github.com/hmcts/rpx-xui-node-lib/commit/beae26beb0aaef8d0bd050c95812f3918ea0a9d5))
446
-
447
- # [2.12.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.11.3...v2.12.0) (2020-06-04)
448
-
449
-
450
- ### Features
451
-
452
- * **pipeline:** new pr github action ([#24](https://github.com/hmcts/rpx-xui-node-lib/issues/24)) ([cd6f172](https://github.com/hmcts/rpx-xui-node-lib/commit/cd6f1728ccab9760cdc8ce545c2394c8432e5d10))
453
-
454
- ## [2.11.3](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.11.2...v2.11.3) (2020-06-03)
455
-
456
-
457
- ### Bug Fixes
458
-
459
- * **pipeline:** add package ([3ca2752](https://github.com/hmcts/rpx-xui-node-lib/commit/3ca2752cf7d33bf0a121cf292af8de22c916b20a))
460
- * **pipeline:** fix sonar source path ([b834595](https://github.com/hmcts/rpx-xui-node-lib/commit/b8345957dd76d5e65f13c4642eac257ce324a199))
461
-
462
- ## [2.11.2](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.11.1...v2.11.2) (2020-06-03)
463
-
464
-
465
- ### Bug Fixes
466
-
467
- * **pipeline:** sonar test ([#23](https://github.com/hmcts/rpx-xui-node-lib/issues/23)) ([93097f7](https://github.com/hmcts/rpx-xui-node-lib/commit/93097f7a9b41b9296e6b8ddf496192ee178a6bee))
468
-
469
- ## [2.11.1](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.11.0...v2.11.1) (2020-06-02)
470
-
471
-
472
- ### Bug Fixes
473
-
474
- * **pipeline:** add sonar config ([0286e86](https://github.com/hmcts/rpx-xui-node-lib/commit/0286e86731269bf197973cb942b9d71815f97109))
475
- * **pipeline:** add sonar config ([46142a5](https://github.com/hmcts/rpx-xui-node-lib/commit/46142a5c48ec36efb65946bb87460ddc8f7286ec))
476
-
477
- # [2.11.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.10.1...v2.11.0) (2020-06-02)
478
-
479
-
480
- ### Features
481
-
482
- * **pipeline:** test pr build ([#20](https://github.com/hmcts/rpx-xui-node-lib/issues/20)) ([178c41c](https://github.com/hmcts/rpx-xui-node-lib/commit/178c41ce3fbe61158229799fa076a66a7d716787))
483
-
484
- ## [2.10.1](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.10.0...v2.10.1) (2020-06-02)
485
-
486
-
487
- ### Bug Fixes
488
-
489
- * **pipeline:** remove sonar trigger from master ([154621a](https://github.com/hmcts/rpx-xui-node-lib/commit/154621aa755ff0d69eb3622e87bcdfe1808dcac7))
490
-
491
- # [2.10.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.9.0...v2.10.0) (2020-06-02)
492
-
493
-
494
- ### Features
495
-
496
- * **pipeline:** add master trigger ([b6b0b96](https://github.com/hmcts/rpx-xui-node-lib/commit/b6b0b96c5f843042cbcfb29c80bbac4d98c5f01c))
497
-
498
- # [2.9.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.8.0...v2.9.0) (2020-06-02)
499
-
500
-
501
- ### Features
502
-
503
- * **pipeline:** add PR build workflow ([716f46c](https://github.com/hmcts/rpx-xui-node-lib/commit/716f46cf9dc5a6731bc71da396d8901b9528c412))
504
-
505
- # [2.8.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.7.0...v2.8.0) (2020-06-01)
506
-
507
-
508
- ### Features
509
-
510
- * **auth:** implement S2S authentication as Express middleware ([f5c8da3](https://github.com/hmcts/rpx-xui-node-lib/commit/f5c8da38b76fbf56e10d1e0c0ecb3a5ddc8183df))
511
- * **auth:** implement S2S authentication as Express middleware ([548dd12](https://github.com/hmcts/rpx-xui-node-lib/commit/548dd12fb8d55b246cfeed40d7d45550f40ff2ba))
512
- * **auth:** implement S2S authentication as Express middleware ([90f9114](https://github.com/hmcts/rpx-xui-node-lib/commit/90f91149b208ea591e8941f8331c74379f29dbf4))
513
- * **auth:** implement S2S authentication as Express middleware ([2135c5c](https://github.com/hmcts/rpx-xui-node-lib/commit/2135c5c01e2e273ada4ca245f0a46f3eee5f1a7d))
514
- * **s2s:** address PR review comments from [@ronaldmansveld](https://github.com/ronaldmansveld) ([935dd52](https://github.com/hmcts/rpx-xui-node-lib/commit/935dd525a470b16fbeb42b8da7edeea7211e9df8))
515
- * **s2s:** move to node-otp for OTP generation ([23af6ed](https://github.com/hmcts/rpx-xui-node-lib/commit/23af6edb775cc0889f570440b78b89c94b1384e0))
516
- * **s2s:** move to node-otp for OTP generation ([afaddea](https://github.com/hmcts/rpx-xui-node-lib/commit/afaddeac538cbbfb1ce3e8299eca558cdf4f5b54))
517
- * **s2s:** move to node-otp for OTP generation ([952ca15](https://github.com/hmcts/rpx-xui-node-lib/commit/952ca152a30e93fe912548d59061ec0579b1b997))
518
- * **s2s:** move to node-otp for OTP generation ([1e1954e](https://github.com/hmcts/rpx-xui-node-lib/commit/1e1954efbefefd702aa418098837272a95b25280))
519
- * **s2s:** remove redundant "customTypes" entry from typeRoots ([55e2000](https://github.com/hmcts/rpx-xui-node-lib/commit/55e20003e2d22265730a1239a6ddaaef8fadea15))
520
- * **s2s:** remove redundant serviceAuth class ([f86c144](https://github.com/hmcts/rpx-xui-node-lib/commit/f86c14412441023e1a0bca9e9b61866b3b1d8c88))
521
- * **s2s:** remove redundant serviceAuth class ([175f0b9](https://github.com/hmcts/rpx-xui-node-lib/commit/175f0b9202edee4953acefb789dc5458d93cc713))
522
-
523
- # [2.7.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.6.1...v2.7.0) (2020-05-29)
524
-
525
-
526
- ### Features
527
-
528
- * **S2S:** implement S2S authentication as Express middleware ([#17](https://github.com/hmcts/rpx-xui-node-lib/issues/17)) ([08f5c14](https://github.com/hmcts/rpx-xui-node-lib/commit/08f5c140b286843e5516be4d9b3072fbf057187c))
529
-
530
- ## [2.6.1](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.6.0...v2.6.1) (2020-05-29)
531
-
532
-
533
- ### Bug Fixes
534
-
535
- * **pipeline:** remove tarball config ([739c0ae](https://github.com/hmcts/rpx-xui-node-lib/commit/739c0ae6f7d2be368dc81f55974ed111ca83e976))
536
-
537
- # [2.6.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.5.2...v2.6.0) (2020-05-29)
538
-
539
-
540
- ### Features
541
-
542
- * **pipeline:** add tarball to release ([5f763f7](https://github.com/hmcts/rpx-xui-node-lib/commit/5f763f795a2d89c9ee6d26659bb6219e76a7bc95))
543
-
544
- ## [2.5.2](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.5.1...v2.5.2) (2020-05-29)
545
-
546
-
547
- ### Bug Fixes
548
-
549
- * **pipeline:** test bugfix for master commit for changelog ([5dbd965](https://github.com/hmcts/rpx-xui-node-lib/commit/5dbd9655d0fbd2c95fff780c3f4bf98cd5cfd369))
550
-
551
- ## [2.5.1](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.5.0...v2.5.1) (2020-05-29)
552
-
553
-
554
- ### Bug Fixes
555
-
556
- * **pipeline:** add changelog commit to master ([10150fb](https://github.com/hmcts/rpx-xui-node-lib/commit/10150fb83848de141335c4427ae2eb5fbe9f7009))
557
-
558
- # [2.3.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.2.0...v2.3.0) (2020-05-26)
559
-
560
-
561
- ### Features
562
-
563
- * **oauth2:** implement oAuth2 ([bcedfb9](https://github.com/hmcts/rpx-xui-node-lib/commit/bcedfb9a49df232e6022b3c46950018ac74de519))
564
-
565
- # [2.2.0](https://github.com/hmcts/rpx-xui-node-lib/compare/v2.1.1...v2.2.0) (2020-05-26)
566
-
567
-
568
- ### Bug Fixes
569
-
570
- * **pipeline:** add ci command ([17cc885](https://github.com/hmcts/rpx-xui-node-lib/commit/17cc8852e3cdad2957bf3ed5b5ceecefa45c4d15))
571
- * **release:** fixed npm publish ([55e7825](https://github.com/hmcts/rpx-xui-node-lib/commit/55e7825e479971a4184530347acc0332cc4c6540))
572
-
573
-
574
- ### Features
575
-
576
- * **piepline:** test ([ee856f2](https://github.com/hmcts/rpx-xui-node-lib/commit/ee856f27b191e999630e0093f8d162b7fde5e243))
577
- * **pipeline:** add Changelog module ([aa8e3d7](https://github.com/hmcts/rpx-xui-node-lib/commit/aa8e3d70e0b37e3b8c7673121f468de74cfef790))
578
- * **pipeline:** add plugin for semantic release ([3ae0a5a](https://github.com/hmcts/rpx-xui-node-lib/commit/3ae0a5a82b86c68e1c2847285eb885e5a6948c72))
579
- * **pipeline:** chnage release branch ([b61fdde](https://github.com/hmcts/rpx-xui-node-lib/commit/b61fdde91a55a663927f0a6572a0a58e13671705))