@axinom/mosaic-service-common 0.23.0-rc.4 → 0.23.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 +14 -0
- package/dist/common/helpers/test.helpers.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,20 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.23.0](https://dev.azure.com/axinom/CMS/_git/Navy/branchCompare?baseVersion=GT@axinom/mosaic-service-common@0.22.2&targetVersion=GT@axinom/mosaic-service-common@0.23.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* video service tests and adjustments ([9993ca7](https://dev.azure.com/axinom/CMS/_git/Navy/commit/9993ca7ce3a262be75fa89c033cab4b63631afe6)), closes [#36178](https://dev.azure.com/axinom/CMS/_workitems/edit/36178)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* toBeIso8601Strict adjusted to accept 6 digit-long milliseconds ([86d5b98](https://dev.azure.com/axinom/CMS/_git/Navy/commit/86d5b98d8577bbdfed8b237ef85faf1d0fc9bb5f))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
6
20
|
### [0.22.2](https://dev.azure.com/axinom/CMS/_git/Navy/branchCompare?baseVersion=GT@axinom/mosaic-service-common@0.22.1&targetVersion=GT@axinom/mosaic-service-common@0.22.2) (2022-08-29)
|
|
7
21
|
|
|
8
22
|
**Note:** Version bump only for package @axinom/mosaic-service-common
|
|
@@ -32,7 +32,7 @@ exports.dateToBeGreaterThan = dateToBeGreaterThan;
|
|
|
32
32
|
* a valid ISO 8601-1:2019 date and time format).
|
|
33
33
|
*/
|
|
34
34
|
const toBeIso8601Strict = (expected) => {
|
|
35
|
-
const regex = /^[0-9]{4}-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1])T([0-1][0-9]|2[0-3])(:[0-5][0-9]){2}(\.[0-9]{0,
|
|
35
|
+
const regex = /^[0-9]{4}-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1])T([0-1][0-9]|2[0-3])(:[0-5][0-9]){2}(\.[0-9]{0,6})?(Z|\+00:00)$/;
|
|
36
36
|
const isIso = regex.test(expected);
|
|
37
37
|
expect(isIso, `'${expected}' was expected to be Iso8601`).toBe(true);
|
|
38
38
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axinom/mosaic-service-common",
|
|
3
|
-
"version": "0.23.0
|
|
3
|
+
"version": "0.23.0",
|
|
4
4
|
"description": "Common helpers and PostgreSQL-related functionality",
|
|
5
5
|
"author": "Axinom",
|
|
6
6
|
"license": "PROPRIETARY",
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"publishConfig": {
|
|
66
66
|
"access": "public"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "95ecb7046600296970c00934ed6b5effc16c8908"
|
|
69
69
|
}
|