Skip to content

Commit 03a6b12

Browse files
authored
Merge pull request #282 from Cox-Automotive/fix_deprecation_warnings
Fix deprecation warnings comming from punycode dependency.
2 parents a1e9ab1 + 17beb8d commit 03a6b12

14 files changed

+1846
-1135
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ node_modules
33
.vscode/
44
coverage
55
*/.alksrc
6+
.tool-versions

changelog.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
★ Release Notes: 2024-11-20
1+
★ Release Notes: 2025-01-13
22
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
33

44
Thanks for upgrading to the latest version of the ALKS CLI!
55

6-
* Ensures all errors are logs
7-
* Adds a log file for viewing debug logs of previous commands
6+
* Removes node-fetch/request usage that resulted in punycode deprecation warnings.
7+
# Removes dependency on alks-node.
88

99
Have feedback? https://github.com/Cox-Automotive/ALKS-CLI/issues
1010

dist/changelog.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
★ Release Notes: 2024-11-20
1+
★ Release Notes: 2025-01-13
22
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
33

44
Thanks for upgrading to the latest version of the ALKS CLI!
55

6-
* Ensures all errors are logs
7-
* Adds a log file for viewing debug logs of previous commands
6+
* Removes node-fetch/request usage that resulted in punycode deprecation warnings.
7+
# Removes dependency on alks-node.
88

99
Have feedback? https://github.com/Cox-Automotive/ALKS-CLI/issues
1010

dist/package.json

+9-7
Original file line numberDiff line numberDiff line change
@@ -44,28 +44,28 @@
4444
"alks"
4545
],
4646
"dependencies": {
47-
"alks-node": "^0.12.1",
48-
"alks.js": "^2.8.0",
47+
"@google-analytics/data": "^4.12.0",
48+
"alks.js": "^2.9.0",
49+
"axios": "^1.7.9",
4950
"cli-color": "^2.0.0",
5051
"cli-table3": "^0.5.0",
5152
"commander": "^9.4.0",
5253
"crypto": "0.0.3",
5354
"fuzzy": "^0.1.1",
5455
"ini": "^2.0.0",
5556
"inquirer": "^6.5.2",
57+
"lodash": "^4.17.21",
5658
"lokijs": "^1.5.1",
5759
"memoizee": "^0.4.15",
5860
"moment": "^2.13.0",
5961
"node-netrc": "^0.1.0",
60-
"npm-registry-client": "^7.1.2",
62+
"npm-registry-fetch": "^18.0.2",
6163
"open": "^8.2.0",
6264
"prop-ini": "0.0.2",
63-
"request": "^2.72.0",
6465
"semver": "^5.3.0",
6566
"tabtab": "^3.0.2",
6667
"tslib": "^2.3.1",
67-
"underscore": "^1.13.1",
68-
"universal-analytics": "^0.4.8"
68+
"underscore": "^1.13.1"
6969
},
7070
"devDependencies": {
7171
"@babel/core": "^7.14.0",
@@ -79,7 +79,9 @@
7979
"@types/jest": "^26.0.24",
8080
"@types/lokijs": "^1.5.4",
8181
"@types/memoizee": "^0.4.8",
82-
"@types/node": "^15.0.0",
82+
"@types/mocha": "^10.0.10",
83+
"@types/node": "^15.14.9",
84+
"@types/npm-registry-fetch": "^8.0.7",
8385
"@types/semver": "^7.3.5",
8486
"@types/tabtab": "^3.0.1",
8587
"@types/underscore": "^1.11.2",

dist/src/lib/checkForUpdate.js

+7-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/src/lib/checkForUpdate.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/src/lib/handlers/alks-sessions-console.js

+73-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)