language stringclasses 1
value | owner stringlengths 2 15 | repo stringlengths 2 21 | sha stringlengths 45 45 | message stringlengths 7 36.3k | path stringlengths 1 199 | patch stringlengths 15 102k | is_multipart bool 2
classes |
|---|---|---|---|---|---|---|---|
Other | emberjs | ember.js | f2be19507f0742a9471fa4fe0ce22ccf3104967d.json | Add v3.25.0-beta.3 to CHANGELOG
(cherry picked from commit 25e17f0ea31c01239fc8b4fd8bdb52f003f2dea0) | CHANGELOG.md | @@ -1,6 +1,10 @@
# Ember Changelog
-### v3.25.0-beta.2 (January 19, 2020)
+### v3.25.0-beta.3 (January 25, 2021)
+
+- [#19351](https://github.com/emberjs/ember.js/pull/19351) [BUGFIX] Ensure locals do not clobber components of the same name
+
+### v3.25.0-beta.2 (January 19, 2021)
- [#19339](https://github.com/em... | false |
Other | emberjs | ember.js | ce0b37a81fb7eb0b4f43f8728a8ea4288ff5be57.json | Add v3.25.0-beta.2 to CHANGELOG
(cherry picked from commit 761580686c2c2b6e812f5fc0893c305bcf9b95d2) | CHANGELOG.md | @@ -1,5 +1,13 @@
# Ember Changelog
+### v3.25.0-beta.2 (January 19, 2020)
+
+- [#19339](https://github.com/emberjs/ember.js/pull/19339) [DEPRECATION] Deprecate importing `htmlSafe` and `isHTMLSafe` from `@ember/string` per the [Deprecate Ember String RFC](https://github.com/emberjs/rfcs/blob/master/text/0236-depreca... | false |
Other | emberjs | ember.js | b18f67eb526108f328df624f1f8c51994ef556d3.json | Add v3.24.1 to CHANGELOG.md. | CHANGELOG.md | @@ -7,6 +7,10 @@
- [#18148](https://github.com/emberjs/ember.js/pull/18148) [BUGFIX] Fix empty `htmlSafe` string to be treated as falsy
- [#19320](https://github.com/emberjs/ember.js/pull/19320) / [#19317](https://github.com/emberjs/ember.js/pull/19317) / [#19297](https://github.com/emberjs/ember.js/pull/19297) / [#1... | false |
Other | emberjs | ember.js | 2bb644532d407d4b4700a81f510c5aed4caf5d84.json | Add v3.25.0-beta.1 to CHANGELOG
(cherry picked from commit 54830f5c35364a3001d469e9bf741725342d9f3d) | CHANGELOG.md | @@ -1,5 +1,12 @@
# Ember Changelog
+### v3.25.0-beta.1 (December 28, 2020)
+
+- [#19302](https://github.com/emberjs/ember.js/pull/19302) / [#19306](https://github.com/emberjs/ember.js/pull/19306) / [#19319](https://github.com/emberjs/ember.js/pull/19319) [FEATURE] Implement the [Handlebars Strict Mode RFC](https://g... | false |
Other | emberjs | ember.js | df3c7a65d14822155c9876f50849fa123edc1219.json | Add v3.24.0 to CHANGELOG
(cherry picked from commit 5f70d5518b3a8b9107abfaf38408c0c51e7f998d) | CHANGELOG.md | @@ -1,14 +1,6 @@
# Ember Changelog
-### v3.24.0-beta.3 (December 21, 2020)
-
-- [#19280](https://github.com/emberjs/ember.js/pull/19280) [BUGFIX] Ensure aliases cause recompute of a computed property when used with `@each` in the dependent keys of that property
-
-### v3.24.0-beta.2 (November 24, 2020)
-
-- [#19282]... | false |
Other | emberjs | ember.js | 5364bed35d44777a9c671906619f0cda1d5b75cd.json | Add v3.24.0-beta.3 to CHANGELOG
(cherry picked from commit f803ecabd09786f6035c13f49695686c78495153) | CHANGELOG.md | @@ -1,5 +1,9 @@
# Ember Changelog
+### v3.24.0-beta.3 (December 21, 2020)
+
+- [#19280](https://github.com/emberjs/ember.js/pull/19280) [BUGFIX] Ensure aliases cause recompute of a computed property when used with `@each` in the dependent keys of that property
+
### v3.24.0-beta.2 (November 24, 2020)
- [#19282](... | false |
Other | emberjs | ember.js | 6bd1e1025afc3ab944961e868485f557649e5a31.json | Add option to specify a boolean default value | packages/@ember/-internals/routing/lib/ext/controller.ts | @@ -19,7 +19,8 @@ ControllerMixin.reopen({
may cause unexpected behavior if a query parameter is used with `toggleProperty`,
because the initial value set for `param=false` will be the string `"false"`, which is truthy.
- To avoid this, you may specify that the query parameter should be parsed as a b... | false |
Other | emberjs | ember.js | f4bd2ef61b00f36e486892a58fa8d219a8eac1fd.json | Remove unnecessary words | packages/@ember/-internals/routing/lib/ext/controller.ts | @@ -15,7 +15,7 @@ ControllerMixin.reopen({
the values of these query parameters to the variables
`this.category` and `this.page`.
- By default, query parameters are parsed and treated as strings. This
+ By default, query parameters are parsed as strings. This
may cause unexpected behavior if a qu... | false |
Other | emberjs | ember.js | f7888670d31ad69df2f7fb50947e4c76896c4e89.json | Fix description of issue around toggleProperty
The original description was unclear, but implied a totally different problem was at hand. | packages/@ember/-internals/routing/lib/ext/controller.ts | @@ -14,20 +14,23 @@ ControllerMixin.reopen({
If you give the names `['category','page']` it will bind
the values of these query parameters to the variables
`this.category` and `this.page`.
- By default, Ember coerces query parameter values using `toggleProperty`.
- This behavior may lead to unexpec... | false |
Other | emberjs | ember.js | 49d4a4bb396ac9ef3c7ecd8a597a468c12f17322.json | update deprecation target to 3.25 | packages/@ember/-internals/routing/lib/utils.ts | @@ -252,7 +252,7 @@ export function deprecateTransitionMethods(frameworkClass: string, methodName: s
id: 'routing.transition-methods',
for: 'ember-source',
since: {
- enabled: '3.24.0',
+ enabled: '3.25.0',
},
until: '4.0.0',
url: 'https://deprecations.emberjs.com... | false |
Other | emberjs | ember.js | 047ae62ae79963962a5f80a6d0f581bfdd18defe.json | enable Ember.String.loc deprecation | packages/@ember/string/index.ts | @@ -122,7 +122,7 @@ export function loc(str: string, formats: any[]): string {
for: 'ember-source',
url: 'https://deprecations.emberjs.com/v3.x#toc_ember-string-loc',
since: {
- available: '3.24',
+ enabled: '3.24',
},
}
); | false |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | broccoli/packages.js | @@ -273,6 +273,9 @@ module.exports.glimmerES = function glimmerES(environment) {
let glimmerEntries = [
'@glimmer/node',
'@simple-dom/document',
+ '@glimmer/manager',
+ '@glimmer/destroyable',
+ '@glimmer/owner',
'@glimmer/opcode-compiler',
'@glimmer/runtime',
]; | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | package.json | @@ -74,16 +74,19 @@
},
"devDependencies": {
"@babel/preset-env": "^7.9.5",
- "@glimmer/compiler": "0.67.0",
+ "@glimmer/compiler": "0.68.0",
"@glimmer/env": "^0.1.7",
- "@glimmer/global-context": "0.67.0",
- "@glimmer/interfaces": "0.67.0",
- "@glimmer/node": "0.67.0",
- "@glimmer/opco... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/index.ts | @@ -361,7 +361,6 @@
*/
export { templateFactory as template, templateCacheCounters } from '@glimmer/opcode-compiler';
-export { setComponentTemplate, getComponentTemplate } from '@glimmer/runtime';
export { default as RootTemplate } from './lib/templates/root';
export { default as Checkbox } from './lib/compone... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/compile-time-lookup.ts | @@ -1,73 +0,0 @@
-import { Owner } from '@ember/-internals/owner';
-import {
- CompileTimeComponent,
- CompileTimeResolver,
- ComponentDefinition,
- InternalComponentCapabilities,
- InternalComponentManager,
- Option,
- WithStaticLayout,
-} from '@glimmer/interfaces';
-import { unwrapTemplate } from '@glimmer/ut... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/component-managers/curly.ts | @@ -1,6 +1,5 @@
-import { privatize as P } from '@ember/-internals/container';
-import { getOwner } from '@ember/-internals/owner';
-import { guidFor } from '@ember/-internals/utils';
+import { Factory, getOwner } from '@ember/-internals/owner';
+import { enumerableSymbol, guidFor, symbol } from '@ember/-internals/util... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/component-managers/custom.ts | @@ -1,242 +0,0 @@
-import { Factory } from '@ember/-internals/owner';
-import { assert } from '@ember/debug';
-import { DEBUG } from '@glimmer/env';
-import {
- Arguments,
- ComponentCapabilities,
- ComponentCapabilitiesVersions,
- ComponentDefinition,
- ComponentManager,
- ComponentManagerWithAsyncLifeCycleCallb... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/component-managers/definition-state.ts | @@ -1,13 +0,0 @@
-import { Factory } from '@ember/-internals/owner';
-import { InternalComponentCapabilities, Template } from '@glimmer/interfaces';
-import { Component } from '../utils/curly-component-state-bucket';
-
-export default interface DefinitionState {
- capabilities: InternalComponentCapabilities;
- name: ... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/component-managers/internal.ts | @@ -1,19 +1,16 @@
import { Owner } from '@ember/-internals/owner';
import { assert } from '@ember/debug';
import {
- ComponentDefinition,
+ CapturedNamedArguments,
Destroyable,
DynamicScope,
Environment,
InternalComponentCapabilities,
InternalComponentManager,
- Template,
VMArguments,
- WithSta... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/component-managers/mount.ts | @@ -1,6 +1,7 @@
import { Owner } from '@ember/-internals/owner';
import { generateControllerFactory } from '@ember/-internals/routing';
import EngineInstance from '@ember/engine/instance';
+import { associateDestroyableChild } from '@glimmer/destroyable';
import {
CapturedArguments,
ComponentDefinition,
@@ -9... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/component-managers/outlet.ts | @@ -6,20 +6,24 @@ import { _instrumentStart } from '@ember/instrumentation';
import { assign } from '@ember/polyfills';
import {
CapturedArguments,
+ CompilableProgram,
ComponentDefinition,
CustomRenderNode,
Destroyable,
Environment,
InternalComponentCapabilities,
+ InternalComponentCapability,
... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/component-managers/root.ts | @@ -1,24 +1,22 @@
import { getFactoryFor } from '@ember/-internals/container';
-import { Factory } from '@ember/-internals/owner';
import { _instrumentStart } from '@ember/instrumentation';
import { DEBUG } from '@glimmer/env';
import {
ComponentDefinition,
Environment,
InternalComponentCapabilities,
Op... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/component-managers/template-only.ts | @@ -1,74 +0,0 @@
-import {
- ComponentDefinition,
- Environment,
- InternalComponentCapabilities,
- Option,
- Template,
- WithStaticLayout,
-} from '@glimmer/interfaces';
-import { NULL_REFERENCE, Reference } from '@glimmer/reference';
-
-const CAPABILITIES: InternalComponentCapabilities = {
- dynamicLayout: fal... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/component.ts | @@ -1,7 +1,6 @@
import { get, PROPERTY_DID_CHANGE } from '@ember/-internals/metal';
import { getOwner } from '@ember/-internals/owner';
import { TargetActionSupport } from '@ember/-internals/runtime';
-import { enumerableSymbol, symbol } from '@ember/-internals/utils';
import {
ActionSupport,
ChildViewsSuppor... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/components/input.ts | @@ -1,7 +1,7 @@
/**
@module @ember/component
*/
-import { setComponentManager } from '@glimmer/runtime';
+import { setInternalComponentManager } from '@glimmer/manager';
import InternalManager from '../component-managers/internal';
import InternalComponent from './internal';
@@ -117,6 +117,6 @@ export default cl... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/components/link-to.ts | @@ -11,7 +11,8 @@ import { EngineInstance, getEngineParent } from '@ember/engine';
import { flaggedInstrument } from '@ember/instrumentation';
import { inject as injectService } from '@ember/service';
import { DEBUG } from '@glimmer/env';
-import EmberComponent, { HAS_BLOCK } from '../component';
+import EmberCompon... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/helper.ts | @@ -8,15 +8,13 @@ import { getDebugName, symbol } from '@ember/-internals/utils';
import { join } from '@ember/runloop';
import { DEBUG } from '@glimmer/env';
import { Arguments, Dict, HelperManager } from '@glimmer/interfaces';
-import { setHelperManager } from '@glimmer/runtime';
-import { _WeakSet as WeakSet } fr... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/helpers/-assert-implicit-component-helper-argument.ts | @@ -2,6 +2,7 @@ import { assert } from '@ember/debug';
import { DEBUG } from '@glimmer/env';
import { Helper, VMArguments } from '@glimmer/interfaces';
import { createComputeRef, valueForRef } from '@glimmer/reference';
+import { internalHelper } from './internal-helper';
let helper: Helper;
@@ -22,4 +23,4 @@ i... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/helpers/-in-element-null-check.ts | @@ -2,6 +2,7 @@ import { assert } from '@ember/debug';
import { DEBUG } from '@glimmer/env';
import { Helper, VMArguments } from '@glimmer/interfaces';
import { createComputeRef, valueForRef } from '@glimmer/reference';
+import { internalHelper } from './internal-helper';
let helper: Helper;
@@ -24,4 +25,4 @@ i... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/helpers/-normalize-class.ts | @@ -1,8 +1,9 @@
import { dasherize } from '@ember/string';
import { VMArguments } from '@glimmer/interfaces';
import { createComputeRef, valueForRef } from '@glimmer/reference';
+import { internalHelper } from './internal-helper';
-export default function (args: VMArguments) {
+export default internalHelper((args:... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/helpers/-track-array.ts | @@ -6,13 +6,14 @@ import { isObject } from '@ember/-internals/utils';
import { VMArguments } from '@glimmer/interfaces';
import { createComputeRef, valueForRef } from '@glimmer/reference';
import { consumeTag } from '@glimmer/validator';
+import { internalHelper } from './internal-helper';
/**
This reference i... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/helpers/action.ts | @@ -16,6 +16,7 @@ import {
valueForRef,
} from '@glimmer/reference';
import { _WeakSet } from '@glimmer/util';
+import { internalHelper } from './internal-helper';
export const ACTIONS = new _WeakSet();
export const INVOKE: unique symbol = symbol('INVOKE') as any;
@@ -283,40 +284,48 @@ export const INVOKE: uni... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/helpers/array.ts | @@ -1,6 +1,7 @@
import { VMArguments } from '@glimmer/interfaces';
import { createComputeRef, Reference } from '@glimmer/reference';
import { reifyPositional } from '@glimmer/runtime';
+import { internalHelper } from './internal-helper';
/**
@module ember
@@ -42,8 +43,10 @@ import { reifyPositional } from '@glim... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/helpers/concat.ts | @@ -1,12 +1,13 @@
import { VMArguments } from '@glimmer/interfaces';
import { createComputeRef } from '@glimmer/reference';
import { reifyPositional } from '@glimmer/runtime';
+import { internalHelper } from './internal-helper';
-const isEmpty = (value: any): boolean => {
- return value === null || value === unde... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/helpers/each-in.ts | @@ -7,6 +7,7 @@ import { isProxy } from '@ember/-internals/utils';
import { VMArguments } from '@glimmer/interfaces';
import { createComputeRef, valueForRef } from '@glimmer/reference';
import { consumeTag } from '@glimmer/validator';
+import { internalHelper } from './internal-helper';
/**
The `{{#each}}` hel... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/helpers/fn.ts | @@ -10,6 +10,7 @@ import {
} from '@glimmer/reference';
import { reifyPositional } from '@glimmer/runtime';
import buildUntouchableThis from '../utils/untouchable-this';
+import { internalHelper } from './internal-helper';
const context = buildUntouchableThis('`fn` helper');
@@ -84,7 +85,7 @@ const context = bu... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/helpers/get.ts | @@ -9,6 +9,7 @@ import {
NULL_REFERENCE,
valueForRef,
} from '@glimmer/reference';
+import { internalHelper } from './internal-helper';
/**
@module ember
@@ -94,7 +95,7 @@ import {
@for Ember.Templates.helpers
@since 2.1.0
*/
-export default function (args: VMArguments) {
+export default internalHelp... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/helpers/hash.ts | @@ -1,6 +1,7 @@
import { Dict, VMArguments } from '@glimmer/interfaces';
import { createComputeRef, Reference } from '@glimmer/reference';
import { reifyNamed } from '@glimmer/runtime';
+import { internalHelper } from './internal-helper';
/**
@module ember
@@ -44,8 +45,10 @@ import { reifyNamed } from '@glimmer/... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/helpers/if-unless.ts | @@ -6,6 +6,7 @@ import { assert } from '@ember/debug';
import { toBool } from '@glimmer/global-context';
import { VMArguments } from '@glimmer/interfaces';
import { createComputeRef, valueForRef } from '@glimmer/reference';
+import { internalHelper } from './internal-helper';
/**
The `if` helper allows you to ... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/helpers/internal-helper.ts | @@ -0,0 +1,6 @@
+import { Helper, HelperDefinitionState } from '@glimmer/interfaces';
+import { setInternalHelperManager } from '@glimmer/manager';
+
+export function internalHelper(helper: Helper): HelperDefinitionState {
+ return setInternalHelperManager(() => helper, {});
+} | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/helpers/log.ts | @@ -1,6 +1,7 @@
import { VMArguments } from '@glimmer/interfaces';
import { createComputeRef } from '@glimmer/reference';
import { reifyPositional } from '@glimmer/runtime';
+import { internalHelper } from './internal-helper';
/**
@module ember
@@ -19,12 +20,12 @@ import { reifyPositional } from '@glimmer/runtim... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/helpers/mut.ts | @@ -4,6 +4,7 @@
import { assert } from '@ember/debug';
import { VMArguments } from '@glimmer/interfaces';
import { createInvokableRef, isUpdatableRef } from '@glimmer/reference';
+import { internalHelper } from './internal-helper';
/**
The `mut` helper lets you __clearly specify__ that a child `Component` can ... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/helpers/query-param.ts | @@ -7,6 +7,7 @@ import { assign } from '@ember/polyfills';
import { VMArguments } from '@glimmer/interfaces';
import { createComputeRef } from '@glimmer/reference';
import { reifyNamed } from '@glimmer/runtime';
+import { internalHelper } from './internal-helper';
/**
This is a helper to be used in conjunction... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/helpers/readonly.ts | @@ -3,6 +3,7 @@
*/
import { VMArguments } from '@glimmer/interfaces';
import { createReadOnlyRef } from '@glimmer/reference';
+import { internalHelper } from './internal-helper';
/**
The `readonly` helper let's you specify that a binding is one-way only,
@@ -119,6 +120,6 @@ import { createReadOnlyRef } from '@... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/helpers/unbound.ts | @@ -5,6 +5,7 @@
import { assert } from '@ember/debug';
import { VMArguments } from '@glimmer/interfaces';
import { createUnboundRef, valueForRef } from '@glimmer/reference';
+import { internalHelper } from './internal-helper';
/**
The `{{unbound}}` helper disconnects the one-way binding of a property,
@@ -34,1... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/modifiers/action.ts | @@ -3,6 +3,7 @@ import { ActionManager, isSimpleClick } from '@ember/-internals/views';
import { assert, deprecate } from '@ember/debug';
import { flaggedInstrument } from '@ember/instrumentation';
import { join } from '@ember/runloop';
+import { registerDestructor } from '@glimmer/destroyable';
import { DEBUG } fr... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/modifiers/custom.ts | @@ -1,227 +0,0 @@
-import { Factory } from '@ember/-internals/owner';
-import { assert } from '@ember/debug';
-import { DEBUG } from '@glimmer/env';
-import {
- Arguments,
- InternalModifierManager,
- ModifierCapabilities,
- ModifierCapabilitiesVersions,
- ModifierManager,
- VMArguments,
-} from '@glimmer/interfa... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/modifiers/internal.ts | @@ -1,14 +1,15 @@
import { Owner, setOwner } from '@ember/-internals/owner';
import { guidFor } from '@ember/-internals/utils';
import { assert } from '@ember/debug';
+import { registerDestructor } from '@glimmer/destroyable';
import {
CapturedArguments,
Destroyable,
InternalModifierManager as ModifierMana... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/modifiers/on.ts | @@ -1,9 +1,10 @@
-import { Owner } from '@ember/-internals/owner';
import { assert } from '@ember/debug';
+import { registerDestructor } from '@glimmer/destroyable';
import { DEBUG } from '@glimmer/env';
import { CapturedArguments, InternalModifierManager, VMArguments } from '@glimmer/interfaces';
+import { setInter... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/renderer.ts | @@ -3,6 +3,7 @@ import { getOwner, Owner } from '@ember/-internals/owner';
import { getViewElement, getViewId } from '@ember/-internals/views';
import { assert } from '@ember/debug';
import { backburner, getCurrentRunLoop } from '@ember/runloop';
+import { destroy } from '@glimmer/destroyable';
import { DEBUG } fro... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/resolver.ts | @@ -1,43 +1,40 @@
import { privatize as P } from '@ember/-internals/container';
import { ENV } from '@ember/-internals/environment';
import { Factory, FactoryClass, LookupOptions, Owner } from '@ember/-internals/owner';
-import { EMBER_GLIMMER_HELPER_MANAGER } from '@ember/canary-features';
-import { isTemplateOnlyC... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/setup-registry.ts | @@ -9,7 +9,6 @@ import TextArea from './components/textarea';
import { clientBuilder, rehydrationBuilder, serializeBuilder } from './dom';
import loc from './helpers/loc';
import { InertRenderer, InteractiveRenderer } from './renderer';
-import ComponentTemplate from './templates/component';
import InputTemplate fr... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/syntax/mount.ts | @@ -13,6 +13,7 @@ import {
EMPTY_POSITIONAL,
} from '@glimmer/runtime';
import { MountDefinition } from '../component-managers/mount';
+import { internalHelper } from '../helpers/internal-helper';
/**
The `{{mount}}` helper lets you embed a routeless engine in a template.
@@ -54,73 +55,75 @@ import { MountDe... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/syntax/outlet.ts | @@ -16,6 +16,7 @@ import {
} from '@glimmer/runtime';
import { dict } from '@glimmer/util';
import { OutletComponentDefinition, OutletDefinitionState } from '../component-managers/outlet';
+import { internalHelper } from '../helpers/internal-helper';
import { DynamicScope } from '../renderer';
import { isTemplateF... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/templates/component.d.ts | @@ -1,3 +0,0 @@
-import { TemplateFactory } from '@glimmer/interfaces';
-declare const TEMPLATE: TemplateFactory;
-export default TEMPLATE; | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/templates/component.hbs | @@ -1 +0,0 @@
-{{yield}}
\ No newline at end of file | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/utils/args-proxy.ts | @@ -1,210 +0,0 @@
-import { CUSTOM_TAG_FOR } from '@ember/-internals/metal';
-import { HAS_NATIVE_PROXY } from '@ember/-internals/utils';
-import { assert } from '@ember/debug';
-import { DEBUG } from '@glimmer/env';
-import {
- Arguments,
- CapturedArguments,
- CapturedNamedArguments,
- CapturedPositionalArguments... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/utils/curly-component-state-bucket.ts | @@ -1,12 +1,12 @@
import { clearElementView, clearViewElement, getViewElement } from '@ember/-internals/views';
+import { registerDestructor } from '@glimmer/destroyable';
import {
CapturedNamedArguments,
Environment,
Template,
TemplateFactory,
} from '@glimmer/interfaces';
import { createConstRef, Refe... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/utils/managers.ts | @@ -2,7 +2,7 @@ import { Owner } from '@ember/-internals/owner';
import { deprecate } from '@ember/debug';
import { COMPONENT_MANAGER_STRING_LOOKUP } from '@ember/deprecated-features';
import { ComponentManager } from '@glimmer/interfaces';
-import { setComponentManager as glimmerSetComponentManager } from '@glimmer... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/lib/utils/process-args.ts | @@ -2,7 +2,7 @@ import { symbol } from '@ember/-internals/utils';
import { MUTABLE_CELL } from '@ember/-internals/views';
import { CapturedNamedArguments } from '@glimmer/interfaces';
import { isUpdatableRef, updateRef, valueForRef } from '@glimmer/reference';
-import { ARGS } from '../component';
+import { ARGS } f... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/tests/integration/application/debug-render-tree-test.ts | @@ -6,20 +6,16 @@ import {
} from 'internal-test-helpers';
import { ENV } from '@ember/-internals/environment';
-import {
- capabilities,
- Component,
- setComponentManager,
- setComponentTemplate,
-} from '@ember/-internals/glimmer';
+import { Component, setComponentManager } from '@ember/-internals/glimmer';
... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/tests/integration/components/angle-bracket-invocation-test.js | @@ -1,7 +1,6 @@
import { moduleFor, RenderingTestCase, strip, classes, runTask } from 'internal-test-helpers';
-import { setModifierManager } from '@glimmer/runtime';
+import { setModifierManager, modifierCapabilities } from '@glimmer/manager';
import { ENV } from '@ember/-internals/environment';
-import { modifierCa... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/tests/integration/components/component-template-test.js | @@ -3,8 +3,8 @@ import { moduleFor, RenderingTestCase, runTask } from 'internal-test-helpers';
import { HAS_NATIVE_SYMBOL } from '@ember/-internals/utils';
+import { setComponentTemplate, getComponentTemplate } from '@glimmer/manager';
import { Component, compile } from '../../utils/helpers';
-import { setCompone... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/tests/integration/components/contextual-components-test.js | @@ -1,3 +1,4 @@
+import { DEBUG } from '@glimmer/env';
import { moduleFor, RenderingTestCase, applyMixins, strip, runTask } from 'internal-test-helpers';
import { assign } from '@ember/polyfills';
@@ -584,14 +585,24 @@ moduleFor(
this.assertText('hello Alex');
}
- ['@test raises an assertion when c... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/tests/integration/components/dynamic-components-test.js | @@ -1,3 +1,4 @@
+import { DEBUG } from '@glimmer/env';
import { moduleFor, RenderingTestCase, strip, runTask } from 'internal-test-helpers';
import { set, computed } from '@ember/-internals/metal';
@@ -517,18 +518,28 @@ moduleFor(
this.assertText('yippie! Caracas yummy Caracas arepas!');
}
- ['@tes... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/tests/integration/components/template-only-components-test.js | @@ -1,7 +1,7 @@
import { moduleFor, RenderingTestCase, classes, runTask } from 'internal-test-helpers';
import { ENV } from '@ember/-internals/environment';
-import { setComponentTemplate } from '@ember/-internals/glimmer';
-import templateOnly from '@ember/component/template-only';
+import { setComponentTemplate } f... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/tests/integration/custom-component-manager-test.js | @@ -1,12 +1,13 @@
import { DEBUG } from '@glimmer/env';
import { moduleFor, RenderingTestCase, runTask, strip } from 'internal-test-helpers';
+import { componentCapabilities } from '@glimmer/manager';
import { Object as EmberObject } from '@ember/-internals/runtime';
import { set, setProperties, computed, tracked... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/tests/integration/custom-modifier-manager-test.js | @@ -1,9 +1,8 @@
import { DEBUG } from '@glimmer/env';
import { moduleFor, RenderingTestCase, runTask } from 'internal-test-helpers';
-import { setModifierManager } from '@glimmer/runtime';
+import { setModifierManager, modifierCapabilities } from '@glimmer/manager';
import { Object as EmberObject } from '@ember/-i... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/tests/integration/helpers/helper-manager-test.js | @@ -1,12 +1,12 @@
import { DEBUG } from '@glimmer/env';
+import { helperCapabilities, setHelperManager, setModifierManager } from '@glimmer/manager';
import { RenderingTestCase, moduleFor, runTask } from 'internal-test-helpers';
-import { helperCapabilities } from '@ember/-internals/glimmer';
import { tracked, set }... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/tests/integration/helpers/invoke-helper-test.js | @@ -1,18 +1,14 @@
import { RenderingTestCase, moduleFor, runTask } from 'internal-test-helpers';
-import {
- invokeHelper,
- Helper,
- helper,
- Component as EmberComponent,
- helperCapabilities,
-} from '@ember/-internals/glimmer';
+import { helperCapabilities, setHelperManager } from '@glimmer/manager';
+import... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/tests/integration/modifiers/on-test.js | @@ -1,6 +1,8 @@
import { moduleFor, RenderingTestCase, runTask } from 'internal-test-helpers';
import { isChrome, isFirefox } from '@ember/-internals/browser-environment';
import { HAS_NATIVE_PROXY } from '@ember/-internals/utils';
+import { getInternalModifierManager } from '@glimmer/manager';
+import { on } from '... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/tests/unit/runtime-resolver-cache-test.js | @@ -224,7 +224,7 @@ moduleFor(
}
getCacheCounters() {
- let { componentDefinitionCount, helperDefinitionCount } = this.renderer._runtimeResolver;
+ let { componentDefinitionCount, helperDefinitionCount } = this.renderer._context.constants;
return (this._counters = {
templateCache... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/glimmer/tests/utils/glimmerish-component.js | @@ -1,9 +1,10 @@
-import { setComponentManager, capabilities } from '@ember/-internals/glimmer';
+import { componentCapabilities } from '@glimmer/manager';
+import { setComponentManager } from '@ember/-internals/glimmer';
import { setOwner } from '@ember/-internals/owner';
class GlimmerishComponentManager {
cons... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/meta/lib/meta.ts | @@ -1,7 +1,7 @@
import { symbol, toString } from '@ember/-internals/utils';
import { assert, deprecate } from '@ember/debug';
+import { isDestroyed, isDestroying } from '@glimmer/destroyable';
import { DEBUG } from '@glimmer/env';
-import { isDestroyed, isDestroying } from '@glimmer/runtime';
import { Revision, Upd... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/metal/index.ts | @@ -58,7 +58,7 @@ export {
} from './lib/observer';
export { Mixin, aliasMethod, mixin, observer, applyMixin } from './lib/mixin';
export { default as inject, DEBUG_INJECTION_FUNCTIONS } from './lib/injected_property';
-export { tagForProperty, tagForObject, markObjectAsDirty, CUSTOM_TAG_FOR } from './lib/tags';
+ex... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/metal/lib/computed.ts | @@ -2,8 +2,8 @@ import { Meta, meta as metaFor } from '@ember/-internals/meta';
import { inspect, toString } from '@ember/-internals/utils';
import { assert, deprecate, warn } from '@ember/debug';
import EmberError from '@ember/error';
+import { isDestroyed } from '@glimmer/destroyable';
import { DEBUG } from '@gli... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/metal/lib/observer.ts | @@ -1,7 +1,7 @@
import { ENV } from '@ember/-internals/environment';
import { peekMeta } from '@ember/-internals/meta';
import { schedule } from '@ember/runloop';
-import { registerDestructor } from '@glimmer/runtime';
+import { registerDestructor } from '@glimmer/destroyable';
import { CURRENT_TAG, Tag, tagMetaFor... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/metal/lib/tags.ts | @@ -1,19 +1,12 @@
-import {
- enumerableSymbol,
- isObject,
- setupMandatorySetter,
- symbol,
- toString,
-} from '@ember/-internals/utils';
+import { isObject, setupMandatorySetter, symbol, toString } from '@ember/-internals/utils';
import { assert } from '@ember/debug';
+import { isDestroyed } from '@glimmer/de... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/metal/tests/accessors/get_test.js | @@ -3,7 +3,7 @@ import { Object as EmberObject } from '@ember/-internals/runtime';
import { get, set, getWithDefault, Mixin, observer, computed } from '../..';
import { moduleFor, AbstractTestCase } from 'internal-test-helpers';
import { run } from '@ember/runloop';
-import { destroy } from '@glimmer/runtime';
+impo... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/metal/tests/alias_test.js | @@ -10,7 +10,7 @@ import {
} from '..';
import { Object as EmberObject } from '@ember/-internals/runtime';
import { moduleFor, AbstractTestCase, runLoopSettled } from 'internal-test-helpers';
-import { destroy } from '@glimmer/runtime';
+import { destroy } from '@glimmer/destroyable';
import { valueForTag, validate... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/metal/tests/computed_test.js | @@ -11,7 +11,7 @@ import {
} from '..';
import { run } from '@ember/runloop';
import { moduleFor, AbstractTestCase, runLoopSettled } from 'internal-test-helpers';
-import { destroy } from '@glimmer/runtime';
+import { destroy } from '@glimmer/destroyable';
let obj, objA, objB, count, func;
| true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/metal/tests/mixin/observer_test.js | @@ -1,6 +1,6 @@
import { set, get, observer, mixin, Mixin } from '../..';
import { moduleFor, AbstractTestCase, runLoopSettled } from 'internal-test-helpers';
-import { destroy } from '@glimmer/runtime';
+import { destroy } from '@glimmer/destroyable';
let obj;
| true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/metal/tests/observer_test.js | @@ -16,7 +16,7 @@ import {
} from '..';
import { moduleFor, AbstractTestCase, runLoopSettled } from 'internal-test-helpers';
import { FUNCTION_PROTOTYPE_EXTENSIONS } from '@ember/deprecated-features';
-import { destroy } from '@glimmer/runtime';
+import { destroy } from '@glimmer/destroyable';
import { meta as meta... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/metal/tests/performance_test.js | @@ -9,7 +9,7 @@ import {
addObserver,
} from '..';
import { moduleFor, AbstractTestCase, runLoopSettled } from 'internal-test-helpers';
-import { destroy } from '@glimmer/runtime';
+import { destroy } from '@glimmer/destroyable';
let obj;
| true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/owner/index.ts | @@ -1,4 +1,4 @@
-import { getOwner as glimmerGetOwner, setOwner as glimmerSetOwner } from '@glimmer/runtime';
+import { getOwner as glimmerGetOwner, setOwner as glimmerSetOwner } from '@glimmer/owner';
/**
@module @ember/application | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/routing/tests/location/auto_location_test.js | @@ -2,7 +2,7 @@ import { assign } from '@ember/polyfills';
import { window } from '@ember/-internals/browser-environment';
import { run } from '@ember/runloop';
import { get } from '@ember/-internals/metal';
-import { setOwner } from '@glimmer/runtime';
+import { setOwner } from '@glimmer/owner';
import AutoLocatio... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/runtime/lib/mixins/-proxy.js | @@ -10,12 +10,12 @@ import {
Mixin,
tagForObject,
computed,
- CUSTOM_TAG_FOR,
tagForProperty,
} from '@ember/-internals/metal';
import { setProxy, setupMandatorySetter, isObject } from '@ember/-internals/utils';
import { assert } from '@ember/debug';
import { DEBUG } from '@glimmer/env';
+import { CUST... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/runtime/lib/system/array_proxy.js | @@ -10,14 +10,14 @@ import {
addArrayObserver,
removeArrayObserver,
replace,
- CUSTOM_TAG_FOR,
arrayContentDidChange,
tagForProperty,
} from '@ember/-internals/metal';
import { isObject } from '@ember/-internals/utils';
import EmberObject from './object';
import { isArray, MutableArray } from '../mi... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/runtime/lib/system/core_object.js | @@ -31,7 +31,8 @@ import ActionHandler from '../mixins/action_handler';
import { assert } from '@ember/debug';
import { DEBUG } from '@glimmer/env';
import { _WeakSet as WeakSet } from '@glimmer/util';
-import { destroy, isDestroying, isDestroyed, registerDestructor, OWNER } from '@glimmer/runtime';
+import { destro... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/runtime/tests/ext/function_test.js | @@ -4,7 +4,7 @@ import EmberObject from '../../lib/system/object';
import Evented from '../../lib/mixins/evented';
import { moduleFor, AbstractTestCase, runLoopSettled } from 'internal-test-helpers';
import { FUNCTION_PROTOTYPE_EXTENSIONS } from '@ember/deprecated-features';
-import { destroy } from '@glimmer/runtim... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/runtime/tests/mixins/container_proxy_test.js | @@ -4,7 +4,7 @@ import ContainerProxy from '../../lib/mixins/container_proxy';
import EmberObject from '../../lib/system/object';
import { run, schedule } from '@ember/runloop';
import { moduleFor, AbstractTestCase } from 'internal-test-helpers';
-import { destroy } from '@glimmer/runtime';
+import { destroy } from ... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/runtime/tests/mutable-array/removeObjects-test.js | @@ -2,7 +2,7 @@ import { get } from '@ember/-internals/metal';
import { AbstractTestCase, runLoopSettled } from 'internal-test-helpers';
import { runArrayTests, newFixture, newObjectsFixture } from '../helpers/array';
import { A as emberA } from '../../lib/mixins/array';
-import { destroy } from '@glimmer/runtime';
... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/runtime/tests/system/core_object_test.js | @@ -3,7 +3,7 @@ import { get, set, observer } from '@ember/-internals/metal';
import CoreObject from '../../lib/system/core_object';
import { moduleFor, AbstractTestCase, buildOwner, runLoopSettled } from 'internal-test-helpers';
import { track } from '@glimmer/validator';
-import { destroy } from '@glimmer/runtime'... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/-internals/runtime/tests/system/object/create_test.js | @@ -4,7 +4,7 @@ import { computed, Mixin, observer, addObserver, alias } from '@ember/-internals
import { DEBUG } from '@glimmer/env';
import EmberObject from '../../../lib/system/object';
import { moduleFor, AbstractTestCase } from 'internal-test-helpers';
-import { destroy } from '@glimmer/runtime';
+import { dest... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/application/tests/application_test.js | @@ -180,7 +180,6 @@ moduleFor(
verifyRegistration(assert, application, 'view:-outlet');
verifyRegistration(assert, application, 'renderer:-dom');
verifyRegistration(assert, application, 'renderer:-inert');
- verifyRegistration(assert, application, P`template:components/-default`);
verif... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/component/template-only.ts | @@ -1,12 +1,3 @@
-// This is only exported for types, don't use this class directly
-export class TemplateOnlyComponent {
- constructor(public moduleName = '@ember/component/template-only') {}
-
- toString(): string {
- return this.moduleName;
- }
-}
-
/**
@module @ember/component/template-only
@public
@@ ... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/destroyable/index.ts | @@ -5,12 +5,12 @@ export {
enableDestroyableTracking,
isDestroying,
isDestroyed,
-} from '@glimmer/runtime';
+} from '@glimmer/destroyable';
import {
registerDestructor as _registerDestructor,
unregisterDestructor as _unregisterDestructor,
-} from '@glimmer/runtime';
+} from '@glimmer/destroyable';
... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/engine/tests/engine_test.js | @@ -103,7 +103,6 @@ moduleFor(
verifyRegistration(assert, engine, 'component-lookup:main');
verifyRegistration(assert, engine, 'view:-outlet');
- verifyRegistration(assert, engine, P`template:components/-default`);
verifyRegistration(assert, engine, 'template:-outlet');
verifyInjectio... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/helper/index.ts | @@ -1,30 +1,3 @@
-import { getOwner } from '@ember/-internals/owner';
-import { getDebugName } from '@ember/-internals/utils';
-import { assert } from '@ember/debug';
-import { DEBUG } from '@glimmer/env';
-import {
- Arguments,
- Helper as GlimmerHelper,
- HelperCapabilities,
- HelperManager,
- HelperManagerWithD... | true |
Other | emberjs | ember.js | 49d5291600a0b6d70ff9913e10ff9f2f23e2eb7b.json | Update Glimmer VM
Updates the VM to the latest version, which includes a number of major
changes:
- Refactors the resolver to not cache values, as this is unnecessary
- Refactors the resolver to return helper/modifier definitions directly
- Refactors the resolver to return ResolvedComponentDefinitions
- Updates vario... | packages/@ember/modifier/index.ts | @@ -1,2 +1 @@
-export { setModifierManager } from '@glimmer/runtime';
-export { modifierCapabilities as capabilties } from '@ember/-internals/glimmer';
+export { setModifierManager, modifierCapabilities as capabilties } from '@glimmer/manager'; | true |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.