diff --git a/.changeset/great-starfishes-hope.md b/.changeset/great-starfishes-hope.md deleted file mode 100644 index dd5042ebd..000000000 --- a/.changeset/great-starfishes-hope.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'skuba': minor ---- - -deps: eslint-config-skuba 2 - -This major upgrade removes [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) due to configuration issues experienced on non-React projects. - -Raise a GitHub issue or send us a Slack message if this negatively affects your project. diff --git a/.changeset/nasty-dryers-end.md b/.changeset/nasty-dryers-end.md deleted file mode 100644 index d21b3a4d9..000000000 --- a/.changeset/nasty-dryers-end.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'skuba': minor ---- - -start: Add `http.Server` support - -`skuba start` can now be used to create a live-reloading server for `http.Server` instances. See the [`skuba start` documentation](https://seek-oss.github.io/skuba/docs/cli/run.html#skuba-start) for more information. diff --git a/.changeset/sixty-dancers-own.md b/.changeset/sixty-dancers-own.md deleted file mode 100644 index 60c956da9..000000000 --- a/.changeset/sixty-dancers-own.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -'skuba': minor ---- - -deps: eslint-config-seek 11 - -This major upgrade enforces [consistent type imports and exports](https://typescript-eslint.io/blog/consistent-type-imports-and-exports-why-and-how/). - -```diff -- import { Context } from 'aws-lambda'; -+ import type { Context } from 'aws-lambda'; -``` - -`skuba format` will modify your imports and exports to be consistent with linting rules. These changes are automatically committed if you have [GitHub autofixes](https://seek-oss.github.io/skuba/docs/deep-dives/github.html#github-autofixes) enabled on your project. diff --git a/CHANGELOG.md b/CHANGELOG.md index b9a6743c3..db1eed175 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ # skuba +## 6.1.0 + +### Minor Changes + +- **deps:** eslint-config-skuba 2 ([#1155](https://github.com/seek-oss/skuba/pull/1155)) + + This major upgrade removes [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) due to configuration issues experienced on non-React projects. + + Raise a GitHub issue or send us a Slack message if this negatively affects your project. + +- **start:** Add `http.Server` support ([#1159](https://github.com/seek-oss/skuba/pull/1159)) + + `skuba start` can now be used to create a live-reloading server for `http.Server` instances. See the [`skuba start` documentation](https://seek-oss.github.io/skuba/docs/cli/run.html#skuba-start) for more information. + +- **deps:** eslint-config-seek 11 ([#1155](https://github.com/seek-oss/skuba/pull/1155)) + + This major upgrade enforces [consistent type imports and exports](https://typescript-eslint.io/blog/consistent-type-imports-and-exports-why-and-how/). + + ```diff + - import { Context } from 'aws-lambda'; + + import type { Context } from 'aws-lambda'; + ``` + + `skuba format` will modify your imports and exports to be consistent with linting rules. These changes are automatically committed if you have [GitHub autofixes](https://seek-oss.github.io/skuba/docs/deep-dives/github.html#github-autofixes) enabled on your project. + ## 6.0.2 ### Patch Changes diff --git a/package.json b/package.json index 4ee5a1e71..f8dc06596 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "skuba", - "version": "6.0.2", + "version": "6.1.0", "private": false, "description": "SEEK development toolkit for backend applications and packages", "homepage": "https://github.com/seek-oss/skuba#readme",