Skip to content

Add Ember 4.12 scenario to default CI workflows#270

Merged
phndiaye merged 5 commits into
masterfrom
pn/cd-203
Jun 25, 2026
Merged

Add Ember 4.12 scenario to default CI workflows#270
phndiaye merged 5 commits into
masterfrom
pn/cd-203

Conversation

@phndiaye

Copy link
Copy Markdown
Member

What does this PR do?

Make the compatibility checks running weekly until now a default part of the CI alongside the current test suite checks.

The idea is that for every committed change, we will now run the test suite against both ember-3.28 (current) and ember-4.12 (next) to ensure nobody accidentally introduce deprecated code.

What are the observable changes?

🧑‍💻 Developer Heads Up

⚡ Since we are using Ember Octane now:

  • Feel free to migrate existing components to Glimmer Components.
  • Write new ones exclusively in it.

Useful Resource : Ember Octane vs Classic Cheat Sheet

Good PR checklist

  • Title makes sense
  • Is against the correct branch
  • Only addresses one issue
  • Properly assigned
  • Added/updated tests
  • Added/updated documentation
  • Migrated touched components to Glimmer Components
  • Properly labeled

@phndiaye phndiaye requested a review from a team as a code owner June 22, 2026 16:04
@phndiaye phndiaye requested review from Elodie-DeMatteis-Upf, aprentout and nathalieArnoux and removed request for a team June 22, 2026 16:04
@linear-code

linear-code Bot commented Jun 22, 2026

Copy link
Copy Markdown

CD-203

CD-265

Comment thread addon/types/table.js
Comment on lines -81 to -92
// eslint-disable-next-line ember/no-deeply-nested-dependent-keys-with-each
appliedFilters: computed('columns.@each.filters.[]', function () {
return this.columns
.map((column) => {
if (!isEmpty(column.filters)) {
let _c = {};
_c[column.key] = column.filters;
return _c;
}
})
.compact();
}),

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

Comment thread package.json
"remove-pre-push-hook": "rm -rf ./.git/hooks/pre-push"
},
"dependencies": {
"@ember/string": "^4.0.1",

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

Was used in the codebase without being declared a dependency. Ember 4.12 is less forgiving about it

@phndiaye phndiaye merged commit 64ca6ad into master Jun 25, 2026
5 checks passed
@phndiaye phndiaye deleted the pn/cd-203 branch June 25, 2026 14:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants