Repository: cordova-lib Updated Branches: refs/heads/master 1a834a99d -> f96e0adf7
CB-13380 Updated version and RELEASENOTES.md for release 7.1.0 Project: http://git-wip-us.apache.org/repos/asf/cordova-lib/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-lib/commit/c0689ecc Tree: http://git-wip-us.apache.org/repos/asf/cordova-lib/tree/c0689ecc Diff: http://git-wip-us.apache.org/repos/asf/cordova-lib/diff/c0689ecc Branch: refs/heads/master Commit: c0689eccab5aca689a662cc715eabc39d5a710e3 Parents: 1a834a9 Author: Steve Gill <[email protected]> Authored: Thu Oct 5 12:18:29 2017 -0700 Committer: Steve Gill <[email protected]> Committed: Thu Oct 5 16:16:16 2017 -0700 ---------------------------------------------------------------------- RELEASENOTES.md | 28 ++++++++++++++++++++++++++++ package.json | 8 ++++---- src/platforms/platformsConfig.json | 8 ++++---- 3 files changed, 36 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-lib/blob/c0689ecc/RELEASENOTES.md ---------------------------------------------------------------------- diff --git a/RELEASENOTES.md b/RELEASENOTES.md index b42c9f6..24883e1 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -20,6 +20,34 @@ --> # Cordova-lib Release Notes +### 7.1.0 (Oct 04, 2017) +* [CB-13303](https://issues.apache.org/jira/browse/CB-13303) added `--save_exact`, `--production` flags +* [CB-13288](https://issues.apache.org/jira/browse/CB-13288) updated `index.js` and test to fix `cordova plugin search` +* [CB-13206](https://issues.apache.org/jira/browse/CB-13206) fixed incorrect target being passed in to `plugin add` from `restore-util.js` +* [CB-13145](https://issues.apache.org/jira/browse/CB-13145) added `variable-merge.js` to deal with `plugin.xml` variables for uninstall +* [CB-12870](https://issues.apache.org/jira/browse/CB-12870) catch all use cases for `getPlatformApiFunction` and update tests accordingly +* [CB-12944](https://issues.apache.org/jira/browse/CB-12944) Platform's spec is ignored in `config.xml` if `package.json` doesn't contain dependency for platform +* [CB-12361](https://issues.apache.org/jira/browse/CB-12361) added new unit tests for plugin tests +* [CB-13020](https://issues.apache.org/jira/browse/CB-13020) (plugman) install filters out `nohooks` +* [CB-13056](https://issues.apache.org/jira/browse/CB-13056) added deprecation notice for **WebOS** +* [CB-13057](https://issues.apache.org/jira/browse/CB-13057) added deprecation warning for `cordova platform save` +* [CB-12361](https://issues.apache.org/jira/browse/CB-12361) added tests for `save.js` and rebased +* [CB-12895](https://issues.apache.org/jira/browse/CB-12895) switched from `jshint` to `eslint` +* [CB-12361](https://issues.apache.org/jira/browse/CB-12361) updated `addHelper` tests +* [CB-11980](https://issues.apache.org/jira/browse/CB-11980) Update `README` to reflect new repos +* [CB-6143](https://issues.apache.org/jira/browse/CB-6143) Change `plugman.emit()` to `events.emit()` +* Reorganized unit test directory. Changes include: - consolidate `spec-cordova/` and `spec-plugman/` into a single `spec/` dir. - put `jasmine config` and helper modules in top-level spec dir. - changed `package.json` npm run scripts to reflect purposes of tasks. remove `npm run ci`. Updated `README` to reflect `package.json` npm run script changes. +* [CB-12361](https://issues.apache.org/jira/browse/CB-12361) added unit tests for `prepare.spec.js` +* Update cordova-lib api. Deprecate `raw` from api calls. +* [CB-11980](https://issues.apache.org/jira/browse/CB-11980) moved `fetch`, `common` and `serve` into their own repos +* [CB-12786](https://issues.apache.org/jira/browse/CB-12786) Improve logic for searching plugin id in case of module already exists in `node_modules` +* [CB-12250](https://issues.apache.org/jira/browse/CB-12250) [CB-12409](https://issues.apache.org/jira/browse/CB-12409) **iOS**: Fix bug with escaping properties from plist file +* [CB-12762](https://issues.apache.org/jira/browse/CB-12762) point `package.json` repo items to github mirrors instead of apache repos site +* [CB-12777](https://issues.apache.org/jira/browse/CB-12777) removed **Android**, **iOS**, and **Windows** projects fixtures +* [CB-12787](https://issues.apache.org/jira/browse/CB-12787) Fix plugin installation with `--link` option +* [CB-12738](https://issues.apache.org/jira/browse/CB-12738) Cordova ignores plugin dependency version on **Windows** platform +* [CB-12766](https://issues.apache.org/jira/browse/CB-12766) Consistently write JSON with 2 spaces indentation + ### 7.0.1 (May 08, 2017) * [CB-12773](https://issues.apache.org/jira/browse/CB-12773): fixed incorrect plugin version fetching issue * [CB-12769](https://issues.apache.org/jira/browse/CB-12769): updated `cordova-create` dependency to 1.1.1 http://git-wip-us.apache.org/repos/asf/cordova-lib/blob/c0689ecc/package.json ---------------------------------------------------------------------- diff --git a/package.json b/package.json index 808c3c8..1a504bd 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "name": "cordova-lib", "license": "Apache-2.0", "description": "Apache Cordova tools core lib and API", - "version": "7.0.2-dev", + "version": "7.1.0", "repository": { "type": "git", "url": "https://github.com/apache/cordova-lib" @@ -18,10 +18,10 @@ }, "dependencies": { "aliasify": "^2.1.0", - "cordova-common": "2.1.0", + "cordova-common": "2.1.1", "cordova-create": "~1.1.0", - "cordova-fetch": "1.1.0", - "cordova-js": "4.2.1", + "cordova-fetch": "1.2.0", + "cordova-js": "4.2.2", "cordova-serve": "^2.0.0", "dep-graph": "1.1.0", "elementtree": "0.1.6", http://git-wip-us.apache.org/repos/asf/cordova-lib/blob/c0689ecc/src/platforms/platformsConfig.json ---------------------------------------------------------------------- diff --git a/src/platforms/platformsConfig.json b/src/platforms/platformsConfig.json index 716ae2e..250fb52 100644 --- a/src/platforms/platformsConfig.json +++ b/src/platforms/platformsConfig.json @@ -2,7 +2,7 @@ "ios": { "hostos": ["darwin"], "url": "https://git-wip-us.apache.org/repos/asf?p=cordova-ios.git", - "version": "~4.4.0", + "version": "~4.5.1", "apiCompatibleSince": "4.0.0", "deprecated": false }, @@ -15,7 +15,7 @@ }, "android": { "url": "https://git-wip-us.apache.org/repos/asf?p=cordova-android.git", - "version": "~6.2.2", + "version": "~6.3.0", "apiCompatibleSince": "5.0.0", "deprecated": false }, @@ -38,7 +38,7 @@ "hostos": [], "url": "https://git-wip-us.apache.org/repos/asf?p=cordova-app-hello-world.git", "source": "git", - "version": "^3.11.0", + "version": "^3.12.0", "deprecated": false }, "windows": { @@ -59,7 +59,7 @@ "parser_file": "../cordova/metadata/browser_parser", "handler_file": "../plugman/platforms/browser", "url": "https://git-wip-us.apache.org/repos/asf?p=cordova-browser.git", - "version": "~4.1.0", + "version": "~5.0.0", "deprecated": false } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
