mirror of
https://github.com/balena-io/balena-cli.git
synced 2025-04-08 11:54:12 +00:00
v6.2.0
This commit is contained in:
parent
e7d7ca807f
commit
d803cfab3a
@ -3,6 +3,8 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [6.2.0] - 2017-07-27
|
||||
|
||||
### Changed
|
||||
|
||||
- Support the new resinOS versions where the sample connection file is called `resin-sample.ignore`
|
||||
@ -523,6 +525,7 @@ and for `resin device init` (same `--config` param)
|
||||
|
||||
- Remove outdated information from README.
|
||||
|
||||
[6.2.0]: https://github.com/resin-io/resin-cli/compare/v6.1.1...v6.2.0
|
||||
[6.1.1]: https://github.com/resin-io/resin-cli/compare/v6.1.0...v6.1.1
|
||||
[6.1.0]: https://github.com/resin-io/resin-cli/compare/v6.0.0...v6.1.0
|
||||
[6.0.0]: https://github.com/resin-io/resin-cli/compare/v5.11.1...v6.0.0
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
var Promise, dockerUtils, getBundleInfo;
|
||||
|
||||
Promise = require('bluebird');
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
var Promise, dockerUtils, formatImageName, getBuilderLogPushEndpoint, getBuilderPushEndpoint, getBundleInfo, parseInput, performUpload, showPushProgress, uploadLogs, uploadToPromise;
|
||||
|
||||
Promise = require('bluebird');
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
var Docker, Promise, _, chalk, dockerPort, dockerTimeout, filterOutSupervisorContainer, form;
|
||||
|
||||
Promise = require('bluebird');
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2017 Resin.io
|
||||
@ -118,6 +118,14 @@ getConfiguration = function(data) {
|
||||
|
||||
CONNECTION_FILE = '[connection]\nid=resin-wifi\ntype=wifi\n\n[wifi]\nhidden=true\nmode=infrastructure\nssid=My_Wifi_Ssid\n\n[wifi-security]\nauth-alg=open\nkey-mgmt=wpa-psk\npsk=super_secret_wifi_password\n\n[ipv4]\nmethod=auto\n\n[ipv6]\naddr-gen-mode=stable-privacy\nmethod=auto';
|
||||
|
||||
|
||||
/*
|
||||
* if the `resin-wifi` file exists (previously configured image or downloaded from the UI) it's used and reconfigured
|
||||
* if the `resin-sample.ignore` exists it's copied to `resin-wifi`
|
||||
* if the `resin-sample` exists it's reconfigured (legacy mode, will be removed eventually)
|
||||
* otherwise, the new file is created
|
||||
*/
|
||||
|
||||
prepareConnectionFile = function(target) {
|
||||
var _, imagefs;
|
||||
_ = require('lodash');
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,2 +1,2 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
exports.sentryDsn = 'https://56d2a46124614b01b0f4086897e96110:6e175465accc41b595a96947155f61fb@sentry.io/149239';
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
var Mixpanel, Promise, Raven, _, packageJSON, resin;
|
||||
|
||||
_ = require('lodash');
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
var QEMU_BIN_NAME, QEMU_VERSION, cacheHighlightStream, copyQemu, generateConnectOpts, getQemuPath, hasQemu, installQemu, parseBuildArgs, platformNeedsQemu, tarDirectory;
|
||||
|
||||
QEMU_VERSION = 'v2.5.50-resin-execve';
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
var Logger, eol;
|
||||
|
||||
eol = require('os').EOL;
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
exports.reachingOut = 'If you need help, or just want to say hi, don\'t hesitate in reaching out at:\n\n GitHub: https://github.com/resin-io/resin-cli/issues/new\n Forums: https://forums.resin.io';
|
||||
|
||||
exports.getHelp = 'If you need help, don\'t hesitate in contacting us at:\n\n GitHub: https://github.com/resin-io/resin-cli/issues/new\n Forums: https://forums.resin.io';
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
exports.buffer = function(stream, bufferFile) {
|
||||
var Promise, fileWriteStream, fs;
|
||||
Promise = require('bluebird');
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,4 +1,4 @@
|
||||
// Generated by CoffeeScript 1.12.6
|
||||
// Generated by CoffeeScript 1.12.7
|
||||
|
||||
/*
|
||||
Copyright 2016-2017 Resin.io
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "resin-cli",
|
||||
"version": "6.1.1",
|
||||
"version": "6.2.0",
|
||||
"description": "Git Push to your devices",
|
||||
"main": "./build/actions/index.js",
|
||||
"homepage": "https://github.com/resin-io/resin-cli",
|
||||
@ -13,7 +13,7 @@
|
||||
"resin": "./bin/resin"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "gulp build",
|
||||
"build": "gulp build && npm run doc",
|
||||
"doc": "mkdir -p doc/ && coffee extras/capitanodoc/index.coffee > doc/cli.markdown",
|
||||
"watch": "gulp watch",
|
||||
"lint": "gulp lint",
|
||||
|
Loading…
x
Reference in New Issue
Block a user