diff --git a/.changeset/dirty-forks-dig.md b/.changeset/dirty-forks-dig.md new file mode 100644 index 00000000000..3414cd00c3a --- /dev/null +++ b/.changeset/dirty-forks-dig.md @@ -0,0 +1,5 @@ +--- +'@talend/upgrade-deps': minor +--- + +Upgrade dependencies diff --git a/.changeset/free-peaches-melt.md b/.changeset/free-peaches-melt.md new file mode 100644 index 00000000000..9f88ce38dd1 --- /dev/null +++ b/.changeset/free-peaches-melt.md @@ -0,0 +1,59 @@ +--- +'@talend/react-faceted-search-query-client': minor +'@talend/babel-plugin-import-from-index': minor +'@talend/local-libs-webpack-plugin': minor +'@talend/babel-plugin-import-from-lib': minor +'@talend/scripts-config-react-webpack': minor +'@talend/scripts-config-storybook-lib': minor +'@talend/dynamic-cdn-webpack-plugin': minor +'@talend/scripts-config-typescript': minor +'@talend/scripts-config-stylelint': minor +'@talend/babel-plugin-assets-api': minor +'@talend/cypress-api-mock-plugin': minor +'@talend/scripts-config-prettier': minor +'@talend/babel-plugin-import-d3': minor +'@talend/scripts-yarn-workspace': minor +'@talend/eslint-config': minor +'@talend/scripts-publish-local': minor +'@talend/json-schema-form-core': minor +'@talend/scripts-config-babel': minor +'@talend/scripts-config-jest': minor +'@talend/ui-playground-vite': minor +'@talend/react-cmf-webpack-plugin': minor +'@talend/scripts-config-cdn': minor +'@talend/react-faceted-search': minor +'@talend/storybook-docs': minor +'@talend/design-system': minor +'@talend/design-tokens': minor +'@talend/react-flow-designer': minor +'@talend/router-bridge': minor +'@talend/react-storybook-cmf': minor +'@talend/ui-storybook-one': minor +'@talend/react-bootstrap': minor +'@talend/design-docs': minor +'@talend/bootstrap-sass': minor +'@talend/assets-api': minor +'@talend/react-cmf-router': minor +'@talend/react-components': minor +'@talend/react-containers': minor +'@talend/ui-playground': minor +'@talend/eslint-plugin': minor +'@talend/scripts-utils': minor +'@talend/module-to-cdn': minor +'@talend/scripts-core': minor +'@talend/upgrade-deps': minor +'@talend/react-cmf-cqrs': minor +'@talend/scripts-cmf': minor +'@talend/react-dataviz': minor +'@talend/react-stepper': minor +'@talend/react-forms': minor +'@talend/icons': minor +'@talend/react-sagas': minor +'@talend/bootstrap-theme': minor +'@talend/utils': minor +'@talend/react-a11y': minor +'@talend/http': minor +'@talend/react-cmf': minor +--- + +Update dependencies diff --git a/tools/upgrade-deps/tests/cli-security.test.js b/tools/upgrade-deps/tests/cli-security.test.js index f85aaa204cb..a9e9a654e9a 100644 --- a/tools/upgrade-deps/tests/cli-security.test.js +++ b/tools/upgrade-deps/tests/cli-security.test.js @@ -76,8 +76,8 @@ describe('talend-upgrade-deps --security', () => { let pkgJson = JSON.parse(readFileSync(path.join(tmp, 'package.json'))); let yarnLock = yarnpkg.parse(readFileSync(path.join(tmp, 'yarn.lock')).toString()).object; - expect(pkgJson.dependencies.axios).toBe('^0.21.1'); - expect(yarnLock['axios@^0.21.1'].version).toBe('0.21.1'); + expect(pkgJson.dependencies.axios).toBe('^0.30.2'); + expect(yarnLock['axios@^0.30.2'].version).toBe('0.30.2'); // when spawnSync('node', [bin, '--security=./conf/security-conf-axios.json'], { @@ -91,11 +91,11 @@ describe('talend-upgrade-deps --security', () => { expect(semver.gte(yarnLock['axios@^0.21.2'].version, '0.21.2')).toBe(true); const report = JSON.parse(readFileSync(path.join(tmp, 'talend-security-report.json'))); - const axiosReport = report['axios@^0.21.1']; + const axiosReport = report['axios@^0.30.2']; expect(axiosReport.fixed).toBe('✅'); expect(axiosReport.details).toContain('Upgraded package.json dependencies with axios@^0.21.2'); expect(axiosReport.depType).toBe('Direct'); - expect(axiosReport.installed).toBe('0.21.1'); + expect(axiosReport.installed).toBe('0.30.2'); expect(axiosReport.fixVersion).toBe('0.21.2'); });