Repository: cordova-docs Updated Branches: refs/heads/master 1c8982d77 -> fc39e7fbd
CB-13214: added browser and serve release blog post This closes #723 Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/fc39e7fb Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/fc39e7fb Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/fc39e7fb Branch: refs/heads/master Commit: fc39e7fbd547b333ef0c0631de2cad2832341c03 Parents: 1c8982d Author: Steve Gill <[email protected]> Authored: Tue Aug 29 17:41:05 2017 -0700 Committer: Steve Gill <[email protected]> Committed: Wed Aug 30 11:20:40 2017 -0700 ---------------------------------------------------------------------- www/_posts/2017-08-29-browser-serve-release.md | 65 +++++++++++++++++++++ 1 file changed, 65 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/fc39e7fb/www/_posts/2017-08-29-browser-serve-release.md ---------------------------------------------------------------------- diff --git a/www/_posts/2017-08-29-browser-serve-release.md b/www/_posts/2017-08-29-browser-serve-release.md new file mode 100644 index 0000000..326ecff --- /dev/null +++ b/www/_posts/2017-08-29-browser-serve-release.md @@ -0,0 +1,65 @@ +--- +layout: post +author: + name: Steve Gill + url: https://twitter.com/stevesgill +title: "Cordova Browser@5 & Cordova Serve@2 Released!" +categories: news +tags: release tools browser +--- + +We just released an update to `cordova-browser` and `cordova-serve` + +* [[email protected]](https://www.npmjs.org/package/cordova-browser) +* [[email protected]](https://www.npmjs.org/package/cordova-serve) + +Release Highlights: + +* *cordova-browser:* Added `manifest.json` to browser projects. This enables basic Progressive Web App support +* *cordova-browser:* Implemented `PlatformApi`. +* *cordova-serve:* Removed Q dependency in favor of native javascript promises. +* *cordova-serve:* Changed default behavior of which browser is launched during serve. Now the serve command will use the system default browser instead of opening a new instance of chrome. You can still pass in a specific target + +To upgrade: + + cd my_project + cordova platform update [email protected] + +To add it explicitly: + + cordova platform add [email protected] + +Please report any issues you find at [issues.cordova.io](http://issues.cordova.io/)! + +<!--more--> +# Changes include: + +## cordova-browser + +* [CB-13214](https://issues.apache.org/jira/browse/CB-13214) Updated `cordova-serve` dependency to 2.0.0. `cordova serve` command now opens system default browser instead of a new instance of `chrome`. A specific target can still be passed in. +* [CB-13214](https://issues.apache.org/jira/browse/CB-13214) Updated checked-in `node_modules` +* [CB-13188](https://issues.apache.org/jira/browse/CB-13188) fixed issues with run and build scripts. +* [CB-12895](https://issues.apache.org/jira/browse/CB-12895): set up `eslint` and remove `jshint` +* [CB-11181](https://issues.apache.org/jira/browse/CB-11181) add default favicon +* [CB-11710](https://issues.apache.org/jira/browse/CB-11710) Add missing 'clean.bat' file +* remove old `xhr-activex` **Windows** code, update to use `pagevisibility` instead of `webkitpagevisibility` +* [CB-12804](https://issues.apache.org/jira/browse/CB-12804): `manifest.json` added to **Browser** during create. Adding basic PWA support +* [CB-12762](https://issues.apache.org/jira/browse/CB-12762) Point repo items to github mirrors +* [CB-12617](https://issues.apache.org/jira/browse/CB-12617) : removed node 0.x support and added engineStrict. This closes #27 +* [CB-12847](https://issues.apache.org/jira/browse/CB-12847) added `bugs` entry to `package.json`. +* [CB-12527](https://issues.apache.org/jira/browse/CB-12527) large refactor. Implemented `PlatformApi` +* [CB-12114](https://issues.apache.org/jira/browse/CB-12114) added travis and appveyor files +* Add github pull request template + +## cordova-serve + +* [CB-13188](https://issues.apache.org/jira/browse/CB-13188) set serve to use default system browser if none is provided. +* Change to `eslint` instead of `jshint` +* remove `q` dependence completely. Added `server.spec` +* added browser tests +* Convert `src/browser` to use Promise api +* Add License, Contributing, Notice, pr-template, etc +* [CB-12785](https://issues.apache.org/jira/browse/CB-12785) added travis and appveyor +* [CB-12762](https://issues.apache.org/jira/browse/CB-12762): updated common, fetch, and serve pkgJson to point pkgJson repo items to github mirrors +* [CB-12665](https://issues.apache.org/jira/browse/CB-12665) removed enginestrict since it is deprecated +* [CB-11977](https://issues.apache.org/jira/browse/CB-11977): updated engines and enginescript for common, fetch, and serve --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
