Skip to content

Commit

Permalink
Merge pull request #241 from ember-learn/blog/embertimes-112
Browse files Browse the repository at this point in the history
The Ember Times No. 112 - August 23th 2019
  • Loading branch information
amyrlam committed Aug 23, 2019
2 parents 2cb41f3 + bb90ed4 commit b925707
Show file tree
Hide file tree
Showing 2 changed files with 100 additions and 1 deletion.
2 changes: 1 addition & 1 deletion source/2019-08-16-the-ember-times-issue-111.md
@@ -1,7 +1,7 @@
---
title: The Ember Times - Issue No. 111
author: Chris Ng, Amy Lam, Jessica Jordan, Isaac Lee
tags: Recent Posts, Newsletter, Ember.js Times, Ember Times, 2019
tags: Newsletter, Ember.js Times, Ember Times, 2019
alias : "blog/2019/08/16-the-ember-times-issue-111.html"
responsive: true
---
Expand Down
99 changes: 99 additions & 0 deletions source/2019-08-23-the-ember-times-issue-112.md
@@ -0,0 +1,99 @@
---
title: The Ember Times - Issue No. 112
author: Chris Ng, Isaac Lee, Jessica Jordan, Amy Lam
tags: Recent Posts, Newsletter, Ember.js Times, Ember Times, 2019
alias : "blog/2019/08/23-the-ember-times-issue-112.html"
responsive: true
---

Gi suilon Emberistas! 🐹

This week:
announcing the official Ember Octane release plan 🏎🐹,
watch talks from the first Chennai EmberJS Meetup 🇮🇳,
read up on fun state management using Microstates 💡,
get your tickets to EmberCamp Chicago 🍕,
and last, but not least,
help improve the `EmberArray` documentation 👩‍💻👨‍💻!

---

## [Ember Octane Is Coming 🏎🐹](https://blog.emberjs.com/2019/08/15/octane-release-plan.html)

The time has come: [Ember Octane](https://emberjs.com/editions/) is coming to your Ember application very soon!
As [recently announced in the official Ember Octane release plan](https://blog.emberjs.com/2019/08/15/octane-release-plan.html), the very first edition of Ember is going to be released at the same time as the planned release date of Ember v3.14.

But what does it mean? By the time Ember 3.14 is published, the framework will include all Octane-related features and enable them by default. Additionally, the "Octane way" will be the primary and recommended way to build Ember apps. This will also be reflected in Ember's official documentation ([API Docs](https://api.emberjs.com/ember/release) and [Guides](https://octane-guides-preview.emberjs.com/release/upgrading/editions/)) and migration tools.

Wanna learn more about what is going to happen between now and the time Ember Octane lands? Looking for support for migrating and testing your apps with the Octane feature set? Be sure to give the [official release plan a read](https://blog.emberjs.com/2019/08/15/octane-release-plan.html), join the discussion on the [#topic-octane-migration](https://discordapp.com/channels/480462759797063690/608346628163633192) channel on the [Ember Discord](https://discordapp.com/invite/zT3asNS) and **get ready for Octane**!


---

## [First Chennai EmberJS Meetup 🇮🇳](https://www.youtube.com/playlist?list=PLh_rF0Qob_sx79YDqa4945EbOuly3AXX1)

On August 3, Chennai EmberJS featured 6 speakers at their inaugural Meetup: [@gokatz](https://github.com/gokatz), [@g13n](https://github.com/g13n), [@kandhavivekraj](https://github.com/kandhavivekraj), [@astronomersiva](https://github.com/astronomersiva), [@pranith024](https://twitter.com/pranith024), and [@rajasegar](https://github.com/rajasegar)! They covered various topics, including Ember Octane, tuning web performance, accessibility, differential bundling, JAM stack, and how ASTs (abstract syntax trees) fuel codemods and help us [auto-document Ember components](https://github.com/rajasegar/ember-docgen). 💖

You can [watch all six talks today on YouTube](https://www.youtube.com/playlist?list=PLh_rF0Qob_sx79YDqa4945EbOuly3AXX1). To learn more about Chennai EmberJS, you can visit their [website](https://chennaiemberjs.in/) and follow them on [Twitter](https://twitter.com/EmberChennai), [Meetup](https://www.meetup.com/Chennai-EmberJS/), and the [`#as-india`](https://discordapp.com/channels/480462759797063690/562648585980739616) channel on [Discord](https://discordapp.com/invite/zT3asNS)!

---

## [Fun State Management with Ember and Microstates 💡](https://medium.com/@brandynlbennett/fun-state-management-with-ember-and-microstates-e6027a9dedb9)

[@brandynbennett](https://github.com/brandynbennett) details his experience using [Microstates.js](https://github.com/microstates/microstates.js) as an alternative to [DDAU](https://discuss.emberjs.com/t/readers-questions-what-is-meant-by-the-term-data-down-actions-up/15311). He describes how him and his team created complex tables in their app's UI that requires a lot of state to be passed around. The DDAU strategy, in this scenario, was unwieldy due to the number of arguments needed to set and difficult to keep in sync as they had to refetch the data for each event such as a sort happens.

[Microstates.js](https://github.com/microstates/microstates.js) provided immutability so that any change to the state will make all the `didReceiveAttrs` hooks and computed properties update while also guarding it from being changed by child components. It also provided helpers and macros that would automatically update the component properties when the state has changed, eliminating the need to pass an action for each piece of state.

Read the [full blog post](https://medium.com/@brandynlbennett/fun-state-management-with-ember-and-microstates-e6027a9dedb9) to see the tradeoffs and potential pitfalls when state management is done with Ember and Microstates.

---

## [Learn about Modern Ember at EmberCamp Chicago 🍕](http://embercamp.com)

[**EmberCamp Chicago**](http://embercamp.com/) is around the corner! Join the community on **September 16th, 2019** for the second annual edition of the event, hosting 150+ of the world’s top Ember developers for a full day of Ember talks.

Learn all about modern Ember patterns, Embroider, insightful case studies from community leaders such as [Edward Faulkner](https://twitter.com/eaf4), [Jen Weber](https://twitter.com/jwwweber), [Dan Gebhardt](https://twitter.com/dgeb), [Marie Chatfield](https://twitter.com/mariechatfield) and many others!

Check out the full [talk schedule](http://embercamp.com/speakers) and get [your tickets today before they are sold out](https://www.eventbrite.com/e/embercamp-chicago-2019-registration-63595006376)!

---

## [Help Improve the `EmberArray` documentation 👩‍💻👨‍💻](https://github.com/emberjs/ember.js/issues/18228)

[@locks](https://github.com/locks) asks for your help with improving the documentation for [`EmberArray`](https://api.emberjs.com/ember/release/classes/EmberArray). The goal is to review each method and property of `EmberArray` and see if we can provide a better explanation and code sample.

If you have time to help, please [visit the GitHub issue and create a pull request](https://github.com/emberjs/ember.js/issues/18228)!

---

## [Contributors' Corner 👏](https://guides.emberjs.com/release/contributing/repositories/)

<p>This week we'd like to thank <a href="https://github.com/rwjblue" target="gh-user">@rwjblue</a>, <a href="https://github.com/rwwagner90" target="gh-user">@rwwagner90</a>, <a href="https://github.com/mansona" target="gh-user">@mansona</a>, <a href="https://github.com/hellomattio" target="gh-user">@hellomattio</a>, <a href="https://github.com/mukilane" target="gh-user">@mukilane</a>, <a href="https://github.com/xg-wang" target="gh-user">@xg-wang</a>, <a href="https://github.com/HeroicEric" target="gh-user">@HeroicEric</a>, <a href="https://github.com/runspired" target="gh-user">@runspired</a>, <a href="https://github.com/SYU15" target="gh-user">@SYU15</a>, <a href="https://github.com/igorT" target="gh-user">@igorT</a>, <a href="https://github.com/snewcomer" target="gh-user">@snewcomer</a>, <a href="https://github.com/pzuraq" target="gh-user">@pzuraq</a>, <a href="https://github.com/ansmonjol" target="gh-user">@ansmonjol</a>, <a href="https://github.com/nummi" target="gh-user">@nummi</a>, <a href="https://github.com/patricklx" target="gh-user">@patricklx</a>, <a href="https://github.com/pete-the-pete" target="gh-user">@pete-the-pete</a> and <a href="https://github.com/jenweber" target="gh-user">@jenweber</a> for their contributions to Ember and related repositories! 💖</p>

---

## [Got a Question? Ask Readers' Questions! 🤓](https://docs.google.com/forms/d/e/1FAIpQLScqu7Lw_9cIkRtAiXKitgkAo4xX_pV1pdCfMJgIr6Py1V-9Og/viewform)

<div class="blog-row">
<img class="float-right small transparent padded" alt="Office Hours Tomster Mascot" title="Readers' Questions" src="/images/tomsters/officehours.png" />

<p>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!</p>

<p><strong>Submit your own</strong> short and sweet <strong>question</strong> under <a href="https://bit.ly/ask-ember-core" target="rq">bit.ly/ask-ember-core</a>. And don’t worry, there are no silly questions, we appreciate them all - promise! 🤞</p>
</div>

---

## [#embertimes 📰](https://blog.emberjs.com/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,

Chris Ng, Isaac Lee, Jessica Jordan, Amy Lam and the Learning Team

0 comments on commit b925707

Please sign in to comment.