Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and torifat committed Nov 10, 2021
1 parent ad60e6b commit 947a00f
Show file tree
Hide file tree
Showing 16 changed files with 49 additions and 84 deletions.
5 changes: 0 additions & 5 deletions .changeset/chatty-lizards-stare.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cuddly-seas-walk.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/dirty-mugs-punch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/grumpy-hats-work.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/honest-baboons-occur.md

This file was deleted.

30 changes: 0 additions & 30 deletions .changeset/honest-guests-destroy.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/new-beans-speak.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/nice-seals-chew.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ninety-hats-pay.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/rude-sloths-heal.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/smart-jars-compete.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/spotty-swans-pump.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ten-lemons-end.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/tender-schools-approve.md

This file was deleted.

48 changes: 48 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,53 @@
# better-ajv-errors

## 1.0.0

### Major Changes

- 146a859: :package: better-ajv-errors v1

### Breaking Changes

- Dropped support for Node.js `< 12.13.0`
- Default import in CommonJS format no longer supported

**:no_entry_sign: Wrong**

```js
const betterAjvErrors = require('better-ajv-errors');
```

**:white_check_mark: Correct**

```js
const betterAjvErrors = require('better-ajv-errors').default;
// Or
const { default: betterAjvErrors } = require('better-ajv-errors');
```

### Other Changes

- Added ESM support
- Moved from `babel` to `esbuild` _(99% faster build: from `2170ms` to `20ms`)_
- https://github.com/atlassian/better-ajv-errors/pull/101#issuecomment-963129931
- Bumped all `dependencies` & `devDependencies`

- ad60e6b: :nail_care: Improve typings and add test

### Breaking Changes

- New TypeScript types are not fully backward compatible

### Patch Changes

- 768ce0f: Bump ws from 5.2.2 to 5.2.3
- dc45eb7: Bump tar from 4.4.10 to 4.4.19
- 5ef7b1e: Bump path-parse from 1.0.6 to 1.0.7
- 3ef2bbc: Bump tmpl from 1.0.4 to 1.0.5
- 46b57d3: Bump color-string from 1.5.3 to 1.6.0
- d568784: Bump lodash from 4.17.10 to 4.17.21
- e71f114: Bump browserslist from 4.7.0 to 4.17.6

## 0.8.2

### Patch 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": "better-ajv-errors",
"version": "0.8.2",
"version": "1.0.0",
"description": "JSON Schema validation for Human",
"repository": "atlassian/better-ajv-errors",
"main": "./lib/cjs/index.js",
Expand Down

0 comments on commit 947a00f

Please sign in to comment.