Skip to content

Commit

Permalink
chore(release): bump version to 5.4.2 (#5106)
Browse files Browse the repository at this point in the history
  • Loading branch information
cnishina committed Dec 25, 2018
1 parent db1b638 commit 5d29112
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 4 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,36 @@
# 5.4.2

## Features

- ([db1b638](https://github.com/angular/protractor/commit/db1b6381d463c7cecf11dece2bf9412fecbd6f4d))
feat(saucelabs): add sauceRegion support for eu datacenters (#5083)

This change allows user to define the backend region from sauce via the `sauceRegion` property,
e.g.

```js
sauceUser: process.env.SAUCE_USERNAME,
sauceKey: process.env.SAUCE_ACCESS_KEY,
sauceRegion: 'eu',
```
Will run the test against `https://ondemand.eu-central-1.saucelabs.com:443/wd/hub/.`

```js
sauceUser: process.env.SAUCE_USERNAME,
sauceKey: process.env.SAUCE_ACCESS_KEY,
sauceRegion: 'us',

// the default
sauceUser: process.env.SAUCE_USERNAME,
sauceKey: process.env.SAUCE_ACCESS_KEY,
```
Will run the test against https://ondemand.saucelabs.com:443/wd/hub/

## Fixes

- ([f5dbe13](https://github.com/angular/protractor/commit/f5dbe13ad6755ae812627d8056527e351db8b34c))
fix(deps): @types/node is now a dev dependency

# 5.4.1

## Features
Expand Down
4 changes: 2 additions & 2 deletions gulpfile.js
Expand Up @@ -107,12 +107,12 @@ gulp.task('compile_to_es5', function(done) {
});

gulp.task('prepublish', function(done) {
runSequence('checkVersion', 'jshint', 'tsc', 'built:copy', done);
runSequence('checkVersion', 'tsc', 'built:copy', done);
});

gulp.task('pretest', function(done) {
runSequence('checkVersion',
['webdriver:update', 'jshint', 'tslint', 'format'], 'tsc', 'built:copy', 'tsc:spec', done);
['webdriver:update', 'tslint', 'format'], 'tsc', 'built:copy', 'tsc:spec', done);
});

gulp.task('default',['prepublish']);
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -82,5 +82,5 @@
"engines": {
"node": ">=6.9.x"
},
"version": "5.4.1"
"version": "5.4.2"
}

0 comments on commit 5d29112

Please sign in to comment.