Coder Social home page Coder Social logo

ember-ref-modifier's Introduction

ember-ref-modifier

Greenkeeper badge


Check ember-ref-bucket first!

ember-ref-modifier likely will be deprecated after ember-ref-bucket major release


An implementation of the {{ref}} element modifier. Heavily inspired by ember-on-modifier and @ember/render-modifiers.

Installation

ember install ember-ref-modifier

Compatibility

  • Ember.js v3.13 or above
  • ember-cli v2.13 or above

Usage

<button {{ref this "button"}} data-name="foo">
  Click me baby, one more time!
</button>

{{this.button.dataset.name}} >> "foo"

<button {{ref this.callback}} data-name="foo">
  Click me baby, one more time!
</button>
class Component {
	@action callback(node) {
		this.node = node;
	}
}

<div {{ref this "divContainer" }}></div>
{{#-in-element this.divContainer}}
  Hello!
{{/-in-element}}

// hash helper must return an EmberObject! The default hash helper returns a pojo.
{{#let (hash) as |ctx|}}
	<input id="name-input" {{ref ctx 'inputNode'}}>
	<label for={{ctx.inputNode.id}}> Enter your name </label>
{{/let}}


<button {{ref this "button"}}>
  Click me baby, one more time!
</button>
import Component from '@ember/component';

export default class BritneySpearsComponent extends Component {
  button!: DOMNode
}

This is essentially equivalent to:

didInsertElement() {
  super.didInsertElement();
  this.set('button', this.element.querySelector('button'));
}

It will also re-register property, if any of the passed parameters change.

ember-ref-modifier's People

Contributors

dependabot-preview[bot] avatar dependabot-support avatar duder-onomy avatar greenkeeper[bot] avatar jrjohnson avatar lifeart avatar simonihmig avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

ember-ref-modifier's Issues

An in-range update of ember-qunit is breaking the build 🚨

The devDependency ember-qunit was updated from 4.4.1 to 4.5.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

ember-qunit is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Release Notes for Release 4.5.0

v4.5.0 (2019-07-30)

πŸš€ Enhancement

πŸ› Bug Fix

  • #526 Fix error message for test isolation validation (@scalvert)
  • #497 Work around issue with pauseTest() timing out. (@rwjblue)

🏠 Internal

  • #490 package.json: Use regular version constraints (@Turbo87)

Committers: 5

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of ember-template-lint is breaking the build 🚨

The devDependency ember-template-lint was updated from 1.1.0 to 1.2.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

ember-template-lint is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Release Notes for Release 1.2.0

πŸš€ Enhancement

  • #733 Add new rule: no-obsolete-elements (@MelSumner)
  • #714 Expose rule test harness for use by custom rule authors. (@gabrielcsapo)
  • #631 Add rule: [A11y] iframe-has-title (@lifeart)
  • #681 Update table-groups rule to allow {{yield}} inside <table> (@sohara)
  • #633 Add rule: [A11y] no-positive-tabindex (@lifeart)
  • #624 Add rule: [A11y]require-valid-alt-text (@lifeart)
  • #628 Add rule: [A11y] no-abstract-roles (@lifeart)
  • #721 Allow {{some-component tagName="tbody"}} to be a child of a table (@raycohen)
  • #672 Add allowDynamicStyles option to no-inline-styles lint rule (@bmish)
  • #638 Update table-groups rule to allow comments inside <table> (@lifeart)
  • #614 Add rule: no-element-event-actions (@bmish)

πŸ› Bug Fix

  • #737 Allow onerror for img elements in no-invalid-interactive rule (@elidupuis)
  • #730 Ensure console output is completed before exiting ember-template-lint executable (@john-kurkowski)
  • #709 Update @glimmer/compiler to avoid errors when forwarding element modifiers to component invocations (@dmzza)
  • #639 Fix no-bare-strings to allow whitelisting empty string (@lifeart)
  • #618 Allow {{else}} {{#unless ...}} in the simple-unless and no-negated-condition rules (@bmish)
  • #613 Avoid suggesting unless with helpers in condition in no-negated-condition rule (@bmish)

πŸ“ Documentation

  • #678 Add documentation on how to ignore modules when using ember-template-lint and ember-cli-template-lint together (@DingoEatingFuzz)
  • #695 Fixed 404 URL in sourceForNode comment (@kevinansfield)
  • #686 Fix link to spec in self-closing-void-elements documentation (@woprandi)
  • #675 Add allowed example to no-bare-strings rule documentation (@bmish)
  • #671 Add command for generating pending list to README (@TristanToye)
  • #670 Fix a typo in the style-concatenation rule documentation (@dmzza)
  • #652 Update documentation to show no-element-event-actions and no-action-modifiers as related rules (@keanedawg)
  • #641 Add template for writing documentation for new rules (@bmish)

🏠 Internal

  • #627 Add -test suffix to some test files that were not running in CI (@bmish)

Committers: 16

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of eslint-plugin-node is breaking the build 🚨

The devDependency eslint-plugin-node was updated from 9.0.0 to 9.0.1.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

eslint-plugin-node is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Commits

The new version differs by 3 commits.

  • bc02c52 9.0.1
  • dfb4dc0 πŸ› fix file-extension-in-import for scoped packages (fixes #160)
  • 11d2d41 πŸ“ tweak documents

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

Argument order

I've been working with this library and I think it's a really important library for users of Glimmer components.

I was using it for writing a cookbook example, and it seemed to me that it would make sense to swap the argument order from:

<div {{ref "name" this}}>

to:

<div {{ref this "name"}}>

This matches more closely to this["name"] = ... and also matches the Ember run-loop API, which has a similar concern.

In general, I find it clearer when the object you're assigning to is first πŸ˜„

Cannot name the variable "element" in a Glimmer component

That is, doing:

<div {{ref this "element"}}></div>

Leads to:

Error: You attempted to access the 'element' property on a Glimmer Component, but that property does not exist in Ember.js applications, it only exists in Glimmer.js apps. You define a class field with the same name on your component class and it will overwrite this error message, but it will not be used by the framework.

An in-range update of eslint-plugin-prettier is breaking the build 🚨


☝️ Important announcement: Greenkeeper will be saying goodbye πŸ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency eslint-plugin-prettier was updated from 3.1.2 to 3.1.3.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

eslint-plugin-prettier is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

Examples from readme involving the `let` helper do not seem to work

I have a simple twiddle demonstrating what I am finding in my app:
https://ember-twiddle.com/106feb8ed164fd0151963b4bbc43aba4?openFiles=templates.application.hbs%2C

I would have expected the ref modifier to have set the element by the time the template proceeding it was rendered. I can confirm that installModifier is called, but it is definitely called too late.

This example from the readme DOES work:

<div {{ref this "divContainer" }}></div>
{{#-in-element this.divContainer}}
  Hello!
{{/-in-element}}

This example does NOT work (the ctx.inputNode.id is undefined)

{{#let (hash) as |ctx|}}
	<input id="name-input" {{ref ctx 'inputNode'}}>
	<label for={{ctx.inputNode.id}}> Enter your name </label>
{{/let}}

I suspect it has something to do with the let helper?

Is this the expected behavior? Happy to provide more information. ( thanks for the awesome modifier )

An in-range update of ember-cli-htmlbars is breaking the build 🚨

The devDependency ember-cli-htmlbars was updated from 4.2.0 to 4.2.1.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

ember-cli-htmlbars is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Commits

The new version differs by 34 commits.

  • 474dcff v4.2.1
  • 375fe4c Only check semver range if ember-source is present (#423)
  • bb8a57f Only check semver range if ember-source is present
  • 0176e64 Bump eslint-config-prettier from 6.8.0 to 6.9.0
  • 521d7b5 [Security] Bump handlebars from 4.2.0 to 4.5.3
  • 45d24dc Bump eslint-config-prettier from 6.7.0 to 6.8.0
  • a414f7a Bump eslint from 6.7.2 to 6.8.0
  • 2184e11 Bump @ember/optional-features from 1.2.0 to 1.3.0
  • 94f0ec7 Bump @babel/runtime from 7.7.6 to 7.7.7
  • 19cf30d Bump @babel/core from 7.7.5 to 7.7.7
  • 8078b2d Bump @ember/optional-features from 1.1.0 to 1.2.0
  • 6446c25 Bump ember-resolver from 6.0.0 to 6.0.1
  • 6c1f5c2 Merge pull request #406 from ember-cli/dependabot/npm_and_yarn/semver-7.0.0
  • 1c62ef6 Bump semver from 6.3.0 to 7.0.0
  • 64854b2 Bump eslint-plugin-prettier from 3.1.1 to 3.1.2

There are 34 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of ember-cli-babel is breaking the build 🚨

The dependency ember-cli-babel was updated from 7.13.0 to 7.13.1.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

ember-cli-babel is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details

Release Notes for Release 7.13.1

πŸ› Bug Fix

  • #311 Include decorator and class field plugins after TypeScript, if present (@dfreeman)

πŸ“ Documentation

Committers: 2

Commits

The new version differs by 5 commits.

  • a72f8b0 Release 7.13.1
  • 0d4dcc3 Include decorator and class field plugins after TypeScript, if p… (#311)
  • e08b59d Include decorator and class field plugins after TypeScript, if present
  • bc0dee4 README: Update an outdated link (#309)
  • 3f6e108 README: Update an outdated link

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

proposal: simplify api

We could go this ways:


<div {{ref "field"}} ></div>
class Component {
  @ref("field") node = null;
}

where {{ref "field"}} will be transformed to {{ref this "field"}},
and @ref decorator will control property access (and will throw error if property does not yeat setted), it should fix all tracked issues.

one more interesting thing, we can share refs between components (we could add ability to have "global" refs), in this case, we will use @ref("field") to access ref-bucket, and we can introduce {{ref-for "field"}} helper, and it can return actual dom node, with same ref.

it may be {{global-ref "footer"}}, @globalRef("footer"), {{global-ref-to "footer"}}

in therory "ref-bucket" approach may simplify dom ref usages for template-only components, for example

<div {{ref "field"}}>hello</div>

{{get (ref-to "field") "textContent"}}

<SecondComponent @helloNode={{ref-to "field"}} />

example: https://github.com/lifeart/ember-ref-bucket

<div {{bound-to this.getNode}}></div>
class Component {
   getNode() { return null }
}

quite straightforward usage, we will patch getNode method on this during modifier initialization, and getNode will return value or null.


<div {{ref-to this.node}}></div>
class Component {
   node = null;
}

and check for this.node property descriptior (it shoud be simple, without getters/setters )


@jrjohnson @simonihmig @wycats what do you think? Any suggestions, additions?

// related duscussion -#232

An in-range update of eslint-plugin-node is breaking the build 🚨


☝️ Important announcement: Greenkeeper will be saying goodbye πŸ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency eslint-plugin-node was updated from 11.0.0 to 11.1.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

eslint-plugin-node is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Commits

The new version differs by 6 commits.

  • 4a348e7 πŸ”– 11.1.0
  • 7dc8f80 πŸ“ fix rule names in documentation
  • e2da592 βš’ improve no-path-concat
  • ade0b59 ✨ add no-restricted-import
  • 578110e βš’ simplify the options of no-restricted-require
  • 8788a11 Update: add ESLint core Node.js and CommonJS rules (#206)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

check interaction with render modifiers

// background - emberjs/ember.js#18698 (comment)
https://github.com/lifeart/ember-ref-modifier/blob/master/tests/dummy/app/components/glimmer-ref.js

since we setting property in next runloop, such code may fail

 <div {{ref this "menuElement"}} {{did-insert this.focusOnFirstItem}} >

in other side, callback may solve issue

<div {{ref this.setMenuElement}} >
<div {{did-insert this.setMenuElement}} >
@action
setMenuElement(node) {
  this.menuElement  = node;
  this.focusOnFirstItem(node);
}

in other way, we can make next runloop sheduling optional, or remove it at all from modifier itself and give control to developers.

{{ref this "prop"}} - for classic usage
{{ref this "prop" run="next"}}  - for runloop control
{{ref this.setElement run="next"}} - runloop controlled callback
{{ref (next-runloop this.setElement)}} - manual callback control

other way - allow tracked chain computations rerun in same transaction if some of tracked properties is DOM node, but it seems low-level change.

An in-range update of ember-cli-babel is breaking the build 🚨

The dependency ember-cli-babel was updated from 7.13.2 to 7.14.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

ember-cli-babel is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details

Release Notes for Release 7.14.0

πŸš€ Enhancement

  • #318 Add polyfill that allows apps and addons to use @ember-data related packages regardless of ember-data version (@runspired)
  • #320 Update Babel to v7.8.3 (@Turbo87)
  • #315 Update Babel dependencies to latest and fix CI. (@rwjblue)

🏠 Internal

  • #313 Replace deprecated ember-cli-qunit with ember-qunit (@dmzza)

Committers: 4

Commits

The new version differs by 18 commits.

  • 5443d3e Release 7.14.0
  • 2ba3ef7 Add polyfill that allows apps and addons to use @ember-data re… (#318)
  • 334e0ee fix test scope for using co wrap
  • a351f96 fix node 6 support
  • e3377d0 fix rimraf
  • bc897e1 fix restored tests
  • 58b4483 feat: EmberData Packages Polyfill
  • f305de0 Merge pull request #320 from Turbo87/babel
  • b96ec8c Update Babel to v7.8.3
  • b23e749 Bump handlebars from 4.1.2 to 4.5.3 (#317)
  • 442ec64 Update Babel dependencies to latest and fix CI. (#315)
  • a604b01 Revert "Update async generator tests"
  • cbf1141 Update Babel dependencies to latest versions.
  • 235d88a Replace deprecated ember-cli-qunit with ember-qunit (#313)
  • 1b954f8 bump ember-load-initializers to 2.1.1

There are 18 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of ember-cli-babel is breaking the build 🚨


🚨 Reminder! Less than one month left to migrate your repositories over to Snyk before Greenkeeper says goodbye on June 3rd! πŸ’œ πŸššπŸ’¨ πŸ’š

Find out how to migrate to Snyk at greenkeeper.io


The dependency ember-cli-babel was updated from 7.20.0 to 7.20.1.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

ember-cli-babel is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details

Release Notes for Release 7.20.1

πŸ› Bug Fix

  • #338 Update babel-plugin-ember-modules-api-polyfill to fix issues with invalid identifiers. (@rwjblue)

Committers: 1

Commits

The new version differs by 4 commits.

  • 5161e5b Release 7.20.1
  • 73ac6bf Merge pull request #338 from babel/fix-invalid-identifier-issues
  • 9dd600d Update test assertion to work properly.
  • 1c9b97a Update babel-plugin-ember-modules-api-polyfill to fix issues with invalid identifiers.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of ember-cli-babel is breaking the build 🚨

The dependency ember-cli-babel was updated from 7.8.0 to 7.9.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

ember-cli-babel is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details

Release Notes for Release 7.9.0

πŸš€ Enhancement

Committers: 3

Commits

The new version differs by 15 commits.

  • 6b8cf74 Release 7.9.0
  • 8907a49 Update RELEASE.md.
  • a8adb49 Update modules API for colocation support (emberjs/rfcs#481). (#295)
  • 4f9e319 Update modules API for colocation support (emberjs/rfcs#481).
  • 0b5f299 Merge pull request #292 from babel/dependabot/npm_and_yarn/lodash.defaultsdeep-4.6.1
  • 909a94c Merge pull request #293 from babel/dependabot/npm_and_yarn/lodash.merge-4.6.2
  • 447b7b2 upgrade all in-range deps (#291)
  • e61f9b2 Bump lodash.merge from 4.6.1 to 4.6.2
  • dba1ec5 Bump lodash.defaultsdeep from 4.6.0 to 4.6.1
  • 47672e0 Merge pull request #289 from efx/remove-bower-config
  • adfd200 remove legacy bower configuration
  • 2714489 Merge pull request #288 from rwjblue/reroll-yarn
  • a61d5d3 Refresh yarn.lock.
  • a4a668b Merge pull request #287 from rwjblue/add-release-setup
  • 321743b Add automated release setup.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of ember-cli-htmlbars is breaking the build 🚨


☝️ Important announcement: Greenkeeper will be saying goodbye πŸ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency ember-cli-htmlbars was updated from 4.2.3 to 4.3.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

ember-cli-htmlbars is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Release Notes for Release 4.3.0

πŸ“ Documentation

Committers: 1

Commits

The new version differs by 8 commits.

  • 7026bb0 Release 4.3.0
  • ff934eb Bump mocha from 6.2.2 to 7.1.1
  • 4ed1f71 Bump ember-resolver from 6.0.1 to 7.0.0
  • 32eb16e Bump eslint-plugin-node from 10.0.0 to 11.1.0
  • 517502e Add type definition for test helper import (#481)
  • be3c14d [Security] Bump acorn from 7.1.0 to 7.1.1
  • 4068824 Bump @babel/core from 7.8.4 to 7.8.7
  • b95fbc2 Bump eslint-plugin-ember from 7.8.0 to 7.10.1

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of eslint-config-prettier is breaking the build 🚨

The devDependency eslint-config-prettier was updated from 4.2.0 to 4.3.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

eslint-config-prettier is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Commits

The new version differs by 5 commits.

  • 9ea6112 eslint-config-prettier v4.3.0
  • ce80f83 Disable new eslint-plugin-vue rules
  • a314167 Update eslint-plugin-vue
  • 7328392 Disable new @typescript-eslint rules
  • e21836b Update npm packages

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of ember-source is breaking the build 🚨

The devDependency ember-source was updated from 3.16.1 to 3.16.2.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

ember-source is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Commits

The new version differs by 8 commits.

  • e295527 3.16.2
  • 83410de Add v3.16.2 to CHANGELOG.md.
  • 055fab0 [BUGFIX lts] Revert container deprecation
  • 4f10138 Merge pull request #18721 from emberjs/backport/autotracking-bugfixes
  • a33a246 Fix prettier issues.
  • 63f9f45 [BUGFIX release] Correctly links ArrayProxy tags to arrangedContent
  • 0aa4e5f [BUGFIX release] Fixes tag chaining on Proxy mixins
  • dceadb9 [BUGFIX release] Ensures the arg proxy works with get

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of ember-try is breaking the build 🚨

The devDependency ember-try was updated from 1.1.0 to 1.2.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

ember-try is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Commits

The new version differs by 98 commits.

  • 1eba9d6 Release v1.2.0
  • 535cbdc Bump codecov from 3.3.0 to 3.4.0
  • 6bd05b8 Bump glob from 7.1.3 to 7.1.4
  • 277b433 Bump resolve from 1.10.0 to 1.10.1
  • 0d7707a [Security] Bump jquery from 3.3.1 to 3.4.0
  • 6ac2fcf Bump eslint-plugin-ember from 6.3.0 to 6.4.1
  • c22b412 Bump ember-cli from 3.8.2 to 3.9.0 (#321)
  • 9a0996e Bump mocha from 6.1.3 to 6.1.4
  • 6b58631 Bump mocha from 6.1.2 to 6.1.3
  • 18bc483 Merge pull request #324 from ember-cli/dependabot/npm_and_yarn/ember-source-3.9.1
  • 2a7a3ca Bump ember-source from 3.8.0 to 3.9.1
  • 0322c9e Bump ember-cli-template-lint from 1.0.0-beta.2 to 1.0.0-beta.3
  • 236ced5 Bump mocha from 6.1.1 to 6.1.2
  • e85947e Merge pull request #318 from ryanto/document-resolutions
  • 879ab2b Bump mocha from 6.0.2 to 6.1.1

There are 98 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of eslint-plugin-ember is breaking the build 🚨


☝️ Important announcement: Greenkeeper will be saying goodbye πŸ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency eslint-plugin-ember was updated from 7.10.1 to 7.11.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

eslint-plugin-ember is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Release Notes for v7.11.0

πŸš€ Enhancement

  • #695 Add new rule no-incorrect-computed-macros (@bmish)
  • #709 Add new rule no-invalid-dependent-keys (@TheMBTH)
  • #718 Add new rule no-replace-test-comments (@jaydgruber)
  • #705 Support TypeScript files when checking if rules are running on Ember module or test files (@bmish)

πŸ› Bug Fix

  • #719 Validate imports before reporting violations in no-invalid-debug-function-arguments rule (@bmish)

πŸ“ Documentation

  • #716 Revamp the guide for contributing a new rule (@bmish)
  • #715 Mention if a rule is auto-fixable in its documentation (@bmish)
  • #713 Add tests to ensure each rule documentation file has the right title and an examples section (@bmish)
  • #711 Improve contribution guide for adding new rules (@TheMBTH)

🏠 Internal

  • #720 Add tests to ensure some computed property rules handle the @computed decorator (@bmish)

Committers: 3

Commits

The new version differs by 30 commits.

  • f2e1feb v7.11.0
  • 9018fba Update CHANGELOG
  • acb2d67 Merge pull request #720 from bmish/computed-decorators
  • a8d5237 tes: add tests to ensure some computed property rules handle the computed decorator
  • 4791818 Merge pull request #719 from bmish/no-invalid-debug-function-arguments-check-imports
  • e7ac741 fix: add import checking to no-invalid-debug-function-arguments
  • 9779724 Merge pull request #695 from bmish/no-incorrect-computed-macros
  • 78d8ec4 Merge pull request #709 from TheMBTH/ISSUE-708
  • d177089 Apply suggestions from code review
- [`2a5ea22`](https://github.com/ember-cli/eslint-plugin-ember/commit/2a5ea224029cb86f1282beca44f605cb9421dc80) Apply suggestions from code review - [`4866534`](https://github.com/ember-cli/eslint-plugin-ember/commit/48665341c1cbfbd6ef418f9e2910e08cba413eeb) Add new rule `no-replace-test-comments` (#718) - [`8e5e632`](https://github.com/ember-cli/eslint-plugin-ember/commit/8e5e6326049e5881fb726bec19e039fcd2440d84) feat: add new rule no-incorrect-computed-macros - [`40c12a2`](https://github.com/ember-cli/eslint-plugin-ember/commit/40c12a229b5f54836cefba277e26536230f9b05f) ISSUE #708 - Add rule "no-invalid-dependent-keys" to require that dependent keys used for computed properties to be valid. - [`2029651`](https://github.com/ember-cli/eslint-plugin-ember/commit/2029651e09134f4662267c0c75f8e5f7f1651c5f) docs: fix parentheses - [`0d88793`](https://github.com/ember-cli/eslint-plugin-ember/commit/0d887938824496bcde6bf5d2ab4efe32b141e471) Merge pull request #716 from bmish/docs-new-rule-rewrite

There are 30 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of eslint-config-prettier is breaking the build 🚨


☝️ Important announcement: Greenkeeper will be saying goodbye πŸ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency eslint-config-prettier was updated from 6.10.0 to 6.10.1.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

eslint-config-prettier is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Commits

The new version differs by 13 commits.

  • a188a3c eslint-config-prettier v6.10.1
  • a5b25ac Fix Windows tests
  • 8126c58 Update readme
  • a91a6a5 Update versions in readme
  • 2a7fa6a Use proseWrap: never for better git diffs
  • b76e316 Recommend running the CLI helper tool using npx
  • 4366d25 Add empty .prettierrc to help editor extensions
  • 538dbb5 Use less of eslint-plugin-prettier
  • 7dffee0 Format markdown files with Prettier
  • 2a5b854 Update npm packages, including Prettier 2.0 changes
  • 855185f Remove TravisCI
  • 83705e8 Disable linebreak-style in test for Windows support
  • b6559bf Add GitHub Actions

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of eslint-plugin-prettier is breaking the build 🚨

The devDependency eslint-plugin-prettier was updated from 3.0.1 to 3.1.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

eslint-plugin-prettier is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Commits

The new version differs by 38 commits.

  • bb521d0 Build: update package.json and changelog for v3.1.0
  • 21fa69a New: Allow options to be passed to prettier.getFileInfo (#187)
  • bb597e1 build(deps-dev): bump eslint-plugin-eslint-plugin from 2.0.1 to 2.1.0
  • 0bb7c1d build(deps-dev): bump eslint-config-prettier from 4.1.0 to 4.2.0
  • 2f77df4 build(deps-dev): bump vue-eslint-parser from 6.0.3 to 6.0.4
  • 222b87a build(deps-dev): bump mocha from 6.1.3 to 6.1.4
  • 58d8ff8 build(deps-dev): bump prettier from 1.16.4 to 1.17.0
  • e94e56c build(deps-dev): bump mocha from 6.1.2 to 6.1.3
  • c02244b build(deps-dev): bump mocha from 6.1.1 to 6.1.2
  • a9a2e4e build(deps-dev): bump mocha from 6.0.2 to 6.1.1
  • 073c14c build(deps-dev): bump eslint from 5.15.3 to 5.16.0
  • bda931f build(deps-dev): bump eslint from 5.15.2 to 5.15.3
  • 19f53d6 build(deps-dev): bump eslint from 5.15.1 to 5.15.2
  • 34b39de build(deps-dev): bump eslint from 5.15.0 to 5.15.1
  • 13bcc66 build(deps-dev): bump eslint from 5.14.1 to 5.15.0

There are 38 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of eslint-plugin-node is breaking the build 🚨

The devDependency eslint-plugin-node was updated from 9.0.1 to 9.1.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

eslint-plugin-node is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Commits

The new version differs by 3 commits.

  • 7ce77f9 πŸ”– 9.1.0
  • e5aee3c πŸ› support * in engines.node (fixes #155)
  • fd9d19d ✨ no-deprecated-api adheres to targeted node version (fixes #141) (#164)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of ember-resolver is breaking the build 🚨

The devDependency ember-resolver was updated from 5.1.3 to 5.2.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

ember-resolver is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Release Notes for Release 5.2.0

v5.2.0 (2019-08-01)

πŸ› Bug Fix

πŸ“ Documentation

Committers: 3

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of ember-cli-htmlbars is breaking the build 🚨

The devDependency ember-cli-htmlbars was updated from 3.0.1 to 3.1.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

ember-cli-htmlbars is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Release Notes for Release 3.1.0

v3.1.0 (2019-06-28)

πŸš€ Enhancement

🏠 Internal

Committers: 4

Commits

The new version differs by 155 commits ahead by 155, behind by 1.

  • e132426 Release 3.1.0
  • d31e851 Dependency invalidation (#238)
  • 15fa8ad Bump ember-source from 3.11.0 to 3.11.1
  • 7571882 Merge remote-tracking branch 'ember-cli/master' into dependency-invalidation
  • 2e7e581 Templates can have nested Program nodes. Since we can't rely on the Template node yet, we have to keep a stack counter of Program nodes that we've seen so far.
  • 562924c Merge pull request #246 from ember-cli/dependabot/npm_and_yarn/ember-source-3.11.0
  • 07239ec Bump broccoli-persistent-filter from 2.3.0 to 2.3.1
  • 5c9a6d6 Pick up bug fixes in broccoli-persistent-filter.
  • bc85143 Skip plugin tests when plugins can't be unregistered.
  • fde611a Bump ember-source from 3.10.2 to 3.11.0
  • 854df3d Bump eslint-plugin-ember from 6.6.0 to 6.7.0
  • 97c6406 Don't run AST Plugin tests against legacy template compilers for now.
  • 5f7a7af Handle old name of function that unregisters plugins.
  • a15ea1d Merge remote-tracking branch 'ember-cli/master' into dependency-invalidation.
  • 096a639 Fix issues in legacy builds.

There are 155 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

Path to 1.0?

Given that this is the officially recommended solution for this problem I'd be interested in helping get it to 1.0.

Until that first major version is released Ember Dependency Lint fails tests as many different 0.1.x and 0.2.x versions collide.

An in-range update of ember-cli-babel is breaking the build 🚨


☝️ Important announcement: Greenkeeper will be saying goodbye πŸ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The dependency ember-cli-babel was updated from 7.18.0 to 7.19.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

ember-cli-babel is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details

Release Notes for Release 7.19.0

πŸš€ Enhancement

Committers: 1

Commits

The new version differs by 6 commits.

  • bc32a8c Release 7.19.0
  • d1ff8f0 Merge pull request #330 from jamescdavis/update-babel
  • f08dbe8 chore: yarn-deduplicate
  • cfb53ff chore: update @babel/*@latest (generally 7.9.0)
  • 99a2b32 Merge pull request #331 from jamescdavis/test-on-node-12
  • 92ba7a3 chore: configure Appveyor and Travis to test on Node 12

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of ember-cli-dependency-checker is breaking the build 🚨

The devDependency ember-cli-dependency-checker was updated from 3.1.0 to 3.2.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

ember-cli-dependency-checker is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of eslint-plugin-ember is breaking the build 🚨

The devDependency eslint-plugin-ember was updated from 6.2.0 to 6.3.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

eslint-plugin-ember is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Release Notes for v6.3.0

πŸš€ Enhancement

  • #369 Add new 'route-path-style' rule (@bmish)
  • #372 Add new 'no-unnecessary-index-route' rule (@bmish)
  • #262 Add new 'require-return-from-computed' rule (@gmurphey)
  • #378 Add new no-unnecessary-service-injection-argument rule (@bmish)

πŸ“ Documentation

  • #395 docs: improve closure-action rule examples (@Caltor)
  • #383 no-deeply-nested-dependent-keys-with-each: Fix documentation examples (@Alonski)

🏠 Internal

  • #386 test: add null output assertions for lint rules / test cases with no autofixer. (@bmish)

Committers: 4

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of eslint-plugin-ember is breaking the build 🚨

The devDependency eslint-plugin-ember was updated from 6.4.1 to 6.5.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

eslint-plugin-ember is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Release Notes for v6.5.0

πŸš€ Enhancement

  • #421 Update the no-get rule to also handle the getProperties function, and mark the no-get-properties rule as deprecated (@bmish)
  • #397 Add new computed-property-getters rule (@jrjohnson)

πŸ“ Documentation

Committers: 2

Commits

The new version differs by 13 commits.

  • 5c01682 v6.5.0
  • 8f85d09 Add v6.5.0 to CHANGELOG.
  • 85bac54 Merge pull request #421 from bmish/no-get-properties-combine
  • bbc29dd feat: update the no-get rule to also handle getProperties and mark the no-get-properties rule as deprecated
  • 54c5f9c Merge pull request #420 from bmish/computed-property-getters-run-update
  • cbad930 Update metadata for computed-property-getters rule and run yarn update
  • cce30db Merge pull request #397 from jrjohnson/344-computed-style
  • 1a77d94 Prevent Lonely Setters
  • 3e47908 build(deps-dev): bump jest from 24.7.1 to 24.8.0 (#416)
  • 1dac868 Change default for computed-property-getters
  • 7040575 Merge pull request #412 from bmish/docs-release
  • bfdc444 docs: update release instructions
  • 468661f Add rule to enforce consistent computed property style

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of ember-source-channel-url is breaking the build 🚨

The devDependency ember-source-channel-url was updated from 1.1.0 to 1.2.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

ember-source-channel-url is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Release Notes for Release 1.2.0
  • Print only the url when being piped/scripted. (#65) (aaaa70a)
  • Print only the url when being piped/scripted. (569cd10)
  • Ensure any trailing whitespace in package.json is preserved. (#64) (da4d191)
  • Add --write to README (21e9cf6)
  • Ensure any trailing whitespace in package.json is preserved. (d661a2c)
  • Add testing for Node 12. (#63) (7109a8f)
  • Add ability to update package.json automatically. (#62) (09ad315)
  • Add testing for Node 12. (66e8c76)
  • Add ability to update package.json automatically. (cd73756)
  • Build(deps-dev): Bump prettier from 1.17.0 to 1.17.1 (47bc549)
  • Build(deps-dev): Bump eslint-plugin-prettier from 3.0.1 to 3.1.0 (6e4f924)
  • Build(deps-dev): Bump eslint-config-prettier from 4.1.0 to 4.2.0 (dc4958d)
  • Build(deps-dev): Bump prettier from 1.16.4 to 1.17.0 (6a72e16)
  • Build(deps-dev): Bump eslint from 5.15.3 to 5.16.0 (df01a27)
  • Build(deps-dev): Bump eslint from 5.15.2 to 5.15.3 (7709622)
  • Build(deps-dev): Bump eslint from 5.15.1 to 5.15.2 (ac576b9)
  • Build(deps-dev): Bump eslint from 5.15.0 to 5.15.1 (d07f9f4)
  • Build(deps-dev): Bump get-port from 4.1.0 to 4.2.0 (e511f1c)
  • Build(deps-dev): Bump eslint from 5.14.1 to 5.15.0 (ef45eb7)
  • Build(deps-dev): Bump eslint-config-prettier from 4.0.0 to 4.1.0 (19aba04)
  • Build(deps-dev): Bump qunit from 2.9.1 to 2.9.2 (372c451)
  • Build(deps-dev): Bump eslint from 5.14.0 to 5.14.1 (eb9c5bb)
  • Build(deps-dev): Bump eslint from 5.13.0 to 5.14.0 (0391dcd)
  • Build(deps-dev): Bump prettier from 1.16.3 to 1.16.4 (815f4f3)
  • Build(deps-dev): Bump eslint from 5.12.1 to 5.13.0 (e3deeff)
  • Build(deps-dev): Bump prettier from 1.16.1 to 1.16.3 (94f2738)
  • Build(deps-dev): Bump eslint-config-prettier from 3.6.0 to 4.0.0 (#41) (800e57c)
  • Build(deps-dev): Bump prettier from 1.16.0 to 1.16.1 (e8cefee)
  • Build(deps-dev): Bump eslint from 5.12.0 to 5.12.1 (230d407)
  • Build(deps-dev): Bump prettier from 1.15.3 to 1.16.0 (faa82d8)
  • Build(deps-dev): Bump eslint-config-prettier from 3.5.0 to 3.6.0 (74e9d14)
  • Build(deps-dev): Bump eslint-config-prettier from 3.4.0 to 3.5.0 (4838487)
  • Build(deps-dev): Bump eslint-config-prettier from 3.3.0 to 3.4.0 (01e30d0)
  • Build(deps-dev): Bump qunit from 2.8.0 to 2.9.1 (#34) (424592e)
  • Build(deps-dev): Bump eslint-plugin-node from 8.0.0 to 8.0.1 (#32) (b4e99cf)
  • Build(deps-dev): Bump eslint from 5.11.1 to 5.12.0 (#33) (6bf82eb)
  • Build(deps-dev): Bump eslint-plugin-prettier from 3.0.0 to 3.0.1 (#30) (8744eb9)
  • Build(deps-dev): Bump eslint from 5.11.0 to 5.11.1 (#29) (446f295)
  • Bump eslint from 5.10.0 to 5.11.0 (#28) (7b0373e)
  • Bump get-port from 4.0.0 to 4.1.0 (#27) (a12af84)
  • Bump eslint-plugin-node from 6.0.1 to 8.0.0 (#25) (92358df)
  • Bump got from 8.0.1 to 8.3.2 (#26) (a92191c)
  • Bump eslint-plugin-prettier from 2.7.0 to 3.0.0 (#24) (27a36cc)
  • Bump eslint-config-prettier from 2.9.0 to 3.3.0 (#20) (4861277)
  • Bump eslint from 4.15.0 to 5.10.0 (#19) (79787b8)
  • Bump eslint-plugin-prettier from 2.4.0 to 2.7.0 (#21) (f37955d)
  • Bump execa from 0.10.0 to 1.0.0 (#23) (b8ee1dd)
  • Bump get-port from 3.2.0 to 4.0.0 (#13) (acad1fd)
  • Bump qunit from 2.5.0 to 2.8.0 (#8) (5113ba0)
  • Merge pull request #18 from Turbo87/node-4 (bcdd4c9)
  • package.json: Update Node.js support range (f6d3492)
  • CI: Add Node 10 to test matrix (544b7d5)
  • CI: Drop Node 9 from test matrix (70e39b9)
  • CI: Drop Node 4 from test matrix (edab98f)
  • [Security] Bump lodash from 4.17.4 to 4.17.11 (#6) (c5d19ec)
  • [Security] Bump mixin-deep from 1.3.0 to 1.3.1 (#12) (da40a84)
  • [Security] Bump atob from 2.0.3 to 2.1.2 (#14) (4deaeba)
  • Bump eslint-plugin-node from 5.2.1 to 6.0.1 (#10) (d3cf700)
  • Bump rsvp from 4.7.0 to 4.8.4 (#7) (3de163d)
  • Bump prettier from 1.10.2 to 1.15.3 (#17) (b0449db)
  • Merge pull request #16 from Turbo87/sane (336df40)
  • Pin qunit dependency to v2.6.x (d77b1af)
Commits

The new version differs by 63 commits.

  • 0461822 Release 1.2.0
  • aaaa70a Print only the url when being piped/scripted. (#65)
  • 569cd10 Print only the url when being piped/scripted.
  • da4d191 Ensure any trailing whitespace in package.json is preserved. (#64)
  • 21e9cf6 Add --write to README
  • d661a2c Ensure any trailing whitespace in package.json is preserved.
  • 7109a8f Add testing for Node 12. (#63)
  • 09ad315 Add ability to update package.json automatically. (#62)
  • 66e8c76 Add testing for Node 12.
  • cd73756 Add ability to update package.json automatically.
  • 47bc549 Build(deps-dev): Bump prettier from 1.17.0 to 1.17.1
  • 6e4f924 Build(deps-dev): Bump eslint-plugin-prettier from 3.0.1 to 3.1.0
  • dc4958d Build(deps-dev): Bump eslint-config-prettier from 4.1.0 to 4.2.0
  • 6a72e16 Build(deps-dev): Bump prettier from 1.16.4 to 1.17.0
  • df01a27 Build(deps-dev): Bump eslint from 5.15.3 to 5.16.0

There are 63 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of prettier is breaking the build 🚨

The devDependency prettier was updated from 1.17.1 to 1.18.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

prettier is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Release Notes for 1.18.0

πŸ”— Release Notes

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of ember-template-lint is breaking the build 🚨

The devDependency ember-template-lint was updated from 1.13.0 to 1.13.1.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

ember-template-lint is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Release Notes for Release 1.13.1

πŸ› Bug Fix

  • #1071 Update no-invalid-interactive to allow change event with <form> elements (@lifeart)

πŸ“ Documentation

  • #1076 Normalize handlebars comments to {{!-- syntax (@locks)
  • #1068 no-curly-component-invocation: Document default config (@dcyriller)

Committers: 3

Commits

The new version differs by 12 commits.

  • 8c24aaf Release 1.13.1
  • 8e7b39e Normalize handlebars comments to {{!-- syntax (#1076)
  • 8a0d1d5 normalize handlebars comments in API documentation
  • 3c05fd3 normalize handlebars comments in markdown files
  • 3b5e9f9 build(deps-dev): bump eslint-plugin-import from 2.19.1 to 2.20.0
  • 675773d Update no-invalid-interactive to allow change event with `<… (#1071)
  • f605390 drop single-line functions
  • 8c734af fix missing check
  • dd76923 chore: allow change event for node in "no-invalid-interactive"
  • d2047a7 Merge pull request #1068 from ember-template-lint/doc-no-curly-component
  • 0dcbbdd no-curly-component-invocation: Document default config
  • 5b7e4ff Remove extraneous H1 in changelog.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.