Skip to content

Commit 8d04e66

Browse files
authored
[HIGH] Bump deps after release of 4.15.9 (#4843)
* Pin lerna@6 * Pin glob@8 * npm run bump * Add entry * Update Prettier * core-js in production * Add eslint-plugin-import to replace some rules in @typescript-eslint * Infer Redux deprecated typings * Fix Prettier * Use Observable from core * Disable react/prefer-read-only-props * Reenable react/prefer-read-only-props * Add readonly * Add Readonly<> * Disable import/no-named-as-default * Prettier * Add Readonly<> * Prettier * Fix test * Do not remove img.alt attribute * Fix test * Add Readonly<> to props * Remove ts-expect-error
1 parent 960e671 commit 8d04e66

File tree

117 files changed

+43615
-33897
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+43615
-33897
lines changed

.eslintrc.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ env:
44
es6: true
55

66
plugins:
7+
- import
78
- prettier
89
- security
910

1011
extends:
1112
- eslint:recommended
13+
- plugin:import/recommended
1214
- plugin:prettier/recommended
1315
- plugin:security/recommended
1416

@@ -54,9 +56,6 @@ overrides:
5456
no-empty-function: off
5557
'@typescript-eslint/no-empty-function': error
5658

57-
no-duplicate-imports: off
58-
'@typescript-eslint/no-duplicate-imports': error
59-
6059
# TODO #4003: We will rework on these rules
6160
'@typescript-eslint/ban-ts-comment': off
6261
'@typescript-eslint/ban-types': off
@@ -67,6 +66,9 @@ overrides:
6766
'@typescript-eslint/interface-name-prefix': off
6867
'@typescript-eslint/no-explicit-any': off
6968

69+
no-duplicate-imports: off
70+
'import/no-duplicates': error
71+
7072
rules:
7173
# Only list rules that are not in *:recommended set
7274
# If rules are set to disable the one in *:recommended, please elaborate the reason
@@ -187,6 +189,9 @@ rules:
187189
- after
188190
yoda: error
189191

192+
# Only identify *.js, does not work with *.ts
193+
'import/no-unresolved': off
194+
190195
# We should review the rules below from time to time. Rules below are:
191196
# - From "recommended" ruleset but disabled for some reasons
192197
# - Rules that we considered to enable, but for some reasons, we did not enable them

CHANGELOG.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,52 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
4848
- Fixes [#3699](https://github.com/microsoft/BotFramework-WebChat/issues/3699). Correcting timestamp roundoff, by [@compulim](https://github.com/compulim), in PR [#4821](https://github.com/microsoft/BotFramework-WebChat/pull/4821)
4949
- Fixes [#4849](https://github.com/microsoft/BotFramework-WebChat/issues/4849). Rendering an erroneous Adaptive Cards should bail out and not throw `MutationObserver` error, by [@compulim](https://github.com/compulim), in PR [#4852](https://github.com/microsoft/BotFramework-WebChat/issues/4852)
5050

51+
### Changed
52+
53+
- Bumped all dependencies to the latest versions, by [@compulim](https://github.com/compulim) in PR [#4843](https://github.com/microsoft/BotFramework-WebChat/pull/4843)
54+
- Production dependencies
55+
- [`@emotion/[email protected]`](https://npmjs.com/package/@emotion/css)
56+
- [`[email protected]`](https://npmjs.com/package/classnames)
57+
- [`[email protected]`](https://npmjs.com/package/core-js)
58+
- [`[email protected]`](https://npmjs.com/package/redux-saga)
59+
- [`[email protected]`](https://npmjs.com/package/sanitize-html)
60+
- [`[email protected]`](https://npmjs.com/package/use-ref-from)
61+
- [`[email protected]`](https://npmjs.com/package/whatwg-fetch)
62+
- Development dependencies
63+
- [`@types/[email protected]`](https://npmjs.com/package/@types/node)
64+
- [`@types/[email protected]`](https://npmjs.com/package/@types/react)
65+
- [`@typescript-eslint/[email protected]`](https://npmjs.com/package/@typescript-eslint/eslint-plugin)
66+
- [`@typescript-eslint/[email protected]`](https://npmjs.com/package/@typescript-eslint/parser)
67+
- [`[email protected]`](https://npmjs.com/package/axe-core)
68+
- [`[email protected]`](https://npmjs.com/package/babel-jest)
69+
- [`[email protected]`](https://npmjs.com/package/babel-loader)
70+
- [`[email protected]`](https://npmjs.com/package/chalk)
71+
- [`[email protected]`](https://npmjs.com/package/concurrently)
72+
- [`[email protected]`](https://npmjs.com/package/dotenv)
73+
- [`[email protected]`](https://npmjs.com/package/esbuild)
74+
- [`[email protected]`](https://npmjs.com/package/eslint-plugin-prettier)
75+
- [`[email protected]`](https://npmjs.com/package/eslint-plugin-react)
76+
- [`[email protected]`](https://npmjs.com/package/eslint)
77+
- [`[email protected]`](https://npmjs.com/package/jest-image-snapshot)
78+
- [`[email protected]`](https://npmjs.com/package/jest-junit)
79+
- [`[email protected]`](https://npmjs.com/package/jest-trx-results-processor)
80+
- [`[email protected]`](https://npmjs.com/package/lerna)
81+
- [`[email protected]`](https://npmjs.com/package/lint-staged)
82+
- [`[email protected]`](https://npmjs.com/package/node-fetch)
83+
- [`[email protected]`](https://npmjs.com/package/nodemon)
84+
- [`[email protected]`](https://npmjs.com/package/nopt)
85+
- [`[email protected]`](https://npmjs.com/package/prettier)
86+
- [`[email protected]`](https://npmjs.com/package/read-pkg-up)
87+
- [`[email protected]`](https://npmjs.com/package/read-pkg)
88+
- [`[email protected]`](https://npmjs.com/package/selenium-webdriver)
89+
- [`[email protected]`](https://npmjs.com/package/serve)
90+
- [`[email protected]`](https://npmjs.com/package/terser-webpack-plugin)
91+
- [`[email protected]`](https://npmjs.com/package/typescript)
92+
- [`[email protected]`](https://npmjs.com/package/url-search-params-polyfill)
93+
- [`[email protected]`](https://npmjs.com/package/webpack-cli)
94+
- [`[email protected]`](https://npmjs.com/package/webpack-stats-plugin)
95+
- [`[email protected]`](https://npmjs.com/package/webpack)
96+
5197
## [4.15.8] - 2023-06-06
5298

5399
### Breaking changes

0 commit comments

Comments
 (0)