diff --git a/CHANGELOG.md b/CHANGELOG.md index c7c7e00..18f4268 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## [1.0.2](https://github.com/pawcoding/astro-loader-pocketbase/compare/v1.0.1...v1.0.2) (2024-12-16) + ## [1.0.1](https://github.com/pawcoding/astro-loader-pocketbase/compare/v1.0.0...v1.0.1) (2024-12-14) diff --git a/README.md b/README.md index 7c36bc1..1b2060e 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![GitHub License](https://img.shields.io/github/license/pawcoding/astro-loader-pocketbase?style=flat-square)](https://github.com/pawcoding/astro-loader-pocketbase/blob/master/LICENSE) [![Discord](https://img.shields.io/discord/484669557747875862?style=flat-square&label=Discord)](https://discord.gg/GzgTh4hxrx) -This package is a simple loader to load data from a PocketBase database into Astro using the [Astro Loader API](https://5-0-0-beta.docs.astro.build/en/reference/loader-reference/) introduced in Astro 5. +This package is a simple loader to load data from a PocketBase database into Astro using the [Astro Loader API](https://docs.astro.build/en/reference/content-loader-reference/) introduced in Astro 5. > [!TIP] > If you want to see the PocketBase data directly in your Astro toolbar, try the [`astro-integration-pocketbase`](https://github.com/pawcoding/astro-integration-pocketbase). @@ -48,7 +48,7 @@ After generating the schema (see below), the loader will automatically parse the ### HTML content You can also specify a field or an array of fields to use as content. -This content will then be used when calling the `render` function of [Astros content collections](https://5-0-0-beta.docs.astro.build/en/guides/content-collections/#rendering-body-content). +This content will then be used when calling the `render` function of [Astros content collections](https://docs.astro.build/en/guides/content-collections/#rendering-body-content). ```ts const blog = defineCollection({ @@ -131,7 +131,7 @@ When admin credentials are provided, the loader will **always use the remote sch ### Manual schema -If you don't want to use the automatic type generation, you can also [provide your own schema manually](https://5-0-0-beta.docs.astro.build/en/guides/content-collections/#defining-the-collection-schema). +If you don't want to use the automatic type generation, you can also [provide your own schema manually](https://docs.astro.build/en/guides/content-collections/#defining-the-collection-schema). This manual schema will **always override the automatic type generation**. ## All options diff --git a/package-lock.json b/package-lock.json index 20d779c..53c905f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "astro-loader-pocketbase", - "version": "1.0.1", + "version": "1.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "astro-loader-pocketbase", - "version": "1.0.1", + "version": "1.0.2", "license": "MIT", "devDependencies": { "@eslint/js": "^9.17.0", diff --git a/package.json b/package.json index 16d8e55..9792571 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "astro-loader-pocketbase", - "version": "1.0.1", + "version": "1.0.2", "description": "A content loader for Astro that uses the PocketBase API", "license": "MIT", "author": "Luis Wolf (https://pawcode.de)",