Skip to content

Releases: green-arrow/ember-cli-deploy-ssh-index

Fix deprecation warning

18 Jul 13:23
Compare
Choose a tag to compare

Warning:

DEPRECATION: Overriding init without calling this._super is deprecated. Please call this._super(), addon: undefined

Thanks to @jheth for the PR!

Fix ember-cli deprecation warning

30 Mar 13:22
Compare
Choose a tag to compare

In ember-cli >= 2.12.0, the following deprecation warning is issued:

DEPRECATION: `ember-cli/ext/promise` is deprecated, use `rsvp` instead...

This release moves to using RSVP as instructed in the warning.

Thanks to @nelstrom for the patch!

Updated `agent` support

10 Apr 17:59
Compare
Choose a tag to compare

When specifying the agent option for your SSH connection, the ssh2 library requires privateKey to be unspecified. This release makes providing the privateKeyFile property optional, so that you can actually use the agent option.

Passphrase and Agent support

03 Apr 01:16
Compare
Choose a tag to compare

You can now pass the passphrase and agent options to this deploy plugin. Both of these will be passed directly to the SSH library (ssh2).

Tilde support for privateKeyFile

14 Dec 13:17
Compare
Choose a tag to compare

You can now use a tilde path when specifying the location of your privateKeyFile. Instead of /Users/username/.ssh/id_rsa you are free to use ~/.ssh/id_rsa.

Documentation Updates

12 Dec 03:21
Compare
Choose a tag to compare

This release contains no features or bug fixes, just some documentation updates to the README and field updates to package.json.

Initial Release

12 Dec 03:22
Compare
Choose a tag to compare

This is the initial release of ember-cli-deploy-ssh-index. With this release, you can follow the instructions in the README to deploy, list, and activate your Ember application's revisions on a remote host via SSH.