Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 32 additions & 2 deletions .try.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,24 @@ const compatDeps = {
export default {
scenarios: [
{
name: 'ember-lts-5.8',
name: 'ember-lts-3.28',
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think 3.28 support is needed since it was dropped in v3?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don' think so? it just says ember-cli was updated?

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The description of PR #81 explicitly mentions that it drops support for ember < 4.12, which is why it was marked as breaking?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah ok, I was just reading the CHANGELOG.

But, it seems they dropped support only because the blueprint made it harder to support. It's very easy now

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fair enough, but if you widen the range again I would also update the versions in the readme. It also mentions 4.12 at the moment 😄 .

npm: {
devDependencies: {
'ember-source': '~5.8.0',
'ember-source': '~3.28.0',
...compatDeps,
'ember-cli': '^4.12',
},
},
env: {
ENABLE_COMPAT_BUILD: true,
},
files: compatFiles,
},
{
name: 'ember-lts-4.12',
npm: {
devDependencies: {
'ember-source': '~4.12.0',
...compatDeps,
},
},
Expand Down Expand Up @@ -59,6 +73,22 @@ export default {
},
},
},
{
name: 'ember-lts-6.8',
npm: {
devDependencies: {
'ember-source': 'npm:ember-source@~6.8.0',
},
},
},
{
name: 'ember-lts-6.12',
npm: {
devDependencies: {
'ember-source': 'npm:ember-source@~6.12.0',
},
},
},
{
name: 'ember-latest',
npm: {
Expand Down
Loading