Socket
Socket
Sign inDemoInstall

ember-2-legacy

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-2-legacy

Ember addon which supports deprecations slated for 3.0.0 removal in the 3.x series.


Version published
Weekly downloads
3
decreased by-25%
Maintainers
1
Weekly downloads
 
Created
Source

Ember 2 Legacy

During the 2.x series in Ember.JS serveral deprecations were added with a target removal version of 3.0. This addon adds back those deprecations and the deprecated code that was removed. The goal of this addon is to allow Ember users who have deprecations that are preventing them from upgrading to 3.0 a path forward. After Ember 3.4 is released this addon will no longer be compatible with Ember. It should be used to provide extra time for migrating away from deprecations, not as a permanent solution.

For more background about what and why APIs are being remove for Ember.JS 3.0 please check out the Road to Ember 3.0 blog post which goes into more details.

Installation

ember install ember-2-legacy

What Deprecations are Covered

All deprecations found here which have a until: 3.0.0 are currently supported by this addon.

How to Disable Certain Deprecations

All deprecations are controlled by environment variables that can be toggled on or off. By default all deprecations are on. You should ideally turn off all deprecations that your app is not currently hitting to be sure that you are able to move off of this addon when the time comes.

An example of how to configure these in your app:

// config/environment.js

module.exports = function(environment) {
  let ENV = {
    // ...
    EmberENV: {
      // ...

      _ENABLE_EMBER_K_SUPPORT: false,
      _ENABLE_UNDERSCORE_ACTIONS_SUPPORT: false,
      // etc...
    }
  };

  // ...
  return ENV;
};

NOTE that changes to your config may need your server to be restarted before seeing the changes.

To view all flags and which deprecations they control click here.

Keywords

FAQs

Package last updated on 19 Jan 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc