bumped 0.6
Showing
3 changed files
with
6 additions
and
3 deletions
1 | CasperJS Changelog | 1 | CasperJS Changelog |
2 | ================== | 2 | ================== |
3 | 3 | ||
4 | XXXX-XX-XX, v0.6.0 | 4 | 2012-01-12, v0.6.0 |
5 | ------------------ | 5 | ------------------ |
6 | 6 | ||
7 | - **BC BREAK:** `Casper.click()` now uses native Webkit mouse events instead of previous crazy utopic javascript emulation | 7 | - **BC BREAK:** `Casper.click()` now uses native Webkit mouse events instead of previous crazy utopic javascript emulation |
8 | - **BC BREAK:** All errors thrown by CasperJS core are of the new `CasperError` type | 8 | - **BC BREAK:** All errors thrown by CasperJS core are of the new `CasperError` type |
9 | - **BC BREAK:** removed obsolete `replaceFunctionPlaceholders()` | 9 | - **BC BREAK:** removed obsolete `replaceFunctionPlaceholders()` |
10 | - *Deprecated*: `Casper.extend()` method has been deprecated; use natural javascript extension mechanisms instead (see samples) | 10 | - *Deprecated*: `Casper.extend()` method has been deprecated; use natural javascript extension mechanisms instead (see samples) |
11 | - added `$ casperjs test` command for running split test suites | ||
11 | - `Casper.open()` can now perform HTTP `GET`, `POST`, `PUT`, `DELETE` and `HEAD` operations | 12 | - `Casper.open()` can now perform HTTP `GET`, `POST`, `PUT`, `DELETE` and `HEAD` operations |
12 | - commonjs/nodejs-like module exports implementation | 13 | - commonjs/nodejs-like module exports implementation |
13 | - ported nodejs' `events` module to casperjs; lots of events added, plus some value filtering capabilities | 14 | - ported nodejs' `events` module to casperjs; lots of events added, plus some value filtering capabilities |
... | @@ -16,6 +17,8 @@ XXXX-XX-XX, v0.6.0 | ... | @@ -16,6 +17,8 @@ XXXX-XX-XX, v0.6.0 |
16 | - added printing of source file path for any uncaught exception printed onto the console | 17 | - added printing of source file path for any uncaught exception printed onto the console |
17 | - added an emulation of stack trace printing (but PhantomJS will have to upgrade its javascript engine for it to be fully working though) | 18 | - added an emulation of stack trace printing (but PhantomJS will have to upgrade its javascript engine for it to be fully working though) |
18 | 19 | ||
20 | Please check the [updated documentation](http://n1k0.github.com/casperjs). | ||
21 | |||
19 | --- | 22 | --- |
20 | 23 | ||
21 | 2011-12-25, v0.4.2 | 24 | 2011-12-25, v0.4.2 | ... | ... |
1 | { | 1 | { |
2 | "name": "casperjs", | 2 | "name": "casperjs", |
3 | "description": "Navigation scripting & testing utility for PhantomJS", | 3 | "description": "Navigation scripting & testing utility for PhantomJS", |
4 | "version": "0.6.0-alpha", | 4 | "version": "0.6.0", |
5 | "keywords": [ | 5 | "keywords": [ |
6 | "phantomjs", | 6 | "phantomjs", |
7 | "javascript" | 7 | "javascript" | ... | ... |
-
Please register or sign in to post a comment