Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"turso",
"tursodatabase",
"twoslash",
"virtuals",
"withstudiocms"
]
}
2 changes: 1 addition & 1 deletion ec.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default defineEcConfig({
ecTwoSlash({
twoslashOptions: {
handbookOptions: {
errors: [2353, 2339, 2307, 2379],
errors: [2353, 2339, 2307, 2379, 2305],
},
compilerOptions: {
moduleResolution: ts.ModuleResolutionKind.Bundler,
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@
"gen-changelogs": "tsm --require=./scripts/filter-warnings.cjs ./scripts/generate-release-notes.ts"
},
"dependencies": {
"studiocms": "0.1.0-beta.24",
"@studiocms/blog": "0.1.0-beta.24",
"@studiocms/cloudinary-image-service": "0.1.0-beta.24",
"@studiocms/devapps": "0.1.0-beta.24",
"@studiocms/html": "0.1.0-beta.24",
"@studiocms/markdoc": "0.1.0-beta.24",
"@studiocms/md": "0.1.0-beta.24",
"@studiocms/mdx": "0.1.0-beta.24",
"@studiocms/wysiwyg": "0.1.0-beta.24",
"studiocms": "0.1.0-beta.25",
"@studiocms/blog": "0.1.0-beta.25",
"@studiocms/cloudinary-image-service": "0.1.0-beta.25",
"@studiocms/devapps": "0.1.0-beta.25",
"@studiocms/html": "0.1.0-beta.25",
"@studiocms/markdoc": "0.1.0-beta.25",
"@studiocms/md": "0.1.0-beta.25",
"@studiocms/mdx": "0.1.0-beta.25",
"@studiocms/wysiwyg": "0.1.0-beta.25",
"@studiocms/ui": "^0.4.17",
"@studiocms/web-vitals": "^4.4.1",
"@studiocms/web-vitals": "^4.5.0",
"@actions/core": "^1.11.1",
"astro": "^5.12.9",
"@astrojs/check": "^0.9.4",
Expand Down
585 changes: 309 additions & 276 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ title: "Upgrade: 0.1.0-beta.24"
description: Upgrade StudioCMS to Beta.24
sidebar:
label: 0.1.0-beta.24
badge:
text: NEW
variant: success
order: 999991
---

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
i18nReady: true
title: "Upgrade: 0.1.0-beta.25"
description: Upgrade StudioCMS to Beta.25
sidebar:
label: 0.1.0-beta.25
badge:
text: NEW
variant: success
order: 999990
---

import ReadMore from '~/components/ReadMore.astro'
import QuickUpdate from '~/components/QuickUpdate.astro'
import { Aside } from '@astrojs/starlight/components'

<QuickUpdate />

## Features

- Refactor dashboard content management components to eliminate inline scripts and improve code reusability.
- Refactor usage of effect to utilize new enhanced utilities from new `@withstudiocms/effect` package.
- Updates to utilize new `@withstudiocms/component-registry` package.
- Migrate API routes to new createEffectAPIRoutes utility from `@withstudiocms/effect`.
- Optimize login page preview on Config page and first-time setup.
- Optimize `threejs` login page, ensuring fast page load.

## Bug fixes

- Unifies date-time config on last updated check for version check modal.
- Cleanup code, fix first time setup oauth, and cleanup old utils.
- Consolidate table definitions into config and remove legacy tables file.
5 changes: 4 additions & 1 deletion src/content/docs/en/how-it-works/effect.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ title: "Effect"
description: "Learn about how StudioCMS uses Effect."
sidebar:
order: 5
badge:
text: Updated
variant: success
---

import ReadMore from '~/components/ReadMore.astro';
Expand All @@ -26,7 +29,7 @@ This includes all the same base exports from Effect's default export `import {}

```ts twoslash title="custom-utils.ts"
import {
convertToVanilla, errorTap,
runEffect, errorTap,
genLogger, pipeLogger,
runtimeLogger
} from 'studiocms/effect';
Expand Down
3 changes: 0 additions & 3 deletions src/content/docs/en/how-it-works/sdk.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ title: "The SDK"
description: "Learn about the StudioCMS SDK and how to use it."
sidebar:
order: 3
badge:
text: Updated
variant: success
---

import ReadMore from '~/components/ReadMore.astro';
Expand Down
2 changes: 1 addition & 1 deletion studiocms
Submodule studiocms updated 527 files
225 changes: 106 additions & 119 deletions typedoc.config.ts

Large diffs are not rendered by default.

Loading