From ce67d6f681e828507b7484e3e5e5d0e73718b896 Mon Sep 17 00:00:00 2001 From: ijlee2 Date: Mon, 8 Jul 2019 13:16:47 -0500 Subject: [PATCH 1/2] Covered repackaging of Ember Data in 3.11 --- .../2019-07-12-the-ember-times-issue-106.md | 27 ++++++++++++------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/source/2019-07-12-the-ember-times-issue-106.md b/source/2019-07-12-the-ember-times-issue-106.md index 2680ee29d..aee06855c 100644 --- a/source/2019-07-12-the-ember-times-issue-106.md +++ b/source/2019-07-12-the-ember-times-issue-106.md @@ -1,6 +1,6 @@ --- title: The Ember Times - Issue No. 106 -author: the crowd +author: Isaac Lee, the crowd tags: Recent Posts, Newsletter, Ember.js Times, Ember Times, 2019 alias : "blog/2019/07/12-the-ember-times-issue-106.html" responsive: true @@ -8,16 +8,25 @@ responsive: true Emberistas! 🐹 - +This week: + +find out how Ember Data has been repackaged 📦, --- -## [Section Title in Title Case 🐹](#section-url) - - - - - +## [Ember Data repackaged in 3.11 📦](https://emberjs.github.io/rfcs/0395-ember-data-packages.html) + +Starting with Ember 3.11, Ember Data will be shipped as a collection of small **packages** under the namespace `@ember-data`. This helps you import only the packages that you need, identify the API that you can replace, and know where to start if you want to contribute to Ember Data. 🎉 + +Say hello to the new import syntax: + +``` +import Model, { attr, belongsTo, hasMany } from '@ember-data/model'; +``` + +Previous styles of import will be deprecated in a future release. Don't worry. A codemod and lint rules will be available to help you migrate your code. + +We encourage you to learn today about [Ember Data packages in 3.11](https://emberjs.github.io/rfcs/0395-ember-data-packages.html) and the plan to [use Embroider to tree-shake Ember Data](https://github.com/emberjs/data/issues/6166). --- @@ -124,4 +133,4 @@ That's another wrap! ✨ Be kind, -the crowd and the Learning Team +Isaac Lee, the crowd and the Learning Team From 986494353a292b259bd4d4efa9f89d0414f8daee Mon Sep 17 00:00:00 2001 From: ijlee2 Date: Mon, 8 Jul 2019 13:20:26 -0500 Subject: [PATCH 2/2] Updated text --- source/2019-07-12-the-ember-times-issue-106.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/2019-07-12-the-ember-times-issue-106.md b/source/2019-07-12-the-ember-times-issue-106.md index aee06855c..9035e79a2 100644 --- a/source/2019-07-12-the-ember-times-issue-106.md +++ b/source/2019-07-12-the-ember-times-issue-106.md @@ -10,13 +10,13 @@ responsive: true This week: -find out how Ember Data has been repackaged 📦, +find out how Ember Data has been repackaged in 3.11 📦, --- -## [Ember Data repackaged in 3.11 📦](https://emberjs.github.io/rfcs/0395-ember-data-packages.html) +## [Ember Data Repackaged in 3.11 📦](https://emberjs.github.io/rfcs/0395-ember-data-packages.html) -Starting with Ember 3.11, Ember Data will be shipped as a collection of small **packages** under the namespace `@ember-data`. This helps you import only the packages that you need, identify the API that you can replace, and know where to start if you want to contribute to Ember Data. 🎉 +Starting with Ember 3.11, Ember Data will be shipped as a **collection of small packages** under the namespace `@ember-data`. This helps you import only the packages that you need, identify the API that you can replace, and know where to start if you want to contribute to Ember Data. 🎉 Say hello to the new import syntax: @@ -24,9 +24,9 @@ Say hello to the new import syntax: import Model, { attr, belongsTo, hasMany } from '@ember-data/model'; ``` -Previous styles of import will be deprecated in a future release. Don't worry. A codemod and lint rules will be available to help you migrate your code. +Previous styles of import will be deprecated in a future release. Don't worry. Before that happens, a codemod and lint rules will be available to help you migrate your code. -We encourage you to learn today about [Ember Data packages in 3.11](https://emberjs.github.io/rfcs/0395-ember-data-packages.html) and the plan to [use Embroider to tree-shake Ember Data](https://github.com/emberjs/data/issues/6166). +We encourage you to learn today about [Ember Data packages in 3.11](https://emberjs.github.io/rfcs/0395-ember-data-packages.html) and the exciting plan to [use Embroider to tree-shake Ember Data](https://github.com/emberjs/data/issues/6166). ---