@itentialopensource/adapter-delinea 2.2.2 → 2.2.3

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
+ ## 2.2.3 [08-25-2024]
3
+
4
+ * update dependencies and metadata
5
+
6
+ See merge request itentialopensource/adapters/adapter-delinea!13
7
+
8
+ ---
9
+
2
10
  ## 2.2.2 [08-14-2024]
3
11
 
4
12
  * Changes made at 2024.08.14_17:50PM
package/metadata.json CHANGED
@@ -1,8 +1,10 @@
1
1
  {
2
2
  "name": "adapter-delinea",
3
3
  "webName": "Adapter for Integration to Delinea Secret Server",
4
+ "supportLevel": "community",
4
5
  "vendor": "Delinea",
5
6
  "product": "Secret Server",
7
+ "techAlliance": false,
6
8
  "osVersion": [],
7
9
  "apiVersions": [
8
10
  "11.2.3"
@@ -46,7 +48,7 @@
46
48
  "storeLink": "",
47
49
  "npmLink": "https://www.npmjs.com/package/@itentialopensource/adapter-delinea",
48
50
  "repoLink": "https://gitlab.com/itentialopensource/adapters/adapter-delinea",
49
- "docLink": "https://docs.itential.com/opensource/docs/delinea",
51
+ "docLink": "https://gitlab.com/itentialopensource/adapters/adapter-delinea/-/blob/master/README.md?ref_type=heads",
50
52
  "demoLinks": [],
51
53
  "trainingLinks": [
52
54
  {
@@ -63,7 +65,7 @@
63
65
  "apiLinks": [
64
66
  {
65
67
  "title": "Delinea - Secret Server API",
66
- "link": "https://docs.delinea.com/online-help/secret-server/api-scripting/rest-api-reference-download/index.htm",
68
+ "link": "https://docs.delinea.com/online-help/secret-server/api-scripting/index.htm",
67
69
  "public": true
68
70
  }
69
71
  ],
@@ -77,7 +79,5 @@
77
79
  "workflowProjects": [],
78
80
  "transformationProjects": [],
79
81
  "exampleProjects": []
80
- },
81
- "supportLevel": "community",
82
- "techAlliance": false
82
+ }
83
83
  }
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@itentialopensource/adapter-delinea",
3
- "version": "2.2.2",
3
+ "version": "2.2.3",
4
4
  "description": "This adapter integrates with system described as: Delinea Secret Server.",
5
5
  "main": "adapter.js",
6
6
  "wizardVersion": "2.44.7",
7
- "engineVersion": "1.67.19",
7
+ "engineVersion": "1.68.2",
8
8
  "adapterType": "http",
9
9
  "scripts": {
10
10
  "artifactize": "npm i && node utils/packModificationScript.js",
@@ -51,7 +51,7 @@
51
51
  "author": "Itential",
52
52
  "homepage": "https://gitlab.com/itentialopensource/adapters/adapter-delinea#readme",
53
53
  "dependencies": {
54
- "@itentialopensource/adapter-utils": "^5.6.0",
54
+ "@itentialopensource/adapter-utils": "^5.7.0",
55
55
  "acorn": "^8.12.1",
56
56
  "ajv": "^8.17.1",
57
57
  "axios": "^1.7.4",
@@ -66,7 +66,7 @@
66
66
  "prompts": "^2.4.2",
67
67
  "readline-sync": "^1.4.10",
68
68
  "semver": "^7.6.3",
69
- "winston": "^3.13.1"
69
+ "winston": "^3.14.2"
70
70
  },
71
71
  "devDependencies": {
72
72
  "chai": "^4.3.7",
Binary file
@@ -1,10 +1,10 @@
1
1
  {
2
- "version": "2.1.6",
2
+ "version": "2.2.2",
3
3
  "configLines": 49479,
4
4
  "scriptLines": 1783,
5
5
  "codeLines": 67350,
6
- "testLines": 41075,
7
- "testCases": 2202,
8
- "totalCodeLines": 110208,
6
+ "testLines": 41051,
7
+ "testCases": 2201,
8
+ "totalCodeLines": 110184,
9
9
  "wfTasks": 824
10
10
  }
@@ -4,7 +4,6 @@
4
4
  /* eslint no-unused-vars: warn */
5
5
 
6
6
  const assert = require('assert');
7
- const http = require('http');
8
7
  const https = require('https');
9
8
  const mocha = require('mocha');
10
9
  const ping = require('ping');
@@ -53,29 +52,6 @@ describe('[integration] Adapter Test', () => {
53
52
  });
54
53
  });
55
54
 
56
- it('Support HTTP on port 80', (done) => {
57
- const requestOptions = {
58
- host,
59
- port: 80,
60
- method: 'HEAD'
61
- };
62
-
63
- const req = http.request(requestOptions, (res) => {
64
- try {
65
- assert.ok(res.statusCode >= 200 && res.statusCode < 400);
66
- done();
67
- } catch (error) {
68
- done(error);
69
- }
70
- });
71
-
72
- req.on('error', (err) => {
73
- done(err);
74
- });
75
-
76
- req.end();
77
- });
78
-
79
55
  it('Support HTTPS on port 443', (done) => {
80
56
  const requestOptions = {
81
57
  host,
@@ -323,7 +323,7 @@ describe('[unit] Delinea Adapter Test', () => {
323
323
  assert.equal('^0.4.4', packageDotJson.dependencies.ping);
324
324
  assert.equal('^1.4.10', packageDotJson.dependencies['readline-sync']);
325
325
  assert.equal('^7.6.3', packageDotJson.dependencies.semver);
326
- assert.equal('^3.13.1', packageDotJson.dependencies.winston);
326
+ assert.equal('^3.14.2', packageDotJson.dependencies.winston);
327
327
  done();
328
328
  } catch (error) {
329
329
  log.error(`Test Failure: ${error}`);
@@ -561,7 +561,7 @@ describe('[unit] Delinea Adapter Test', () => {
561
561
  log.error(`Adapter Exception: ${error}`);
562
562
  done(error);
563
563
  }
564
- });
564
+ }).timeout(attemptTimeout);
565
565
  });
566
566
 
567
567
  describe('propertiesSchema.json', () => {