Giles Thompson
Giles Thompson
[Deprecation reference](https://deprecations.emberjs.com/v3.x#toc_has-block-and-has-block-params)
Kind of an experiment to see if the embroider scenarios will pass with the latest version.
**Describe the bug** When inspecting a production app built with embroider the Components tab is empty. **To Reproduce** [Minimal reproduction repo here](https://github.com/gilest/embroider-component-inspector-repro) - `git clone [email protected]:gilest/embroider-component-inspector-repro.git` - `yarn` - `ember...
## Description Adds support for TypeScript-flavoured [Glimmer.js](https://glimmerjs.com/) which will be the [component authoring format](https://github.com/ember-template-imports/ember-template-imports) of the [next Edition of Ember.js](https://emberjs.com/editions/polaris/). ## Checklist: - [x] **I am adding a new language.**...
This will be `breaking` due to - Public type declarations - The `getFlashObject` [public API](https://github.com/adopted-ember-addons/ember-cli-flash?tab=readme-ov-file#returning-flash-object) To do - [x] Upgrade guide -> You cannot call `.get()` etc on FlashObject instances...
# V5 - [x] V2 conversion #391 - Consuming apps now require ember-auto-import v2 - Dropped Ember "Classic" support - Dropped Ember 3.24 support. Minimum supported version is now 3.28...
Last commit: 5 years ago Codebase: very far from the current paradigm I recently removed this addon from a project, the code we replaced it with was simple and easier...
Regression introduced in `4.1.3`. Rendering a modal in a Fastboot application will crash the server: ``` const isIOS = /iPad|iPhone|iPod/.test(navigator.userAgent); ^ ReferenceError: navigator is not defined ``` Code here: https://github.com/yapplabs/ember-modal-dialog/commit/65a84d58a99c75540d77cef21d59f578fa3d0f19#diff-e6e71d63dfb8f6989d87cbf93a6109a03917d85d083f2c11044875be495753deR14...
Just curious if the maintainers would accept a PR migrating this addon to the [v2 format](https://rfcs.emberjs.com/id/0507-embroider-v2-package-format/). If so I'd be happy to prepare one. Let me know if switching from...
Following along from README.md. ```ruby image_file = Contentful::Management::File.new image_file.properties[:contentType] = 'image/jpeg' image_file.properties[:fileName] = "#{@artist.slug}.jpg" image_file.properties[:upload] = @artist.image asset = @environment.assets.create(title: @artist.slug, description: '', file: image_file) asset.save asset.process_file ``` Fails with...