-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add failing test for filterBy #12538
Commits on Aug 27, 2015
-
[DOC Release] Document
Ember.getWithDefault
Alan committedAug 27, 2015 Configuration menu - View commit details
-
Copy full SHA for 647c4e9 - Browse repository at this point
Copy the full SHA 647c4e9View commit details
Commits on Sep 29, 2015
-
[BUGFIX beta] Mandatory setter should check prototype descriptors.
Prior to this change, a setter that exists on the prototype of the object was not detected and was effectively clobbered. This change updates `handleMandatorySetter` to check both the objects own descriptors and its prototypes descriptors. Also removed the guard for `Object.getOwnPropertyDescriptor` since all supported platforms are ES5.
Configuration menu - View commit details
-
Copy full SHA for 9d3a62d - Browse repository at this point
Copy the full SHA 9d3a62dView commit details
Commits on Oct 2, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 3398cd1 - Browse repository at this point
Copy the full SHA 3398cd1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9022bf6 - Browse repository at this point
Copy the full SHA 9022bf6View commit details -
2
Configuration menu - View commit details
-
Copy full SHA for e46e056 - Browse repository at this point
Copy the full SHA e46e056View commit details
Commits on Oct 4, 2015
-
Configuration menu - View commit details
-
Copy full SHA for f79504a - Browse repository at this point
Copy the full SHA f79504aView commit details
Commits on Oct 5, 2015
-
Merge pull request emberjs#12433 from rwjblue/default-layout-deprecation
[DOC beta] Add link to `Ember.Component#defaultLayout` deprecation guide.
Configuration menu - View commit details
-
Copy full SHA for 4303df0 - Browse repository at this point
Copy the full SHA 4303df0View commit details -
Chris Santero committed
Oct 5, 2015 Configuration menu - View commit details
-
Copy full SHA for 02b2ccd - Browse repository at this point
Copy the full SHA 02b2ccdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7595850 - Browse repository at this point
Copy the full SHA 7595850View commit details -
[BUGFIX] Fix contextual components handling invalid component paths
Contextual components show a message when passed null or unknown component paths.
Configuration menu - View commit details
-
Copy full SHA for 4984afa - Browse repository at this point
Copy the full SHA 4984afaView commit details -
QUnit 1.19 was released and changed the way the npm package exports its value (it no longer sets up `global.QUnit` and all the assertion methods automatically). This updates to a better pattern of importing `QUnit` and using the `assert` argument for assertions.
Configuration menu - View commit details
-
Copy full SHA for 05e5feb - Browse repository at this point
Copy the full SHA 05e5febView commit details -
Remove
ember-registry-container-reform
feature flag.This flag is no longer needed now that this feature is out of beta.
Configuration menu - View commit details
-
Copy full SHA for a8107d1 - Browse repository at this point
Copy the full SHA a8107d1View commit details -
Merge pull request emberjs#12440 from rwjblue/fix-node-tests
Fix node tests.
Configuration menu - View commit details
-
Copy full SHA for e673f91 - Browse repository at this point
Copy the full SHA e673f91View commit details -
Merge pull request emberjs#12422 from Serabe/feature/null-closure-com…
…ponents [BUGFIX] Fix contextual components handling invalid component paths
Configuration menu - View commit details
-
Copy full SHA for 736fdea - Browse repository at this point
Copy the full SHA 736fdeaView commit details -
Merge pull request emberjs#12436 from csantero/protected
allow @Protected in JSCS
Configuration menu - View commit details
-
Copy full SHA for d34c9ea - Browse repository at this point
Copy the full SHA d34c9eaView commit details -
Merge pull request emberjs#12441 from dgeb/remove-di-reform-flag
Remove `ember-registry-container-reform` feature flag.
Configuration menu - View commit details
-
Copy full SHA for 23258c1 - Browse repository at this point
Copy the full SHA 23258c1View commit details
Commits on Oct 6, 2015
-
[BUGFIX release] Ensure rest arg positionalParams can be omitted.
When specifying `postionalParams` like this: ```javascript App.FooBarComponent = Ember.Component.extend(); App.FooBarComponent.reopenClass({ positionalParams: 'allTheThings' }); ``` You should be able to avoid using positional params by specifying `allTheThings` as a hash argument: ```hbs {{foo-bar allTheThings=blah}} ``` Unfortunately, we were triggering an assertion that you used a positional param that conflicted with a hash param. This change fixes that assertion by avoiding doing any work when no params are specified.
Configuration menu - View commit details
-
Copy full SHA for d34aa11 - Browse repository at this point
Copy the full SHA d34aa11View commit details -
Merge pull request emberjs#12445 from rwjblue/fix-rest-style-position…
…al-params [BUGFIX release] Ensure rest arg positionalParams can be omitted.
Configuration menu - View commit details
-
Copy full SHA for e7ba39a - Browse repository at this point
Copy the full SHA e7ba39aView commit details
Commits on Oct 7, 2015
-
[BUGFIX Beta] Move warn api doc to a place where it gets picked up by
the build updates per feedback
Configuration menu - View commit details
-
Copy full SHA for 500cafc - Browse repository at this point
Copy the full SHA 500cafcView commit details -
Merge pull request emberjs#12443 from toddjordan/get-warn-api-doc-gen…
…erating [BUGFIX Beta] Move warn api doc to a place where it gets picked up by the build
Configuration menu - View commit details
-
Copy full SHA for c0b010e - Browse repository at this point
Copy the full SHA c0b010eView commit details -
[BUGFIX release] Avoid
this.attrs.params
in LinkComponent.Due to the nature of `positionalParams`, it is trivial to supply `params` as a hash argument to `{{link-to}}` instead of ordered args (this allows truly dynamic link's). However, if `{{link-to params=foo}}` is used `params` will be a `MutableCell` and the current code throws an error in that circumstance. *tldr;* `this.attrs` should be avoided. It is quite a 🧌 in non-`GlimmerComponent`'s.
Configuration menu - View commit details
-
Copy full SHA for 8f8f154 - Browse repository at this point
Copy the full SHA 8f8f154View commit details -
Merge pull request emberjs#12423 from emberjs/cleanup-meta
Cleanup meta
Configuration menu - View commit details
-
Copy full SHA for d462156 - Browse repository at this point
Copy the full SHA d462156View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1b18f8c - Browse repository at this point
Copy the full SHA 1b18f8cView commit details -
[BUGFIX beta] Allow usage of bound properties in {{link-to}}.
Due to values in `this.attrs` being either a `MutableCell` or the actual value, many flags in `link-to` would not function properly when provided a bound property.
Configuration menu - View commit details
-
Copy full SHA for 036bf4e - Browse repository at this point
Copy the full SHA 036bf4eView commit details -
Merge pull request emberjs#12455 from emberjs/fixup-style
remove extra comma
Configuration menu - View commit details
-
Copy full SHA for c8c79de - Browse repository at this point
Copy the full SHA c8c79deView commit details -
[PERF] Bail on KeyStream#compute if bool or string
When compute is called it is expected that object is an actual Object, sometimes the object is a Bool or String and yet we continue down the stack look values up on it even though the result will be undefined. This change bails out early if `object` is a Bool or String.
Configuration menu - View commit details
-
Copy full SHA for ca1b306 - Browse repository at this point
Copy the full SHA ca1b306View commit details
Commits on Oct 8, 2015
-
Merge pull request emberjs#12456 from rwjblue/DIE-ATTRS-DIE
[BUGFIX beta] Allow usage of bound properties in {{link-to}}.
Configuration menu - View commit details
-
Copy full SHA for 1f85853 - Browse repository at this point
Copy the full SHA 1f85853View commit details -
Merge pull request emberjs#12448 from chadhietala/keystream-ops
[PERF] Bail on get if type does not have accessors
Configuration menu - View commit details
-
Copy full SHA for f1928a9 - Browse repository at this point
Copy the full SHA f1928a9View commit details -
[BUGFIX release] Fix uglification introduced bug with super wrapping.
We check to see if a function contains `_super` / `.call` / `.apply` before attempting to super wrap a given method (this saves quite a bit of extra super wrapping for functions that do not need it). Unfortunately, a number of platforms that we support do not support calling `func.toString()` so we attempt to detect this and fall back to always super wrap everything mode. We have roughly this code (from [here](https://github.com/emberjs/ember.js/blob/b4718218dbe5ffe7736c485a594248b20977c621/packages/ember-metal/lib/utils.js#L257-L271)) to detect if we can call `toString()` and get the original source: ```javascript let sourceAvailable = (function() { return this; }).toString().indexOf('return this;') > -1; ``` This works perfectly for development builds, but unfortunately not when minified. Take a look at the minified source and you will see why: ```javascript var e=function(){return this}.toString().indexOf("return this;")>-1; ``` Note that minifier has stripped the trailing semicolon from the function body we are attempting to check against, but sadly our `indexOf` check still contains the semicolon! **tldr;** We super wrap every function in uglified builds. --- This commit removes the trailing semicolon from the source check, and adds a test that should hopefully allow us to detect if this is accidentally reintroduced.
Configuration menu - View commit details
-
Copy full SHA for 7894cae - Browse repository at this point
Copy the full SHA 7894caeView commit details
Commits on Oct 9, 2015
-
Merge pull request emberjs#12463 from rwjblue/do-not-super-wrap-every…
…thing [BUGFIX release] Fix uglification introduced bug with super wrapping.
Configuration menu - View commit details
-
Copy full SHA for e15e5d5 - Browse repository at this point
Copy the full SHA e15e5d5View commit details -
[BUGFIX release]
Ember.String.htmlSafe()
should return a instance o……f SafeString for `null` / `undefined` Currently, `Ember.String.htmlSafe()` returns a just String, not HTML Safe. We expect it is a safe string.
Configuration menu - View commit details
-
Copy full SHA for cddb12b - Browse repository at this point
Copy the full SHA cddb12bView commit details -
Anil Kumar Maurya committed
Oct 9, 2015 Configuration menu - View commit details
-
Copy full SHA for a407440 - Browse repository at this point
Copy the full SHA a407440View commit details -
Merge pull request emberjs#12468 from anilmaurya/anilmaurya-patch-1
Update README.md, Fix Guides link
Configuration menu - View commit details
-
Copy full SHA for e75d097 - Browse repository at this point
Copy the full SHA e75d097View commit details -
Merge pull request emberjs#12464 from tricknotes/html-safe
[BUGFIX release] `Ember.String.htmlSafe()` should return a instance of SafeString for `null` / `undefined`
Configuration menu - View commit details
-
Copy full SHA for 2816388 - Browse repository at this point
Copy the full SHA 2816388View commit details
Commits on Oct 13, 2015
-
Merge pull request emberjs#12314 from rwjblue/check-prototype-for-set…
…ters [BUGFIX beta] Mandatory setter should check prototype descriptors.
Configuration menu - View commit details
-
Copy full SHA for ecbc94a - Browse repository at this point
Copy the full SHA ecbc94aView commit details
Commits on Oct 15, 2015
-
Access property only once during property get
Trent Willis committedOct 15, 2015 Configuration menu - View commit details
-
Copy full SHA for e8b717d - Browse repository at this point
Copy the full SHA e8b717dView commit details
Commits on Oct 16, 2015
-
Move FastBoot and resource-discovery tests to node
Since these are server-side scenarios, we should be testing them in node to more accurately replicated the target environment.
Configuration menu - View commit details
-
Copy full SHA for b3cbe24 - Browse repository at this point
Copy the full SHA b3cbe24View commit details -
Merge pull request emberjs#12485 from trentmwillis/get-got
Access property only once during `Ember.get`
Configuration menu - View commit details
-
Copy full SHA for 08d7949 - Browse repository at this point
Copy the full SHA 08d7949View commit details
Commits on Oct 17, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 0cfd334 - Browse repository at this point
Copy the full SHA 0cfd334View commit details -
Merge pull request emberjs#12493 from alexspeller/observer-should-be-…
…publiv observer should be public
Configuration menu - View commit details
-
Copy full SHA for 0f5c7f5 - Browse repository at this point
Copy the full SHA 0f5c7f5View commit details -
[FEATURE ember-contextual-components] dot-path
Consider paths with dots in them for rendering as a component.
Configuration menu - View commit details
-
Copy full SHA for dd060f6 - Browse repository at this point
Copy the full SHA dd060f6View commit details -
Configuration menu - View commit details
-
Copy full SHA for a6f0487 - Browse repository at this point
Copy the full SHA a6f0487View commit details -
Merge pull request emberjs#12486 from chancancode/visit-node-tests
Move FastBoot and resource-discovery tests to node
Configuration menu - View commit details
-
Copy full SHA for 76e0089 - Browse repository at this point
Copy the full SHA 76e0089View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8a34561 - Browse repository at this point
Copy the full SHA 8a34561View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6178da6 - Browse repository at this point
Copy the full SHA 6178da6View commit details -
Configuration menu - View commit details
-
Copy full SHA for b66a13f - Browse repository at this point
Copy the full SHA b66a13fView commit details -
Merge pull request emberjs#12496 from alexspeller/remove-keys
[CLEANUP beta] Remove keys.js
Configuration menu - View commit details
-
Copy full SHA for bb5cc20 - Browse repository at this point
Copy the full SHA bb5cc20View commit details -
[DOC] Fix alignment in examples
According to https://github.com/emberjs/ember.js/blob/master/CONTRIBUTING.md: 'All examples in code blocks must be aligned'
Configuration menu - View commit details
-
Copy full SHA for 3ada3af - Browse repository at this point
Copy the full SHA 3ada3afView commit details
Commits on Oct 18, 2015
-
Merge pull request emberjs#12498 from ryrych/patch-2
[DOC] Fix alignment in examples
Configuration menu - View commit details
-
Copy full SHA for 72cdc4a - Browse repository at this point
Copy the full SHA 72cdc4aView commit details
Commits on Oct 19, 2015
-
[CLEANUP beta] - Remove unnecessary module
It didn't seem that importing `ember-routing` is required.
Configuration menu - View commit details
-
Copy full SHA for 1703f3e - Browse repository at this point
Copy the full SHA 1703f3eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9c2b289 - Browse repository at this point
Copy the full SHA 9c2b289View commit details -
Merge pull request emberjs#12503 from miguelcobain/tagless-asserts
add assertions for tagless component event handlers
Configuration menu - View commit details
-
Copy full SHA for 4f9a3bc - Browse repository at this point
Copy the full SHA 4f9a3bcView commit details -
Merge pull request emberjs#12502 from duggiefresh/remove-unused-import
[CLEANUP beta] - Remove unnecessary module
Configuration menu - View commit details
-
Copy full SHA for e2643a5 - Browse repository at this point
Copy the full SHA e2643a5View commit details -
Merge pull request emberjs#12495 from mixonic/dot-path-lookup
[FEATURE ember-contextual-components] dot-path
Configuration menu - View commit details
-
Copy full SHA for c35e15c - Browse repository at this point
Copy the full SHA c35e15cView commit details -
Merge pull request emberjs#12494 from alexspeller/more-private-fixies
Make Ember.compare public
Configuration menu - View commit details
-
Copy full SHA for 7d51c7a - Browse repository at this point
Copy the full SHA 7d51c7aView commit details -
Merge pull request emberjs#12483 from bmac/missing-since-tags
Add missing @SInCE tags for the 1.12, 1.13 and 2.1 releases.
Configuration menu - View commit details
-
Copy full SHA for f96aecd - Browse repository at this point
Copy the full SHA f96aecdView commit details
Commits on Oct 20, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 4728221 - Browse repository at this point
Copy the full SHA 4728221View commit details
Commits on Oct 21, 2015
-
Merge pull request emberjs#12507 from ryrych/npm-install-troubleshooting
[DOC] Add `npm install` troubleshooting section
Configuration menu - View commit details
-
Copy full SHA for 9d714be - Browse repository at this point
Copy the full SHA 9d714beView commit details -
[DOC release] Update
Ember.isPresent(false)
example`Ember.isPresent(false)` returns `true` [skip ci]
Configuration menu - View commit details
-
Copy full SHA for 974bc03 - Browse repository at this point
Copy the full SHA 974bc03View commit details -
Merge pull request emberjs#12511 from duggiefresh/doc-is-present
[DOC release] Update `Ember.isPresent(false)` example
Configuration menu - View commit details
-
Copy full SHA for 0faab56 - Browse repository at this point
Copy the full SHA 0faab56View commit details -
[DOC release] Removes unused argument from code sample
The commented out `event` argument has an escaping backslash in the closing comment tag, which is unexpected. Since the argument is not used it is just removed.
Configuration menu - View commit details
-
Copy full SHA for f3e3b39 - Browse repository at this point
Copy the full SHA f3e3b39View commit details -
Merge pull request emberjs#12509 from locks/patch-2
[DOC release] Removes extraneous backslash in code snipper
Configuration menu - View commit details
-
Copy full SHA for 1743e31 - Browse repository at this point
Copy the full SHA 1743e31View commit details
Commits on Oct 23, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 47b7522 - Browse repository at this point
Copy the full SHA 47b7522View commit details -
[FEATURE ember-contextual-components] Enable by default.
As discussed in Ember core team meeting on 2015-10-23. Prior to 2.3 branching into beta we need to evaluate the local lookup feature to ensure that contextual components land within one version of local lookup. If it looks like local lookup will not land by 2.4 (before branching 2.3.0-beta.1) this feature will be delayed. This timing should not be an issue.
Configuration menu - View commit details
-
Copy full SHA for f37f677 - Browse repository at this point
Copy the full SHA f37f677View commit details
Commits on Oct 24, 2015
-
Merge pull request emberjs#12517 from rwjblue/enable-contextual-compo…
…nents [FEATURE ember-contextual-components] Enable by default.
Configuration menu - View commit details
-
Copy full SHA for b0cad09 - Browse repository at this point
Copy the full SHA b0cad09View commit details -
Test white space in
Ember.isEmpty
Most of the examples for `Ember.isEmpty` are similar to that from `Ember.isBlank` (https://github.com/emberjs/ember.js/blob/v2.1.0/packages/ember-metal/lib/is_blank.js#L3). Examples for white space are missing.
Configuration menu - View commit details
-
Copy full SHA for 5fc8d40 - Browse repository at this point
Copy the full SHA 5fc8d40View commit details -
Merge pull request emberjs#12518 from ryrych/doc_is_empty_docs
Test white space in `Ember.isEmpty`
Configuration menu - View commit details
-
Copy full SHA for 37c67c2 - Browse repository at this point
Copy the full SHA 37c67c2View commit details -
[BUGFIX beta] Ensure closure actions are wrapped in a run loop.
As discussed in Ember core team meeting on 2015-10-23.
2Configuration menu - View commit details
-
Copy full SHA for 20c70c7 - Browse repository at this point
Copy the full SHA 20c70c7View commit details -
Merge pull request emberjs#12519 from rwjblue/trigger-actions-within-…
…run-loop [BUGFIX beta] Ensure closure actions are wrapped in a run loop.
Configuration menu - View commit details
-
Copy full SHA for 895ba09 - Browse repository at this point
Copy the full SHA 895ba09View commit details
Commits on Oct 25, 2015
-
Merge pull request emberjs#12487 from jcope2013/view-deprecation-mess…
…age-changes update deprecation messages in scheduleRevalidate to mention accurate version
Configuration menu - View commit details
-
Copy full SHA for 08ae4d6 - Browse repository at this point
Copy the full SHA 08ae4d6View commit details
Commits on Oct 27, 2015
-
Merge pull request emberjs#12227 from XrXr/getWithDefault-doc
[DOC Release] Document `Ember.getWithDefault`
Configuration menu - View commit details
-
Copy full SHA for e88c644 - Browse repository at this point
Copy the full SHA e88c644View commit details -
Ali committed
Oct 27, 2015 Configuration menu - View commit details
-
Copy full SHA for 580d50b - Browse repository at this point
Copy the full SHA 580d50bView commit details
Commits on Oct 30, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 698cf1a - Browse repository at this point
Copy the full SHA 698cf1aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6d2da39 - Browse repository at this point
Copy the full SHA 6d2da39View commit details -
Configuration menu - View commit details
-
Copy full SHA for d558695 - Browse repository at this point
Copy the full SHA d558695View commit details -
Configuration menu - View commit details
-
Copy full SHA for 10e1594 - Browse repository at this point
Copy the full SHA 10e1594View commit details -
Merge pull request emberjs#12532 from dschmidt/bump-rsvp
Bump RSVP dependency
Configuration menu - View commit details
-
Copy full SHA for 844e43d - Browse repository at this point
Copy the full SHA 844e43dView commit details
Commits on Oct 31, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 866be61 - Browse repository at this point
Copy the full SHA 866be61View commit details -
Configuration menu - View commit details
-
Copy full SHA for 383562f - Browse repository at this point
Copy the full SHA 383562fView commit details
Commits on Nov 1, 2015
-
[DOC release] Update FEATURES.md
Remove `ember-htmlbars-each-with-index`. It is already landed by cc26fb7.
Configuration menu - View commit details
-
Copy full SHA for ab87f80 - Browse repository at this point
Copy the full SHA ab87f80View commit details -
Merge pull request emberjs#12544 from tricknotes/update-features.md
[DOC release] Update FEATURES.md
Configuration menu - View commit details
-
Copy full SHA for 0f51f7d - Browse repository at this point
Copy the full SHA 0f51f7dView commit details -
[BUGFIX canary] Create new hash when merging parameters hashes in com…
…ponents When merging two parameters hashes coming from components/closure components we want them to be merged into a new hash. This refactors does not only make this happen but it changes `mergeHash` into `mergeInNewHah` to be explicit about this. Fix emberjs#12537
Configuration menu - View commit details
-
Copy full SHA for 195957f - Browse repository at this point
Copy the full SHA 195957fView commit details -
Merge pull request emberjs#12542 from Serabe/fix-12537
[BUGFIX canary] Create new hash when merging parameters hashes in components
Configuration menu - View commit details
-
Copy full SHA for 10d599e - Browse repository at this point
Copy the full SHA 10d599eView commit details -
Merge pull request emberjs#12525 from swalkinshaw/changelog-update
[DOC] Update CHANGELOG.md
Configuration menu - View commit details
-
Copy full SHA for 860bb4b - Browse repository at this point
Copy the full SHA 860bb4bView commit details
Commits on Nov 2, 2015
-
Remove
ember-testing-checkbox-helpers
featureThe `ember-testing-checkbox-helpers` feature hasn't gained traction and should be considered a failure as an Ember.js feature. The helpers have been extracted into [thoughtbot/ralphs-little-helpers]. [thoughtbot/ralphs-little-helpers]: thoughtbot/ralphs-little-helpers#9
Configuration menu - View commit details
-
Copy full SHA for 1bde4bf - Browse repository at this point
Copy the full SHA 1bde4bfView commit details -
Merge pull request emberjs#12545 from seanpdoyle/sd-remove-check-helpers
Remove `ember-testing-checkbox-helpers` feature
Configuration menu - View commit details
-
Copy full SHA for f4b1e66 - Browse repository at this point
Copy the full SHA f4b1e66View commit details
Commits on Nov 3, 2015
-
[BUGFIX beta] Set array length in link-to.
We know the array length in advance so we should set it. Proof: http://jsperf.com/literal-vs-new-23/9
Configuration menu - View commit details
-
Copy full SHA for 7141e35 - Browse repository at this point
Copy the full SHA 7141e35View commit details -
Merge pull request emberjs#12523 from dj-hedgehog/patch-1
Added Slack badge
Configuration menu - View commit details
-
Copy full SHA for 35efded - Browse repository at this point
Copy the full SHA 35efdedView commit details -
Configuration menu - View commit details
-
Copy full SHA for bcc8c33 - Browse repository at this point
Copy the full SHA bcc8c33View commit details -
Merge pull request emberjs#12551 from emberjs/revert-12523-patch-1
Revert "Added Slack badge"
Configuration menu - View commit details
-
Copy full SHA for fcd1e64 - Browse repository at this point
Copy the full SHA fcd1e64View commit details
Commits on Nov 4, 2015
-
[FEATURE ember-container-inject-owner] Introduce getOwner / setOwner …
…helpers. Use a symbol to obscure the owner property.
Configuration menu - View commit details
-
Copy full SHA for 7d7450c - Browse repository at this point
Copy the full SHA 7d7450cView commit details -
[FEATURE ember-container-inject-owner] Inject
owner
instead of `con……tainer` during `lookup`. This change represents the final brick needed to wall off the `Container` as fully private. The Container no longer injects itself into every object that it looks up. Instead, it uses the new `setOwner` helper to inject the "owner", which can then be retrieved from any object using the new `getOwner` helper. The current net effect is that an app instance is injected into every looked up object instead of that app instance's container. This provides clean, public access to methods exposed by the app instance's ContainerProxy and RegistryProxy methods. It also guarantees that the only supported path to get to a Container or Registry is through a proxied method. This guarantee is important because it allows for owner-specific logic to be placed in proxy methods. In the future, other classes, such as Engine (coming soon), may mix in ContainerProxy and thus have the potential to be "owners". This work is behind the `ember-container-inject-owner` flag. Without this flag enabled, the Container will continue to inject itself directly into objects that it instantiates (as `container`).
Configuration menu - View commit details
-
Copy full SHA for 9845a9a - Browse repository at this point
Copy the full SHA 9845a9aView commit details -
Merge pull request emberjs#11874 from dgeb/inject-owner-not-container
[FEATURE ember-registry-container-reform] WIP: Inject `owner` instead of `container` during `lookup`.
Configuration menu - View commit details
-
Copy full SHA for cb93860 - Browse repository at this point
Copy the full SHA cb93860View commit details -
Configuration menu - View commit details
-
Copy full SHA for 08e2727 - Browse repository at this point
Copy the full SHA 08e2727View commit details -
Merge pull request emberjs#12557 from rwjblue/ensure-owner-is-set
Ensure owner is set during component creation.
Configuration menu - View commit details
-
Copy full SHA for 1ae26eb - Browse repository at this point
Copy the full SHA 1ae26ebView commit details -
Enforce const usage in module scope only.
Good: ```js const FOO = 'FOO'; ``` Bad: ```js function derp() { const FOO = 'FOO'; } if (false) { const BLAH = 'BLAH'; } ```
Configuration menu - View commit details
-
Copy full SHA for 41e4e57 - Browse repository at this point
Copy the full SHA 41e4e57View commit details -
Configuration menu - View commit details
-
Copy full SHA for 04e0251 - Browse repository at this point
Copy the full SHA 04e0251View commit details
Commits on Nov 5, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 3845019 - Browse repository at this point
Copy the full SHA 3845019View commit details -
Merge pull request emberjs#12561 from Serabe/feature/contextual-compo…
…nents-documentation [DOC canary] Add documentation for contextual components
Configuration menu - View commit details
-
Copy full SHA for dee7724 - Browse repository at this point
Copy the full SHA dee7724View commit details -
Merge pull request emberjs#12559 from rwjblue/moar-tests
Add test for overriding attr value in init.
Configuration menu - View commit details
-
Copy full SHA for 7584a77 - Browse repository at this point
Copy the full SHA 7584a77View commit details -
Merge pull request emberjs#12558 from rwjblue/enforce-const-usage
Enforce const usage in module scope only.
Configuration menu - View commit details
-
Copy full SHA for 341a325 - Browse repository at this point
Copy the full SHA 341a325View commit details -
Merge pull request emberjs#12546 from nathanhammond/patch-1
[BUGFIX beta] Set models array length in link-to.
Configuration menu - View commit details
-
Copy full SHA for 867ca6a - Browse repository at this point
Copy the full SHA 867ca6aView commit details -
Merge pull request emberjs#12541 from rwjblue/random-cleanup
Random cleanup while reviewing ember-views package.
Configuration menu - View commit details
-
Copy full SHA for fa15725 - Browse repository at this point
Copy the full SHA fa15725View commit details -
Configuration menu - View commit details
-
Copy full SHA for 96f80d2 - Browse repository at this point
Copy the full SHA 96f80d2View commit details
Commits on Nov 6, 2015
-
Merge pull request emberjs#12565 from ptgamr/master
fix potential deopt while reading arguments
Configuration menu - View commit details
-
Copy full SHA for f76dd5f - Browse repository at this point
Copy the full SHA f76dd5fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 40b63fa - Browse repository at this point
Copy the full SHA 40b63faView commit details -
Merge pull request emberjs#12562 from mixonic/getOwnerDoc
Document getOwner and setOwner
Configuration menu - View commit details
-
Copy full SHA for 3486f33 - Browse repository at this point
Copy the full SHA 3486f33View commit details -
1
Configuration menu - View commit details
-
Copy full SHA for afb6f27 - Browse repository at this point
Copy the full SHA afb6f27View commit details -
Configuration menu - View commit details
-
Copy full SHA for ebc05c0 - Browse repository at this point
Copy the full SHA ebc05c0View commit details -
[CLEANUP beta] - Populate
ember-metal/symbol
This moves `symbol` function out from `ember-metal/utils` and places it at `ember-metal/symbol`. In addition, `intern` is now a exportable function.
Configuration menu - View commit details
-
Copy full SHA for 393b36a - Browse repository at this point
Copy the full SHA 393b36aView commit details -
Merge pull request emberjs#12570 from rwjblue/features-goed
Enable features 'go'ed at 2015-11-06 meeting.
Configuration menu - View commit details
-
Copy full SHA for f9879f3 - Browse repository at this point
Copy the full SHA f9879f3View commit details -
Merge pull request emberjs#12526 from duggiefresh/remove-ember-metal-…
…symbol [CLEANUP beta] - Populate `ember-metal/symbol`
Configuration menu - View commit details
-
Copy full SHA for d38cadd - Browse repository at this point
Copy the full SHA d38caddView commit details
Commits on Nov 9, 2015
-
Revert "[FEATURE ember-application-visit] Enable by default."
This reverts commit afb6f27.
Configuration menu - View commit details
-
Copy full SHA for 9a0f734 - Browse repository at this point
Copy the full SHA 9a0f734View commit details -
Merge pull request emberjs#12574 from rwjblue/disable-visit
Revert "[FEATURE ember-application-visit] Enable by default."
Configuration menu - View commit details
-
Copy full SHA for 8fcc714 - Browse repository at this point
Copy the full SHA 8fcc714View commit details
Commits on Nov 10, 2015
-
[FEATURE ember-container-inject-owner] Expose proxy mixins.
This is needed for tooling to avoid creating fake/mock owner objects. These mixins are underscored since they generally should not be used by end users, however the methods that they expose are public (as part of container-registry-reform feature that was enabled in Ember 2.1).
Configuration menu - View commit details
-
Copy full SHA for 5837f12 - Browse repository at this point
Copy the full SHA 5837f12View commit details -
Merge pull request emberjs#12578 from rwjblue/expose-mixins-to-build-…
…owner [FEATURE ember-container-inject-owner] Expose proxy mixins.
Configuration menu - View commit details
-
Copy full SHA for 9f47d0e - Browse repository at this point
Copy the full SHA 9f47d0eView commit details -
Configuration menu - View commit details
-
Copy full SHA for bab8408 - Browse repository at this point
Copy the full SHA bab8408View commit details -
Merge pull request emberjs#12579 from emberjs/fixup-build
Fixup build
Configuration menu - View commit details
-
Copy full SHA for 1bfa8dd - Browse repository at this point
Copy the full SHA 1bfa8ddView commit details -
Remove registering unncessary component
`-environment:main` is always instance-specific (because it is dependent on the boot options that are specified when creating the instance). Therefore it is unncessary (and confusing) to register it on the `Application` just to have it always overriden by something else on the `ApplicationInstance`.
Configuration menu - View commit details
-
Copy full SHA for 3aa1b62 - Browse repository at this point
Copy the full SHA 3aa1b62View commit details -
Merge pull request emberjs#12580 from chancancode/rm_registering_unnc…
…essary_components Remove registering unncessary component
Configuration menu - View commit details
-
Copy full SHA for fb2ae6f - Browse repository at this point
Copy the full SHA fb2ae6fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4c546c2 - Browse repository at this point
Copy the full SHA 4c546c2View commit details -
Configuration menu - View commit details
-
Copy full SHA for f1b4036 - Browse repository at this point
Copy the full SHA f1b4036View commit details
Commits on Nov 11, 2015
-
@cromwellryan updated to Slackin 0.6 and a Github employee cleared the cache of the SVG. Now it shows up correctly: [![Slack](https://ember-community-slackin.herokuapp.com/badge.svg)](https://ember-community-slackin.herokuapp.com) If it doesn't please clear your browser cache!
Ali committedNov 11, 2015 Configuration menu - View commit details
-
Copy full SHA for e4d983c - Browse repository at this point
Copy the full SHA e4d983cView commit details -
Merge pull request emberjs#12587 from dj-hedgehog/master
Added Slack badge
Configuration menu - View commit details
-
Copy full SHA for 44e5f28 - Browse repository at this point
Copy the full SHA 44e5f28View commit details
Commits on Nov 12, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 669d321 - Browse repository at this point
Copy the full SHA 669d321View commit details -
Merge pull request emberjs#12592 from kiwiupover/replace_ember.deprec…
…ate_with_deprecate [REFACTOR removing ember global]
Configuration menu - View commit details
-
Copy full SHA for dc4c57c - Browse repository at this point
Copy the full SHA dc4c57cView commit details
Commits on Nov 13, 2015
-
Configuration menu - View commit details
-
Copy full SHA for eaf8495 - Browse repository at this point
Copy the full SHA eaf8495View commit details -
Don't override
environment
from theimport
This is causing some confusing in the Babel transpilation, and probably human readers too. (cherry picked from commit 884f829)
Configuration menu - View commit details
-
Copy full SHA for 04ddd6a - Browse repository at this point
Copy the full SHA 04ddd6aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1186a2b - Browse repository at this point
Copy the full SHA 1186a2bView commit details -
Merge pull request emberjs#12599 from rwjblue/prevent-deprecation-on-…
…tagless-components Prevent container deprecation for tagless view assertion.
Configuration menu - View commit details
-
Copy full SHA for 625c27f - Browse repository at this point
Copy the full SHA 625c27fView commit details -
[BUGFIX beta] Guard against
null
attrs
in getRoot hook.In certain circumstances, `attrs` can be null (that is the default value). This guards against a `key in null` error.
Configuration menu - View commit details
-
Copy full SHA for f619abb - Browse repository at this point
Copy the full SHA f619abbView commit details -
Merge pull request emberjs#12600 from rwjblue/guard-attrs-null
[BUGFIX beta] Guard against `null` `attrs` in getRoot hook.
Configuration menu - View commit details
-
Copy full SHA for 734350e - Browse repository at this point
Copy the full SHA 734350eView commit details -
Configuration menu - View commit details
-
Copy full SHA for c0f2eaf - Browse repository at this point
Copy the full SHA c0f2eafView commit details
Commits on Nov 14, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 2810a06 - Browse repository at this point
Copy the full SHA 2810a06View commit details -
Merge pull request emberjs#12604 from rwjblue/add-deprecation-url-to-…
…container-feature [FEATURE ember-container-inject-getowner] Add deprecation URL.
Configuration menu - View commit details
-
Copy full SHA for 1250c6f - Browse repository at this point
Copy the full SHA 1250c6fView commit details -
Configuration menu - View commit details
-
Copy full SHA for efb8487 - Browse repository at this point
Copy the full SHA efb8487View commit details -
Merge pull request emberjs#12608 from tiegz/master
Fix typo in helpers_test.js
Configuration menu - View commit details
-
Copy full SHA for 0810d91 - Browse repository at this point
Copy the full SHA 0810d91View commit details
Commits on Nov 15, 2015
-
Configuration menu - View commit details
-
Copy full SHA for caa5958 - Browse repository at this point
Copy the full SHA caa5958View commit details -
Merge pull request emberjs#12603 from stefanpenner/pre-alloc
[Fixes emberjs#12586] pre-alloc array
Configuration menu - View commit details
-
Copy full SHA for c772c60 - Browse repository at this point
Copy the full SHA c772c60View commit details -
Configuration menu - View commit details
-
Copy full SHA for 04ec1c6 - Browse repository at this point
Copy the full SHA 04ec1c6View commit details -
Configuration menu - View commit details
-
Copy full SHA for ff40ffd - Browse repository at this point
Copy the full SHA ff40ffdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4fff6ff - Browse repository at this point
Copy the full SHA 4fff6ffView commit details -
Configuration menu - View commit details
-
Copy full SHA for ddc1af4 - Browse repository at this point
Copy the full SHA ddc1af4View commit details -
add support to import
require
for internal requires.A similar feature is being proposed for ES. The syntax is still up in the air, and it will be async. But we can make use of this today
Configuration menu - View commit details
-
Copy full SHA for 489238e - Browse repository at this point
Copy the full SHA 489238eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 74e4725 - Browse repository at this point
Copy the full SHA 74e4725View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3309e21 - Browse repository at this point
Copy the full SHA 3309e21View commit details -
[FEATURE ember-container-inject-owner] Inject fake container for non-…
…extendable factories. The fake container is required to provide access to the `container` during instantiation of objects by non-extendable factories. The fake container provides access to the following methods: * `lookup` * `lookupFactory` Deprecation warnings are provided that direct the user to call `getOwner` followed by the equivalent `ContainerProxy` methods (`lookup` and `_lookupFactory`) on the owner.
Configuration menu - View commit details
-
Copy full SHA for 869d0d7 - Browse repository at this point
Copy the full SHA 869d0d7View commit details -
Configuration menu - View commit details
-
Copy full SHA for a3facf0 - Browse repository at this point
Copy the full SHA a3facf0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6713ad2 - Browse repository at this point
Copy the full SHA 6713ad2View commit details -
Configuration menu - View commit details
-
Copy full SHA for ad2f28f - Browse repository at this point
Copy the full SHA ad2f28fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 371fbe0 - Browse repository at this point
Copy the full SHA 371fbe0View commit details -
native-array -> mutable-array -> enumerable -> native-array To construct native-array enumerable must have been evaluated. By ensuring enumerable EmberA is lazy, all this works without leaking the cycle out.
Configuration menu - View commit details
-
Copy full SHA for 5cedadc - Browse repository at this point
Copy the full SHA 5cedadcView commit details -
Ember.A is a runtime concern metal should not use it
* move Ember.computed.collect back to runtime (its test are already there)
Configuration menu - View commit details
-
Copy full SHA for 3cdb40f - Browse repository at this point
Copy the full SHA 3cdb40fView commit details
Commits on Nov 16, 2015
-
Merge pull request emberjs#12609 from dgeb/fake-container
[FEATURE ember-container-inject-owner] Inject fake container with deprecations.
Configuration menu - View commit details
-
Copy full SHA for f434c9f - Browse repository at this point
Copy the full SHA f434c9fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1713085 - Browse repository at this point
Copy the full SHA 1713085View commit details -
Configuration menu - View commit details
-
Copy full SHA for cbb58b4 - Browse repository at this point
Copy the full SHA cbb58b4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8ad157b - Browse repository at this point
Copy the full SHA 8ad157bView commit details -
Merge pull request emberjs#12616 from stefanpenner/cleanup
Remove internal references to the Ember Global
Configuration menu - View commit details
-
Copy full SHA for afdba0f - Browse repository at this point
Copy the full SHA afdba0fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4b2d6d4 - Browse repository at this point
Copy the full SHA 4b2d6d4View commit details -
Auto merge of emberjs#12612 - emberjs:fix-mixin-shape, r=krisselden
[PERF] Fix Mixin shape issues Fix emberjs#12606 Make Mixin monomorphic and use debugSeal in development builds to flag issues.
Configuration menu - View commit details
-
Copy full SHA for 72a2b89 - Browse repository at this point
Copy the full SHA 72a2b89View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3b0baff - Browse repository at this point
Copy the full SHA 3b0baffView commit details -
Auto merge of emberjs#12619 - SaladFork:doc-add-cp-getter-setter-exam…
…ple, r=rwjblue [DOC release] Add example and clear up wording for CP get/set This PR makes the following changes to `Ember.computed` API documentation: - Changes the `fullName` getter function to match [the example in the latest guides](http://guides.emberjs.com/v2.1.0/object-model/computed-properties/). This involved changing to a template string from a string concatenation. - Switches class property default values to be defined in `init()` instead ([suggested](emberjs#12619 (comment))) - Minor changes to wording and sentence structure, mostly adding articles. - Adds an example that uses the hash format with `get` and `set` - Removes confusing/incorrect phrase: > The `get` function should accept two parameters, `key` and `value`. My one concern is that the two examples are very similar except for a few lines. Would it be more helpful if the second example only included the computed property (rather than the whole class and usage example)?
Configuration menu - View commit details
-
Copy full SHA for a322335 - Browse repository at this point
Copy the full SHA a322335View commit details
Commits on Nov 17, 2015
-
Configuration menu - View commit details
-
Copy full SHA for d25e0d7 - Browse repository at this point
Copy the full SHA d25e0d7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6b3e6ea - Browse repository at this point
Copy the full SHA 6b3e6eaView commit details -
Chris Santero committed
Nov 17, 2015 Configuration menu - View commit details
-
Copy full SHA for 4a098e8 - Browse repository at this point
Copy the full SHA 4a098e8View commit details