@itentialopensource/adapter-utils 5.7.2 → 5.8.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 CHANGED
@@ -1,4 +1,12 @@
1
1
 
2
+ ## 5.8.0 [09-09-2024]
3
+
4
+ * Add support for RESTCONF endpoints
5
+
6
+ See merge request itentialopensource/adapter-utils!298
7
+
8
+ ---
9
+
2
10
  ## 5.7.2 [09-06-2024]
3
11
 
4
12
  * Update lock file
@@ -847,6 +847,7 @@ function buildRequestPath(entity, action, entitySchema, reqPath, uriPathVars, ur
847
847
 
848
848
  // remove any double slashes that may be in the path - can happen if base path is / or ends in a /
849
849
  uriPath = uriPath.replace(/\/\//g, '/');
850
+ uriPath = uriPath.replace(/=\//g, '=');
850
851
 
851
852
  const result = {
852
853
  path: uriPath
@@ -892,6 +893,7 @@ function buildRequestPath(entity, action, entitySchema, reqPath, uriPathVars, ur
892
893
 
893
894
  // remove any double slashes that may be in the path - can happen if base path is / or ends in a /
894
895
  uriPath = uriPath.replace(/\/\//g, '/');
896
+ uriPath = uriPath.replace(/=\//g, '=');
895
897
 
896
898
  const result = {
897
899
  path: uriPath
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itentialopensource/adapter-utils",
3
- "version": "5.7.2",
3
+ "version": "5.8.0",
4
4
  "description": "Itential Adapter Utility Libraries",
5
5
  "scripts": {
6
6
  "postinstall": "node utils/setup.js",
Binary file