Skip to content

Commit

Permalink
Merge branch 'next' into remove-v8-deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinigami92 committed Jan 26, 2024
2 parents 86b71f4 + 0730390 commit 2ef96fb
Show file tree
Hide file tree
Showing 7 changed files with 264 additions and 273 deletions.
12 changes: 6 additions & 6 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"forwardPorts": [5173],
"portsAttributes": {
"5173": {
"label": "Docs"
}
"label": "Docs",
},
},

// Use 'postCreateCommand' to run commands after the container is created.
Expand All @@ -26,10 +26,10 @@
"editorconfig.editorconfig",
"esbenp.prettier-vscode",
"redhat.vscode-yaml",
"github.vscode-pull-request-github"
]
}
}
"github.vscode-pull-request-github",
],
},
},

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [8.4.0](https://github.com/faker-js/faker/compare/v8.3.1...v8.4.0) (2024-01-24)


### Features

* **helpers:** add support for complex intermediate types ([#2550](https://github.com/faker-js/faker/issues/2550)) ([24482a3](https://github.com/faker-js/faker/commit/24482a30042eec5b553b30d60985e89fd69a8660))
* **number:** add parameter `fractionDigits` in float ([#1855](https://github.com/faker-js/faker/issues/1855)) ([41d8778](https://github.com/faker-js/faker/commit/41d87789c7ff353acfd0f5ca88a99c0d1fd3b500))
* **person:** add job titles for fr ([#2531](https://github.com/faker-js/faker/issues/2531)) ([ba28ab6](https://github.com/faker-js/faker/commit/ba28ab6e59009cceb5b691ddd212e09df22b586e))


### Bug Fixes

* **finance:** correct VG IBAN format ([#2552](https://github.com/faker-js/faker/issues/2552)) ([b8049d1](https://github.com/faker-js/faker/commit/b8049d171086bce7b46eb617c88f44cfdd019e00))
* **internet:** username method to return value that always includes… ([#2506](https://github.com/faker-js/faker/issues/2506)) ([0ee1c67](https://github.com/faker-js/faker/commit/0ee1c6751ec97e10ca1436d2b100b4acb1ac90ec))
* **locale:** incomplete airline names in zh_CN ([#2558](https://github.com/faker-js/faker/issues/2558)) ([5525b55](https://github.com/faker-js/faker/commit/5525b55cc47fa97b55de52fccff7ab51633e639a))
* **number:** improve float generation for precisions of form 10^-n ([#2581](https://github.com/faker-js/faker/issues/2581)) ([39c715d](https://github.com/faker-js/faker/commit/39c715d916d69e83795932260f1681df3241db91))

### [8.3.1](https://github.com/faker-js/faker/compare/v8.3.0...v8.3.1) (2023-11-14)


Expand Down
4 changes: 2 additions & 2 deletions cypress/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"types": ["cypress"],
"esModuleInterop": true,
"noEmit": true,
"resolveJsonModule": true
"resolveJsonModule": true,
},
"include": ["**/*.ts"]
"include": ["**/*.ts"],
}
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@faker-js/faker",
"version": "8.3.1",
"version": "8.4.0",
"description": "Generate massive amounts of fake contextual data",
"keywords": [
"faker",
Expand Down Expand Up @@ -95,18 +95,18 @@
"@eslint-types/typescript-eslint": "~6.18.1",
"@eslint-types/unicorn": "~49.0.0",
"@types/markdown-it": "~13.0.7",
"@types/node": "~20.11.5",
"@types/node": "~20.11.6",
"@types/sanitize-html": "~2.9.5",
"@types/semver": "~7.5.6",
"@types/validator": "~13.11.8",
"@typescript-eslint/eslint-plugin": "~6.18.1",
"@typescript-eslint/parser": "~6.18.1",
"@typescript-eslint/eslint-plugin": "~6.19.0",
"@typescript-eslint/parser": "~6.19.0",
"@vitest/coverage-v8": "~0.34.6",
"@vitest/ui": "~0.34.7",
"@vueuse/core": "~10.7.2",
"conventional-changelog-cli": "~4.1.0",
"cypress": "~13.6.3",
"esbuild": "~0.19.11",
"esbuild": "~0.19.12",
"eslint": "~8.56.0",
"eslint-config-prettier": "~9.1.0",
"eslint-define-config": "~2.1.0",
Expand All @@ -118,7 +118,7 @@
"eslint-plugin-vitest": "~0.3.20",
"glob": "~10.3.10",
"npm-run-all": "~4.1.5",
"prettier": "3.2.2",
"prettier": "3.2.4",
"prettier-plugin-organize-imports": "~3.2.4",
"rimraf": "~5.0.5",
"sanitize-html": "~2.11.0",
Expand All @@ -128,10 +128,10 @@
"typedoc": "~0.25.7",
"typescript": "~4.9.5",
"validator": "~13.11.0",
"vite": "~4.5.1",
"vitepress": "1.0.0-rc.36",
"vite": "~4.5.2",
"vitepress": "1.0.0-rc.39",
"vitest": "~0.34.6",
"vue": "~3.4.14"
"vue": "~3.4.15"
},
"packageManager": "pnpm@8.5.1",
"engines": {
Expand Down
Loading

0 comments on commit 2ef96fb

Please sign in to comment.