diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index fbeeeb9..11d7eb3 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '12.x' + node-version: '18.x' registry-url: 'https://registry.npmjs.org' - run: npm ci - run: npm publish --access public @@ -25,7 +25,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '12.x' + node-version: '18.x' registry-url: 'https://npm.pkg.github.com' scope: '@contentstack' - run: npm ci diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b63e56..1782213 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,13 @@ # Changelog +## [v1.2.3](https://github.com/contentstack/contentstack-marketplace-sdk/tree/v1.2.3) (2024-08-28) + - Axios version bump + ## [v1.2.2](https://github.com/contentstack/contentstack-marketplace-sdk/tree/v1.2.2) (2024-07-08) - Fixed the SRE issues ## [v1.2.1](https://github.com/contentstack/contentstack-marketplace-sdk/tree/v1.2.1) (2024-07-08) + - added params in disconnect method in types support ## [v1.2.0](https://github.com/contentstack/contentstack-marketplace-sdk/tree/v1.2.0) (2024-06-21) diff --git a/package-lock.json b/package-lock.json index a160a55..1ed1b73 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,15 +1,15 @@ { "name": "@contentstack/marketplace-sdk", - "version": "1.2.2", + "version": "1.2.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@contentstack/marketplace-sdk", - "version": "1.2.2", + "version": "1.2.3", "license": "MIT", "dependencies": { - "axios": "^1.7.2" + "axios": "^1.7.4" }, "devDependencies": { "@babel/cli": "^7.17.10", @@ -3620,9 +3620,9 @@ } }, "node_modules/axios": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.2.tgz", - "integrity": "sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==", + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.4.tgz", + "integrity": "sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==", "dependencies": { "follow-redirects": "^1.15.6", "form-data": "^4.0.0", @@ -15228,9 +15228,9 @@ "dev": true }, "axios": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.2.tgz", - "integrity": "sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==", + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.4.tgz", + "integrity": "sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==", "requires": { "follow-redirects": "^1.15.6", "form-data": "^4.0.0", diff --git a/package.json b/package.json index 5a9165f..d1cc2ce 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@contentstack/marketplace-sdk", - "version": "1.2.2", + "version": "1.2.3", "description": "The Contentstack Marketplace SDK is used to manage the content of your Contentstack marketplace apps", "main": "./dist/node/contentstack-marketplace.js", "browser": "./dist/web/contentstack-marketplace.js", @@ -89,6 +89,6 @@ "webpack-merge": "4.1.0" }, "dependencies": { - "axios": "^1.7.2" + "axios": "^1.7.4" } }