Skip to content

v2.1.1

Choose a tag to compare

@Tobbe Tobbe released this 19 Dec 11:42
· 1887 commits to main since this release

Release Notes

This release makes the switch to eslint's flat config introduce fewer eslint rule changes. The goal is that no new errors/warnings should be introduced to your codebase. Please file an issue if you see something new.

Changelog

🛠️ Fixes

fix(eslint): Make new flat config more compatible with the old legacy config (#730) by @Tobbe

A user reported seeing new eslint errors after upgrading to Cedar v2

/home/me/dev/project/web/src/test-helpers.ts
  165:3  error  'mockGraphQLQuery' is not defined  no-undef

/home/me/dev/project/web/src/test/helpers.ts
  30:3  error  'mockCurrentUser' is not defined  no-undef
  68:4   error  'GraphQLMutationHookOptions' is not defined  no-undef
  68:36  error  'GraphQLOperationVariables' is not defined   no-undef

This PR addresses those issues, and a few more I noticed while working on the config

📦 Dependencies

Click to see all 27 dependency updates

🧹 Chore

Click to see all chore contributions
  • chore(ci): Add GitHub stale action. Mark issues and PRs as stale after 30 days (3384169) by @Tobbe
  • chore(ci): Fix permissions and message for Stale action (9652dc7) by @Tobbe
  • chore(jobs): Fix timing issue in flaky forever loop unit test by mocking timers (#739) by @Tobbe