Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
chore(release): version bump and changelog for 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
heathkit committed Mar 18, 2016
1 parent 48d998f commit 9144494
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 5 deletions.
36 changes: 35 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,40 @@
# 3.2

## Features
- ([cae175c](https://github.com/angular/protractor/commit/cae175cbe632828172e9a7065aacfe67dd51d8dd))
feat(plugins) Calculate skipAngularStability dynamically.

This allows plugins to turn Protractor's default synchronization on and off as needed.

- ([7372267](https://github.com/angular/protractor/commit/7372267f23cc8586409f9ef914ab801c78992ccd))
feat(webdriver): add support for custom versions for selenium, chrome driver, and ie driver

- ([1cbbe4f](https://github.com/angular/protractor/commit/1cbbe4fef5c5f2bc0923fd54c53afad71a44af6c))
feat(config): no globals option

- ([9608201](https://github.com/angular/protractor/commit/960820120cf7df08cff8cfe15a5a9f08612c9773))
feat(typescript): adding typescript to protractor

Converting a 3 files over to typescript.

Adding an `npm prepublish` step that will use gulp to download the typings, transpile the files
with tscto the built/ directory and copy the rest of the javascript files from lib/ to the built/
folder.

Also adding scripts to package.json for `npm run tsc` and `npm run tsc:w` for transpiling help.

- ([a4a7209](https://github.com/angular/protractor/commit/a4a72095d2f95227f1ba293ae047beab28eb761d))
feat(plugins): skipAngularStability

## Bug Fixes
- ([a2c7a4b](https://github.com/angular/protractor/commit/a2c7a4bf1fb2a3a509040ae8ec7737cc002b764e))
fix(config): Do not sort spec keys

Fixes #2928

# 3.1.1

# Bug Fixes
## Bug Fixes

- ([4db52f2](https://github.com/angular/protractor/commit/4db52f2a21171ebbc6fed0ca3df760553afc264a))
test(config): add test for config files using only per-capability specs
Expand Down
5 changes: 2 additions & 3 deletions lib/taskLogger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,8 @@ export default class TaskLogger {
(capabilities.browserName) ? capabilities.browserName : '';
tag += (capabilities.version) ? (' ' + capabilities.version) : '';
tag += (capabilities.platform) ? (' ' + capabilities.platform) : '';
tag += (capabilities.logName && capabilities.count < 2) ?
'' :
' #' + this.task.taskId;
tag += (capabilities.logName && capabilities.count < 2) ? '' : ' #' +
this.task.taskId;
tag += '] ';

data = data.toString();
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,5 @@
"tsc:w": "./node_modules/typescript/bin/tsc -w"
},
"license": "MIT",
"version": "3.1.1"
"version": "3.2.0"
}

0 comments on commit 9144494

Please sign in to comment.