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

chore(deps): update all non-major dependencies #243

Merged
merged 1 commit into from
Jul 21, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 13, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@astrojs/check (source) 0.5.10 -> 0.8.2 age adoption passing confidence devDependencies minor
@astrojs/mdx (source) 3.1.0 -> 3.1.3 age adoption passing confidence devDependencies patch
@astrojs/preact (source) 3.2.0 -> 3.5.1 age adoption passing confidence devDependencies minor
@astrojs/rss (source) 4.0.5 -> 4.0.7 age adoption passing confidence devDependencies patch
@astrojs/sitemap (source) 3.1.4 -> 3.1.6 age adoption passing confidence devDependencies patch
@astrojs/vue (source) 4.1.0 -> 4.5.0 age adoption passing confidence devDependencies minor
@babel/core (source) 7.24.8 -> 7.24.9 age adoption passing confidence devDependencies patch
@iconify-json/carbon 1.1.31 -> 1.1.36 age adoption passing confidence dependencies patch
@iconify-json/mdi 1.1.66 -> 1.1.67 age adoption passing confidence dependencies patch
@preact/preset-vite 2.8.2 -> 2.9.0 age adoption passing confidence devDependencies minor
@types/node (source) 20.12.7 -> 20.14.11 age adoption passing confidence devDependencies minor
@yeger/eslint-config (source) 2.2.0 -> 2.2.3 age adoption passing confidence devDependencies patch
@yeger/vue-masonry-wall (source) 5.0.10 -> 5.0.12 age adoption passing confidence dependencies patch
astro (source) 4.8.0 -> 4.12.2 age adoption passing confidence devDependencies minor
astro-critters 2.1.6 -> 2.1.10 age adoption passing confidence devDependencies patch
astro-seo-schema (source) 4.0.0 -> 4.0.2 age adoption passing confidence devDependencies patch
baklavajs (source) 2.4.4 -> 2.4.5 age adoption passing confidence dependencies patch
cypress (source) 13.8.1 -> 13.13.1 age adoption passing confidence devDependencies minor
eslint (source) 9.1.1 -> 9.7.0 age adoption passing confidence devDependencies minor
husky 9.0.11 -> 9.1.1 age adoption passing confidence devDependencies minor
lint-staged 15.2.2 -> 15.2.7 age adoption passing confidence devDependencies patch
node (source) 20.12.2 -> 20.15.1 age adoption passing confidence minor
pnpm (source) 9.0.6 -> 9.5.0 age adoption passing confidence packageManager minor
preact (source) 10.20.2 -> 10.22.1 age adoption passing confidence devDependencies minor
rollup (source) 4.16.4 -> 4.19.0 age adoption passing confidence devDependencies minor
sharp (source, changelog) 0.33.3 -> 0.33.4 age adoption passing confidence devDependencies patch
tailwindcss (source) 3.4.3 -> 3.4.6 age adoption passing confidence dependencies patch
turbo (source) 2.0.3 -> 2.0.9 age adoption passing confidence devDependencies patch
typescript (source) 5.4.5 -> 5.5.3 age adoption passing confidence devDependencies minor
vecti (source) 3.0.8 -> 3.0.10 age adoption passing confidence dependencies patch
vite (source) 5.2.13 -> 5.3.4 age adoption passing confidence devDependencies minor
vite-plugin-lib (source) 2.0.9 -> 2.0.11 age adoption passing confidence devDependencies patch
vue (source) 3.4.25 -> 3.4.33 age adoption passing confidence devDependencies patch
vue-marmoset-viewer (source) 4.0.9 -> 4.0.10 age adoption passing confidence dependencies patch
vue-tsc (source) 2.0.14 -> 2.0.26 age adoption passing confidence devDependencies patch

Release Notes

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

v0.8.2

Compare Source

Patch Changes

v0.8.1

Compare Source

Patch Changes

v0.8.0

Compare Source

Minor Changes
  • b8a6af3: Upgrades to the latest version of Volar, the underlying framework powering the Astro language server. This update should fix some of the recent issues regarding intellisense inside script tags.
Patch Changes

v0.7.0

Compare Source

Minor Changes
  • c8af6db: Upgrades the language server to use the latest version of Volar. This changes should have no negative impacts on the experience.
Patch Changes

v0.6.0

Compare Source

Minor Changes
  • 65d3425: Upgrades the language server to use Volar 2.2. This changes should have no negative impacts on the experience.
Patch Changes
withastro/astro (@​astrojs/mdx)

v3.1.3

Compare Source

Patch Changes

v3.1.2

Compare Source

Patch Changes

v3.1.1

Compare Source

Patch Changes
withastro/astro (@​astrojs/preact)

v3.5.1

Compare Source

Patch Changes

v3.5.0

Compare Source

Minor Changes
  • #​11234 4385bf7 Thanks @​ematipico! - Adds a new function called addServerRenderer to the Container API. Use this function to manually store renderers inside the instance of your container.

    This new function should be preferred when using the Container API in environments like on-demand pages:

    import type { APIRoute } from 'astro';
    import { experimental_AstroContainer } from 'astro/container';
    import reactRenderer from '@​astrojs/react/server.js';
    import vueRenderer from '@​astrojs/vue/server.js';
    import ReactComponent from '../components/button.jsx';
    import VueComponent from '../components/button.vue';
    
    // MDX runtime is contained inside the Astro core
    import mdxRenderer from 'astro/jsx/server.js';
    
    // In case you need to import a custom renderer
    import customRenderer from '../renderers/customRenderer.js';
    
    export const GET: APIRoute = async (ctx) => {
      const container = await experimental_AstroContainer.create();
      container.addServerRenderer({ renderer: reactRenderer });
      container.addServerRenderer({ renderer: vueRenderer });
      container.addServerRenderer({ renderer: customRenderer });
      // You can pass a custom name too
      container.addServerRenderer({
        name: 'customRenderer',
        renderer: customRenderer,
      });
      const vueComponent = await container.renderToString(VueComponent);
      return await container.renderToResponse(Component);
    };

v3.4.0

Compare Source

Minor Changes
  • #​11144 803dd80 Thanks @​ematipico! - The integration now exposes a function called getContainerRenderer, that can be used inside the Container APIs to load the relative renderer.

    import { experimental_AstroContainer as AstroContainer } from 'astro/container';
    import ReactWrapper from '../src/components/ReactWrapper.astro';
    import { loadRenderers } from 'astro:container';
    import { getContainerRenderer } from '@​astrojs/react';
    
    test('ReactWrapper with react renderer', async () => {
      const renderers = await loadRenderers([getContainerRenderer()]);
      const container = await AstroContainer.create({
        renderers,
      });
      const result = await container.renderToString(ReactWrapper);
    
      expect(result).toContain('Counter');
      expect(result).toContain('Count: <!-- -->5');
    });

v3.3.0

Compare Source

Minor Changes
  • #​10938 fd508a0 Thanks @​florian-lefebvre! - Adds a devtools option

    You can enable Preact devtools in development by setting devtools: true in your preact() integration config:

    import { defineConfig } from 'astro/config';
    import preact from '@&#8203;astrojs/preact';
    
    export default defineConfig({
      integrations: [preact({ devtools: true })],
    });
withastro/astro (@​astrojs/rss)

v4.0.7

Compare Source

Patch Changes

v4.0.6

Compare Source

Patch Changes
withastro/astro (@​astrojs/sitemap)

v3.1.6

Compare Source

Patch Changes

v3.1.5

Compare Source

Patch Changes
withastro/astro (@​astrojs/vue)

v4.5.0

Compare Source

Minor Changes
  • #​11234 4385bf7 Thanks @​ematipico! - Adds a new function called addServerRenderer to the Container API. Use this function to manually store renderers inside the instance of your container.

    This new function should be preferred when using the Container API in environments like on-demand pages:

    import type { APIRoute } from 'astro';
    import { experimental_AstroContainer } from 'astro/container';
    import reactRenderer from '@&#8203;astrojs/react/server.js';
    import vueRenderer from '@&#8203;astrojs/vue/server.js';
    import ReactComponent from '../components/button.jsx';
    import VueComponent from '../components/button.vue';
    
    // MDX runtime is contained inside the Astro core
    import mdxRenderer from 'astro/jsx/server.js';
    
    // In case you need to import a custom renderer
    import customRenderer from '../renderers/customRenderer.js';
    
    export const GET: APIRoute = async (ctx) => {
      const container = await experimental_AstroContainer.create();
      container.addServerRenderer({ renderer: reactRenderer });
      container.addServerRenderer({ renderer: vueRenderer });
      container.addServerRenderer({ renderer: customRenderer });
      // You can pass a custom name too
      container.addServerRenderer({
        name: 'customRenderer',
        renderer: customRenderer,
      });
      const vueComponent = await container.renderToString(VueComponent);
      return await container.renderToResponse(Component);
    };

v4.4.0

Compare Source

Minor Changes
  • #​11144 803dd80 Thanks @​ematipico! - The integration now exposes a function called getContainerRenderer, that can be used inside the Container APIs to load the relative renderer.

    import { experimental_AstroContainer as AstroContainer } from 'astro/container';
    import ReactWrapper from '../src/components/ReactWrapper.astro';
    import { loadRenderers } from 'astro:container';
    import { getContainerRenderer } from '@&#8203;astrojs/react';
    
    test('ReactWrapper with react renderer', async () => {
      const renderers = await loadRenderers([getContainerRenderer()]);
      const container = await AstroContainer.create({
        renderers,
      });
      const result = await container.renderToString(ReactWrapper);
    
      expect(result).toContain('Counter');
      expect(result).toContain('Count: <!-- -->5');
    });

v4.3.0

Compare Source

Minor Changes
  • #​11055 b92de22 Thanks @​niklas-wortmann! - Updates the devtools type to allow passing VueDevToolsOptions

    For more customization, you can pass options that the Vue DevTools Vite Plugin supports. (Note: appendTo is not supported.) For example, you can set launchEditor to your preferred editor if you are not using Visual Studio Code:

    import { defineConfig } from 'astro/config';
    import vue from '@&#8203;astrojs/vue';
    
    export default defineConfig({
      // ...
      integrations: [
        vue({
          devtools: { launchEditor: 'webstorm' },
        }),
      ],
    });

v4.2.0

Compare Source

Minor Changes
  • #​10929 082abb8 Thanks @​florian-lefebvre! - Adds a devtools option

    You can enable the official Vue DevTools while working in development mode by setting devtools:true in your vue() integration config:

    import { defineConfig } from 'astro/config';
    import vue from '@&#8203;astrojs/vue';
    
    export default defineConfig({
      integrations: [vue({ devtools: true })],
    });
babel/babel (@​babel/core)

v7.24.9

Compare Source

🐛 Bug Fix
💅 Polish
🏠 Internal
preactjs/preset-vite (@​preact/preset-vite)

v2.9.0

Compare Source

Features

Fixes

Maintenance

Full Changelog: preactjs/preset-vite@2.8.3...2.9.0

v2.8.3

Compare Source

What's Changed
New Contributors

Full Changelog: preactjs/preset-vite@2.8.2...2.8.3

DerYeger/yeger (@​yeger/eslint-config)

v2.2.3

Compare Source

Patch Changes

v2.2.2

Compare Source

Patch Changes
  • 8063d69: update typescript to v5.5

v2.2.1

Compare Source

Patch Changes
DerYeger/yeger (@​yeger/vue-masonry-wall)

v5.0.12

Compare Source

Patch Changes
  • 2873aeb: describe items reactivity limitations

v5.0.11

Compare Source

Patch Changes
withastro/astro (astro)

v4.12.2

Compare Source

Patch Changes
  • #​11505 8ff7658 Thanks @​ematipico! - Enhances the dev server logging when rewrites occur during the lifecycle or rendering.

    The dev server will log the status code before and after a rewrite:

    08:16:48 [404] (rewrite) /foo/about 200ms
    08:22:13 [200] (rewrite) /about 23ms
  • #​11506 026e8ba Thanks @​sarah11918! - Fixes typo in documenting the slot="fallback" attribute for Server Islands experimental feature.

  • #​11508 ca335e1 Thanks @​cramforce! - Escapes HTML in serialized props

  • #​11501 4db78ae Thanks @​martrapp! - Adds the missing export for accessing the getFallback() function of the client site router.

v4.12.1

Compare Source

Patch Changes
  • #​11486 9c0c849 Thanks @​ematipico! - Adds a new function called addClientRenderer to the Container API.

    This function should be used when rendering components using the client:* directives. The addClientRenderer API must be used
    after the use of the addServerRenderer:

    const container = await experimental_AstroContainer.create();
    container.addServerRenderer({ renderer });
    container.addClientRenderer({ name: '@&#8203;astrojs/react', entrypoint: '@&#8203;astrojs/react/client.js' });
    const response = await container.renderToResponse(Component);
  • #​11500 4e142d3 Thanks @​Princesseuh! - Fixes inferRemoteSize type not working

  • #​11496 53ccd20 Thanks @​alfawal! - Hide the dev toolbar on window.print() (CTRL + P)

v4.12.0

Compare Source

Minor Changes
  • #​11341 49b5145 Thanks @​madcampos! - Adds support for Shiki's defaultColor option.

    This option allows you to override the values of a theme's inline style, adding only CSS variables to give you more flexibility in applying multiple color themes.

    Configure defaultColor: false in your Shiki config to apply throughout your site, or pass to Astro's built-in <Code> component to style an individual code block.

    import { defineConfig } from 'astro/config';
    export default defineConfig({
      markdown: {
        shikiConfig: {
          themes: {
            light: 'github-light',
            dark: 'github-dark',
          },
          defaultColor: false,
        },
      },
    });

v4.11.6

Compare Source

Patch Changes
  • #​11459 bc2e74d Thanks @​mingjunlu! - Fixes false positive audit warnings on elements with the role "tabpanel".

  • #​11472 cb4e6d0 Thanks @​delucis! - Avoids targeting all files in the src/ directory for eager optimization by Vite. After this change, only JSX, Vue, Svelte, and Astro components get scanned for early optimiz


Configuration

📅 Schedule: Branch creation - "after 12am and before 7am on Saturday" in timezone Europe/Vienna, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 has been generated by Mend Renovate. View repository job log here.

Copy link
Contributor Author

renovate bot commented Jul 13, 2024

Branch automerge failure

This PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.


  • Branch has one or more failed status checks

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 122638a to c9d9531 Compare July 15, 2024 14:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c9d9531 to 1a22d0d Compare July 15, 2024 16:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1a22d0d to f15402d Compare July 16, 2024 09:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f15402d to 5f64b3b Compare July 16, 2024 17:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5f64b3b to 774ff56 Compare July 16, 2024 22:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 774ff56 to 66d71e2 Compare July 17, 2024 11:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 66d71e2 to 037f62d Compare July 17, 2024 14:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 037f62d to bc702f5 Compare July 17, 2024 15:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bc702f5 to 200f0ba Compare July 18, 2024 14:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 200f0ba to 1c12ed6 Compare July 18, 2024 17:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1c12ed6 to 32f081b Compare July 19, 2024 00:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 32f081b to 69641dd Compare July 19, 2024 11:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 69641dd to 99f73cf Compare July 19, 2024 17:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7089888 to 9149cf3 Compare July 21, 2024 12:22
@renovate renovate bot merged commit bc8097b into main Jul 21, 2024
5 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch July 21, 2024 17:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant