Skip to content

Releases: chrislopresto/ember-freestyle

v0.11.10

03 Apr 18:02
v0.11.10
78925e3
Compare
Choose a tag to compare

This release upgrades dependencies and configuration in preparation for supporting angle bracket components.

While we didn't change any functionality, we did bump the minimum node version (to 10) and drop Ember 2.x scenarios from our test matrix. The minimum version of Ember now guaranteed to work is 3.8.

If this release causes any issues for your app consider a) reporting them as issues, b) temporarily pinning ember-freestyle to 0.11.9, or c) upgrading your Ember version if possible.

v0.10.0

07 Nov 05:54
Compare
Choose a tag to compare

Full Changelog

Closed issues:

  • After recent yarn install, ember project will not build #183
  • Adding a blank line with no spaces causes freestyle-usage snippet to be indented too far #173

Merged Pull Requests ⭐ 🌞 πŸ‘»

  • Remove Slack and add Discord #189 (Windvis)
  • Drop support for node v4 & use broccoli-plugin #185 (lukemelia)
  • Don't include blank lines when determining how much to unindent #181 (danwenzel)

v0.9.0

10 Sep 03:40
Compare
Choose a tag to compare

Full Changelog

Closed issues:

  • notes, useage, etc are not rendering when deploying style guide to production #180
  • Error while processing route #175
  • Latest version seems broken? #138

Merged Pull Requests πŸ‘ πŸ‘ πŸ”©

v0.8.1

01 Mar 03:02
Compare
Choose a tag to compare

Full Changelog

Merged Pull Requests πŸ™Œ 🎈 ⚑

v0.8.0

27 Feb 13:26
Compare
Choose a tag to compare

Full Changelog

Merged Pull Requests πŸ‘Œ ⭐ πŸ’«

v0.7.0

27 Feb 13:26
Compare
Choose a tag to compare

Full Changelog

Closed issues:

  • Supported Ember versions #153
  • Remove jQuery dependency #148

Merged Pull Requests πŸ‘Œ ⭐ πŸ’«

v0.6.2

27 Feb 13:25
Compare
Choose a tag to compare

Full Changelog

Closed issues:

  • Typeface component doesn't allow multiple font families to be specified #142
  • Issues with installing new version of ember-freestyle #131

Merged Pull Requests πŸ‘Œ ⭐ πŸ’«

v0.6.1

14 Jul 15:10
Compare
Choose a tag to compare

Full Changelog

Closed issues:

  • Documentation and Blueprints Do Not Match v0.6.0 #132

Merged Pull Requests πŸŽ‡ πŸ‘ 🎈

v0.6.0

09 Jul 23:35
Compare
Choose a tag to compare

BREAKING CHANGE - CONTEXTUAL COMPONENTS

With our recent decision to support two trailing Ember LTS releases, we're now able to simplify some freestyle patterns by making use of contextual components.

  • Updates the freestyle-section component to yield contextual freestyle-subsection components
  • Updates the freestyle-collection component to yield contextual freestyle-variant components

You will need to change freestyle-subsection and freestyle-variant usages in your freestyle templates as follows:

Before

{{#freestyle-section as |section|}}
  {{#freestyle-subsection section=section}}
    {{#freestyle-collection as |collection|}}
      {{#freestyle-variant colleciton=collection}}
        {{!-- ... --}}
      {{/freestyle-variant}}
    {{/freestyle-collection}}
  {{/freestyle-subsection}}
{{/freestyle-section}}

After

{{#freestyle-section as |section|}}
  {{#section.subsection}}
    {{#freestyle-collection as |collection|}}
      {{#collection.variant}}
        {{!-- ... --}}
      {{/collection.variant}}
    {{/freestyle-collection}}
  {{/section.subsection}}
{{/freestyle-section}}

Full Changelog

Merged Pull Requests ✨ 🀘 πŸ™

Credits

Thanks to @dajk and @knownasilya for their contributions!

v0.5.0

09 Jul 23:23
Compare
Choose a tag to compare

Semi-breaking change if you were using multiple themes

This release simplifies our approach for using highlight.js themes. We now just load them from their CDN as per the instructions here: https://highlightjs.org/download/ This allows us to remove the highlight.js npm dependency altogether.

This removes the ability to use different themes on different freestyle-usage components. Please open an issue if you had been using this feature and would like to see it resurface in a cleaner fashion.

Full Changelog

Closed issues:

  • import not found or unreadable: ../ember-freestyle/highlight.js/zenburn. #123
  • Error: File to import not found or unreadable: ember-freestyle #120

Merged Pull Requests πŸ™Œ πŸ’« πŸ‘»