Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 19, 2023
1 parent 2e7a545 commit 59d7b21
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 23 deletions.
22 changes: 0 additions & 22 deletions .changeset/nine-keys-accept.md

This file was deleted.

23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# skuba

## 7.0.1

### Patch Changes

- **test:** Disable Prettier snapshot formatting ([#1220](https://github.com/seek-oss/skuba/pull/1220))

Jest is not yet compatible with Prettier 3, causing snapshot updates to fail with the following error:

```typescript
TypeError: prettier.resolveConfig.sync is not a function
at runPrettier (node_modules/jest-snapshot/build/InlineSnapshots.js:308:30)
```

We have disabled Prettier snapshot formatting in our Jest preset as a temporary workaround. If you do not use the preset, you can manually modify your `jest.config.ts` like so:

```diff
export default {
+ prettierPath: null,
}
```

You may have to run `skuba format` manually after updating snapshots until [jestjs/jest#14305](https://github.com/jestjs/jest/issues/14305) is resolved.

## 7.0.0

### Major 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": "skuba",
"version": "7.0.0",
"version": "7.0.1",
"private": false,
"description": "SEEK development toolkit for backend applications and packages",
"homepage": "https://github.com/seek-oss/skuba#readme",
Expand Down

0 comments on commit 59d7b21

Please sign in to comment.