Skip to content

Commit

Permalink
ALL-9118 - Upgrade Node, NPM and other libraries
Browse files Browse the repository at this point in the history
adding changelog with breaking changes
moving version to 8.0.0
  • Loading branch information
martintatum committed Jan 6, 2025
1 parent c0fbbf7 commit 1ed5fdc
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
}
);
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 0 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ const startup = async () => {
type: 'string',
},
apiKey: {
// @todo: mark as breaking change !!!
type: 'string',
},
testnet: {
Expand All @@ -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: {
Expand Down

0 comments on commit 1ed5fdc

Please sign in to comment.