Commit 823ee62
committed
chore(release): 8.0.0 [skip ci]
# [8.0.0](v7.4.0...v8.0.0) (2025-09-05)
### Features
* **deps:** update dependencies ([b699e7a](b699e7a))
* **eslint:** migrate from `tseslint.config` to `eslint.defineConfig` ([fa25e0c](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`
```diff
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.1 parent 4cfa093 commit 823ee62
3 files changed
+32
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
1 | 30 | | |
2 | 31 | | |
3 | 32 | | |
| |||
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
0 commit comments