ember-source 4.4.0-alpha.3 → 4.4.0-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -1
- package/blueprints/acceptance-test/mocha-rfc-232-files/tests/acceptance/__name__-test.js +1 -1
- package/blueprints/acceptance-test/qunit-rfc-232-files/tests/acceptance/__name__-test.js +1 -1
- package/blueprints/component-test/mocha-rfc-232-files/__root__/__testType__/__path__/__test__.js +2 -2
- package/blueprints/component-test/qunit-rfc-232-files/__root__/__testType__/__path__/__test__.js +2 -2
- package/blueprints/controller-test/mocha-rfc-232-files/__root__/__testType__/__path__/__test__.js +1 -1
- package/blueprints/controller-test/qunit-rfc-232-files/__root__/__testType__/__path__/__test__.js +1 -1
- package/blueprints/helper-test/mocha-rfc-232-files/__root__/__testType__/__collection__/__name__-test.js +1 -1
- package/blueprints/helper-test/qunit-rfc-232-files/__root__/__testType__/__collection__/__name__-test.js +1 -1
- package/blueprints/route-test/mocha-rfc-232-files/__root__/__testType__/__path__/__test__.js +1 -1
- package/blueprints/route-test/qunit-rfc-232-files/__root__/__testType__/__path__/__test__.js +1 -1
- package/blueprints/service-test/mocha-rfc-232-files/__root__/__testType__/__path__/__test__.js +1 -1
- package/blueprints/service-test/qunit-rfc-232-files/__root__/__testType__/__path__/__test__.js +1 -1
- package/build-metadata.json +3 -3
- package/dist/ember-template-compiler.js +7 -3
- package/dist/ember-template-compiler.map +1 -1
- package/dist/ember-testing.js +2 -2
- package/dist/ember-testing.map +1 -1
- package/dist/ember.debug.js +298 -957
- package/dist/ember.debug.map +1 -1
- package/dist/header/license.js +1 -1
- package/dist/packages/@ember/-internals/container/index.js +0 -16
- package/dist/packages/@ember/-internals/extension-support/lib/container_debug_adapter.js +10 -19
- package/dist/packages/@ember/-internals/extension-support/lib/data_adapter.js +113 -112
- package/dist/packages/@ember/-internals/glimmer/index.js +112 -748
- package/dist/packages/@ember/-internals/metal/index.js +1 -4
- package/dist/packages/@ember/-internals/routing/lib/system/router.js +1 -1
- package/dist/packages/@ember/-internals/runtime/lib/ext/rsvp.js +8 -4
- package/dist/packages/@ember/-internals/runtime/lib/mixins/-proxy.js +1 -1
- package/dist/packages/@ember/-internals/runtime/lib/mixins/array.js +1 -1
- package/dist/packages/@ember/-internals/runtime/lib/mixins/promise_proxy.js +16 -16
- package/dist/packages/@ember/-internals/runtime/lib/mixins/target_action_support.js +8 -8
- package/dist/packages/@ember/-internals/views/lib/system/utils.js +4 -2
- package/dist/packages/@ember/-internals/views/lib/views/core_view.js +5 -22
- package/dist/packages/@ember/debug/index.js +1 -1
- package/dist/packages/@ember/renderer/index.js +21 -0
- package/dist/packages/ember/version.js +1 -1
- package/docs/data.json +400 -210
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Ember Changelog
|
|
2
2
|
|
|
3
|
+
### v4.3.0-beta.2 (March 1, 2022)
|
|
4
|
+
|
|
5
|
+
- [#19971](https://github.com/emberjs/ember.js/pull/19971) [BUGFIX] Don't serialize default Query Params on RouterService
|
|
6
|
+
|
|
3
7
|
### v4.3.0-beta.1 (February 7, 2022)
|
|
4
8
|
|
|
5
9
|
No public API changes or bugfixes.
|
|
@@ -3144,7 +3148,7 @@ Clearly, `component-a` has subscribed to `some-other-component`'s `action`. Prev
|
|
|
3144
3148
|
* CollectionView context is now its content
|
|
3145
3149
|
* Various enhancements to bound helpers: adds multiple property support to bound helpers, adds bind-able options hash properties, adds {{unbound}} helper support to render unbound form of helpers.
|
|
3146
3150
|
* Add App.inject
|
|
3147
|
-
* Add Ember.
|
|
3151
|
+
* Add Ember.EnumerableUtils.intersection
|
|
3148
3152
|
* Deprecate Controller#controllerFor in favor of Controller#needs
|
|
3149
3153
|
* Adds `bubbles` property to Ember.TextField
|
|
3150
3154
|
* Allow overriding of Ember.Router#handleURL
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { describe, it } from 'mocha';
|
|
2
2
|
import { expect } from 'chai';
|
|
3
|
-
import { setupApplicationTest } from '
|
|
3
|
+
import { setupApplicationTest } from '<%= dasherizedPackageName %>/tests/helpers';
|
|
4
4
|
import { visit, currentURL } from '@ember/test-helpers';
|
|
5
5
|
|
|
6
6
|
describe('<%= friendlyTestName %>', function () {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { module, test } from 'qunit';
|
|
2
2
|
import { visit, currentURL } from '@ember/test-helpers';
|
|
3
|
-
import { setupApplicationTest } from '
|
|
3
|
+
import { setupApplicationTest } from '<%= dasherizedPackageName %>/tests/helpers';
|
|
4
4
|
|
|
5
5
|
module('<%= friendlyTestName %>', function (hooks) {
|
|
6
6
|
setupApplicationTest(hooks);
|
package/blueprints/component-test/mocha-rfc-232-files/__root__/__testType__/__path__/__test__.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<% if (testType === 'integration') { %>import { expect } from 'chai';
|
|
2
2
|
import { describe, it } from 'mocha';
|
|
3
|
-
import { setupRenderingTest } from '
|
|
3
|
+
import { setupRenderingTest } from '<%= dasherizedPackageName %>/tests/helpers';
|
|
4
4
|
import { render } from '@ember/test-helpers';
|
|
5
5
|
<%= hbsImportStatement %>
|
|
6
6
|
|
|
@@ -26,7 +26,7 @@ describe('<%= friendlyTestDescription %>', function () {
|
|
|
26
26
|
});
|
|
27
27
|
});<% } else if (testType === 'unit') { %>import { expect } from 'chai';
|
|
28
28
|
import { describe, it } from 'mocha';
|
|
29
|
-
import { setupTest } from '
|
|
29
|
+
import { setupTest } from '<%= dasherizedPackageName %>/tests/helpers';
|
|
30
30
|
|
|
31
31
|
describe('<%= friendlyTestDescription %>', function () {
|
|
32
32
|
setupTest();
|
package/blueprints/component-test/qunit-rfc-232-files/__root__/__testType__/__path__/__test__.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<% if (testType === 'integration') { %>import { module, test } from 'qunit';
|
|
2
|
-
import { setupRenderingTest } from '
|
|
2
|
+
import { setupRenderingTest } from '<%= dasherizedPackageName %>/tests/helpers';
|
|
3
3
|
import { render } from '@ember/test-helpers';
|
|
4
4
|
<%= hbsImportStatement %>
|
|
5
5
|
|
|
@@ -24,7 +24,7 @@ module('<%= friendlyTestDescription %>', function (hooks) {
|
|
|
24
24
|
assert.dom(this.element).hasText('template block text');
|
|
25
25
|
});
|
|
26
26
|
});<% } else if (testType === 'unit') { %>import { module, test } from 'qunit';
|
|
27
|
-
import { setupTest } from '
|
|
27
|
+
import { setupTest } from '<%= dasherizedPackageName %>/tests/helpers';
|
|
28
28
|
|
|
29
29
|
module('<%= friendlyTestDescription %>', function (hooks) {
|
|
30
30
|
setupTest(hooks);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { expect } from 'chai';
|
|
2
2
|
import { describe, it } from 'mocha';
|
|
3
|
-
import { setupRenderingTest } from '
|
|
3
|
+
import { setupRenderingTest } from '<%= dasherizedPackageName %>/tests/helpers';
|
|
4
4
|
import { render } from '@ember/test-helpers';
|
|
5
5
|
<%= hbsImportStatement %>
|
|
6
6
|
|
package/build-metadata.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "4.4.0-alpha.
|
|
2
|
+
"version": "4.4.0-alpha.4",
|
|
3
3
|
"buildType": "tag",
|
|
4
|
-
"SHA": "
|
|
5
|
-
"assetPath": "/tag/shas/
|
|
4
|
+
"SHA": "b1dee49c720b6e353fba9d910232e0e432ba6177",
|
|
5
|
+
"assetPath": "/tag/shas/b1dee49c720b6e353fba9d910232e0e432ba6177.tgz"
|
|
6
6
|
}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* Portions Copyright 2008-2011 Apple Inc. All rights reserved.
|
|
7
7
|
* @license Licensed under MIT license
|
|
8
8
|
* See https://raw.github.com/emberjs/ember.js/master/LICENSE
|
|
9
|
-
* @version 4.4.0-alpha.
|
|
9
|
+
* @version 4.4.0-alpha.4
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
12
|
/* eslint-disable no-var */
|
|
@@ -1726,7 +1726,7 @@ define("@ember/debug/index", ["exports", "@ember/-internals/browser-environment"
|
|
|
1726
1726
|
&& !(0, _testing.isTesting)()) {
|
|
1727
1727
|
if (typeof window !== 'undefined' && (_browserEnvironment.isFirefox || _browserEnvironment.isChrome) && window.addEventListener) {
|
|
1728
1728
|
window.addEventListener('load', () => {
|
|
1729
|
-
if (document.documentElement && document.documentElement.dataset && !document.documentElement.dataset
|
|
1729
|
+
if (document.documentElement && document.documentElement.dataset && !document.documentElement.dataset['emberExtension']) {
|
|
1730
1730
|
var downloadURL;
|
|
1731
1731
|
|
|
1732
1732
|
if (_browserEnvironment.isChrome) {
|
|
@@ -8487,6 +8487,10 @@ define("@glimmer/syntax", ["exports", "@glimmer/util", "simple-html-tokenizer",
|
|
|
8487
8487
|
}
|
|
8488
8488
|
|
|
8489
8489
|
function buildElement(tag, options) {
|
|
8490
|
+
if (options === void 0) {
|
|
8491
|
+
options = {};
|
|
8492
|
+
}
|
|
8493
|
+
|
|
8490
8494
|
var {
|
|
8491
8495
|
attrs,
|
|
8492
8496
|
blockParams,
|
|
@@ -18730,7 +18734,7 @@ define("ember/version", ["exports"], function (_exports) {
|
|
|
18730
18734
|
value: true
|
|
18731
18735
|
});
|
|
18732
18736
|
_exports.default = void 0;
|
|
18733
|
-
var _default = "4.4.0-alpha.
|
|
18737
|
+
var _default = "4.4.0-alpha.4";
|
|
18734
18738
|
_exports.default = _default;
|
|
18735
18739
|
});
|
|
18736
18740
|
define("simple-html-tokenizer", ["exports"], function (_exports) {
|