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

[FIRST] Bump dependencies after release of 4.14.0 #3996

Merged
merged 28 commits into from
Aug 11, 2021
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
59 changes: 59 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,65 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Changed

- Updated peer dependency of `react` to `>= 16.8.6`, in PR [#3996](https://github.com/microsoft/BotFramework-WebChat/pull/3996)
- Bumped all dependencies to the latest versions and sample bumps, by [@compulim](https://github.com/compulim) in PR [#3996](https://github.com/microsoft/BotFramework-WebChat/pull/3996)
- Production dependencies
- [`@babel/[email protected]`](https://npmjs.com/package/@babel/runtime)
- [`[email protected]`](https://npmjs.com/package/abort-controller-es5)
- [`[email protected]`](https://npmjs.com/package/core-js)
- [`[email protected]`](https://npmjs.com/package/event-target-shim)
- [`[email protected]`](https://npmjs.com/package/markdown-it-attrs-es5)
- [`[email protected]`](https://npmjs.com/package/markdown-it)
- [`[email protected]`](https://npmjs.com/package/memoize-one)
- [`[email protected]`](https://npmjs.com/package/p-defer-es5)
- [`[email protected]`](https://npmjs.com/package/p-defer)
- [`[email protected]`](https://npmjs.com/package/react-redux)
- [`[email protected]`](https://npmjs.com/package/web-speech-cognitive-services)
- Development dependencies
- [`@babel/[email protected]`](https://npmjs.com/package/@babel/cli)
- [`@babel/[email protected]`](https://npmjs.com/package/@babel/core)
- [`@babel/[email protected]`](https://npmjs.com/package/@babel/plugin-proposal-class-properties)
- [`@babel/[email protected]`](https://npmjs.com/package/@babel/plugin-proposal-object-rest-spread)
- [`@babel/[email protected]`](https://npmjs.com/package/@babel/plugin-transform-runtime)
- [`@babel/[email protected]`](https://npmjs.com/package/@babel/preset-env)
- [`@babel/[email protected]`](https://npmjs.com/package/@babel/preset-react)
- [`@babel/[email protected]`](https://npmjs.com/package/@babel/preset-typescript)
- [`@babel/[email protected]`](https://npmjs.com/package/@babel/runtime)
- [`@emotion/[email protected]`](https://npmjs.com/package/@emotion/react)
- [`@fluentui/[email protected]`](https://npmjs.com/package/@fluentui/react)
- [`@types/[email protected]`](https://npmjs.com/package/@types/node)
- [`@types/[email protected]`](https://npmjs.com/package/@types/react-dom)
- [`@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/babel-jest)
- [`[email protected]`](https://npmjs.com/package/concurrently)
- [`[email protected]`](https://npmjs.com/package/core-js)
- [`[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/http-proxy-middleware)
- [`[email protected]`](https://npmjs.com/package/husky)
- [`[email protected]`](https://npmjs.com/package/jest-environment-node)
- [`[email protected]`](https://npmjs.com/package/jest-image-snapshot)
- [`[email protected]`](https://npmjs.com/package/jest-junit)
- [`[email protected]`](https://npmjs.com/package/jest)
- [`[email protected]`](https://npmjs.com/package/lint-staged)
- [`[email protected]`](https://npmjs.com/package/node-dev)
- [`[email protected]`](https://npmjs.com/package/nodemon)
- [`[email protected]`](https://npmjs.com/package/p-defer)
- [`[email protected]`](https://npmjs.com/package/prettier)
- [`[email protected]`](https://npmjs.com/package/sanitize-html)
- [`[email protected]`](https://npmjs.com/package/selenium-webdriver)
- [`[email protected]`](https://npmjs.com/package/serve)
- [`[email protected]`](https://npmjs.com/package/strip-ansi)
- [`[email protected]`](https://npmjs.com/package/typescript)
- [`[email protected]`](https://npmjs.com/package/webpack)

## [4.14.0] - 2021-07-09

### Breaking changes
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion __tests__/adaptiveCards.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/** @jest-environment jsdom */

import { logging } from 'selenium-webdriver';

import { imageSnapshotOptions, timeouts } from './constants.json';
Expand Down Expand Up @@ -222,4 +224,4 @@ test('Textblock styles', async () => {
const base64PNG = await driver.takeScreenshot();

expect(base64PNG).toMatchImageSnapshot(imageSnapshotOptions);
});
});
4 changes: 4 additions & 0 deletions __tests__/video.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ test('video', async () => {

chromeBottom && chromeBottom.setAttribute('hidden', 'hidden');

const doubleTapUI = document.querySelector('.ytp-doubletap-ui');

doubleTapUI && doubleTapUI.setAttribute('hidden', 'hidden');

const tooltip = document.querySelector('.ytp-tooltip');

tooltip && tooltip.setAttribute('hidden', 'hidden');
Expand Down
4 changes: 3 additions & 1 deletion babel-jest-config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
const { createTransformer } = require('babel-jest');
const {
default: { createTransformer }
} = require('babel-jest');
const { join } = require('path');
const { readFileSync } = require('fs');

Expand Down
Loading