Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all non-major dependencies #172

Merged
merged 1 commit into from
Sep 20, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 13, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/check (source) 0.9.1 -> 0.9.3 age adoption passing confidence
@astrojs/netlify (source) 5.4.0 -> 5.5.3 age adoption passing confidence
@astrojs/starlight (source) ^0.26.0 -> ^0.28.0 age adoption passing confidence
@astrojs/svelte (source) 5.7.0 -> 5.7.1 age adoption passing confidence
@​gravityci/cli ^0.0.2 -> ^0.0.3 age adoption passing confidence
@playwright/test (source) 1.45.3 -> 1.47.1 age adoption passing confidence
@sveltejs/adapter-auto (source) 3.2.2 -> 3.2.5 age adoption passing confidence
@sveltejs/kit (source) 2.5.19 -> 2.5.28 age adoption passing confidence
@sveltejs/package (source) 2.3.2 -> 2.3.5 age adoption passing confidence
@sveltejs/vite-plugin-svelte (source) 3.1.1 -> 3.1.2 age adoption passing confidence
@testing-library/jest-dom 6.4.8 -> 6.5.0 age adoption passing confidence
@types/eslint (source) 9.6.0 -> 9.6.1 age adoption passing confidence
@vitest/coverage-v8 (source) 2.0.5 -> 2.1.1 age adoption passing confidence
@vitest/ui (source) 2.0.5 -> 2.1.1 age adoption passing confidence
astro (source) 4.13.0 -> 4.15.8 age adoption passing confidence
eslint (source) 9.8.0 -> 9.10.0 age adoption passing confidence
eslint-plugin-svelte (source) 2.43.0 -> 2.44.0 age adoption passing confidence
pnpm (source) 9.9.0 -> 9.10.0 age adoption passing confidence
publint (source) 0.2.9 -> 0.2.11 age adoption passing confidence
sharp (source, changelog) 0.33.4 -> 0.33.5 age adoption passing confidence
svelte (source) 4.2.18 -> 4.2.19 age adoption passing confidence
svelte-check ^4.0.0 -> ^3.8.5 age adoption passing confidence
tslib (source) 2.6.3 -> 2.7.0 age adoption passing confidence
typescript (source) 5.5.4 -> 5.6.2 age adoption passing confidence
typescript-eslint (source) 8.0.0 -> 8.6.0 age adoption passing confidence
typescript-eslint (source) 8.3.0 -> 8.6.0 age adoption passing confidence
vite (source) 5.3.5 -> 5.4.6 age adoption passing confidence
vitest (source) 2.0.5 -> 2.1.1 age adoption passing confidence

Release Notes

withastro/language-tools (@​astrojs/check)

v0.9.3

Compare Source

Patch Changes

v0.9.2

Compare Source

Patch Changes
withastro/adapters (@​astrojs/netlify)

v5.5.3

Compare Source

Patch Changes

v5.5.2

Compare Source

Patch Changes

v5.5.1

Compare Source

Patch Changes
  • #​350 2248bc7 Thanks @​matthewp! - Apply polyfills immediately on function execution

    This moves up when the polyfills are applied so that they are present before Astro runs, preventing a race condition that can cause crypto to not be defined early enough in Node 18.

v5.5.0

Compare Source

Minor Changes
withastro/starlight (@​astrojs/starlight)

v0.28.2

Compare Source

Patch Changes
  • #​2377 a257b83 Thanks @​HiDeoo! - Fixes an issue with synced <Tabs> components containing nested <Tabs> causing tab panels to not render correctly.

v0.28.1

Compare Source

Patch Changes

v0.28.0

Compare Source

Minor Changes
  • #​1923 5269aad Thanks @​HiDeoo! - Overhauls the built-in localization system which is now powered by the i18next library and available to use anywhere in your documentation website.

    See the “Using UI translations” guide to learn more about how to access built-in UI labels or your own custom strings in your project. Plugin authors can also use the new injectTranslations() helper to add or update translation strings.

    ⚠️ BREAKING CHANGE: The Astro.props.labels props has been removed from the props passed down to custom component overrides.

    If you are relying on Astro.props.labels (for example to read a built-in UI label), you will need to update your code to use the new Astro.locals.t() helper instead.

v0.27.1

Compare Source

Patch Changes
  • #​2303 f92791a Thanks @​delucis! - Fixes resolution for the internal module Git virtual module in projects with special characters in the file path

v0.27.0

Compare Source

Minor Changes
  • #​1255 6f3202b Thanks @​Fryuni! - Adds support for server-rendered Starlight pages.

    When building a project with hybrid or server output mode, a new prerender option on Starlight config can be set to false to make all Starlight pages be rendered on-demand:

    export default defineConfig({
      output: 'server',
      integrations: [
        starlight({
          prerender: false,
        }),
      ],
    });
Patch Changes
  • #​2242 756e85e Thanks @​delucis! - Refactors the logic for persisting and restoring sidebar state across navigations for better performance on slow or busy devices

  • #​1255 6f3202b Thanks @​Fryuni! - Improves performance of computing the last updated times from Git history.

    Instead of executing git for each docs page, it is now executed twice regardless of the number of pages.

  • #​1255 6f3202b Thanks @​Fryuni! - Fixes last updated times on projects with custom srcDir

v0.26.4

Compare Source

Patch Changes
  • #​2288 b15f725 Thanks @​matthewp! - Safely handle Zod errors

    Prevents bugs where errors without the .received props would through and cause builds to fail unnecessarily.

v0.26.3

Compare Source

Patch Changes
  • #​2281 5062d30 Thanks @​HiDeoo! - Fixes a potential text rendering issue that could include extra whitespaces for text containing colons.

  • #​2279 62d59e2 Thanks @​HiDeoo! - Fixes an issue with frontmatter schemas containing collection references used with the <StarlightPage /> component and an Astro version greater than 4.14.0.

v0.26.2

Compare Source

Patch Changes

v0.26.1

Compare Source

Patch Changes
  • #​2219 74d4716 Thanks @​HiDeoo! - Fixes a sidebar persistence issue when navigating between pages with different sidebar content.

v0.26.0

Compare Source

Minor Changes
  • #​1784 68f56a7 Thanks @​HiDeoo! - Adds <LinkButton> component for visually distinct and emphasized call to action links

  • #​2150 9368494 Thanks @​delucis! - Adds state persistence across page navigations to the main site sidebar

  • #​2087 caa84ea Thanks @​HiDeoo! - Adds persistence to synced <Tabs> so that a user's choices are reflected across page navigations.

  • #​2051 ec3b579 Thanks @​HiDeoo! - Adds a guideline to the last step of the <Steps> component.

    If you want to preserve the previous behaviour and hide the guideline on final steps, you can add the following custom CSS to your site:

    /* Hide the guideline for the final step in <Steps> lists. */
    .sl-steps > li:last-of-type::after {
      background: transparent;
    }
  • #​1784 68f56a7 Thanks @​HiDeoo! - Changes the hero component action button default variant from minimal to primary.

    ⚠️ BREAKING CHANGE: If you want to preserve the previous appearance, hero component action buttons previously declared without a variant will need to be updated to include the variant property with the value minimal.

    hero:
      actions:
        - text: View on GitHub
          link: https://github.com/astronaut/my-project
          icon: external
    +     variant: minimal
  • #​2168 e044fee Thanks @​HiDeoo! - ⚠️ BREAKING CHANGE: Updates the <StarlightPage /> component sidebar prop to accept an array of SidebarItems like the main Starlight sidebar configuration in astro.config.mjs.

    This change simplifies the definition of sidebar items in the <StarlightPage /> component, allows for shared sidebar configuration between the global sidebar option and <StarlightPage /> component, and also enables the usage of autogenerated sidebar groups with the <StarlightPage /> component.
    If you are using the <StarlightPage /> component with a custom sidebar configuration, you will need to update the sidebar prop to an array of SidebarItem objects.

    For example, the following custom page with a custom sidebar configuration defines a “Resources” group with a “New” badge, a link to the “Showcase” page which is part of the docs content collection, and a link to the Starlight website:

v0.25.5

Compare Source

Patch Changes

v0.25.4

Compare Source

Patch Changes
  • #​2155 8bed886 Thanks @​delucis! - Improves page load performance on slower devices

  • #​2167 9ac7725 Thanks @​delucis! - Fixes an issue detecting the built-in locale when running Starlight in a web container environment on Firefox

  • #​2166 4f12049 Thanks @​delucis! - Updates @astrojs/mdx, @astrojs/sitemap, astro-expressive-code, unified, and vfile dependencies to the latest version

withastro/astro (@​astrojs/svelte)

v5.7.1

Compare Source

Patch Changes
microsoft/playwright (@​playwright/test)

v1.47.1

Compare Source

v1.47.0

Compare Source

v1.46.1

Compare Source

v1.46.0

Compare Source

sveltejs/kit (@​sveltejs/adapter-auto)

v3.2.5

Compare Source

Patch Changes

v3.2.4

Compare Source

Patch Changes

v3.2.3

Compare Source

Patch Changes
sveltejs/kit (@​sveltejs/kit)

v2.5.28

Compare Source

Patch Changes
  • fix: import node:process instead of using globals (#​12641)

v2.5.27

Compare Source

Patch Changes
  • fix: asynchronously instantiate components when using Svelte 5 (#​12613)

  • fix: use {@&#8203;render ...} tag when generating default fallback page for svelte 5 apps (#​12653)

  • fix: emulate event.platform even when the route does not exist (#​12513)

v2.5.26

Compare Source

Patch Changes
  • fix: exclude service worker directory from tsconfig (#​12196)

v2.5.25

Compare Source

Patch Changes

v2.5.24

Compare Source

Patch Changes

v2.5.23

Compare Source

Patch Changes
  • fix: use dynamic components in root.svelte instead of svelte:component for svelte 5 (#​12584)

v2.5.22

Compare Source

Patch Changes
  • chore: configure provenance in a simpler manner (#​12570)

v2.5.21

Compare Source

Patch Changes

v2.5.20

Compare Source

Patch Changes
  • fix: set revalidate cache header on 404'd static assets (#​12530)
sveltejs/kit (@​sveltejs/package)

v2.3.5

Compare Source

Patch Changes
  • fix: use input tsconfig when calling emitDts (#​12612)

  • chore(deps): update dependency chokidar to v4 (#​12671)

v2.3.4

Compare Source

Patch Changes
  • chore: configure provenance in a simpler manner (#​12570)

v2.3.3

Compare Source

Patch Changes
sveltejs/vite-plugin-svelte (@​sveltejs/vite-plugin-svelte)

v3.1.2

Compare Source

Patch Changes
  • add warning for svelte5 users to update to vite-plugin-svelte@4 (#​964)
testing-library/jest-dom (@​testing-library/jest-dom)

v6.5.0

Compare Source

vitest-dev/vitest (@​vitest/coverage-v8)

v2.1.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.1.0

Compare Source

This release makes another big change to the Browser Mode by introducing locators API:

test('renders blog posts', async () => {
  const screen = page.render(<Blog />)

  await expect.element(screen.getByRole('heading', { name: 'Blog' })).toBeInTheDocument()

  const [firstPost] = screen.getByRole('listitem').all()

  await firstPost.getByRole('button', { name: 'Delete' }).click()

  expect(screen.getByRole('listitem').all()).toHaveLength(3)
})

You can use either vitest-browser-vue, vitest-browser-svelte or vitest-browser-react to render components and make assertions using locators. Locators are also available on the page object from @vitest/browser/context.

   🚀 Features

Configuration

📅 Schedule: Branch creation - "before 7am on friday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the internal label Sep 13, 2024
Copy link

netlify bot commented Sep 13, 2024

Deploy Preview for sheepdog ready!

Name Link
🔨 Latest commit e2f874e
🔍 Latest deploy log https://app.netlify.com/sites/sheepdog/deploys/66ec9e59ea6dfe00085264f9
😎 Deploy Preview https://deploy-preview-172--sheepdog.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 13 times, most recently from 3ade8a6 to 610713c Compare September 19, 2024 14:05
@paoloricciuti paoloricciuti merged commit b8bc469 into main Sep 20, 2024
8 checks passed
@paoloricciuti paoloricciuti deleted the renovate/all-minor-patch branch September 20, 2024 08:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant