Skip to content

v8.0.0

Choose a tag to compare

@github-actions github-actions released this 05 Sep 11:25
· 40 commits to master since this release

8.0.0 (2025-09-05)

Features

  • deps: update dependencies (b699e7a)
  • eslint: migrate from tseslint.config to eslint.defineConfig (fa25e0c)

BREAKING CHANGES

  • eslint: The boehringer.config(...) utility function has been removed in favor of ESLint core’s defineConfig(...). Replace boehringer.config(...) with defineConfig(...) from eslint/config
import boehringer from '@boehringer-ingelheim/eslint-config';
+ import { defineConfig } from 'eslint/config';

- export default boehringer.config(
+ export default defineConfig(
  boehringer.configs.strict,
  {
    rules: {
      'no-empty-function': 'off',
    },
  }
);
  • deps: Remove support for ESLint v8; minimum required version is now ESLint v9.34.0. Update your dependencies to use ESLint 9.34.0 or newer.