MatthiesenXYZ / astro-ghostcms

Easily migrate your Ghost Site to Astro, an Astro Integration that turns your Ghost server into a Headless CMS
https://astro-ghostcms.xyz/
MIT License
20 stars 4 forks source link

Bump the prod-dependencies group with 11 updates #79

Closed dependabot[bot] closed 6 months ago

dependabot[bot] commented 6 months ago

Bumps the prod-dependencies group with 11 updates:

Package From To
@astrojs/sitemap 3.0.5 3.1.1
@ts-ghost/core-api 5.1.2 6.0.0
astro 4.4.0 4.4.10
package-json 9.0.0 10.0.0
vite 5.1.3 5.1.4
ultrahtml 1.5.2 1.5.3
@fontsource-variable/inter 5.0.16 5.0.17
astro-seo 0.8.2 0.8.3
sass 1.71.0 1.71.1
@astrojs/starlight 0.19.0 0.21.1
sharp 0.32.6 0.33.2

Updates @astrojs/sitemap from 3.0.5 to 3.1.1

Release notes

Sourced from @​astrojs/sitemap's releases.

@​astrojs/sitemap@​3.1.1

Patch Changes

@​astrojs/sitemap@​3.1.0

Minor Changes

  • #9846 9b78c992750cdb99c40a89a00ea2a0d1c00877d7 Thanks @​ktym4a! - Adds a new configuration option prefix that allows you to change the default sitemap-*.xml file name.

    By default, running astro build creates both sitemap-index.xml and sitemap-0.xml in your output directory.

    To change the names of these files (e.g. to astrosite-index.xml and astrosite-0.xml), set the prefix option in your sitemap integration configuration:

    import { defineConfig } from 'astro/config';
    import sitemap from '@astrojs/sitemap';
    export default defineConfig({
      site: 'https://example.com',
      integrations: [
        sitemap({
          prefix: 'astrosite-',
        }),
      ],
    });
    

    This option is useful when Google Search Console is unable to fetch your default sitemap files, but can read renamed files.

Changelog

Sourced from @​astrojs/sitemap's changelog.

3.1.1

Patch Changes

3.1.0

Minor Changes

  • #9846 9b78c992750cdb99c40a89a00ea2a0d1c00877d7 Thanks @​ktym4a! - Adds a new configuration option prefix that allows you to change the default sitemap-*.xml file name.

    By default, running astro build creates both sitemap-index.xml and sitemap-0.xml in your output directory.

    To change the names of these files (e.g. to astrosite-index.xml and astrosite-0.xml), set the prefix option in your sitemap integration configuration:

    import { defineConfig } from 'astro/config';
    import sitemap from '@astrojs/sitemap';
    export default defineConfig({
      site: 'https://example.com',
      integrations: [
        sitemap({
          prefix: 'astrosite-',
        }),
      ],
    });
    

    This option is useful when Google Search Console is unable to fetch your default sitemap files, but can read renamed files.

Commits


Updates @ts-ghost/core-api from 5.1.2 to 6.0.0

Release notes

Sourced from @​ts-ghost/core-api's releases.

@​ts-ghost/core-api@​6.0.0

Major Changes

  • 5544e8a: API Composer now require an HTTPClientFactory instead of a HTTPClient.

    Passing directly an instanciated HTTPClient was creating a lot of issues with the HttpClient lifecycle. Now, you need to pass a factory that will be used to create a new HttpClient for each request.

    The HTTPClientFactory takes the same parameters as the HttpClient constructor, so you can pass the same configuration.

    export type HTTPClientOptions = {
      key: string;
      version: APICredentials["version"];
      url: APICredentials["url"];
      endpoint: "content" | "admin";
    };
    

    export interface IHTTPClientFactory { create(config: HTTPClientOptions): HTTPClient; }

    export class HTTPClientFactory implements IHTTPClientFactory { constructor(private config: HTTPClientOptions) {}

    public create() { return new HTTPClient(this.config); } }

Minor Changes

  • 5544e8a: Internals change of the API Composer instantiation to use the new HTTPClientFactory instead of direct instances. There is no user-level change required.
Commits
  • f229dec Version Packages (#215)
  • 5544e8a fix bugs when reusing the same instance of the inner HTTPClient (#214)
  • bf08d91 chore(deps): update all non-major dependencies (#211)
  • 8d89e93 chore(deps): update typescript-eslint monorepo to v7 (#212)
  • 1b5e861 chore(deps): update all non-major dependencies (#209)
  • 792dbb8 chore(deps): update pnpm/action-setup action to v3 (#210)
  • 8c22aaf chore(deps): update all non-major dependencies (#207)
  • f93794f chore(deps): update all non-major dependencies (#205)
  • 367e47d chore(deps): update all non-major dependencies (#204)
  • c900d9c fix(deps): update all non-major dependencies (#203)
  • Additional commits viewable in compare view


Updates astro from 4.4.0 to 4.4.10

Release notes

Sourced from astro's releases.

astro@4.4.10

Patch Changes

astro@4.4.9

Patch Changes

astro@4.4.8

Patch Changes

astro@4.4.7

Patch Changes

astro@4.4.6

Patch Changes

astro@4.4.5

Patch Changes

... (truncated)

Changelog

Sourced from astro's changelog.

4.4.10

Patch Changes

4.4.9

Patch Changes

4.4.8

Patch Changes

4.4.7

Patch Changes

4.4.6

Patch Changes

4.4.5

... (truncated)

Commits


Updates package-json from 9.0.0 to 10.0.0

Release notes

Sourced from package-json's releases.

v10.0.0

Breaking

Improvements

  • Improve handling of default options (#79) c554238

Fixes

  • Fix types (#80) f217ebe

https://github.com/sindresorhus/package-json/compare/v9.0.0...v10.0.0

Commits


Updates vite from 5.1.3 to 5.1.4

Changelog

Sourced from vite's changelog.

5.1.4 (2024-02-21)

Commits


Updates ultrahtml from 1.5.2 to 1.5.3

Release notes

Sourced from ultrahtml's releases.

v1.5.3

Patch Changes

  • ebc97e0: upgrades dts-bundle-generator to 9.2.1, fixing an issue with .d.ts generation which led methods prefixed with two underscores to be incorrectly made private in the generated declaration file.
Changelog

Sourced from ultrahtml's changelog.

1.5.3

Patch Changes

  • ebc97e0: upgrades dts-bundle-generator to 9.2.1, fixing an issue with .d.ts generation which led methods prefixed with two underscores to be incorrectly made private in the generated declaration file.
Commits
  • 93a1273 Merge pull request #68 from natemoo-re/changeset-release/main
  • 8d42d8d [ci] release
  • 007824d Merge pull request #65 from michaelhthomas/chore/upgrade-dts-bundle-generator
  • efc44dc Merge pull request #67 from natemoo-re/fix-test
  • a59ac92 This Fixes script.test.ts, Mozilla.org updated the website being tested fro...
  • ebc97e0 chore: add changeset
  • 2f6c0da chore: upgrade dts-bundle-generator 8.0.1 -> 9.2.1
  • See full diff in compare view


Updates @fontsource-variable/inter from 5.0.16 to 5.0.17

Commits


Updates astro-seo from 0.8.2 to 0.8.3

Release notes

Sourced from astro-seo's releases.

v0.8.3

0.8.3 (2024-03-03)

  • improvement: re-export Props as SEOProps
Changelog

Sourced from astro-seo's changelog.

0.8.3 (2024-03-03)

Commits
  • 7d3387a chore(release): 0.8.3
  • 9278a17 improvement: re-export Props as SEOProps
  • 6974c40 test: Delete trailing slash from test
  • 3c16c64 Update all GH actions to latest version
  • 8e3f440 chore: Update Cypress GH action to v6
  • 47c2378 Update CHANGELOG
  • See full diff in compare view


Updates sass from 1.71.0 to 1.71.1

Release notes

Sourced from sass's releases.

Dart Sass 1.71.1

To install Sass 1.71.1, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

Command-Line Interface

  • Ship the musl Linux release with the proper Dart executable.

JavaScript API

  • Export the NodePackageImporter class in ESM mode.

  • Allow NodePackageImporter to locate a default directory even when the entrypoint is an ESM module.

Dart API

  • Make passing a null argument to NodePackageImporter() a static error rather than just a runtime error.

Embedded Sass

  • In the JS Embedded Host, properly install the musl Linux embedded compiler when running on musl Linux.

See the full changelog for changes in earlier releases.

Changelog

Sourced from sass's changelog.

1.71.1

Command-Line Interface

  • Ship the musl Linux release with the proper Dart executable.

JavaScript API

  • Export the NodePackageImporter class in ESM mode.

  • Allow NodePackageImporter to locate a default directory even when the entrypoint is an ESM module.

Dart API

  • Make passing a null argument to NodePackageImporter() a static error rather than just a runtime error.

Embedded Sass

  • In the JS Embedded Host, properly install the musl Linux embedded compiler when running on musl Linux.
Commits


Updates @astrojs/starlight from 0.19.0 to 0.21.1

Release notes

Sourced from @​astrojs/starlight's releases.

@​astrojs/starlight@​0.21.1

Patch Changes

@​astrojs/starlight@​0.21.0

Minor Changes

@​astrojs/starlight@​0.20.1

Patch Changes

@​astrojs/starlight@​0.20.0

Minor Changes

  • #1541 1043052f Thanks @​hippotastic! - Updates astro-expressive-code dependency to the latest minor release (0.33).

    This unlocks support for word wrap and line numbers, as well as updating the syntax highlighter to the latest Shiki release, which includes new and updated language grammars.

    See the Expressive Code release notes for more information including details of potentially breaking changes.

Patch Changes

@​astrojs/starlight@​0.19.1

Patch Changes

  • #1527 163bc84 Thanks @​HiDeoo! - Exports the StarlightPageProps TypeScript type representing the props expected by the <StarlightPage /> component.

... (truncated)

Changelog

Sourced from @​astrojs/starlight's changelog.

0.21.1

Patch Changes

0.21.0

Minor Changes

0.20.1

Patch Changes

0.20.0

Minor Changes

  • #1541 1043052f Thanks @​hippotastic! - Updates astro-expressive-code dependency to the latest minor release (0.33).

    This unlocks support for word wrap and line numbers, as well as updating the syntax highlighter to the latest Shiki release, which includes new and updated language grammars.

    See the Expressive Code release notes for more information including details of potentially breaking changes.

Patch Changes

... (truncated)

Commits


Updates sharp from 0.32.6 to 0.33.2

Changelog

Sourced from sharp's changelog.

v0.33.2 - 12th January 2024

  • Upgrade to libvips v8.15.1 for upstream bug fixes.

  • TypeScript: add definition for keepMetadata. #3914 @​abhi0498

  • Ensure extend operation stays sequential when copying (regression in 0.32.0). #3928

  • Improve error handling for unsupported multi-page rotation. #3940

v0.33.1 - 17th December 2023

  • Add support for Yarn Plug'n'Play filesystem layout. #3888

  • Emit warning when attempting to use invalid ICC profiles. #3895

  • Ensure VIPS_NOVECTOR environment variable is respected. #3897 @​icetee

v0.33.0 - 29th November 2023

  • Drop support for Node.js 14 and 16, now requires Node.js ^18.17.0 or >= 20.3.0

  • Prebuilt binaries distributed via npm registry and installed via package manager.

  • Building from source requires dependency on node-addon-api.

  • Remove sharp.vendor.

  • Partially deprecate withMetadata(), use withExif() and withIccProfile().

  • Add experimental support for WebAssembly-based runtimes. @​RReverser

  • Options for trim operation must be an Object, add new lineArt option. #2363

  • Improve luminance of tint operation with weighting function. #3338 @​jcupitt

  • Ensure all Error objects contain a stack property. #3653

... (truncated)

Commits
  • bcb22af Release v0.33.2
  • d04dc62 Prerelease v0.33.2-rc.1
  • c30d355 CI: Fix npm smoke test expectation
  • 49cb148 Prerelease v0.33.2-rc.0
  • 3bc31a8 CI: Verify emscripten versions match
  • c28523e CI: Update Emscripten Docker image to 3.1.51 (#3907)
  • 278f393 Upgrade to libvips v8.15.1
  • cbf68c1 Improve error for unsupported multi-page rotation #3940
changeset-bot[bot] commented 6 months ago

⚠️ No Changeset found

Latest commit: ca7a97013d348a4bac93021fb1a14f8042dc2a5c

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

dependabot[bot] commented 6 months ago

Looks like these dependencies are updatable in another way, so this is no longer needed.