-
-
Notifications
You must be signed in to change notification settings - Fork 144
Remove ember-cli-string-helpers
addon
#1666
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
Comments
For random bypassers:
Means: // package.json
{
"dependencies": {
"@ember/string": "^3.1.1",
},
} |
MichalBryxi
added a commit
to MichalBryxi/ember-cli-addon-docs
that referenced
this issue
Apr 23, 2025
- This pulls @ember/string 3.1.1 into dependent project and that causes a lot of issues - Since we have `capitalize` in @ember/string, we can just call that in our internal helper - Also bumped internal version of @ember/string to v4.x Fixes ember-learn#1666
MichalBryxi
added a commit
to MichalBryxi/ember-cli-addon-docs
that referenced
this issue
Apr 23, 2025
- This pulls @ember/string 3.1.1 into dependent project and that causes a lot of issues - Since we have `capitalize` in @ember/string, we can just call that in our internal helper - Also bumped internal version of @ember/string to v4.x Fixes ember-learn#1666
MichalBryxi
added a commit
to MichalBryxi/ember-cli-addon-docs
that referenced
this issue
May 2, 2025
- This pulls @ember/string 3.1.1 into dependent project and that causes a lot of issues - Since we have `capitalize` in @ember/string, we can just call that in our internal helper - Also bumped internal version of @ember/string to v4.x Fixes ember-learn#1666
MichalBryxi
added a commit
to MichalBryxi/ember-cli-addon-docs
that referenced
this issue
May 2, 2025
- This pulls @ember/string 3.1.1 into dependent project and that causes a lot of issues - Since we have `capitalize` in @ember/string, we can just call that in our internal helper - Also bumped internal version of @ember/string to v4.x Fixes ember-learn#1666
MichalBryxi
added a commit
to MichalBryxi/ember-cli-addon-docs
that referenced
this issue
May 3, 2025
- This pulls @ember/string 3.1.1 into dependent project and that causes a lot of issues - Since we have `capitalize` in @ember/string, we can just call that in our internal helper - Also bumped internal version of @ember/string to v4.x Fixes ember-learn#1666
MichalBryxi
added a commit
to MichalBryxi/ember-cli-addon-docs
that referenced
this issue
May 3, 2025
- Previously it pulls @ember/string 3.1.1 into dependent project and that causes a lot of issues Fixes ember-learn#1666
SergeAstapov
pushed a commit
that referenced
this issue
May 3, 2025
* fix: Remove ember-cli-string-helpers - This pulls @ember/string 3.1.1 into dependent project and that causes a lot of issues - Since we have `capitalize` in @ember/string, we can just call that in our internal helper - Also bumped internal version of @ember/string to v4.x Fixes #1666 * fix: ember-tether & testing issues - As per [ember-tether documentation](https://github.com/yapplabs/ember-tether) in testing mode we have to make sure that the portal is attached to correct DOM scope > Tether works by appending tethered elements to the <body> tag. Unfortunately, this moves your content outside of the Ember application rootElement during acceptance testing. This breaks event dispatch and action handling, including traditional Ember test helpers like click. This fixes all tests that fail because search popup can't be find.
MichalBryxi
added a commit
to MichalBryxi/ember-cli-addon-docs
that referenced
this issue
May 4, 2025
- This pulls @ember/string 3.1.1 into dependent project and that causes a lot of issues - Since we have `capitalize` in @ember/string, we can just call that in our internal helper - Also bumped internal version of @ember/string to v4.x Fixes ember-learn#1666
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When I upgrade my addon to use
@ember/string
v4.0, my addon build will throw an error that says:"Module not found: Error: ember-cli-string-helpers is trying to import the app's @ember/string package, but it seems to be missing"
I noticed that the
ember-cli-string-helpers
addon was archived in October 2024. I think it would be a good idea to remove this package and replace it with something that is maintained. For now, the way to fix this issue is by locking the version of@ember/string
to 3.1.1.The text was updated successfully, but these errors were encountered: