Skip to content

Commit

Permalink
Bump dev dependencies (#2182)
Browse files Browse the repository at this point in the history
* Bump dev dependencies

* Bump headless Chrome Docker image

* Bump @babel/runtime@7.5.4 and react@16.4.1

* Add entry

* Add entry

* Update PR number

* Fix thumbnails for updated Chrome Docker image

* Fix test warnings

* Update snapshots

* Bump versions

* Move to babel-transform-inline-environment-variables

* Add entry

* Credit

* Add core-js as devDependencies

* Fix connectSaga test

* Remove prettierignore
  • Loading branch information
compulim authored Jul 12, 2019
1 parent 222cef9 commit 0cd9db7
Show file tree
Hide file tree
Showing 31 changed files with 6,531 additions and 11,477 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Changed
- `*`: Bumps all dev dependencies to latest version, by [@compulim](https://github.com/compulim), in PR [#2182](https://github.com/microsoft/BotFramework-WebChat/pull/2182), notably
- [`@babel/*@7.5.4`](https://www.npmjs.com/package/@babel/core)
- [`jest@24.8.0`](https://www.npmjs.com/package/jest)
- [`lerna@3.15.0`](https://www.npmjs.com/package/lerna)
- [`typescript@3.5.3`](https://www.npmjs.com/package/typescript)
- [`webpack@4.35.3`](https://www.npmjs.com/package/webpack)
- `*`: Bumps [`@babel/runtime@7.5.4`](https://www.npmjs.com/package/@babel/runtime), by [@compulim](https://github.com/compulim), in PR [#2182](https://github.com/microsoft/BotFramework-WebChat/pull/2182)
- `*`: Bumps Docker container for headless Chrome to `selenium/standalone-chrome:3.141.59-radium`, by [@compulim](https://github.com/compulim), in PR [#2182](https://github.com/microsoft/BotFramework-WebChat/pull/2182)
- `*`: Moves from [`babel-plugin-version-transform`](https://www.npmjs.com/package/babel-plugin-version-transform) to [`babel-plugin-transform-inline-environment-variables`](https://www.npmjs.com/package/babel-plugin-transform-inline-environment-variables), by [@compulim](https://github.com/compulim), in PR [#2182](https://github.com/microsoft/BotFramework-WebChat/pull/2182)

## [4.5.0] - 2019-07-10

### Added
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions __tests__/inputHint.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import uiConnected from './setup/conditions/uiConnected';
jest.setTimeout(timeouts.test);

describe('input hint', () => {
describe('of expectingInput', async () => {
describe('of expectingInput', () => {
test('should turn on microphone if initiated via microphone', async () => {
const { driver, pageObjects } = await setupWebDriver({
props: {
Expand Down Expand Up @@ -49,7 +49,7 @@ describe('input hint', () => {
});
});

describe('of acceptingInput', async () => {
describe('of acceptingInput', () => {
test('should not turn on microphone if initiated via microphone', async () => {
const { driver, pageObjects } = await setupWebDriver({
props: {
Expand Down Expand Up @@ -87,7 +87,7 @@ describe('input hint', () => {
});
});

describe('of ignoringInput', async () => {
describe('of ignoringInput', () => {
test('should turn off microphone if initiated via microphone', async () => {
const { driver, pageObjects } = await setupWebDriver({
props: {
Expand Down Expand Up @@ -125,7 +125,7 @@ describe('input hint', () => {
});
});

describe('of undefined', async () => {
describe('of undefined', () => {
test('should not turn on microphone if initiated via microphone', async () => {
const { driver, pageObjects } = await setupWebDriver({
props: {
Expand Down
2 changes: 1 addition & 1 deletion __tests__/offlineUI.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const allOutgoingMessagesFailed = new Condition('All outgoing messages to fail s
});
});

describe('offline UI', async () => {
describe('offline UI', () => {
test('should show "Taking longer than usual to connect" UI when connection is slow', async () => {
const { driver } = await setupWebDriver({
createDirectLine: options => {
Expand Down
2 changes: 1 addition & 1 deletion __tests__/suggestedActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import uiConnected from './setup/conditions/uiConnected';

jest.setTimeout(timeouts.test);

describe('suggested-actions command', async () => {
describe('suggested-actions command', () => {
test('should show correctly formatted buttons when suggested actions are displayed', async () => {
const { driver, pageObjects } = await setupWebDriver();

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
chrome:
# https://github.com/SeleniumHQ/docker-selenium
# https://hub.docker.com/r/selenium/standalone-chrome/tags/
image: selenium/standalone-chrome:3.141.0-actinium
image: selenium/standalone-chrome:3.141.59-radium
networks:
- selenium
depends_on:
Expand Down
Loading

0 comments on commit 0cd9db7

Please sign in to comment.