Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[HIGH] Bump deps after release of 4.15.9 #4843

Merged
merged 23 commits into from
Sep 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ env:
es6: true

plugins:
- import
- prettier
- security

extends:
- eslint:recommended
- plugin:import/recommended
- plugin:prettier/recommended
- plugin:security/recommended

Expand Down Expand Up @@ -54,9 +56,6 @@ overrides:
no-empty-function: off
'@typescript-eslint/no-empty-function': error

no-duplicate-imports: off
'@typescript-eslint/no-duplicate-imports': error

# TODO #4003: We will rework on these rules
'@typescript-eslint/ban-ts-comment': off
'@typescript-eslint/ban-types': off
Expand All @@ -67,6 +66,9 @@ overrides:
'@typescript-eslint/interface-name-prefix': off
'@typescript-eslint/no-explicit-any': off

no-duplicate-imports: off
'import/no-duplicates': error

rules:
# Only list rules that are not in *:recommended set
# If rules are set to disable the one in *:recommended, please elaborate the reason
Expand Down Expand Up @@ -187,6 +189,9 @@ rules:
- after
yoda: error

# Only identify *.js, does not work with *.ts
'import/no-unresolved': off

# We should review the rules below from time to time. Rules below are:
# - From "recommended" ruleset but disabled for some reasons
# - Rules that we considered to enable, but for some reasons, we did not enable them
Expand Down
46 changes: 46 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,52 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- 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)
- 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)

### Changed

- Bumped all dependencies to the latest versions, by [@compulim](https://github.com/compulim) in PR [#4843](https://github.com/microsoft/BotFramework-WebChat/pull/4843)
- Production dependencies
- [`@emotion/[email protected]`](https://npmjs.com/package/@emotion/css)
- [`[email protected]`](https://npmjs.com/package/classnames)
- [`[email protected]`](https://npmjs.com/package/core-js)
- [`[email protected]`](https://npmjs.com/package/redux-saga)
- [`[email protected]`](https://npmjs.com/package/sanitize-html)
- [`[email protected]`](https://npmjs.com/package/use-ref-from)
- [`[email protected]`](https://npmjs.com/package/whatwg-fetch)
- Development dependencies
- [`@types/[email protected]`](https://npmjs.com/package/@types/node)
- [`@types/[email protected]`](https://npmjs.com/package/@types/react)
- [`@typescript-eslint/[email protected]`](https://npmjs.com/package/@typescript-eslint/eslint-plugin)
- [`@typescript-eslint/[email protected]`](https://npmjs.com/package/@typescript-eslint/parser)
- [`[email protected]`](https://npmjs.com/package/axe-core)
- [`[email protected]`](https://npmjs.com/package/babel-jest)
- [`[email protected]`](https://npmjs.com/package/babel-loader)
- [`[email protected]`](https://npmjs.com/package/chalk)
- [`[email protected]`](https://npmjs.com/package/concurrently)
- [`[email protected]`](https://npmjs.com/package/dotenv)
- [`[email protected]`](https://npmjs.com/package/esbuild)
- [`[email protected]`](https://npmjs.com/package/eslint-plugin-prettier)
- [`[email protected]`](https://npmjs.com/package/eslint-plugin-react)
- [`[email protected]`](https://npmjs.com/package/eslint)
- [`[email protected]`](https://npmjs.com/package/jest-image-snapshot)
- [`[email protected]`](https://npmjs.com/package/jest-junit)
- [`[email protected]`](https://npmjs.com/package/jest-trx-results-processor)
- [`[email protected]`](https://npmjs.com/package/lerna)
- [`[email protected]`](https://npmjs.com/package/lint-staged)
- [`[email protected]`](https://npmjs.com/package/node-fetch)
- [`[email protected]`](https://npmjs.com/package/nodemon)
- [`[email protected]`](https://npmjs.com/package/nopt)
- [`[email protected]`](https://npmjs.com/package/prettier)
- [`[email protected]`](https://npmjs.com/package/read-pkg-up)
- [`[email protected]`](https://npmjs.com/package/read-pkg)
- [`[email protected]`](https://npmjs.com/package/selenium-webdriver)
- [`[email protected]`](https://npmjs.com/package/serve)
- [`[email protected]`](https://npmjs.com/package/terser-webpack-plugin)
- [`[email protected]`](https://npmjs.com/package/typescript)
- [`[email protected]`](https://npmjs.com/package/url-search-params-polyfill)
- [`[email protected]`](https://npmjs.com/package/webpack-cli)
- [`[email protected]`](https://npmjs.com/package/webpack-stats-plugin)
- [`[email protected]`](https://npmjs.com/package/webpack)

## [4.15.8] - 2023-06-06

### Breaking changes
Expand Down
Loading
Loading