Skip to content

[web] Update dependencies (2023-04-18)#536

Merged
dgdavid merged 9 commits intomasterfrom
update-dependencies-20230418
Apr 18, 2023
Merged

[web] Update dependencies (2023-04-18)#536
dgdavid merged 9 commits intomasterfrom
update-dependencies-20230418

Conversation

@dgdavid
Copy link
Copy Markdown
Contributor

@dgdavid dgdavid commented Apr 18, 2023

Problem

A bunch of node packages has released new versions after the latest dependencies update we did in #449

Click to show/hide the npm outdated output
Package                                Current        Wanted   Latest  Location                                       Depended by
@babel/core                             7.21.0        7.21.4   7.21.4  node_modules/@babel/core                       web
@babel/eslint-parser                    7.19.1        7.21.3   7.21.3  node_modules/@babel/eslint-parser              web
@babel/preset-env                       7.20.2        7.21.4   7.21.4  node_modules/@babel/preset-env                 web
@cspell/dict-fullstack                   3.1.4         3.1.5    3.1.5  node_modules/@cspell/dict-fullstack            web
@material-symbols/svg-400                0.4.6         0.4.6    0.5.5  node_modules/@material-symbols/svg-400         web
@patternfly/react-core                 4.276.6       4.276.8  4.276.8  node_modules/@patternfly/react-core            web
@patternfly/react-table               4.112.39       4.113.0  4.113.0  node_modules/@patternfly/react-table           web
@svgr/webpack                            6.5.1         6.5.1    7.0.0  node_modules/@svgr/webpack                     web
@types/jest                             29.4.0        29.5.0   29.5.0  node_modules/@types/jest                       web
@typescript-eslint/eslint-plugin        5.54.0        5.59.0   5.59.0  node_modules/@typescript-eslint/eslint-plugin  web
@typescript-eslint/parser               5.54.0        5.59.0   5.59.0  node_modules/@typescript-eslint/parser         web
babel-jest                              29.4.3        29.5.0   29.5.0  node_modules/babel-jest                        web
chrome-remote-interface                 0.32.1        0.32.2   0.32.2  node_modules/chrome-remote-interface           web
core-js                                 3.29.0        3.30.1   3.30.1  node_modules/core-js                           web
cspell                                  6.29.3        6.31.1   6.31.1  node_modules/cspell                            web
css-minimizer-webpack-plugin             4.2.2         4.2.2    5.0.0  node_modules/css-minimizer-webpack-plugin      web
eslint                                  8.35.0        8.38.0   8.38.0  node_modules/eslint                            web
eslint-plugin-n                         15.6.1        15.7.0   15.7.0  node_modules/eslint-plugin-n                   web
eslint-webpack-plugin                    4.0.0         4.0.1    4.0.1  node_modules/eslint-webpack-plugin             web
fast-sort                                3.2.1         3.4.0    3.4.0  node_modules/fast-sort                         web
filesize                                10.0.5        10.0.7   10.0.7  node_modules/filesize                          web
jest                                    29.4.3        29.5.0   29.5.0  node_modules/jest                              web
jest-environment-jsdom                  29.4.3        29.5.0   29.5.0  node_modules/jest-environment-jsdom            web
mini-css-extract-plugin                  2.7.2         2.7.5    2.7.5  node_modules/mini-css-extract-plugin           web
po2json                           1.0.0-beta-3  1.0.0-beta-3    0.4.5  node_modules/po2json                           web
react-router-dom                         6.8.2        6.10.0   6.10.0  node_modules/react-router-dom                  web
sass                                    1.58.3        1.62.0   1.62.0  node_modules/sass                              web
sass-loader                             13.2.0        13.2.2   13.2.2  node_modules/sass-loader                       web
stylelint                               15.2.0        15.5.0   15.5.0  node_modules/stylelint                         web
stylelint-config-standard               30.0.1        30.0.1   33.0.0  node_modules/stylelint-config-standard         web
stylelint-config-standard-scss           7.0.1         7.0.1    8.0.0  node_modules/stylelint-config-standard-scss    web
stylelint-webpack-plugin                 4.1.0         4.1.1    4.1.1  node_modules/stylelint-webpack-plugin          web
terser-webpack-plugin                    5.3.6         5.3.7    5.3.7  node_modules/terser-webpack-plugin             web
ts-jest                                 29.0.5        29.1.0   29.1.0  node_modules/ts-jest                           web
tsconfig-paths-webpack-plugin            4.0.0         4.0.1    4.0.1  node_modules/tsconfig-paths-webpack-plugin     web
typedoc                                0.23.26       0.23.28   0.24.4  node_modules/typedoc                           web
typedoc-plugin-missing-exports           1.0.0         1.0.0    2.0.0  node_modules/typedoc-plugin-missing-exports    web
typescript                               4.9.5         4.9.5    5.0.4  node_modules/typescript                        web
webpack                                 5.76.2        5.79.0   5.79.0  node_modules/webpack                           web
webpack-dev-server                      4.11.1        4.13.3   4.13.3  node_modules/webpack-dev-server                web

Solution

To update them using the npm update --lockfile-version 2 and npm install --lockfile-version 2 package-name@latest commands.

Notes

npm audit still complaining about 3 vulnerabilities (1 moderate, 2 critical). We should fix them as soon as possible.

Testing

All relevant tasks were executed without problems.

@dgdavid dgdavid requested review from imobachgs and lslezak April 18, 2023 09:11
@coveralls
Copy link
Copy Markdown

Pull Request Test Coverage Report for Build 4730663271

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 73.786%

Totals Coverage Status
Change from base Build 4730503137: 0.0%
Covered Lines: 4759
Relevant Lines: 6218

💛 - Coveralls

Copy link
Copy Markdown
Contributor

@joseivanlopez joseivanlopez left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@dgdavid dgdavid merged commit 7e7bb21 into master Apr 18, 2023
@dgdavid dgdavid deleted the update-dependencies-20230418 branch April 18, 2023 09:35
dgdavid added a commit that referenced this pull request Apr 18, 2023
To keep @svgr[1] working as it was after updating it to v7.0.0[2]

Related to dependencies update done at [3]

[1] https://github.com/gregberge/svgr
[2] https://github.com/gregberge/svgr/releases/tag/v7.0.0
[3] #536
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants