From 082339b587f18ce6b2c735bf65ef1e5977de131f Mon Sep 17 00:00:00 2001 From: ST-DDT Date: Sun, 4 Sep 2022 12:31:28 +0200 Subject: [PATCH 01/13] docs: publish v8 roadmap --- docs/.vitepress/config.ts | 13 +++++ docs/about/announcements/2022-09-08.md | 25 +++++++++ docs/about/roadmap/index.md | 17 +++++++ docs/about/roadmap/v6.md | 70 ++++++++++++++++++++++++++ docs/about/roadmap/v7.md | 37 ++++++++++++++ docs/about/roadmap/v8.md | 34 +++++++++++++ 6 files changed, 196 insertions(+) create mode 100644 docs/about/announcements/2022-09-08.md create mode 100644 docs/about/roadmap/index.md create mode 100644 docs/about/roadmap/v6.md create mode 100644 docs/about/roadmap/v7.md create mode 100644 docs/about/roadmap/v8.md diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index 87733d59fc8..3624272cbf6 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -165,6 +165,19 @@ export default defineConfig({ link: '/about/announcements', items: [ { text: '2022-01-14', link: '/about/announcements/2022-01-14' }, + { text: '2022-09-08', link: '/about/announcements/2022-09-08' }, + ], + }, + { + text: 'Roadmap', + link: '/about/roadmap/', + items: [ + { text: 'v8 - Make Faker Handier', link: '/about/roadmap/v8' }, + { + text: 'v7 - Cleanup and Improvements', + link: '/about/roadmap/v7', + }, + { text: 'v6 - Continue Faker', link: '/about/roadmap/v6' }, ], }, { diff --git a/docs/about/announcements/2022-09-08.md b/docs/about/announcements/2022-09-08.md new file mode 100644 index 00000000000..3d4776dbc14 --- /dev/null +++ b/docs/about/announcements/2022-09-08.md @@ -0,0 +1,25 @@ +--- +editLink: false +--- + +# New Roadmap Published + +We haven't made any announcements for a long time, but we are happy to announce that we just published the new roadmap for v8. + +Our main focus for v8 is to make Faker more leightweight and flexible. +A huge part of that is better treeshaking support. + +Currently if you just want to generate some reproducible numbers, then you need the entire Faker package. +First you have to download almost 10MB of data (CJS+ESM) and ship half of that (one of the two). + +We won't tackle the download size for now, but we hope to reduce your shipped code size significantly. +This should also improve js startup/parse times. + +If we are successful, you will only need a few KB of code for numbers and only the locales you need for more complex things such as names. +With a bit of setup on your side you can ship only the parts of the locale data you actually need. +So no more finance data and mime-types, just for a first name. + +For more details refer to our roadmap: + +- [Roadmap - Overview](../roadmap/index.html) +- [Roadmap v8 - Make Faker Handier](../roadmap/v8.html) diff --git a/docs/about/roadmap/index.md b/docs/about/roadmap/index.md new file mode 100644 index 00000000000..0f34f0a5244 --- /dev/null +++ b/docs/about/roadmap/index.md @@ -0,0 +1,17 @@ +--- +editLink: false +--- + +# Roadmap + +These pages outline our roadmap for past and future versions. +Click on the specific versions for more details. + +## Upcoming Versions + +- [v8 - Make Faker Handier](v8.html) + +## Previous Versions + +- [v6 - Continue Faker](v6.html) +- [v7 - Cleanup and Improvements](v7.html) diff --git a/docs/about/roadmap/v6.md b/docs/about/roadmap/v6.md new file mode 100644 index 00000000000..010c8f57946 --- /dev/null +++ b/docs/about/roadmap/v6.md @@ -0,0 +1,70 @@ +--- +editLink: false +--- + +# v6 - Continue Faker + +The main task of v6 is fixing technical debts and some cleanup. + +## v6.0 - Ensure project foundation + +- Rewrite project in TypeScript +- Update dependencies and automate the process +- Add/Extend build pipeline +- Write Jsdocs for most of the modules and methods +- Add online documentation/website + +[v6.0 Tasks](https://github.com/faker-js/faker/milestone/1) + +**Releases** + +- [v6.0.0-alpha.0](https://github.com/faker-js/faker/releases/tag/v6.0.0-alpha.0) +- [v6.0.0-alpha.2](https://github.com/faker-js/faker/releases/tag/v6.0.0-alpha.2) +- [v6.0.0-alpha.3](https://github.com/faker-js/faker/releases/tag/v6.0.0-alpha.3) +- [v6.0.0-alpha.4](https://github.com/faker-js/faker/releases/tag/v6.0.0-alpha.4) +- [v6.0.0-alpha.5](https://github.com/faker-js/faker/releases/tag/v6.0.0-alpha.5) +- [v6.0.0-alpha.6](https://github.com/faker-js/faker/releases/tag/v6.0.0-alpha.6) +- [v6.0.0-alpha.7](https://github.com/faker-js/faker/releases/tag/v6.0.0-alpha.7) +- [v6.0.0-beta.0](https://github.com/faker-js/faker/releases/tag/v6.0.0-beta.0) +- [v6.0.0](https://github.com/faker-js/faker/releases/tag/v6.0.0) + +## v6.1 - First Bugfixes + +- Fix bugs in the implementation and data +- Standardize some method parameters +- Deprecate duplicate methods +- Extend unit tests +- Link missing locates +- Improve documentation + +[v6.1 Tasks](https://github.com/faker-js/faker/milestone/2) + +**Releases** + +- [v6.1.0](https://github.com/faker-js/faker/releases/tag/v6.1.0) +- [v6.1.1](https://github.com/faker-js/faker/releases/tag/v6.1.1) +- [v6.1.2](https://github.com/faker-js/faker/releases/tag/v6.1.2) + +## v6.2 - First New Features + +- Introduce the first new features +- Add/Update some locales +- More cleanup + +[v6.2 Tasks](https://github.com/faker-js/faker/milestone/5) + +**Releases** + +- [v6.2.0](https://github.com/faker-js/faker/releases/tag/v6.2.0) + +## v6.x + +Further improvements + +- [v6.3 Tasks](https://github.com/faker-js/faker/milestone/7) +- [v6.x Tasks](https://github.com/faker-js/faker/milestone/3) + +**Releases** + +- [v6.3.0](https://github.com/faker-js/faker/releases/tag/v6.3.0) +- [v6.3.1](https://github.com/faker-js/faker/releases/tag/v6.3.1) diff --git a/docs/about/roadmap/v7.md b/docs/about/roadmap/v7.md new file mode 100644 index 00000000000..6d28de158ea --- /dev/null +++ b/docs/about/roadmap/v7.md @@ -0,0 +1,37 @@ +--- +editLink: false +--- + +# v7 - Cleanup and Improvements + +In v7 we removed some methods that we deprecated in v6 and restructured the sources. It is the first release with small breaking changes since we maintain it. + +## v7.0 - Structurally Breaking Changes + +- Remove deprecations +- Remove faker default export +- Target es2020 +- Drop Node v12 support +- Reorganize source folder +- More features + +[v7.0 Tasks](https://github.com/faker-js/faker/milestone/8) + +**Releases** + +- [v7.0.0](https://github.com/faker-js/faker/releases/tag/v7.0.0) +- [v7.0.1](https://github.com/faker-js/faker/releases/tag/v7.0.1) + +## v7.x + +Further improvements + +- [v7.x Tasks](https://github.com/faker-js/faker/milestone/4) + +**Releases** + +- [v7.1.0](https://github.com/faker-js/faker/releases/tag/v7.1.0) +- [v7.2.0](https://github.com/faker-js/faker/releases/tag/v7.2.0) +- [v7.3.0](https://github.com/faker-js/faker/releases/tag/v7.3.0) +- [v7.4.0](https://github.com/faker-js/faker/releases/tag/v7.4.0) +- [v7.5.0](https://github.com/faker-js/faker/releases/tag/v7.5.0) diff --git a/docs/about/roadmap/v8.md b/docs/about/roadmap/v8.md new file mode 100644 index 00000000000..7b86ac0916e --- /dev/null +++ b/docs/about/roadmap/v8.md @@ -0,0 +1,34 @@ +--- +editLink: false +--- + +# v8 - Make Faker Handier + +Our main goal in v8 is to make faker more lightweight and more flexible. + +## v8.0 - Module Re-Shuffling + +Finish the module shuffling. + +- Remove multi locale/locale change support +- Move String and Number methods into own modules +- Rename Name module to Person +- Check modules and methods regarding their name and location +- Try to eliminate circular dependencies in modules +- Standardize function parameters and defaults +- Rewrite image module / providers + +[v8.0 Tasks](https://github.com/faker-js/faker/milestone/10) + +## v8.1 - Split Faker Class + +Split the Faker class into smaller units so you don't have ship an entire locale if you only generate some strings and numbers. + +[v8.1 Tasks](https://github.com/faker-js/faker/milestone/11) + +## v8.x - Tree-Shakeable Module-Functions + +Refactor modules to be tree shakeable. +Potentially allowing individual Faker methods to be called by themselves. + +[v8.x Tasks](https://github.com/faker-js/faker/milestone/12) From eab4ac42e1d222ecd217776199ed179b28684450 Mon Sep 17 00:00:00 2001 From: ST-DDT Date: Sun, 4 Sep 2022 14:13:40 +0200 Subject: [PATCH 02/13] chore: apply suggestions Co-authored-by: Shinigami --- docs/about/roadmap/v6.md | 4 ++-- docs/about/roadmap/v8.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/about/roadmap/v6.md b/docs/about/roadmap/v6.md index 010c8f57946..049c86acc04 100644 --- a/docs/about/roadmap/v6.md +++ b/docs/about/roadmap/v6.md @@ -11,7 +11,7 @@ The main task of v6 is fixing technical debts and some cleanup. - Rewrite project in TypeScript - Update dependencies and automate the process - Add/Extend build pipeline -- Write Jsdocs for most of the modules and methods +- Write JSDocs for most of the modules and methods - Add online documentation/website [v6.0 Tasks](https://github.com/faker-js/faker/milestone/1) @@ -34,7 +34,7 @@ The main task of v6 is fixing technical debts and some cleanup. - Standardize some method parameters - Deprecate duplicate methods - Extend unit tests -- Link missing locates +- Link missing locales - Improve documentation [v6.1 Tasks](https://github.com/faker-js/faker/milestone/2) diff --git a/docs/about/roadmap/v8.md b/docs/about/roadmap/v8.md index 7b86ac0916e..607799c26a4 100644 --- a/docs/about/roadmap/v8.md +++ b/docs/about/roadmap/v8.md @@ -4,7 +4,7 @@ editLink: false # v8 - Make Faker Handier -Our main goal in v8 is to make faker more lightweight and more flexible. +Our main goal in v8 is to make Faker more lightweight and more flexible. ## v8.0 - Module Re-Shuffling From 6aadc4d981ca17eecf600fac35e87a92ef1ef07d Mon Sep 17 00:00:00 2001 From: ST-DDT Date: Sun, 4 Sep 2022 14:16:38 +0200 Subject: [PATCH 03/13] chore: fix tense --- docs/about/roadmap/v7.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/about/roadmap/v7.md b/docs/about/roadmap/v7.md index 6d28de158ea..a6eb085636f 100644 --- a/docs/about/roadmap/v7.md +++ b/docs/about/roadmap/v7.md @@ -4,7 +4,8 @@ editLink: false # v7 - Cleanup and Improvements -In v7 we removed some methods that we deprecated in v6 and restructured the sources. It is the first release with small breaking changes since we maintain it. +In v7 we will remove some methods that we have deprecated in v6 and restructure the sources a bit. +It will be the first release with small breaking changes since we maintain it. ## v7.0 - Structurally Breaking Changes From bf64cbdaaf30766b244d7fb5b5a7b0f6a5c32d2a Mon Sep 17 00:00:00 2001 From: ST-DDT Date: Sun, 4 Sep 2022 14:41:17 +0200 Subject: [PATCH 04/13] docs: improve wording --- docs/about/announcements/2022-09-08.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/about/announcements/2022-09-08.md b/docs/about/announcements/2022-09-08.md index 3d4776dbc14..4a50c88857a 100644 --- a/docs/about/announcements/2022-09-08.md +++ b/docs/about/announcements/2022-09-08.md @@ -10,7 +10,7 @@ Our main focus for v8 is to make Faker more leightweight and flexible. A huge part of that is better treeshaking support. Currently if you just want to generate some reproducible numbers, then you need the entire Faker package. -First you have to download almost 10MB of data (CJS+ESM) and ship half of that (one of the two). +First you have to download almost 10MB of data (mostly locales duplicated for ESM and CJS) and ship half of that (one of them). We won't tackle the download size for now, but we hope to reduce your shipped code size significantly. This should also improve js startup/parse times. From 4df627556c872209261bbf160daf290ab10de9cb Mon Sep 17 00:00:00 2001 From: ST-DDT Date: Sun, 4 Sep 2022 15:17:46 +0200 Subject: [PATCH 05/13] chore: wording --- docs/about/announcements/2022-09-08.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/about/announcements/2022-09-08.md b/docs/about/announcements/2022-09-08.md index 4a50c88857a..ddfb9bbfd8a 100644 --- a/docs/about/announcements/2022-09-08.md +++ b/docs/about/announcements/2022-09-08.md @@ -9,10 +9,11 @@ We haven't made any announcements for a long time, but we are happy to announce Our main focus for v8 is to make Faker more leightweight and flexible. A huge part of that is better treeshaking support. -Currently if you just want to generate some reproducible numbers, then you need the entire Faker package. -First you have to download almost 10MB of data (mostly locales duplicated for ESM and CJS) and ship half of that (one of them). +Currently, if you just want to generate some reproducible numbers, then you need the entire Faker package. +First, you have to download almost 10MB of data (mostly locales duplicated; for ESM and CJS) and ship half of that (one of them). -We won't tackle the download size for now, but we hope to reduce your shipped code size significantly. +We won't tackle the download size for now, +but we hope to reduce the shipped size significantly (deduplicate locale data) on our side and allow your build process discard more unused methods and data. This should also improve js startup/parse times. If we are successful, you will only need a few KB of code for numbers and only the locales you need for more complex things such as names. From 2e3cb4dc9a34e7d1c2564404349d8acb57d7f98c Mon Sep 17 00:00:00 2001 From: ST-DDT Date: Sun, 4 Sep 2022 15:35:55 +0200 Subject: [PATCH 06/13] chore: fix typo --- docs/about/announcements/2022-09-08.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/about/announcements/2022-09-08.md b/docs/about/announcements/2022-09-08.md index ddfb9bbfd8a..77585db35d7 100644 --- a/docs/about/announcements/2022-09-08.md +++ b/docs/about/announcements/2022-09-08.md @@ -6,7 +6,7 @@ editLink: false We haven't made any announcements for a long time, but we are happy to announce that we just published the new roadmap for v8. -Our main focus for v8 is to make Faker more leightweight and flexible. +Our main focus for v8 is to make Faker more lightweight and flexible. A huge part of that is better treeshaking support. Currently, if you just want to generate some reproducible numbers, then you need the entire Faker package. From 5902e50b721505c40e3a5fffa9c07622589a68bc Mon Sep 17 00:00:00 2001 From: ST-DDT Date: Sun, 4 Sep 2022 19:02:36 +0200 Subject: [PATCH 07/13] chore: apply suggestions --- docs/about/roadmap/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/about/roadmap/index.md b/docs/about/roadmap/index.md index 0f34f0a5244..fd282d37571 100644 --- a/docs/about/roadmap/index.md +++ b/docs/about/roadmap/index.md @@ -13,5 +13,5 @@ Click on the specific versions for more details. ## Previous Versions -- [v6 - Continue Faker](v6.html) - [v7 - Cleanup and Improvements](v7.html) +- [v6 - Continue Faker](v6.html) From 4ade84c476dfac9fdd67be1ad13c266fe9192c57 Mon Sep 17 00:00:00 2001 From: ST-DDT Date: Sun, 4 Sep 2022 20:54:54 +0200 Subject: [PATCH 08/13] chore: apply suggestions --- docs/about/roadmap/v8.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/about/roadmap/v8.md b/docs/about/roadmap/v8.md index 607799c26a4..c43266dfc8d 100644 --- a/docs/about/roadmap/v8.md +++ b/docs/about/roadmap/v8.md @@ -10,9 +10,10 @@ Our main goal in v8 is to make Faker more lightweight and more flexible. Finish the module shuffling. -- Remove multi locale/locale change support +- Remove locale switching support - Move String and Number methods into own modules - Rename Name module to Person +- Rename Address module to Location - Check modules and methods regarding their name and location - Try to eliminate circular dependencies in modules - Standardize function parameters and defaults From 488c8cb9844cba705bfc9d1ee459377231a1744b Mon Sep 17 00:00:00 2001 From: ST-DDT Date: Sun, 4 Sep 2022 21:01:06 +0200 Subject: [PATCH 09/13] chore: apply suggestions Co-authored-by: Shinigami --- docs/about/announcements/2022-09-08.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/about/announcements/2022-09-08.md b/docs/about/announcements/2022-09-08.md index 77585db35d7..4eb9a17b40c 100644 --- a/docs/about/announcements/2022-09-08.md +++ b/docs/about/announcements/2022-09-08.md @@ -12,7 +12,7 @@ A huge part of that is better treeshaking support. Currently, if you just want to generate some reproducible numbers, then you need the entire Faker package. First, you have to download almost 10MB of data (mostly locales duplicated; for ESM and CJS) and ship half of that (one of them). -We won't tackle the download size for now, +We wont tackle the download size for now, but we hope to reduce the shipped size significantly (deduplicate locale data) on our side and allow your build process discard more unused methods and data. This should also improve js startup/parse times. From c5ee45f1c3de0b17e87accbc6d6b1f49e0b894c5 Mon Sep 17 00:00:00 2001 From: ST-DDT Date: Sun, 4 Sep 2022 21:02:06 +0200 Subject: [PATCH 10/13] chore: apply suggestions Co-authored-by: Shinigami --- docs/about/announcements/2022-09-08.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/about/announcements/2022-09-08.md b/docs/about/announcements/2022-09-08.md index 4eb9a17b40c..a4cf076752b 100644 --- a/docs/about/announcements/2022-09-08.md +++ b/docs/about/announcements/2022-09-08.md @@ -7,7 +7,7 @@ editLink: false We haven't made any announcements for a long time, but we are happy to announce that we just published the new roadmap for v8. Our main focus for v8 is to make Faker more lightweight and flexible. -A huge part of that is better treeshaking support. +A huge part of that is better tree shaking support. Currently, if you just want to generate some reproducible numbers, then you need the entire Faker package. First, you have to download almost 10MB of data (mostly locales duplicated; for ESM and CJS) and ship half of that (one of them). From cae11d33970c12ff422fdfbb428e2b20d2492cfc Mon Sep 17 00:00:00 2001 From: ST-DDT Date: Sun, 4 Sep 2022 21:03:21 +0200 Subject: [PATCH 11/13] chore: apply suggestions --- docs/about/announcements/2022-09-08.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/about/announcements/2022-09-08.md b/docs/about/announcements/2022-09-08.md index a4cf076752b..93a593c39c9 100644 --- a/docs/about/announcements/2022-09-08.md +++ b/docs/about/announcements/2022-09-08.md @@ -10,7 +10,7 @@ Our main focus for v8 is to make Faker more lightweight and flexible. A huge part of that is better tree shaking support. Currently, if you just want to generate some reproducible numbers, then you need the entire Faker package. -First, you have to download almost 10MB of data (mostly locales duplicated; for ESM and CJS) and ship half of that (one of them). +First, you have to download almost 10MB of data (mostly locales; duplicated for ESM and CJS) and ship half of that (one of them). We wont tackle the download size for now, but we hope to reduce the shipped size significantly (deduplicate locale data) on our side and allow your build process discard more unused methods and data. From b468b65fdfc48d20e3bccba283146be975a1040a Mon Sep 17 00:00:00 2001 From: ST-DDT Date: Mon, 5 Sep 2022 21:28:11 +0200 Subject: [PATCH 12/13] chore: apply suggestions Co-authored-by: Eric Cheng --- docs/about/announcements/2022-09-08.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/about/announcements/2022-09-08.md b/docs/about/announcements/2022-09-08.md index 93a593c39c9..cd22e9b6682 100644 --- a/docs/about/announcements/2022-09-08.md +++ b/docs/about/announcements/2022-09-08.md @@ -13,11 +13,11 @@ Currently, if you just want to generate some reproducible numbers, then you need First, you have to download almost 10MB of data (mostly locales; duplicated for ESM and CJS) and ship half of that (one of them). We wont tackle the download size for now, -but we hope to reduce the shipped size significantly (deduplicate locale data) on our side and allow your build process discard more unused methods and data. +but we hope to reduce the shipped size significantly (deduplicate locale data) on our side and allow your build process to discard more unused methods and data. This should also improve js startup/parse times. If we are successful, you will only need a few KB of code for numbers and only the locales you need for more complex things such as names. -With a bit of setup on your side you can ship only the parts of the locale data you actually need. +With a bit of setup on your side, you can ship only the parts of the locale data you actually need. So no more finance data and mime-types, just for a first name. For more details refer to our roadmap: From 7d8af5351faf1724e3dbfdec48704961fae4c1dc Mon Sep 17 00:00:00 2001 From: ST-DDT Date: Thu, 8 Sep 2022 17:19:06 +0200 Subject: [PATCH 13/13] chore: fix links and titles --- docs/.vitepress/config.ts | 4 ++-- docs/about/announcements.md | 1 + docs/about/roadmap/index.md | 2 +- docs/about/roadmap/v7.md | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index 3624272cbf6..59e2d1ba22a 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -164,8 +164,8 @@ export default defineConfig({ text: 'Announcements', link: '/about/announcements', items: [ - { text: '2022-01-14', link: '/about/announcements/2022-01-14' }, { text: '2022-09-08', link: '/about/announcements/2022-09-08' }, + { text: '2022-01-14', link: '/about/announcements/2022-01-14' }, ], }, { @@ -174,7 +174,7 @@ export default defineConfig({ items: [ { text: 'v8 - Make Faker Handier', link: '/about/roadmap/v8' }, { - text: 'v7 - Cleanup and Improvements', + text: 'v7 - Cleanup & Improvements', link: '/about/roadmap/v7', }, { text: 'v6 - Continue Faker', link: '/about/roadmap/v6' }, diff --git a/docs/about/announcements.md b/docs/about/announcements.md index 9f00c334bbd..407cc644b45 100644 --- a/docs/about/announcements.md +++ b/docs/about/announcements.md @@ -4,4 +4,5 @@ editLink: false # Announcements +- [2022-09-08 - New Roadmap Published](./announcements/2022-09-08) - [2022-01-14 - An update from the Faker team](./announcements/2022-01-14) diff --git a/docs/about/roadmap/index.md b/docs/about/roadmap/index.md index fd282d37571..8be8ee4d49f 100644 --- a/docs/about/roadmap/index.md +++ b/docs/about/roadmap/index.md @@ -13,5 +13,5 @@ Click on the specific versions for more details. ## Previous Versions -- [v7 - Cleanup and Improvements](v7.html) +- [v7 - Cleanup & Improvements](v7.html) - [v6 - Continue Faker](v6.html) diff --git a/docs/about/roadmap/v7.md b/docs/about/roadmap/v7.md index a6eb085636f..59a715e37df 100644 --- a/docs/about/roadmap/v7.md +++ b/docs/about/roadmap/v7.md @@ -2,7 +2,7 @@ editLink: false --- -# v7 - Cleanup and Improvements +# v7 - Cleanup & Improvements In v7 we will remove some methods that we have deprecated in v6 and restructure the sources a bit. It will be the first release with small breaking changes since we maintain it.