Version
- Getting started
- Overview
- Installation
- Quick start
- The Deploy Pipeline
- Overview
- Pipeline Hooks
- The Deployment Context
- Plugins
- Overview
- Plugins
- Plugin Packs
- Writing a plugin
- Configuration
- Overview
- Aliasing Plugins
- dotEnv Support
- Fingerprinting
- Usage
- Overview
- Development Workflow
- Deployment Strategies
- Overview
- The Lightning Strategy
- Examples
- Lightning Strategy
- Upgrading
- Apps
- Plugins

Upgrading Plugins
Ember CLI Deploy 0.5.x introduces the concept of a deploy pipeline. Instead of writing adapters (like you did in 0.4.x), you write plugins, and then compose these plugins to configure your application’s deploy pipeline.
While adapters had specific types (index adapter, asset adapter, etc.), plugins are generic, and are defined only by the pipeline hooks they implement.
The changes you need to make to upgrade your adapter depends on its type.
Changes for all adapters
-
Add “ember-cli-deploy-plugin” to your addon’s
package.json
-
Install the base plugin, and update your adapters to subclass it
-
Implement
createDeployPlugin
inindex.js
and return a subclass ofember-cli-deploy-plugin
- Use the pipeline hooks to do the actual work:
- move uploading logic (from your index/asset adapters) to the
upload
hook - move activation logic (from your index adapter) to the
activate
hook
- move uploading logic (from your index/asset adapters) to the
-
Instruct your users to update their config and install ember-cli-deploy-build
-
Replace
console.log
statements withthis.log
to play nicely with Ember CLI Deploy’s messaging- Messages passed to
this.log
are displayed only when the verbose flag (--verbose
) is present. You can pass{ verbose: true }
as the second param tothis.log
to force your message to always display during pipeline execution.
- Messages passed to
Changes for index/store adapters
-
Instruct your users to install ember-cli-deploy-revision-data
-
The revision key is now under
context.revisionData.revisionKey
(provided ember-cli-deploy-revision-data is installed). It doesn’t include your project name yet._key: function(context) { var revisionKey = context.commandOptions.revision || context.revisionData.revisionKey.substr(0, 8); return context.project.name() + ':' + revisionKey; }
-
Previously, the contents of
index.html
was passed to your upload function. Now, you’ll need to read the file using the filesystem package:var path = require('path'); var fs = require('fs'); var readFile = denodeify(fs.readFile); upload: function() { readFile(path.join(context.distDir, "index.html")) .then(function(buffer) { return buffer.toString(); }).then(function(indexContents) { // upload indexContents }); }
Changes for asset adapters
- Replace any hard references to “tmp/asset-sync” with
context.distDir