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

Bump dev dependencies #2182

Merged
merged 16 commits into from
Jul 12, 2019
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