Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id D1B90200D24 for ; Tue, 10 Oct 2017 02:55:01 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id D042D160BE0; Tue, 10 Oct 2017 00:55:01 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 2A0CA1609CE for ; Tue, 10 Oct 2017 02:55:01 +0200 (CEST) Received: (qmail 94903 invoked by uid 500); 10 Oct 2017 00:55:00 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 94894 invoked by uid 99); 10 Oct 2017 00:55:00 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Oct 2017 00:55:00 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 10901F56D1; Tue, 10 Oct 2017 00:55:00 +0000 (UTC) From: dpogue To: commits@cordova.apache.org Reply-To: commits@cordova.apache.org References: In-Reply-To: Subject: [GitHub] cordova-docs pull request #747: CB-13380 added tools release blog post Content-Type: text/plain Message-Id: <20171010005500.10901F56D1@git1-us-west.apache.org> Date: Tue, 10 Oct 2017 00:55:00 +0000 (UTC) archived-at: Tue, 10 Oct 2017 00:55:02 -0000 Github user dpogue commented on a diff in the pull request: https://github.com/apache/cordova-docs/pull/747#discussion_r143610452 --- Diff: www/_posts/2017-10-09-tools-release.md --- @@ -0,0 +1,118 @@ +--- +layout: post +author: + name: Steve Gill + url: https://twitter.com/stevesgill +title: "Tools Released!" +categories: news +tags: release tools +--- + +We just released a small update to our tools! + +* [cordova@7.1.0](https://www.npmjs.org/package/cordova) +* [cordova-lib@7.1.0](https://www.npmjs.org/package/cordova-lib) +* [cordova-plugman@1.5.1](https://www.npmjs.org/package/plugman) +* [cordova-fetch@1.2.0](https://www.npmjs.org/package/cordova-fetch) +* [cordova-common@2.1.1](https://www.npmjs.org/package/cordova-common) +* [cordova-node-xcode@1.0.0](https://www.npmjs.org/package/xcode) +* [cordova-js@4.2.2](https://www.npmjs.org/package/cordova-js) + +## Release Highlights + +* [CB-13303](https://issues.apache.org/jira/browse/CB-13303) added `--production` flag by default. This means that when the commands `cordova platform add android` or `cordova plugin add cordova-plugin-device` are run, under the hood we are running `npm install android --production`. The `--production` flag only installs `dependencies` from `package.json` and skips `devDependencies`. This should speed up installs (especially when installing local copies of platforms and plugins). You can turn the flag off by passing the `--noprod` flag or setting it off globally via `cordova config set production false`. +* [CB-13353](https://issues.apache.org/jira/browse/CB-13353) added `--save-exact` flag. This will allow to save an exact version of a platform or plugin instead of a range. `cordova platform add android@6.3.0 --save-exact`. You can also set it true by default in your global config via `cordova config set save-exact true` +* This is the first release of `cordova-node-xcode` under the apache cordova banner. It was originally created and used as a dependency for `cordova-lib`, but now is being used by many other projects as well. We have decided to give the project a major release to `1.0.0`. This is to represent stability for the project in terms of `semver`. No breaking change has happened from the previous release. +* [CB-13308](https://issues.apache.org/jira/browse/CB-13308) fixed issues with restoring plugins and platforms while using `npm@5+`. +* [CB-12787](https://issues.apache.org/jira/browse/CB-12787) Fix plugin installation with `--link` option. +* [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` + +To update your cordova CLI: + + npm install -g cordova@latest + +Please report any issues you find at [issues.cordova.io](http://issues.cordova.io/)! + + +# Changes include: + +## cordova-lib + +* [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. --- End diff -- Can we call this out more prominently for downstream tooling? --- --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org For additional commands, e-mail: commits-help@cordova.apache.org