Skip to content

Commit

Permalink
drop support for Ember versions older than 4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeAstapov committed Jul 9, 2024
1 parent 01f8a60 commit 6ec336f
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ jobs:
fail-fast: false
matrix:
try-scenario:
- ember-lts-4.8
- ember-lts-4.12
- ember-lts-5.4
- ember-lts-5.8
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

## Compatibility

- Ember.js v4.12 or above
- Ember.js v4.8 or above
- Embroider or ember-auto-import v2

## Installation
Expand Down
3 changes: 1 addition & 2 deletions ember-lazy-mount/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
"dependencies": {
"@ember/test-waiters": "^3.1.0",
"@embroider/addon-shim": "^1.8.7",
"@embroider/macros": "^1.16.5",
"decorator-transforms": "^2.0.0"
},
"devDependencies": {
Expand All @@ -55,7 +54,7 @@
"rollup": "^4.18.1"
},
"peerDependencies": {
"ember-source": ">= 4.0.0"
"ember-source": "^4.8.0 || >= 5"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
Expand Down
10 changes: 7 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions test-app/config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ module.exports = async function () {
return {
usePnpm: true,
scenarios: [
{
name: 'ember-lts-4.8',
npm: {
devDependencies: {
'ember-source': '~4.8.0',
},
},
},
{
name: 'ember-lts-4.12',
npm: {
Expand Down

0 comments on commit 6ec336f

Please sign in to comment.