Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CB-14230 patch release 5.0.4 #55

Merged
merged 4 commits into from
Jul 31, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,21 @@
-->
## Release Notes for Cordova Browser ##

### 5.0.4 (Jul 30, 2018)
* [CB-14145](https://issues.apache.org/jira/browse/CB-14145) update dependencies to resolve `npm audit` issues, pinned in `5.0.x` only ([GH-53](https://github.com/apache/cordova-browser/pull/53))
* [CB-9366](https://issues.apache.org/jira/browse/CB-9366) - log `error.stack` in `cordova.js` (update from `cordova-js@4.2.4`) in `5.0.x`
* Add Node.js 10 to AppVeyor CI and Travis CI (`5.0.x`)

### 5.0.3 (Dec 20, 2017)
* [CB-13689](https://issues.apache.org/jira/browse/CB-13689) Update `node_modules` (contents committed)
* [8560888](https://github.com/apache/cordova-browser/commit/85608884499571ddda34155e349e6cc61cd9b834) - LINTINGOMGURSOSTRICT fix to `bin/template/cordova/browser_handler.js`
* [CB-13614](https://issues.apache.org/jira/browse/CB-13614)
- Fixed case where src was a folder and dest was a folder that did not exist, added test to prove it ([GH-49](https://github.com/apache/cordova-browser/pull/49)).
- create intermediate file paths
- Fix tests for **Windows** style paths
* [CB-13562](https://issues.apache.org/jira/browse/CB-13562) fixed asset tag when adding push plugin to **Browser**
* [CB-13501](https://issues.apache.org/jira/browse/CB-13501) explicit support for Node.js 8 in AppVeyor CI and Travis CI testing

### 5.0.2 (Dec 18, 2017)
* [CB-13689](https://issues.apache.org/jira/browse/CB-13689): Updated checked-in node_modules
* [CB-13562](https://issues.apache.org/jira/browse/CB-13562): fixed asset tag when adding push plugin to **Browser**
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.0.4-dev
5.0.4
2 changes: 1 addition & 1 deletion bin/template/cordova/version
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
*/

// Coho updates this line:
var VERSION = "5.0.4-dev";
var VERSION = "5.0.4";

console.log(VERSION);
4 changes: 2 additions & 2 deletions cordova-lib/cordova.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Platform: browser
// e040d9e9343d5f27dd4f67616660b33b92a82ff7
// 9e8e1b716252c4a08abcd31a13013b868d6f4141
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
Expand All @@ -19,7 +19,7 @@
under the License.
*/
;(function() {
var PLATFORM_VERSION_BUILD_LABEL = '5.0.4-dev';
var PLATFORM_VERSION_BUILD_LABEL = '5.0.4';
// file: src/scripts/require.js

/* jshint -W079 */
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-browser",
"version": "5.0.4-dev",
"version": "5.0.4",
"description": "cordova-browser release",
"main": "bin/template/cordova/Api.js",
"bin": "bin/create",
Expand Down