@axinom/mosaic-db-common 0.15.1-rc.2 → 0.15.1
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
|
@@ -3,6 +3,14 @@
|
|
|
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.15.1](https://dev.azure.com/axinom/CMS/_git/Navy/branchCompare?baseVersion=GT@axinom/mosaic-db-common@0.15.0&targetVersion=GT@axinom/mosaic-db-common@0.15.1) (2022-04-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @axinom/mosaic-db-common
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.15.0](https://dev.azure.com/axinom/CMS/_git/Navy/branchCompare?baseVersion=GT@axinom/mosaic-db-common@0.14.0&targetVersion=GT@axinom/mosaic-db-common@0.15.0) (2022-04-01)
|
|
7
15
|
|
|
8
16
|
|
|
@@ -52,7 +52,7 @@ BEGIN
|
|
|
52
52
|
-- get sig of calling function
|
|
53
53
|
GET DIAGNOSTICS stack = PG_CONTEXT;
|
|
54
54
|
fcesig := substring(substring(stack from 'function (.*)') from 'function (.*?) line');
|
|
55
|
-
callinfo := CASE WHEN fcesig IS NULL THEN '' ELSE '
|
|
55
|
+
callinfo := CASE WHEN fcesig IS NULL THEN '' ELSE 'Long identifier in ' || fcesig::regprocedure::text || '. ' END;
|
|
56
56
|
perform ax_utils.raise_error('%sIdentifier "%s" exceeds 63 bytes. %s', 'SETUP', callinfo, identifier, hint);
|
|
57
57
|
END IF;
|
|
58
58
|
END;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axinom/mosaic-db-common",
|
|
3
|
-
"version": "0.15.1
|
|
3
|
+
"version": "0.15.1",
|
|
4
4
|
"description": "This library encapsulates database-related functionality to develop Mosaic based services.",
|
|
5
5
|
"author": "Axinom",
|
|
6
6
|
"license": "PROPRIETARY",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "95a5cf75268322d31caafa8af489a6c884a3aca8"
|
|
52
52
|
}
|