Chore: Ready for Release (#81)

This PR was opened by a GitHub Action to signify a new release is ready!

# Releases
## @matthiesenxyz/astro-ghostcms@3.3.0

### Minor Changes

- eebcd36: This is a HUGE internal update, Our integration is now built
on
[`Astro-Integration-Kit`](https://github.com/florian-lefebvre/astro-integration-kit)
to give better control over the entire `Astro-GhostCMS` Eco-System.

    # Breaking Changes:

- NEW USER CONFIG! Some of the options have changed! Please check the
Readme for a current version of the available options!
- Thats it! Some how even though this is almost an entire rebuild, There
is no other USER breaking changes aside from the new more advanced
config!

    # Updates:

- Moved from `@ts-ghost/core-api` to `@ts-ghost/content-api` as it
provides the same functions as the standard core-api but pre-wrapped
with a nice `HTTPClientFactory` instead of `HTTPClient`.
- Updated a ton of Dependencies that Dependabot was reporting as needed
updated.

## @matthiesenxyz/create-astro-ghostcms@0.1.0

### Minor Changes

-   9ec2a61: Bumb all templates to new `astro-ghostcms` version v3.3

## @matthiesenxyz/starlight-ghostcms@0.1.0

### Minor Changes

-   9ec2a61: Bumb GhostCMS API, No user facing breaking changes.

    NEW:

- You can now set a `route: "blog"` in your `astro.config.mjs` to change
the default `/<route>` to your blog/posts
This commit is contained in:
Adam Matthiesen 2024-03-07 04:12:19 -08:00 committed by GitHub
commit c1db889879
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
11 changed files with 119 additions and 114 deletions

View File

@ -1,5 +0,0 @@
---
"@matthiesenxyz/create-astro-ghostcms": minor
---
Bumb all templates to new `astro-ghostcms` version v3.3

View File

@ -1,13 +0,0 @@
---
"@matthiesenxyz/astro-ghostcms": minor
---
This is a HUGE internal update, Our integration is now built on [`Astro-Integration-Kit`](https://github.com/florian-lefebvre/astro-integration-kit) to give better control over the entire `Astro-GhostCMS` Eco-System.
# Breaking Changes:
- NEW USER CONFIG! Some of the options have changed! Please check the Readme for a current version of the available options!
- Thats it! Some how even though this is almost an entire rebuild, There is no other USER breaking changes aside from the new more advanced config!
# Updates:
- Moved from `@ts-ghost/core-api` to `@ts-ghost/content-api` as it provides the same functions as the standard core-api but pre-wrapped with a nice `HTTPClientFactory` instead of `HTTPClient`.
- Updated a ton of Dependencies that Dependabot was reporting as needed updated.

View File

@ -1,8 +0,0 @@
---
"@matthiesenxyz/starlight-ghostcms": minor
---
Bumb GhostCMS API, No user facing breaking changes.
NEW:
- You can now set a `route: "blog"` in your `astro.config.mjs` to change the default `/<route>` to your blog/posts

View File

@ -57,7 +57,7 @@
"dependencies": {
"@iconify-json/logos": "^1.1.41",
"@iconify-json/uil": "^1.1.8",
"@matthiesenxyz/astro-ghostcms": "^3.2.9",
"@matthiesenxyz/astro-ghostcms": "^3.3.0",
"@matthiesenxyz/astro-ghostcms-rendercontent": "^0.0.7",
"@unocss/astro": "^0.58.5",
"@unocss/reset": "^0.58.5",

View File

@ -59,7 +59,7 @@
"@astrojs/tailwind": "^5.1.0",
"@catppuccin/tailwindcss": "0.1.6",
"@fontsource-variable/inter": "^5.0.16",
"@matthiesenxyz/astro-ghostcms": "^3.2.9",
"@matthiesenxyz/astro-ghostcms": "^3.3.0",
"@tailwindcss/typography": "^0.5.10",
"tailwindcss": "^3.3.5",
"astro-navbar": "^2.3.1",

View File

@ -1,5 +1,21 @@
# @matthiesenxyz/astro-ghostcms
## 3.3.0
### Minor Changes
- eebcd36: This is a HUGE internal update, Our integration is now built on [`Astro-Integration-Kit`](https://github.com/florian-lefebvre/astro-integration-kit) to give better control over the entire `Astro-GhostCMS` Eco-System.
# Breaking Changes:
- NEW USER CONFIG! Some of the options have changed! Please check the Readme for a current version of the available options!
- Thats it! Some how even though this is almost an entire rebuild, There is no other USER breaking changes aside from the new more advanced config!
# Updates:
- Moved from `@ts-ghost/core-api` to `@ts-ghost/content-api` as it provides the same functions as the standard core-api but pre-wrapped with a nice `HTTPClientFactory` instead of `HTTPClient`.
- Updated a ton of Dependencies that Dependabot was reporting as needed updated.
## 3.2.9
### Patch Changes

View File

@ -1,7 +1,7 @@
{
"name": "@matthiesenxyz/astro-ghostcms",
"description": "Astro GhostCMS integration to allow easier importing of GhostCMS Content",
"version": "3.2.9",
"version": "3.3.0",
"homepage": "https://astro-ghostcms.xyz/",
"type": "module",
"license": "MIT",
@ -81,5 +81,4 @@
"satori-html": "^0.3.2",
"vite": "^5.1.4"
}
}
}

View File

@ -1,5 +1,11 @@
# @matthiesenxyz/create-astro-ghostcms
## 0.1.0
### Minor Changes
- 9ec2a61: Bumb all templates to new `astro-ghostcms` version v3.3
## 0.0.15
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@matthiesenxyz/create-astro-ghostcms",
"version": "0.0.15",
"version": "0.1.0",
"description": "Utility to quickly get started with our Integration and astro",
"type": "module",
"main": "./create-astro-ghostcms.mjs",

View File

@ -1,5 +1,15 @@
# @matthiesenxyz/starlight-ghostcms
## 0.1.0
### Minor Changes
- 9ec2a61: Bumb GhostCMS API, No user facing breaking changes.
NEW:
- You can now set a `route: "blog"` in your `astro.config.mjs` to change the default `/<route>` to your blog/posts
## 0.0.7
### Patch Changes

View File

@ -1,7 +1,7 @@
{
"name": "@matthiesenxyz/starlight-ghostcms",
"description": "Starlight GhostCMS plugin to allow easier importing of GhostCMS Content into your starlight website",
"version": "0.0.7",
"version": "0.1.0",
"homepage": "https://astro-ghostcms.xyz/",
"type": "module",
"license": "MIT",