From 2fc98cb266d3931467442767a991740bd7d65f46 Mon Sep 17 00:00:00 2001 From: Adam Matthiesen Date: Thu, 24 Apr 2025 22:26:20 -0700 Subject: [PATCH 1/6] update docs --- .../en/guides/contributing/translations.mdx | 3 -- .../upgrade/version-guides/0-1-0-beta-16.mdx | 3 -- .../upgrade/version-guides/0-1-0-beta-17.mdx | 31 +++++++++++++++++++ src/content/docs/en/how-it-works/cli.mdx | 3 -- 4 files changed, 31 insertions(+), 9 deletions(-) create mode 100644 src/content/docs/en/guides/upgrade/version-guides/0-1-0-beta-17.mdx diff --git a/src/content/docs/en/guides/contributing/translations.mdx b/src/content/docs/en/guides/contributing/translations.mdx index aada754d..ed18e266 100644 --- a/src/content/docs/en/guides/contributing/translations.mdx +++ b/src/content/docs/en/guides/contributing/translations.mdx @@ -4,9 +4,6 @@ title: Translations description: Learn how to contribute translations to StudioCMS sidebar: order: 2 - badge: - text: Updated - variant: success --- import ReadMore from '~/components/ReadMore.astro'; diff --git a/src/content/docs/en/guides/upgrade/version-guides/0-1-0-beta-16.mdx b/src/content/docs/en/guides/upgrade/version-guides/0-1-0-beta-16.mdx index 75dc12d2..24821b59 100644 --- a/src/content/docs/en/guides/upgrade/version-guides/0-1-0-beta-16.mdx +++ b/src/content/docs/en/guides/upgrade/version-guides/0-1-0-beta-16.mdx @@ -4,9 +4,6 @@ title: "Upgrade: 0.1.0-beta.16" description: Upgrade StudioCMS to Beta.16 sidebar: label: 0.1.0-beta.16 - badge: - text: NEW - variant: success order: 999999 --- diff --git a/src/content/docs/en/guides/upgrade/version-guides/0-1-0-beta-17.mdx b/src/content/docs/en/guides/upgrade/version-guides/0-1-0-beta-17.mdx new file mode 100644 index 00000000..ebcc5ea5 --- /dev/null +++ b/src/content/docs/en/guides/upgrade/version-guides/0-1-0-beta-17.mdx @@ -0,0 +1,31 @@ +--- +i18nReady: true +title: "Upgrade: 0.1.0-beta.17" +description: Upgrade StudioCMS to Beta.17 +sidebar: + label: 0.1.0-beta.17 + badge: + text: NEW + variant: success + order: 999998 +--- + +import ReadMore from '~/components/ReadMore.astro' +import QuickUpdate from '~/components/QuickUpdate.astro' + + + +No major changes in this version, but we have made some optimizations and bug fixes to improve the overall performance and stability of StudioCMS. + +## Patch Notes + +- Bug fixes for CLI + - Fixes for `studiocms crypto get-jwt` command: Update keyfile path detection + - Update CLI hashing utilities +- Bug fixes for StudioCMS + - Astro Fonts: Fix font loading issues with new experimental Astro Fonts +- Optimizations for StudioCMS + - Replace `lodash` with `deepmerge-ts` for better performance + - Update middleware to use new functions that reduce the number of promises created +- New Features/Functionality + - New Feedback form system in the dashboard. \ No newline at end of file diff --git a/src/content/docs/en/how-it-works/cli.mdx b/src/content/docs/en/how-it-works/cli.mdx index 95cdc35b..0b8313e5 100644 --- a/src/content/docs/en/how-it-works/cli.mdx +++ b/src/content/docs/en/how-it-works/cli.mdx @@ -4,9 +4,6 @@ title: "The CLI" description: "Learn about the StudioCMS CLIs and how to use them." sidebar: order: 2 - badge: - text: 'Updated' - variant: 'success' tableOfContents: minHeadingLevel: 2 maxHeadingLevel: 4 From 209ce3b33aa1830502aa05a53f9f7a673485e1f0 Mon Sep 17 00:00:00 2001 From: Adam Matthiesen Date: Thu, 24 Apr 2025 22:30:33 -0700 Subject: [PATCH 2/6] update wording --- .../upgrade/version-guides/0-1-0-beta-17.mdx | 20 +++++++++---------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/src/content/docs/en/guides/upgrade/version-guides/0-1-0-beta-17.mdx b/src/content/docs/en/guides/upgrade/version-guides/0-1-0-beta-17.mdx index ebcc5ea5..c423990a 100644 --- a/src/content/docs/en/guides/upgrade/version-guides/0-1-0-beta-17.mdx +++ b/src/content/docs/en/guides/upgrade/version-guides/0-1-0-beta-17.mdx @@ -17,15 +17,13 @@ import QuickUpdate from '~/components/QuickUpdate.astro' No major changes in this version, but we have made some optimizations and bug fixes to improve the overall performance and stability of StudioCMS. -## Patch Notes +## Patch Overview -- Bug fixes for CLI - - Fixes for `studiocms crypto get-jwt` command: Update keyfile path detection - - Update CLI hashing utilities -- Bug fixes for StudioCMS - - Astro Fonts: Fix font loading issues with new experimental Astro Fonts -- Optimizations for StudioCMS - - Replace `lodash` with `deepmerge-ts` for better performance - - Update middleware to use new functions that reduce the number of promises created -- New Features/Functionality - - New Feedback form system in the dashboard. \ No newline at end of file +- **New Features** + - Introduced a new feedback system in the dashboard. +- **Bug Fixes** + - Resolved issues with Astro Fonts. + - Improved keyfile path detection. +- **Improvements** + - Replaced lodash with deepmerge-ts for better performance. + - Optimized promise handling in middleware and updated permission level processing. \ No newline at end of file From 9e5993f20b8b1ba5c53b02a58c7f516f51ef3502 Mon Sep 17 00:00:00 2001 From: Adam Matthiesen Date: Thu, 24 Apr 2025 22:36:18 -0700 Subject: [PATCH 3/6] docs: add note about breaking change in password hashing for beta.17 --- .../en/guides/upgrade/version-guides/0-1-0-beta-17.mdx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/content/docs/en/guides/upgrade/version-guides/0-1-0-beta-17.mdx b/src/content/docs/en/guides/upgrade/version-guides/0-1-0-beta-17.mdx index c423990a..cb4e1e68 100644 --- a/src/content/docs/en/guides/upgrade/version-guides/0-1-0-beta-17.mdx +++ b/src/content/docs/en/guides/upgrade/version-guides/0-1-0-beta-17.mdx @@ -12,6 +12,7 @@ sidebar: import ReadMore from '~/components/ReadMore.astro' import QuickUpdate from '~/components/QuickUpdate.astro' +import { Aside } from '@astrojs/starlight/components' @@ -26,4 +27,8 @@ No major changes in this version, but we have made some optimizations and bug fi - Improved keyfile path detection. - **Improvements** - Replaced lodash with deepmerge-ts for better performance. - - Optimized promise handling in middleware and updated permission level processing. \ No newline at end of file + - Optimized promise handling in middleware and updated permission level processing. + + \ No newline at end of file From f4a33f2eac5bca7a01179eb32f01cf3f4e52c70d Mon Sep 17 00:00:00 2001 From: Adam Matthiesen Date: Thu, 24 Apr 2025 22:39:00 -0700 Subject: [PATCH 4/6] update wording --- .../docs/en/guides/upgrade/version-guides/0-1-0-beta-17.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/en/guides/upgrade/version-guides/0-1-0-beta-17.mdx b/src/content/docs/en/guides/upgrade/version-guides/0-1-0-beta-17.mdx index cb4e1e68..f19b77d2 100644 --- a/src/content/docs/en/guides/upgrade/version-guides/0-1-0-beta-17.mdx +++ b/src/content/docs/en/guides/upgrade/version-guides/0-1-0-beta-17.mdx @@ -24,7 +24,7 @@ No major changes in this version, but we have made some optimizations and bug fi - Introduced a new feedback system in the dashboard. - **Bug Fixes** - Resolved issues with Astro Fonts. - - Improved keyfile path detection. + - Improved keyfile path detection for the crypto gen-jwt CLI command. - **Improvements** - Replaced lodash with deepmerge-ts for better performance. - Optimized promise handling in middleware and updated permission level processing. From 08c7eab37ed51c47a249269f702967e7ced84319 Mon Sep 17 00:00:00 2001 From: Adam Matthiesen Date: Thu, 24 Apr 2025 22:52:28 -0700 Subject: [PATCH 5/6] fix: adjust indentation for better readability in upgrade guide for beta.17 --- .../en/guides/upgrade/version-guides/0-1-0-beta-17.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/content/docs/en/guides/upgrade/version-guides/0-1-0-beta-17.mdx b/src/content/docs/en/guides/upgrade/version-guides/0-1-0-beta-17.mdx index f19b77d2..a57adbd3 100644 --- a/src/content/docs/en/guides/upgrade/version-guides/0-1-0-beta-17.mdx +++ b/src/content/docs/en/guides/upgrade/version-guides/0-1-0-beta-17.mdx @@ -21,13 +21,13 @@ No major changes in this version, but we have made some optimizations and bug fi ## Patch Overview - **New Features** - - Introduced a new feedback system in the dashboard. + - Introduced a new feedback system in the dashboard. - **Bug Fixes** - - Resolved issues with Astro Fonts. - - Improved keyfile path detection for the crypto gen-jwt CLI command. + - Resolved issues with Astro Fonts. + - Improved keyfile path detection for the crypto gen-jwt CLI command. - **Improvements** - - Replaced lodash with deepmerge-ts for better performance. - - Optimized promise handling in middleware and updated permission level processing. + - Replaced lodash with deepmerge-ts for better performance. + - Optimized promise handling in middleware and updated permission level processing.