Skip to content

Commit ed37213

Browse files
franck-boncler2jmfrancoisjmainguytalend
authored
Chore: Add changeset (#5619)
* chore: upgrade dependencies * update readme * update readme * chore(): update deps * chore(): add changeset --------- Co-authored-by: jmfrancois <19857479+jmfrancois@users.noreply.github.com> Co-authored-by: jmainguytalend <jeremy.mainguy@qlik.com>
1 parent e2720da commit ed37213

File tree

3 files changed

+68
-4
lines changed

3 files changed

+68
-4
lines changed

.changeset/dirty-forks-dig.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@talend/upgrade-deps': minor
3+
---
4+
5+
Upgrade dependencies

.changeset/free-peaches-melt.md

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
---
2+
'@talend/react-faceted-search-query-client': minor
3+
'@talend/babel-plugin-import-from-index': minor
4+
'@talend/local-libs-webpack-plugin': minor
5+
'@talend/babel-plugin-import-from-lib': minor
6+
'@talend/scripts-config-react-webpack': minor
7+
'@talend/scripts-config-storybook-lib': minor
8+
'@talend/dynamic-cdn-webpack-plugin': minor
9+
'@talend/scripts-config-typescript': minor
10+
'@talend/scripts-config-stylelint': minor
11+
'@talend/babel-plugin-assets-api': minor
12+
'@talend/cypress-api-mock-plugin': minor
13+
'@talend/scripts-config-prettier': minor
14+
'@talend/babel-plugin-import-d3': minor
15+
'@talend/scripts-yarn-workspace': minor
16+
'@talend/eslint-config': minor
17+
'@talend/scripts-publish-local': minor
18+
'@talend/json-schema-form-core': minor
19+
'@talend/scripts-config-babel': minor
20+
'@talend/scripts-config-jest': minor
21+
'@talend/ui-playground-vite': minor
22+
'@talend/react-cmf-webpack-plugin': minor
23+
'@talend/scripts-config-cdn': minor
24+
'@talend/react-faceted-search': minor
25+
'@talend/storybook-docs': minor
26+
'@talend/design-system': minor
27+
'@talend/design-tokens': minor
28+
'@talend/react-flow-designer': minor
29+
'@talend/router-bridge': minor
30+
'@talend/react-storybook-cmf': minor
31+
'@talend/ui-storybook-one': minor
32+
'@talend/react-bootstrap': minor
33+
'@talend/design-docs': minor
34+
'@talend/bootstrap-sass': minor
35+
'@talend/assets-api': minor
36+
'@talend/react-cmf-router': minor
37+
'@talend/react-components': minor
38+
'@talend/react-containers': minor
39+
'@talend/ui-playground': minor
40+
'@talend/eslint-plugin': minor
41+
'@talend/scripts-utils': minor
42+
'@talend/module-to-cdn': minor
43+
'@talend/scripts-core': minor
44+
'@talend/upgrade-deps': minor
45+
'@talend/react-cmf-cqrs': minor
46+
'@talend/scripts-cmf': minor
47+
'@talend/react-dataviz': minor
48+
'@talend/react-stepper': minor
49+
'@talend/react-forms': minor
50+
'@talend/icons': minor
51+
'@talend/react-sagas': minor
52+
'@talend/bootstrap-theme': minor
53+
'@talend/utils': minor
54+
'@talend/react-a11y': minor
55+
'@talend/http': minor
56+
'@talend/react-cmf': minor
57+
---
58+
59+
Update dependencies

tools/upgrade-deps/tests/cli-security.test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ describe('talend-upgrade-deps --security', () => {
7676
let pkgJson = JSON.parse(readFileSync(path.join(tmp, 'package.json')));
7777
let yarnLock = yarnpkg.parse(readFileSync(path.join(tmp, 'yarn.lock')).toString()).object;
7878

79-
expect(pkgJson.dependencies.axios).toBe('^0.21.1');
80-
expect(yarnLock['axios@^0.21.1'].version).toBe('0.21.1');
79+
expect(pkgJson.dependencies.axios).toBe('^0.30.2');
80+
expect(yarnLock['axios@^0.30.2'].version).toBe('0.30.2');
8181

8282
// when
8383
spawnSync('node', [bin, '--security=./conf/security-conf-axios.json'], {
@@ -91,11 +91,11 @@ describe('talend-upgrade-deps --security', () => {
9191
expect(semver.gte(yarnLock['axios@^0.21.2'].version, '0.21.2')).toBe(true);
9292

9393
const report = JSON.parse(readFileSync(path.join(tmp, 'talend-security-report.json')));
94-
const axiosReport = report['axios@^0.21.1'];
94+
const axiosReport = report['axios@^0.30.2'];
9595
expect(axiosReport.fixed).toBe('✅');
9696
expect(axiosReport.details).toContain('Upgraded package.json dependencies with axios@^0.21.2');
9797
expect(axiosReport.depType).toBe('Direct');
98-
expect(axiosReport.installed).toBe('0.21.1');
98+
expect(axiosReport.installed).toBe('0.30.2');
9999
expect(axiosReport.fixVersion).toBe('0.21.2');
100100
});
101101

0 commit comments

Comments
 (0)