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

Commit 5c15797

Browse files
committed
Adding a changelog!
1 parent ae377c4 commit 5c15797

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# 0.7.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+
- 7966912 Updating to Selenium 2.24.
8+
- 90f0a94 Instead of having tests run with the protractor runner need to require()
9+
the protractor library, publish it to the global namespace. This insures
10+
the instance of protractor used within the tests is the same as the
11+
one used on the command line. Closes #36. Version bump for incompatible
12+
API changes.
13+
- cb373c9 Adding glob matching to the spec files from the config. Closes #29.
14+
15+
16+
## Breaking changes
17+
18+
- Now running on selenium 2.24. Requires updating WebDriverJS and the selenium standalone binary.
19+
20+
- The protractor runner now publishes `protractor` to the global namespace and sets up the Jasmine-WebDriver adapter. Tests run with this should no longer include
21+
22+
````javascript
23+
// var protractor = require('protractor'); // No longer needed!
24+
// require('protractor/jasminewd'); // No longer needed!
25+
26+
var ptor = protractor.getInstance(); // This should just work now.
27+
````

0 commit comments

Comments
 (0)