From bfc9ff2842c4809285e0535f3b613ecf40d20caf Mon Sep 17 00:00:00 2001 From: Jessica Jordan Date: Mon, 3 Dec 2018 21:01:29 +0100 Subject: [PATCH 01/14] blog(embertimes#76): add draft --- .../2018-11-30-the-emberjs-times-issue-75.md | 2 +- .../2018-12-07-the-ember-times-issue-76.md | 93 +++++++++++++++++++ 2 files changed, 94 insertions(+), 1 deletion(-) create mode 100644 source/blog/2018-12-07-the-ember-times-issue-76.md diff --git a/source/blog/2018-11-30-the-emberjs-times-issue-75.md b/source/blog/2018-11-30-the-emberjs-times-issue-75.md index b82eca8925..e069596287 100644 --- a/source/blog/2018-11-30-the-emberjs-times-issue-75.md +++ b/source/blog/2018-11-30-the-emberjs-times-issue-75.md @@ -1,7 +1,7 @@ --- title: The Ember Times - Issue No. 75 author: Melanie Sumner, Chris Ng, Amy Lam, Alon Bukai, Kenneth Larsen, Jessica Jordan -tags: Recent Posts, Newsletter, Ember.js Times, Ember Times, 2018 +tags: Newsletter, Ember.js Times, Ember Times, 2018 alias : "blog/2018/11/30-the-ember-times-issue-75.html" responsive: true --- diff --git a/source/blog/2018-12-07-the-ember-times-issue-76.md b/source/blog/2018-12-07-the-ember-times-issue-76.md new file mode 100644 index 0000000000..af0b4664f8 --- /dev/null +++ b/source/blog/2018-12-07-the-ember-times-issue-76.md @@ -0,0 +1,93 @@ +--- +title: The Ember Times - Issue No. 76 +author: the crowd +tags: Recent Posts, Newsletter, Ember.js Times, Ember Times, 2018 +alias : "blog/2018/12/07-the-ember-times-issue-76.html" +responsive: true +--- + +Ξ΅te sΞ΅n Emberistas? 🐹 + + + +--- + +## [SECTION TITLE](#section-url) + + +--- + +## [SECTION TITLE](#section-url) + + +--- + +## [SECTION TITLE](#section-url) + + +--- + +## [SECTION TITLE](#section-url) + + +--- + +## [SECTION TITLE](#section-url) + + +--- + +## [SECTION TITLE](#section-url) + + +--- + +## [SECTION TITLE](#section-url) + + +--- + +## [SECTION TITLE](#section-url) + + +--- + +## [SECTION TITLE](#section-url) + + +--- + + +## [Contributors' Corner πŸ‘](https://guides.emberjs.com/release/contributing/repositories/) + +

This week we'd like to thank our siblings for their contributions to Ember and related repositories! πŸ’–

+ +--- + +## [Got a Question? Ask Readers' Questions! πŸ€“](https://docs.google.com/forms/d/e/1FAIpQLScqu7Lw_9cIkRtAiXKitgkAo4xX_pV1pdCfMJgIr6Py1V-9Og/viewform) + +
+ Office Hours Tomster Mascot + +

Wondering about something related to Ember, Ember Data, Glimmer, or addons in the Ember ecosystem, but don't know where to ask? Readers’ Questions are just for you!

+ +

Submit your own short and sweet question under bit.ly/ask-ember-core. And don’t worry, there are no silly questions, we appreciate them all - promise! 🀞

+ +
+ +--- + +## [#embertimes](https://emberjs.com/blog/tags/newsletter.html) πŸ“° + +Want to write for the Ember Times? Have a suggestion for next week's issue? Join us at [#support-ember-times](https://discordapp.com/channels/480462759797063690/485450546887786506) on the [Ember Community Discord](https://discordapp.com/invite/zT3asNS) or ping us [@embertimes](https://twitter.com/embertimes) on Twitter. + +Keep on top of what's been going on in Emberland this week by subscribing to our [e-mail newsletter](https://the-emberjs-times.ongoodbits.com/)! You can also find our posts on the [Ember blog](https://emberjs.com/blog/tags/newsletter.html). + +--- + + +That's another wrap! ✨ + +Be kind, + +the crowd and the Learning Team From eba13df228c6434295a489105c442bf9fcf1f17c Mon Sep 17 00:00:00 2001 From: Chris Ng Date: Thu, 6 Dec 2018 13:17:10 -0500 Subject: [PATCH 02/14] blog(embertimes76): tracked properties rfc --- .../blog/2018-12-07-the-ember-times-issue-76.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/source/blog/2018-12-07-the-ember-times-issue-76.md b/source/blog/2018-12-07-the-ember-times-issue-76.md index af0b4664f8..544628cd72 100644 --- a/source/blog/2018-12-07-the-ember-times-issue-76.md +++ b/source/blog/2018-12-07-the-ember-times-issue-76.md @@ -1,6 +1,6 @@ --- title: The Ember Times - Issue No. 76 -author: the crowd +author: Chris Ng, the crowd tags: Recent Posts, Newsletter, Ember.js Times, Ember Times, 2018 alias : "blog/2018/12/07-the-ember-times-issue-76.html" responsive: true @@ -10,10 +10,19 @@ responsive: true +Read more about using `@tracked` in the new RFC! πŸ‘£ + --- -## [SECTION TITLE](#section-url) +## [Tracked Properties RFC is up for review! πŸ‘£](https://github.com/emberjs/rfcs/pull/410) + +The [Tracked Properties RFC](https://github.com/tomdale/rfcs/blob/5710d6e6fdc4ae283af7259800beb18aecb95c0d/text/0000-tracked-properties.md) introduces a simpler and more ergonomic system for tracking state change in Ember applications. + +Developers can identify if a property or a getter should be _autotracked_ by adding a `@tracked` decorator to it. This allows that value to have its dependencies automatically detected as it is used. + +Because tracked properties are just a very thin layer on top of native JavaScript, setting and accessing tracked properties can be done using **standard JavaScript syntax**. With no special syntax, and leveraging existing JavaScript knowledge. +Comment and read more about the [RFC on GitHub](https://github.com/emberjs/rfcs/pull/410). --- @@ -90,4 +99,4 @@ That's another wrap! ✨ Be kind, -the crowd and the Learning Team +Chris Ng, the crowd and the Learning Team From 80b5c669c754710b5947648b4b9ba1cba01ef55a Mon Sep 17 00:00:00 2001 From: Jessica Jordan Date: Thu, 6 Dec 2018 16:40:08 +0100 Subject: [PATCH 03/14] blog(embertimes#76): add contribs. + dec. poem --- .../2018-12-07-the-ember-times-issue-76.md | 24 +++++++++++++------ 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/source/blog/2018-12-07-the-ember-times-issue-76.md b/source/blog/2018-12-07-the-ember-times-issue-76.md index 544628cd72..94ada3b317 100644 --- a/source/blog/2018-12-07-the-ember-times-issue-76.md +++ b/source/blog/2018-12-07-the-ember-times-issue-76.md @@ -1,6 +1,6 @@ --- title: The Ember Times - Issue No. 76 -author: Chris Ng, the crowd +author: Chris Ng, Jessica Jordan, the crowd tags: Recent Posts, Newsletter, Ember.js Times, Ember Times, 2018 alias : "blog/2018/12/07-the-ember-times-issue-76.html" responsive: true @@ -8,7 +8,7 @@ responsive: true Ξ΅te sΞ΅n Emberistas? 🐹 - +Join with your **contributions** for **December** πŸΉπŸŽ„, Read more about using `@tracked` in the new RFC! πŸ‘£ @@ -18,7 +18,7 @@ Read more about using `@tracked` in the new RFC! πŸ‘£ The [Tracked Properties RFC](https://github.com/tomdale/rfcs/blob/5710d6e6fdc4ae283af7259800beb18aecb95c0d/text/0000-tracked-properties.md) introduces a simpler and more ergonomic system for tracking state change in Ember applications. -Developers can identify if a property or a getter should be _autotracked_ by adding a `@tracked` decorator to it. This allows that value to have its dependencies automatically detected as it is used. +Developers can identify if a property or a getter should be _autotracked_ by adding a `@tracked` decorator to it. This allows that value to have its dependencies automatically detected as it is used. Because tracked properties are just a very thin layer on top of native JavaScript, setting and accessing tracked properties can be done using **standard JavaScript syntax**. With no special syntax, and leveraging existing JavaScript knowledge. @@ -31,8 +31,18 @@ Comment and read more about the [RFC on GitHub](https://github.com/emberjs/rfcs/ --- -## [SECTION TITLE](#section-url) +## [Jingle bells πŸ””, jingle bells πŸ””, ✨ DecEmber πŸΉπŸŽ„ all the way!](https://www.emberjs.com/blog/2018/11/29/december-event.html) + +Find one of the issues πŸ” +In the [Ember Learn project](https://github.com/ember-learn) +With the [December label in use](https://help-wanted.emberjs.com/learning?label=DecEmber), +Don't leave the [chat unchecked](https://discordapp.com/channels/480462759797063690/517914929261576212). +Send in a PR +Make the reviewer smile πŸ™‚ +What fun [24pullrequests](https://24pullrequests.com/) are +when the contribution is so [worthwhile](https://www.emberjs.com/blog/2018/11/29/december-event.html)! 🐹 +Jingle bells, jingle bells, **DecEmber** all the way! πŸΉπŸŽ„ --- @@ -69,7 +79,7 @@ Comment and read more about the [RFC on GitHub](https://github.com/emberjs/rfcs/ ## [Contributors' Corner πŸ‘](https://guides.emberjs.com/release/contributing/repositories/) -

This week we'd like to thank our siblings for their contributions to Ember and related repositories! πŸ’–

+

This week we'd like to thank @Simran-B, @bhullarg, @jfdnc, @dcyriller, @Turbo87, @jenweber, @MelSumner, @esbanarango, @igorT, @prasannavijayan, @efx, @zachgarwood, @ppcano, @simonihmig, @stefanpenner, @kategengler, @rwjblue, @runspired, @rwwagner90, @thorsteinsson and @jacobq for their contributions to Ember and related repositories! πŸ’–

--- @@ -88,7 +98,7 @@ Comment and read more about the [RFC on GitHub](https://github.com/emberjs/rfcs/ ## [#embertimes](https://emberjs.com/blog/tags/newsletter.html) πŸ“° -Want to write for the Ember Times? Have a suggestion for next week's issue? Join us at [#support-ember-times](https://discordapp.com/channels/480462759797063690/485450546887786506) on the [Ember Community Discord](https://discordapp.com/invite/zT3asNS) or ping us [@embertimes](https://twitter.com/embertimes) on Twitter. +Want to write for the Ember Times? Have a suggestion for next week's issue? Join us at [#support-ember-times](https://discordapp.com/channels/480462759797063690/485450546887786506) on the [Ember Community Discord](https://discordapp.com/invite/zT3asNS) or ping us [@embertimes](https://twitter.com/embertimes) on Twitter. Keep on top of what's been going on in Emberland this week by subscribing to our [e-mail newsletter](https://the-emberjs-times.ongoodbits.com/)! You can also find our posts on the [Ember blog](https://emberjs.com/blog/tags/newsletter.html). @@ -99,4 +109,4 @@ That's another wrap! ✨ Be kind, -Chris Ng, the crowd and the Learning Team +Chris Ng, Jessica Jordan, the crowd and the Learning Team From 048f1c83ebc5676a313efef1b543a4884160b1fb Mon Sep 17 00:00:00 2001 From: Amy Lam Date: Thu, 6 Dec 2018 19:34:32 +0100 Subject: [PATCH 04/14] Update source/blog/2018-12-07-the-ember-times-issue-76.md Co-Authored-By: jessica-jordan --- source/blog/2018-12-07-the-ember-times-issue-76.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blog/2018-12-07-the-ember-times-issue-76.md b/source/blog/2018-12-07-the-ember-times-issue-76.md index 94ada3b317..0bcc2e420a 100644 --- a/source/blog/2018-12-07-the-ember-times-issue-76.md +++ b/source/blog/2018-12-07-the-ember-times-issue-76.md @@ -8,7 +8,7 @@ responsive: true Ξ΅te sΞ΅n Emberistas? 🐹 -Join with your **contributions** for **December** πŸΉπŸŽ„, +Join with your **contributions** for **DecEmber** πŸΉπŸŽ„, Read more about using `@tracked` in the new RFC! πŸ‘£ From 569b615cd7993879cc3c806daf49c97f49a4dc99 Mon Sep 17 00:00:00 2001 From: Jessica Jordan Date: Thu, 6 Dec 2018 19:40:36 +0100 Subject: [PATCH 05/14] blog(embertimes#76): formatting --- .../blog/2018-12-07-the-ember-times-issue-76.md | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/source/blog/2018-12-07-the-ember-times-issue-76.md b/source/blog/2018-12-07-the-ember-times-issue-76.md index 0bcc2e420a..c08fe79299 100644 --- a/source/blog/2018-12-07-the-ember-times-issue-76.md +++ b/source/blog/2018-12-07-the-ember-times-issue-76.md @@ -8,9 +8,7 @@ responsive: true Ξ΅te sΞ΅n Emberistas? 🐹 -Join with your **contributions** for **DecEmber** πŸΉπŸŽ„, - -Read more about using `@tracked` in the new RFC! πŸ‘£ +Join with your **contributions** for **DecEmber** πŸΉπŸŽ„, read more about using `@tracked` in the new RFC πŸ‘£, --- @@ -33,13 +31,14 @@ Comment and read more about the [RFC on GitHub](https://github.com/emberjs/rfcs/ ## [Jingle bells πŸ””, jingle bells πŸ””, ✨ DecEmber πŸΉπŸŽ„ all the way!](https://www.emberjs.com/blog/2018/11/29/december-event.html) -Find one of the issues πŸ” -In the [Ember Learn project](https://github.com/ember-learn) -With the [December label in use](https://help-wanted.emberjs.com/learning?label=DecEmber), +Find one of the issues πŸ”
+In the [Ember Learn project](https://github.com/ember-learn)
+With the [December label in use](https://help-wanted.emberjs.com/learning?label=DecEmber)
Don't leave the [chat unchecked](https://discordapp.com/channels/480462759797063690/517914929261576212). -Send in a PR -Make the reviewer smile πŸ™‚ -What fun [24pullrequests](https://24pullrequests.com/) are + +Send in a PR ⬅️
+Make the reviewer smile πŸ™‚
+What fun [24PullRequests](https://24pullrequests.com/) are
when the contribution is so [worthwhile](https://www.emberjs.com/blog/2018/11/29/december-event.html)! 🐹 Jingle bells, jingle bells, **DecEmber** all the way! πŸΉπŸŽ„ From 782fc35f453e5a9820d29be6042b962e6f9578c8 Mon Sep 17 00:00:00 2001 From: Amy Lam Date: Thu, 6 Dec 2018 19:46:54 +0100 Subject: [PATCH 06/14] Update source/blog/2018-12-07-the-ember-times-issue-76.md Co-Authored-By: jessica-jordan --- source/blog/2018-12-07-the-ember-times-issue-76.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blog/2018-12-07-the-ember-times-issue-76.md b/source/blog/2018-12-07-the-ember-times-issue-76.md index c08fe79299..5ba09e746c 100644 --- a/source/blog/2018-12-07-the-ember-times-issue-76.md +++ b/source/blog/2018-12-07-the-ember-times-issue-76.md @@ -29,7 +29,7 @@ Comment and read more about the [RFC on GitHub](https://github.com/emberjs/rfcs/ --- -## [Jingle bells πŸ””, jingle bells πŸ””, ✨ DecEmber πŸΉπŸŽ„ all the way!](https://www.emberjs.com/blog/2018/11/29/december-event.html) +## [Jingle Bells πŸ””, Jingle Bells πŸ””, ✨ DecEmber πŸΉπŸŽ„ All the Way!](https://www.emberjs.com/blog/2018/11/29/december-event.html) Find one of the issues πŸ”
In the [Ember Learn project](https://github.com/ember-learn)
From e2b49231c6c8404a128c8b1fff12c40df5a64381 Mon Sep 17 00:00:00 2001 From: Amy Lam Date: Thu, 6 Dec 2018 22:59:48 -0800 Subject: [PATCH 07/14] edits --- .../2018-12-07-the-ember-times-issue-76.md | 32 ++++++++++--------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/source/blog/2018-12-07-the-ember-times-issue-76.md b/source/blog/2018-12-07-the-ember-times-issue-76.md index 5ba09e746c..85671333c1 100644 --- a/source/blog/2018-12-07-the-ember-times-issue-76.md +++ b/source/blog/2018-12-07-the-ember-times-issue-76.md @@ -12,7 +12,23 @@ Join with your **contributions** for **DecEmber** πŸΉπŸŽ„, read more about usin --- -## [Tracked Properties RFC is up for review! πŸ‘£](https://github.com/emberjs/rfcs/pull/410) +## [Jingle Bells πŸ””, Jingle Bells πŸ””, ✨ DecEmber πŸΉπŸŽ„ All the Way!](https://www.emberjs.com/blog/2018/11/29/december-event.html) + +Find one of the issues πŸ”
+In the [Ember Learn project](https://github.com/ember-learn)
+With the [December label in use](https://help-wanted.emberjs.com/learning?label=DecEmber)
+Don't leave the [chat unchecked](https://discordapp.com/channels/480462759797063690/517914929261576212). + +Send in a PR ⬅️
+Make the reviewer smile πŸ™‚
+What fun [24PullRequests](https://24pullrequests.com/) are
+when the contribution is so [worthwhile](https://www.emberjs.com/blog/2018/11/29/december-event.html)! 🐹 + +Jingle bells, jingle bells, **DecEmber** all the way! πŸΉπŸŽ„ + +--- + +## [Tracked Properties RFC Is Up for Review! πŸ‘£](https://github.com/emberjs/rfcs/pull/410) The [Tracked Properties RFC](https://github.com/tomdale/rfcs/blob/5710d6e6fdc4ae283af7259800beb18aecb95c0d/text/0000-tracked-properties.md) introduces a simpler and more ergonomic system for tracking state change in Ember applications. @@ -29,21 +45,7 @@ Comment and read more about the [RFC on GitHub](https://github.com/emberjs/rfcs/ --- -## [Jingle Bells πŸ””, Jingle Bells πŸ””, ✨ DecEmber πŸΉπŸŽ„ All the Way!](https://www.emberjs.com/blog/2018/11/29/december-event.html) - -Find one of the issues πŸ”
-In the [Ember Learn project](https://github.com/ember-learn)
-With the [December label in use](https://help-wanted.emberjs.com/learning?label=DecEmber)
-Don't leave the [chat unchecked](https://discordapp.com/channels/480462759797063690/517914929261576212). -Send in a PR ⬅️
-Make the reviewer smile πŸ™‚
-What fun [24PullRequests](https://24pullrequests.com/) are
-when the contribution is so [worthwhile](https://www.emberjs.com/blog/2018/11/29/december-event.html)! 🐹 - -Jingle bells, jingle bells, **DecEmber** all the way! πŸΉπŸŽ„ - ---- ## [SECTION TITLE](#section-url) From d03a38c5133752aa0811b8378c0452cc0dd1ee68 Mon Sep 17 00:00:00 2001 From: Amy Lam Date: Thu, 6 Dec 2018 23:09:33 -0800 Subject: [PATCH 08/14] Add npm survey --- source/blog/2018-12-07-the-ember-times-issue-76.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/source/blog/2018-12-07-the-ember-times-issue-76.md b/source/blog/2018-12-07-the-ember-times-issue-76.md index 85671333c1..62e0e5a245 100644 --- a/source/blog/2018-12-07-the-ember-times-issue-76.md +++ b/source/blog/2018-12-07-the-ember-times-issue-76.md @@ -1,6 +1,6 @@ --- title: The Ember Times - Issue No. 76 -author: Chris Ng, Jessica Jordan, the crowd +author: Chris Ng, Jessica Jordan, Amy Lam, the crowd tags: Recent Posts, Newsletter, Ember.js Times, Ember Times, 2018 alias : "blog/2018/12/07-the-ember-times-issue-76.html" responsive: true @@ -8,7 +8,7 @@ responsive: true Ξ΅te sΞ΅n Emberistas? 🐹 -Join with your **contributions** for **DecEmber** πŸΉπŸŽ„, read more about using `@tracked` in the new RFC πŸ‘£, +Join us with your **contributions** for **DecEmber** πŸΉπŸŽ„, read more about using `@tracked` in the new RFC πŸ‘£, **fill out** the npm JavaScript Ecosystem Survey πŸ“... --- @@ -40,8 +40,11 @@ Comment and read more about the [RFC on GitHub](https://github.com/emberjs/rfcs/ --- -## [SECTION TITLE](#section-url) +## [Ten Minutes to Improve JavaScript πŸ“ˆ](https://www.npmjs.com/2018-javascript-ecosystem-survey) + +Represent Ember in the [2018 JavaScript Ecosystem Survey](https://www.npmjs.com/2018-javascript-ecosystem-survey)! +Each winter, [npm, Inc.](https://www.npmjs.com/) circulates a survey of software developers and npm users to solicit your feedback and ideas about how to continue supporting the world’s fastest growing developer community and the world’s most popular development language. (Review last year’s results [here](https://www.npmjs.com/npm/state-of-javascript-frameworks-2017-part-1).) Be sure to fill out the survey [here](https://www.npmjs.com/2018-javascript-ecosystem-survey) in order to share what you've been working on and how you plan to use JavaScript in 2019. And spread the word! --- @@ -110,4 +113,4 @@ That's another wrap! ✨ Be kind, -Chris Ng, Jessica Jordan, the crowd and the Learning Team +Chris Ng, Jessica Jordan, Amy Lam the crowd and the Learning Team From 38eaeed3eaac78eb20436ac817f3251a1688e90b Mon Sep 17 00:00:00 2001 From: Alon Bukai Date: Fri, 7 Dec 2018 09:47:36 +0200 Subject: [PATCH 09/14] Added section on JSON:API 1.1 RC1 --- .../blog/2018-12-07-the-ember-times-issue-76.md | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/source/blog/2018-12-07-the-ember-times-issue-76.md b/source/blog/2018-12-07-the-ember-times-issue-76.md index 5ba09e746c..627f0b633f 100644 --- a/source/blog/2018-12-07-the-ember-times-issue-76.md +++ b/source/blog/2018-12-07-the-ember-times-issue-76.md @@ -1,6 +1,6 @@ --- title: The Ember Times - Issue No. 76 -author: Chris Ng, Jessica Jordan, the crowd +author: Chris Ng, Jessica Jordan, Amy Lam, Alon Bukai the crowd tags: Recent Posts, Newsletter, Ember.js Times, Ember Times, 2018 alias : "blog/2018/12/07-the-ember-times-issue-76.html" responsive: true @@ -14,7 +14,7 @@ Join with your **contributions** for **DecEmber** πŸΉπŸŽ„, read more about usin ## [Tracked Properties RFC is up for review! πŸ‘£](https://github.com/emberjs/rfcs/pull/410) -The [Tracked Properties RFC](https://github.com/tomdale/rfcs/blob/5710d6e6fdc4ae283af7259800beb18aecb95c0d/text/0000-tracked-properties.md) introduces a simpler and more ergonomic system for tracking state change in Ember applications. +The [Tracked Properties RFC](https://github.com/emberjs/rfcs/blob/be351b059f08ac0fe709bc7697860d5064717a7f/text/0000-tracked-properties.md) introduces a simpler and more ergonomic system for tracking state change in Ember applications. Developers can identify if a property or a getter should be _autotracked_ by adding a `@tracked` decorator to it. This allows that value to have its dependencies automatically detected as it is used. @@ -45,8 +45,15 @@ Jingle bells, jingle bells, **DecEmber** all the way! πŸΉπŸŽ„ --- -## [SECTION TITLE](#section-url) +## [JSON:API Update 1.1 πŸ‡―](https://twitter.com/jsonapi/status/1069593631365959680) + +**JSON:API 1.1 RC1** is released! πŸŽ‰πŸŽŠπŸŽˆ The spec will hopefully be finalized by January 31 which is very exciting! If you use JSON:API and are able to, try out the upcoming version and give some feedback. + +One notable feature is the addition of **"profiles"** which allow specifying addition semantics on top of the current spec. This could allow specifying things like filtering, pagination and more. Check out [profiles here](https://jsonapi.org/extensions/). + +Another noteworthy change is the official recommendation to use camelCase for resource fields. This standardization will help allow composing and parsing **JSON:API** with JavaScript and other languages. Check it out [here](https://jsonapi.org/recommendations/#naming). +To learn more about the rest of the features and changes in **JSON:API 1.1** check out the [Update History](https://jsonapi.org/#update-history). --- @@ -108,4 +115,4 @@ That's another wrap! ✨ Be kind, -Chris Ng, Jessica Jordan, the crowd and the Learning Team +Chris Ng, Jessica Jordan, Amy Lam, Alon Bukai the crowd and the Learning Team From 7c3865473308ee3272a71cdc00b4b3cf510807ce Mon Sep 17 00:00:00 2001 From: Jessica Jordan Date: Fri, 7 Dec 2018 14:36:17 +0200 Subject: [PATCH 10/14] Update source/blog/2018-12-07-the-ember-times-issue-76.md Co-Authored-By: Alonski --- source/blog/2018-12-07-the-ember-times-issue-76.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blog/2018-12-07-the-ember-times-issue-76.md b/source/blog/2018-12-07-the-ember-times-issue-76.md index 374dd998aa..dfc5ebd2a2 100644 --- a/source/blog/2018-12-07-the-ember-times-issue-76.md +++ b/source/blog/2018-12-07-the-ember-times-issue-76.md @@ -56,7 +56,7 @@ Each winter, [npm, Inc.](https://www.npmjs.com/) circulates a survey of software One notable feature is the addition of **"profiles"** which allow specifying addition semantics on top of the current spec. This could allow specifying things like filtering, pagination and more. Check out [profiles here](https://jsonapi.org/extensions/). -Another noteworthy change is the official recommendation to use camelCase for resource fields. This standardization will help allow composing and parsing **JSON:API** with JavaScript and other languages. Check it out [here](https://jsonapi.org/recommendations/#naming). +Another noteworthy change is the official recommendation to use camelCase for resource fields. This standardization will allow composing and parsing **JSON:API** with JavaScript and other languages. Check it out [here](https://jsonapi.org/recommendations/#naming). To learn more about the rest of the features and changes in **JSON:API 1.1** check out the [Update History](https://jsonapi.org/#update-history). @@ -120,4 +120,4 @@ That's another wrap! ✨ Be kind, -Chris Ng, Jessica Jordan, Amy Lam, Alon Bukai the crowd and the Learning Team \ No newline at end of file +Chris Ng, Jessica Jordan, Amy Lam, Alon Bukai the crowd and the Learning Team From 7d41dd231af2cf3780ec7a404495eccd7e162368 Mon Sep 17 00:00:00 2001 From: Alon Bukai Date: Fri, 7 Dec 2018 14:38:34 +0200 Subject: [PATCH 11/14] Added teaser to intro --- source/blog/2018-12-07-the-ember-times-issue-76.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blog/2018-12-07-the-ember-times-issue-76.md b/source/blog/2018-12-07-the-ember-times-issue-76.md index dfc5ebd2a2..d766d238f6 100644 --- a/source/blog/2018-12-07-the-ember-times-issue-76.md +++ b/source/blog/2018-12-07-the-ember-times-issue-76.md @@ -8,7 +8,7 @@ responsive: true Ξ΅te sΞ΅n Emberistas? 🐹 -Join us with your **contributions** for **DecEmber** πŸΉπŸŽ„, read more about using `@tracked` in the new RFC πŸ‘£, **fill out** the npm JavaScript Ecosystem Survey πŸ“... +Join us with your **contributions** for **DecEmber** πŸΉπŸŽ„, read more about using `@tracked` in the new RFC πŸ‘£, **fill out** the npm JavaScript Ecosystem Survey πŸ“ and JSON:API πŸ‡― is getting an update for the holiday season πŸŽ‰πŸŽŠπŸŽˆ! --- From 12acc9ba2c38c2b2cf47f1148ee760b31941e323 Mon Sep 17 00:00:00 2001 From: Amy Lam Date: Fri, 7 Dec 2018 09:16:12 -0800 Subject: [PATCH 12/14] Update 2018-12-07-the-ember-times-issue-76.md --- .../2018-12-07-the-ember-times-issue-76.md | 33 ++----------------- 1 file changed, 3 insertions(+), 30 deletions(-) diff --git a/source/blog/2018-12-07-the-ember-times-issue-76.md b/source/blog/2018-12-07-the-ember-times-issue-76.md index d766d238f6..ec2409b38e 100644 --- a/source/blog/2018-12-07-the-ember-times-issue-76.md +++ b/source/blog/2018-12-07-the-ember-times-issue-76.md @@ -1,6 +1,6 @@ --- title: The Ember Times - Issue No. 76 -author: Chris Ng, Jessica Jordan, Amy Lam, Alon Bukai the crowd +author: Chris Ng, Jessica Jordan, Amy Lam, Alon Bukai tags: Recent Posts, Newsletter, Ember.js Times, Ember Times, 2018 alias : "blog/2018/12/07-the-ember-times-issue-76.html" responsive: true @@ -8,7 +8,7 @@ responsive: true Ξ΅te sΞ΅n Emberistas? 🐹 -Join us with your **contributions** for **DecEmber** πŸΉπŸŽ„, read more about using `@tracked` in the new RFC πŸ‘£, **fill out** the npm JavaScript Ecosystem Survey πŸ“ and JSON:API πŸ‡― is getting an update for the holiday season πŸŽ‰πŸŽŠπŸŽˆ! +Join us with your **contributions** for **DecEmber** πŸΉπŸŽ„, read more about using `@tracked` in the new RFC πŸ‘£, **fill out** the npm JavaScript Ecosystem Survey πŸ“, and JSON:API πŸ‡― is getting an update for the holiday season πŸŽ‰πŸŽŠπŸŽˆ! --- @@ -62,32 +62,6 @@ To learn more about the rest of the features and changes in **JSON:API 1.1** che --- -## [SECTION TITLE](#section-url) - - ---- - -## [SECTION TITLE](#section-url) - - ---- - -## [SECTION TITLE](#section-url) - - ---- - -## [SECTION TITLE](#section-url) - - ---- - -## [SECTION TITLE](#section-url) - - ---- - - ## [Contributors' Corner πŸ‘](https://guides.emberjs.com/release/contributing/repositories/)

This week we'd like to thank @Simran-B, @bhullarg, @jfdnc, @dcyriller, @Turbo87, @jenweber, @MelSumner, @esbanarango, @igorT, @prasannavijayan, @efx, @zachgarwood, @ppcano, @simonihmig, @stefanpenner, @kategengler, @rwjblue, @runspired, @rwwagner90, @thorsteinsson and @jacobq for their contributions to Ember and related repositories! πŸ’–

@@ -115,9 +89,8 @@ Keep on top of what's been going on in Emberland this week by subscribing to our --- - That's another wrap! ✨ Be kind, -Chris Ng, Jessica Jordan, Amy Lam, Alon Bukai the crowd and the Learning Team +Chris Ng, Jessica Jordan, Amy Lam, Alon Bukai and the Learning Team From b9a5d7d08ce06ceb5a5001c45cd31687d215a3f2 Mon Sep 17 00:00:00 2001 From: Jessica Jordan Date: Fri, 7 Dec 2018 18:24:23 +0100 Subject: [PATCH 13/14] blog(embertimes-76): add ember-cli-eslint-writeup --- .../2018-12-07-the-ember-times-issue-76.md | 20 ++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/source/blog/2018-12-07-the-ember-times-issue-76.md b/source/blog/2018-12-07-the-ember-times-issue-76.md index ec2409b38e..472907d1d6 100644 --- a/source/blog/2018-12-07-the-ember-times-issue-76.md +++ b/source/blog/2018-12-07-the-ember-times-issue-76.md @@ -8,7 +8,7 @@ responsive: true Ξ΅te sΞ΅n Emberistas? 🐹 -Join us with your **contributions** for **DecEmber** πŸΉπŸŽ„, read more about using `@tracked` in the new RFC πŸ‘£, **fill out** the npm JavaScript Ecosystem Survey πŸ“, and JSON:API πŸ‡― is getting an update for the holiday season πŸŽ‰πŸŽŠπŸŽˆ! +Join us with your **contributions** for **DecEmber** πŸΉπŸŽ„, read more about using `@tracked` in the new RFC πŸ‘£, **fill out** the npm JavaScript Ecosystem Survey πŸ“, **fill out** the npm JavaScript Ecosystem Survey πŸ“, JSON:API πŸ‡― is getting an update for the holiday season πŸŽ‰πŸŽŠπŸŽˆ and Ember's **linting** future needs your input πŸ’¬! --- @@ -42,9 +42,9 @@ Comment and read more about the [RFC on GitHub](https://github.com/emberjs/rfcs/ ## [Ten Minutes to Improve JavaScript πŸ“ˆ](https://www.npmjs.com/2018-javascript-ecosystem-survey) -Represent Ember in the [2018 JavaScript Ecosystem Survey](https://www.npmjs.com/2018-javascript-ecosystem-survey)! +Represent Ember in the [2018 JavaScript Ecosystem Survey](https://www.npmjs.com/2018-javascript-ecosystem-survey)! -Each winter, [npm, Inc.](https://www.npmjs.com/) circulates a survey of software developers and npm users to solicit your feedback and ideas about how to continue supporting the world’s fastest growing developer community and the world’s most popular development language. (Review last year’s results [here](https://www.npmjs.com/npm/state-of-javascript-frameworks-2017-part-1).) Be sure to fill out the survey [here](https://www.npmjs.com/2018-javascript-ecosystem-survey) in order to share what you've been working on and how you plan to use JavaScript in 2019. And spread the word! +Each winter, [npm, Inc.](https://www.npmjs.com/) circulates a survey of software developers and npm users to solicit your feedback and ideas about how to continue supporting the world’s fastest growing developer community and the world’s most popular development language. (Review last year’s results [here](https://www.npmjs.com/npm/state-of-javascript-frameworks-2017-part-1).) Be sure to fill out the survey [here](https://www.npmjs.com/2018-javascript-ecosystem-survey) in order to share what you've been working on and how you plan to use JavaScript in 2019. And spread the word! --- @@ -62,6 +62,20 @@ To learn more about the rest of the features and changes in **JSON:API 1.1** che --- +## [Set the Future Direction of Linting Ember Apps πŸ“](https://github.com/ember-cli/ember-cli/pull/8219) + +In this [work-in-progress draft for restructuring the linting workflow in Ember applications](https://github.com/ember-cli/ember-cli/pull/8219) the implementation of +[Ember CLI RFC (Request for Comments) #121](https://github.com/ember-cli/rfcs/pull/121) has begun - +and your **guidance** as part of the Ember community **is needed**! + +[Based on the RFC's design strategy](https://github.com/sangm/rfcs/blob/master/active/0000-remove-ember-cli-eslint.md#detailed-design) Ember's **linting** story is about to be aligned with best practices used in the general JavaScript ecosystem. +And there are still decisions to be made: Do you for example expect your linting tests to run +with `ember build` and `ember serve`? How would you linting integrate best into your CI pipeline? + +Let the [your thoughts on how to swap Ember CLI ESLint for ESLint know](https://github.com/ember-cli/ember-cli/pull/8219) to support the delivery of the best linting solution for the community! + +--- + ## [Contributors' Corner πŸ‘](https://guides.emberjs.com/release/contributing/repositories/)

This week we'd like to thank @Simran-B, @bhullarg, @jfdnc, @dcyriller, @Turbo87, @jenweber, @MelSumner, @esbanarango, @igorT, @prasannavijayan, @efx, @zachgarwood, @ppcano, @simonihmig, @stefanpenner, @kategengler, @rwjblue, @runspired, @rwwagner90, @thorsteinsson and @jacobq for their contributions to Ember and related repositories! πŸ’–

From 16783ccd5e901297e672b2be59a2927cadfe12d4 Mon Sep 17 00:00:00 2001 From: Amy Lam Date: Fri, 7 Dec 2018 19:15:38 +0100 Subject: [PATCH 14/14] Update source/blog/2018-12-07-the-ember-times-issue-76.md Co-Authored-By: jessica-jordan --- source/blog/2018-12-07-the-ember-times-issue-76.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blog/2018-12-07-the-ember-times-issue-76.md b/source/blog/2018-12-07-the-ember-times-issue-76.md index 472907d1d6..8131cfc403 100644 --- a/source/blog/2018-12-07-the-ember-times-issue-76.md +++ b/source/blog/2018-12-07-the-ember-times-issue-76.md @@ -72,7 +72,7 @@ and your **guidance** as part of the Ember community **is needed**! And there are still decisions to be made: Do you for example expect your linting tests to run with `ember build` and `ember serve`? How would you linting integrate best into your CI pipeline? -Let the [your thoughts on how to swap Ember CLI ESLint for ESLint know](https://github.com/ember-cli/ember-cli/pull/8219) to support the delivery of the best linting solution for the community! +Let [your thoughts on how to swap Ember CLI ESLint for ESLint be known](https://github.com/ember-cli/ember-cli/pull/8219) to support the delivery of the best linting solution for the community! ---