Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔖 Update CHANGELOG.md for [email protected], @fast-check/[email protected], @fast-check/[email protected], @fast-check/[email protected] #5242

Merged
merged 8 commits into from
Aug 25, 2024
8 changes: 0 additions & 8 deletions .yarn/versions/0a0bca50.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .yarn/versions/23643846.yml

This file was deleted.

8 changes: 0 additions & 8 deletions .yarn/versions/2afbfedf.yml

This file was deleted.

8 changes: 0 additions & 8 deletions .yarn/versions/2d16b9e2.yml

This file was deleted.

8 changes: 0 additions & 8 deletions .yarn/versions/4e927b19.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .yarn/versions/59366db4.yml

This file was deleted.

5 changes: 0 additions & 5 deletions .yarn/versions/66578bf1.yml

This file was deleted.

20 changes: 20 additions & 0 deletions packages/fast-check/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
# 3.22.0

_Graphemes support on `fc.string`_
[[Code](https://github.com/dubzzz/fast-check/tree/v3.22.0)][[Diff](https://github.com/dubzzz/fast-check/compare/v3.21.0...v3.22.0)]

## Features

- ([PR#5222](https://github.com/dubzzz/fast-check/pull/5222)) Support for grapheme on `fc.string`
- ([PR#5233](https://github.com/dubzzz/fast-check/pull/5233)) Mark as deprecated most of char and string arbitraries
- ([PR#5238](https://github.com/dubzzz/fast-check/pull/5238)) Deprecate `bigInt`'s alternatives

## Fixes

- ([PR#5237](https://github.com/dubzzz/fast-check/pull/5237)) CI: Drop TypeScript rc release channel
dubzzz marked this conversation as resolved.
Show resolved Hide resolved
- ([PR#5199](https://github.com/dubzzz/fast-check/pull/5199)) Doc: Publish release note for 3.21.0
- ([PR#5240](https://github.com/dubzzz/fast-check/pull/5240)) Doc: Better `string`'s deprecation note in documentation
- ([PR#5203](https://github.com/dubzzz/fast-check/pull/5203)) Refactor: Add missing types on exported

---

# 3.21.0

_Support customisable versions on `uuid`_
Expand Down
2 changes: 1 addition & 1 deletion packages/fast-check/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fast-check",
"version": "3.21.0",
"version": "3.22.0",
"description": "Property based testing framework for JavaScript (like QuickCheck)",
"type": "commonjs",
"main": "lib/fast-check.js",
Expand Down
9 changes: 9 additions & 0 deletions packages/jest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 2.0.2

_Export missing types_
[[Code](https://github.com/dubzzz/fast-check/tree/jest%2Fv2.0.2)][[Diff](https://github.com/dubzzz/fast-check/compare/jest%2Fv2.0.1...jest%2Fv2.0.2)]

## Fixes

- ([PR#5201](https://github.com/dubzzz/fast-check/pull/5201)) Refactor: Add missing types on exported

# 2.0.1

_Document minimum requirements of 2.x_
Expand Down
2 changes: 1 addition & 1 deletion packages/jest/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@fast-check/jest",
"description": "Property based testing for Jest based on fast-check",
"version": "2.0.1",
"version": "2.0.2",
"type": "module",
"main": "lib/jest-fast-check.js",
"exports": {
Expand Down
9 changes: 9 additions & 0 deletions packages/poisoning/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 0.2.1

_Export missing types_
[[Code](https://github.com/dubzzz/fast-check/tree/poisoning%2Fv0.2.1)][[Diff](https://github.com/dubzzz/fast-check/compare/poisoning%2Fv0.2.0...poisoning%2Fv0.2.1)]

## Fixes

- ([PR#5202](https://github.com/dubzzz/fast-check/pull/5202)) Refactor: Add missing types on exported

# 0.2.0

_Declare root of the package as ESM_
Expand Down
2 changes: 1 addition & 1 deletion packages/poisoning/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@fast-check/poisoning",
"description": "Set of utilities to ease detection and revert of poisoning",
"version": "0.2.0",
"version": "0.2.1",
"type": "module",
"main": "lib/main.js",
"exports": {
Expand Down
9 changes: 9 additions & 0 deletions packages/vitest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 0.1.3

_Export missing types_
[[Code](https://github.com/dubzzz/fast-check/tree/vitest%2Fv0.1.3)][[Diff](https://github.com/dubzzz/fast-check/compare/vitest%2Fv0.1.2...vitest%2Fv0.1.3)]

## Fixes

- ([PR#5200](https://github.com/dubzzz/fast-check/pull/5200)) Refactor: Add missing types on exported

# 0.1.2

_Allow vitest v2 as a peer dependency_
Expand Down
2 changes: 1 addition & 1 deletion packages/vitest/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@fast-check/vitest",
"description": "Property based testing for Vitest based on fast-check",
"version": "0.1.2",
"version": "0.1.3",
"type": "module",
"main": "lib/vitest-fast-check.js",
"exports": {
Expand Down
Loading