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

Commit 6676254

Browse files
committed
chore(release): changelog and version for 0.13.0
1 parent ce5f494 commit 6676254

File tree

2 files changed

+46
-1
lines changed

2 files changed

+46
-1
lines changed

Diff for: CHANGELOG.md

+45
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,48 @@
1+
# 0.13.0
2+
3+
_Note: Major version 0 releases are for initial development, and backwards compatible changes may be introduced at any time._
4+
5+
## Features
6+
7+
- ([ce5f494](https://github.com/angular/protractor/commit/ce5f494289c3750b84c6783339a14342a1b74f3d)) feat(element): element.all now has 'first' and 'last' methods
8+
9+
- ([ef61662](https://github.com/angular/protractor/commit/ef6166232186b3385769f63430819a722052cc44)) feat(runner): allow bypassing the selenium standalone server if running only chrome
10+
11+
Using the config option `chromeOnly` now enables running ChromeDriver directly,
12+
without going through the Selenium Standalone. The chromedriver binary should be
13+
available in your PATH, or should be specified with the config option
14+
`chromeDriver`.
15+
16+
- ([76c094a](https://github.com/angular/protractor/commit/76c094a3fa69511b0311011b0ef2c7343b8e655b)) feat(getLocationAbsUrl) - allows current url to be obtained on IE (and Chrome/Firefox)
17+
18+
- ([6a1c918](https://github.com/angular/protractor/commit/6a1c91848858453d0af712588b51c0bdaa0c9445)) feat(runner): add error message for bad jar path
19+
20+
- ([98bce7e](https://github.com/angular/protractor/commit/98bce7e2ac1e659faf2d8727e1fda210b796525e)) feat(locators): add the ability to add custom element locators with by.addLocator
21+
22+
Custom locators can now be added using by.addLocator(name, script), where
23+
script is a self-contained snippet to be executed on the browser which returns
24+
an array of elements. Closes #236.
25+
26+
- ([c7bcc20](https://github.com/angular/protractor/commit/c7bcc20c07416237f69f7934d257b5ba5bfe8c1f)) chore(angular): update to angular 1.2
27+
28+
29+
## Bug Fixes
30+
31+
- ([a24eeee](https://github.com/angular/protractor/commit/a24eeee4f08e973ffcecd107b6610ce1c2c5e3f6)) fix(runner): do not error out if only one spec pattern does not match any files
32+
33+
Previously, the runner would throw an error if any one of the spec patterns did not
34+
match any files. Now it logs a warning in that case, and errors out only if there
35+
are no found files in any spec patterns. Closes #260
36+
37+
- ([f3b3fdb](https://github.com/angular/protractor/commit/f3b3fdbcbc8fe4f3c5915ef0f6eb7c89e339a62e)) fix(element): fix an error where all.then() wasn't calling callbacks.
38+
39+
Closes #267
40+
41+
- ([137d804](https://github.com/angular/protractor/commit/137d8040778215fd841654d3ca465b71f8719ea5)) fix(jasminewd): patched matcher should understand 'not'
42+
43+
Closes #139.
44+
45+
146
# 0.12.1
247

348
_Note: Major version 0 releases are for initial development, and backwards compatible changes may be introduced at any time._

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@
3636
"test": "node lib/cli.js spec/basicConf.js; node lib/cli.js spec/altRootConf.js; node lib/cli.js spec/onPrepareConf.js; node_modules/.bin/minijasminenode jasminewd/spec/adapterSpec.js"
3737
},
3838
"license" : "MIT",
39-
"version": "0.12.1"
39+
"version": "0.13.0"
4040
}

0 commit comments

Comments
 (0)