Skip to content

Commit

Permalink
fix(deps): widen ranges of ember-infector and @ember/string
Browse files Browse the repository at this point in the history
Some apps using `ember-caluma` might still be using `ember-data` v4
which requires `@ember/string` v3 and `ember-inflector` v4. In order to
make dependency resolution easier for them we allow all those versions.
  • Loading branch information
anehx committed Nov 25, 2024
1 parent 832507d commit 3e07a88
Show file tree
Hide file tree
Showing 6 changed files with 465 additions and 236 deletions.
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"dependencies": {
"@apollo/client": "^3.11.10",
"@babel/core": "^7.26.0",
"@ember/string": "^4.0.0",
"@ember/string": "^3.1.1 || ^4.0.0",
"@embroider/macros": "^1.16.9",
"@glimmer/tracking": "^1.1.2",
"ember-apollo-client": "~4.0.2",
Expand All @@ -24,7 +24,7 @@
"ember-cli-htmlbars": "^6.3.0",
"ember-concurrency": "^4.0.2",
"ember-fetch": "^8.1.2",
"ember-inflector": "4.0.3",
"ember-inflector": "^4.0.3 || ^5.0.1",
"ember-intl": "^7.0.7",
"ember-modify-based-class-resource": "^1.1.1",
"ember-uikit": "^9.1.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/distribution/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"dependencies": {
"@babel/core": "^7.26.0",
"@ember/legacy-built-in-components": "^0.5.0",
"@ember/string": "^4.0.0",
"@ember/string": "^3.1.1 || ^4.0.0",
"@embroider/macros": "^1.16.9",
"@glimmer/component": "^1.1.2",
"@glimmer/tracking": "^1.1.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/form-builder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"@babel/core": "^7.26.0",
"@ember/legacy-built-in-components": "^0.5.0",
"@ember/render-modifiers": "^2.1.0",
"@ember/string": "^4.0.0",
"@ember/string": "^3.1.1 || ^4.0.0",
"@embroider/macros": "^1.16.9",
"@glimmer/component": "^1.1.2",
"@glimmer/tracking": "^1.1.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/form/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"dependencies": {
"@babel/core": "^7.26.0",
"@ember/string": "^4.0.0",
"@ember/string": "^3.1.1 || ^4.0.0",
"@embroider/macros": "^1.16.9",
"@embroider/util": "^1.13.2",
"@glimmer/component": "^1.1.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/testing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"dependencies": {
"@babel/core": "^7.26.0",
"@ember/string": "^4.0.0",
"@ember/string": "^3.1.1 || ^4.0.0",
"@faker-js/faker": "^9.2.0",
"broccoli-funnel": "^3.0.8",
"broccoli-merge-trees": "^4.2.0",
Expand All @@ -24,7 +24,7 @@
"ember-cli-htmlbars": "^6.3.0",
"ember-cli-mirage": "^3.0.4",
"ember-fetch": "^8.1.2",
"ember-inflector": "4.0.3",
"ember-inflector": "^4.0.3 || ^5.0.1",
"graphql": "^15.9.0",
"graphql-iso-date": "^3.6.1",
"graphql-tools": "^4.0.8",
Expand Down
Loading

0 comments on commit 3e07a88

Please sign in to comment.