From 1ed5fdc352ffadbf99eb3d537f56a29180c87ebd Mon Sep 17 00:00:00 2001 From: martintatum Date: Mon, 6 Jan 2025 12:54:22 +0100 Subject: [PATCH] ALL-9118 - Upgrade Node, NPM and other libraries adding changelog with breaking changes moving version to 8.0.0 --- CHANGELOG.md | 15 +++++++++++++++ eslint.config.mjs | 2 +- package.json | 2 +- src/index.ts | 2 -- 4 files changed, 17 insertions(+), 4 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..e20c0e8 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +## [8.0.0] - January 2024 + +### Updated + +- Dependency libraries updated to the latest versions + +### Changed + +- parameter `env-file` renamed to `envFile` +- parameter `api-key` renamed to `apiKey` + +### Added + +- GitHub Actions pipeline revisited +- basic smoke tests added \ No newline at end of file diff --git a/eslint.config.mjs b/eslint.config.mjs index 3cd78aa..0f15c28 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -8,7 +8,7 @@ export default tseslint.config( tseslint.configs.recommended, { rules: { - '@typescript-eslint/no-explicit-any': 'off' // TODO: replace any with types and remove this + '@typescript-eslint/no-explicit-any': 'off' } } ); \ No newline at end of file diff --git a/package.json b/package.json index 14af358..6e5cabd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@tatumio/tatum-kms", - "version": "7.0.8", + "version": "8.0.0", "description": "Tatum KMS - Key Management System for Tatum-powered apps.", "main": "dist/index.js", "types": "./dist/index.d.ts", diff --git a/src/index.ts b/src/index.ts index a0ca3a8..97c13d0 100644 --- a/src/index.ts +++ b/src/index.ts @@ -107,7 +107,6 @@ const startup = async () => { type: 'string', }, apiKey: { - // @todo: mark as breaking change !!! type: 'string', }, testnet: { @@ -132,7 +131,6 @@ const startup = async () => { isRequired: (f: any, input: readonly string[]) => input[0] === 'daemon' && !f.testnet, }, envFile: { - // @todo: mark as breaking change !!! type: 'string', }, externalUrlMethod: {