From e248766209ed3b924e9a3ebc8d1acd05c2d0f1da Mon Sep 17 00:00:00 2001 From: FakerJS Bot Date: Mon, 2 Sep 2024 18:44:31 +0000 Subject: [PATCH 1/7] chore(release): 9.0.0 --- CHANGELOG.md | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e542bceba13..20728aa1f52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines. +## [9.0.0](https://github.com/faker-js/faker/compare/v9.0.0-rc.1...v9.0.0) (2024-09-02) + ## [9.0.0-rc.1](https://github.com/faker-js/faker/compare/v9.0.0-rc.0...v9.0.0-rc.1) (2024-08-19) diff --git a/package.json b/package.json index 4d8ccb4b049..b121afa084a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@faker-js/faker", - "version": "9.0.0-rc.1", + "version": "9.0.0", "description": "Generate massive amounts of fake contextual data", "sideEffects": false, "keywords": [ From 42808a757ab345d187aacd3b449c8d1a6eef7d65 Mon Sep 17 00:00:00 2001 From: Shinigami Date: Mon, 2 Sep 2024 20:48:21 +0200 Subject: [PATCH 2/7] infra: update netlify --- netlify.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netlify.toml b/netlify.toml index c53c3c746c4..eb19c43da9a 100644 --- a/netlify.toml +++ b/netlify.toml @@ -17,7 +17,7 @@ # Alias for the main page [[redirects]] - from = "https://v8.fakerjs.dev" + from = "https://v9.fakerjs.dev" to = "https://fakerjs.dev" status = 302 force = true From 5b399458370819c69d74f562e56b4ae473960cfa Mon Sep 17 00:00:00 2001 From: Shinigami Date: Mon, 2 Sep 2024 20:49:56 +0200 Subject: [PATCH 3/7] docs: update version table --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 505305b824d..84c59fd37f9 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,8 @@ For detailed API documentation, please select the version of the documentation y | Version | Website | | :---------: | :------------------------ | | v9 (next) | https://next.fakerjs.dev/ | -| v8 (stable) | https://fakerjs.dev/ | -| v7 (old) | https://v7.fakerjs.dev/ | +| v9 (stable) | https://fakerjs.dev/ | +| v8 (old) | https://v8.fakerjs.dev/ | --- From 2952977b58baf9a4b5b6c258ac34befcce5d082a Mon Sep 17 00:00:00 2001 From: Shinigami Date: Mon, 2 Sep 2024 20:50:40 +0200 Subject: [PATCH 4/7] docs: update version info --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 84c59fd37f9..11d895b8986 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ export const users = faker.helpers.multiple(createRandomUser, { ## 💎 Modules -An in-depth overview of the API methods is available in the documentation for [v8 (stable)](https://fakerjs.dev/api/) and [v9.\* (next)](https://next.fakerjs.dev/api/). +An in-depth overview of the API methods is available in the documentation for [v9 (stable)](https://fakerjs.dev/api/) and [v9.\* (next)](https://next.fakerjs.dev/api/). ### Templates From 0572fbfdaa351858a21a6767fb99d539000b28f1 Mon Sep 17 00:00:00 2001 From: Shinigami Date: Mon, 2 Sep 2024 20:52:14 +0200 Subject: [PATCH 5/7] docs: update version pin --- docs/guide/usage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/usage.md b/docs/guide/usage.md index 9c1e1612890..ad81c7600b6 100644 --- a/docs/guide/usage.md +++ b/docs/guide/usage.md @@ -74,7 +74,7 @@ const randomEmail = faker.internet.email(); // Tomasa_Ferry14@hotmail.com ``` ::: info Note -It is highly recommended to use version tags when importing libraries in Deno, e.g: `import { faker } from "https://esm.sh/@faker-js/faker@v8.4.1"`. +It is highly recommended to use version tags when importing libraries in Deno, e.g: `import { faker } from "https://esm.sh/@faker-js/faker@v9.0.0"`. ::: ### Alternative CDN links From c200d5fdf1d6d6d6d10b5aa1149bd9b55139e866 Mon Sep 17 00:00:00 2001 From: Shinigami92 Date: Mon, 2 Sep 2024 21:10:05 +0200 Subject: [PATCH 6/7] docs: enhance changelog --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 20728aa1f52..f7f5ad4b27f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. See [commit ## [9.0.0](https://github.com/faker-js/faker/compare/v9.0.0-rc.1...v9.0.0) (2024-09-02) + +No noteworthy changes to [9.0.0-rc.1](https://github.com/faker-js/faker/blob/next/CHANGELOG.md#900-rc1-2024-08-19) + +We are happy to invite you to read our [Migration Guide](https://v9.fakerjs.dev/guide/upgrading.html). + ## [9.0.0-rc.1](https://github.com/faker-js/faker/compare/v9.0.0-rc.0...v9.0.0-rc.1) (2024-08-19) From e0b057968dd3446fce79305e40dc24f6cea65ea8 Mon Sep 17 00:00:00 2001 From: Shinigami Date: Tue, 3 Sep 2024 08:06:44 +0200 Subject: [PATCH 7/7] Update CHANGELOG.md Co-authored-by: ST-DDT --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f7f5ad4b27f..1d5462bc317 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ All notable changes to this project will be documented in this file. See [commit No noteworthy changes to [9.0.0-rc.1](https://github.com/faker-js/faker/blob/next/CHANGELOG.md#900-rc1-2024-08-19) -We are happy to invite you to read our [Migration Guide](https://v9.fakerjs.dev/guide/upgrading.html). +For those upgrading from earlier versions, please refer to our [Migration Guide](https://v9.fakerjs.dev/guide/upgrading.html) for detailed instructions. ## [9.0.0-rc.1](https://github.com/faker-js/faker/compare/v9.0.0-rc.0...v9.0.0-rc.1) (2024-08-19)