Skip to content

Commit

Permalink
Version Packages (#707)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
seek-oss-ci and github-actions[bot] committed Oct 12, 2022
1 parent 81a2c35 commit 0ea1978
Show file tree
Hide file tree
Showing 8 changed files with 56 additions and 66 deletions.
12 changes: 0 additions & 12 deletions .changeset/few-bees-search.md

This file was deleted.

25 changes: 0 additions & 25 deletions .changeset/funny-lemons-brush.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/kind-guests-walk.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nervous-dragons-marry.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/swift-sloths-relax.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/yellow-rats-act.md

This file was deleted.

55 changes: 55 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,60 @@
# sku

## 11.6.0

### Minor Changes

- Update to eslint-config-seek v10 ([#709](https://github.com/seek-oss/sku/pull/709))

This update involves a few major version jumps, so be sure to read the following release notes for all the breaking changes:

- [v8.0.0](https://github.com/seek-oss/eslint-config-seek/releases/tag/v8.0.0)
- [v9.0.0](https://github.com/seek-oss/eslint-config-seek/releases/tag/v9.0.0)
- [v10.0.0](https://github.com/seek-oss/eslint-config-seek/releases/tag/v10.0.0)

You should be able to automatically fix most lint warnings/errors by running `yarn sku format`.

- Upgrade from jest v27 to v29 ([#709](https://github.com/seek-oss/sku/pull/709))

Please take a look at the following upgrade guides as there may be breaking changes that affect your tests:

- [v27 to v28 upgrade guide](https://jestjs.io/docs/28.x/upgrading-to-jest28)
- [v28 to v29 upgrade guide](https://jestjs.io/docs/upgrading-to-jest29)

Likely the most significant change is the new default snapshot format:

```diff
- Expected: \\"a\\"
+ Expected: "a"

- Object {
- Array []
- }
+ {
+ []
+ }
```

This may require you to update your snapshots.

- Drop support for Node v12 ([#709](https://github.com/seek-oss/sku/pull/709))

Sku now only supports Node v14.15 and above.
Although sku itself does not depend on any Node v14 APIs, Node v12 is [no longer officially supported](https://github.com/nodejs/Release#end-of-life-releases), and many of sku's dependencies no longer support it either.
Please ensure you are using a supported version of Node both locally (e.g. via a `.nvmrc` file) and in CI (check your Docker images).

- Update typescript dependency ([#709](https://github.com/seek-oss/sku/pull/709))

Sku now has a `typescript` dependency of `^4.5.0`.
Previously the version was restricted due to a type issue with `braid-design-system` and `typescript@4.5.0`.
Please take a look at the release notes for recent typescript versions as there may be breaking changes that need to be addressed.

### Patch Changes

- Close `sku start` dev server properly on `SIGINT` ([#706](https://github.com/seek-oss/sku/pull/706))

- Update deps ([#706](https://github.com/seek-oss/sku/pull/706))

## 11.5.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sku",
"version": "11.5.0",
"version": "11.6.0",
"description": "Front-end development toolkit, powered by Webpack, Babel, CSS Modules, Less and Jest",
"main": "index.js",
"bin": {
Expand Down

0 comments on commit 0ea1978

Please sign in to comment.