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 minor, or patch dependencies on npm #112

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 1, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/mdx (source) 3.0.1 -> 3.1.9 age adoption passing confidence
@astrojs/partytown (source) 2.1.0 -> 2.1.3 age adoption passing confidence
@astrojs/react (source) 3.5.0 -> 3.6.3 age adoption passing confidence
@astrojs/rss (source) 4.0.6 -> 4.0.11 age adoption passing confidence
@astrojs/sitemap (source) 3.1.5 -> 3.2.1 age adoption passing confidence
@astrojs/tailwind (source) 5.1.0 -> 5.1.5 age adoption passing confidence
@astrolib/analytics (source) ^0.5.0 -> ^0.6.0 age adoption passing confidence
@astrolib/seo (source) 1.0.0-beta.5 -> 1.0.0-beta.8 age adoption passing confidence
@fontsource/inter (source) 5.0.18 -> 5.1.1 age adoption passing confidence
@iconify-json/ri 1.1.20 -> 1.2.5 age adoption passing confidence
@iconify-json/tabler 1.1.113 -> 1.2.16 age adoption passing confidence
@tailwindcss/typography 0.5.13 -> 0.5.16 age adoption passing confidence
@types/react (source) 18.3.3 -> 18.3.18 age adoption passing confidence
@types/react-dom (source) 18.3.0 -> 18.3.5 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 8.0.0 -> 8.24.1 age adoption passing confidence
@typescript-eslint/parser (source) 8.0.0 -> 8.24.1 age adoption passing confidence
astro (source) 4.16.7 -> 4.16.18 age adoption passing confidence
astro-compress 2.3.5 -> 2.3.6 age adoption passing confidence
astro-icon (source) 1.1.0 -> 1.1.5 age adoption passing confidence
axios (source) 1.7.7 -> 1.7.9 age adoption passing confidence
cheerio (source) 1.0.0-rc.12 -> 1.0.0 age adoption passing confidence
eslint (source) 8.57.0 -> 8.57.1 age adoption passing confidence
eslint-plugin-astro (source) 1.2.0 -> 1.3.1 age adoption passing confidence
eslint-plugin-jsx-a11y 6.8.0 -> 6.10.2 age adoption passing confidence
prettier (source) 3.2.5 -> 3.5.1 age adoption passing confidence
prettier-plugin-astro 0.14.0 -> 0.14.1 age adoption passing confidence
tailwindcss (source) 3.4.3 -> 3.4.17 age adoption passing confidence
typescript (source) 5.4.5 -> 5.7.3 age adoption passing confidence

Release Notes

withastro/astro (@​astrojs/mdx)

v3.1.9

Compare Source

Patch Changes

v3.1.8

Compare Source

Patch Changes

v3.1.7

Compare Source

Patch Changes

v3.1.6

Compare Source

Patch Changes

v3.1.5

Compare Source

Patch Changes
  • #​11818 88ef1d0 Thanks @​bluwy! - Fixes CSS in the layout component to be ordered first before any other components in the MDX file

v3.1.4

Compare Source

Patch Changes

v3.1.3

Compare Source

Patch Changes

v3.1.2

Compare Source

Patch Changes

v3.1.1

Compare Source

Patch Changes

v3.1.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');
    });
withastro/astro (@​astrojs/partytown)

v2.1.3

Compare Source

Patch Changes

v2.1.2

Compare Source

Patch Changes

v2.1.1

Compare Source

Patch Changes
  • #​11083 416c4ac Thanks @​V3RON! - Prevent Partytown from crashing when View Transitions are enabled

    When View Transitions are turned on, Partytown executes on every transition.
    It's not meant to be like that, and therefore it breaks the integration completely.
    Starting from now, Partytown will be executed only once.

withastro/astro (@​astrojs/react)

v3.6.3

Compare Source

Patch Changes

v3.6.2

Compare Source

Patch Changes
  • #​11624 7adb350 Thanks @​bluwy! - Prevents throwing errors when checking if a component is a React component in runtime

v3.6.1

Compare Source

Patch Changes
  • #​11571 1c3265a Thanks @​bholmesdev! - BREAKING CHANGE to the experimental Actions API only. Install the latest @astrojs/react integration as well if you're using React 19 features.

    Make .safe() the default return value for actions. This means { data, error } will be returned when calling an action directly. If you prefer to get the data while allowing errors to throw, chain the .orThrow() modifier.

    import { actions } from 'astro:actions';
    
    // Before
    const { data, error } = await actions.like.safe();
    // After
    const { data, error } = await actions.like();
    
    // Before
    const newLikes = await actions.like();
    // After
    const newLikes = await actions.like.orThrow();

v3.6.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);
    };
withastro/astro (@​astrojs/rss)

v4.0.11

Compare Source

Patch Changes

v4.0.10

Compare Source

Patch Changes

v4.0.9

Compare Source

Patch Changes

v4.0.8

Compare Source

Patch Changes

v4.0.7

Compare Source

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

v3.2.1

Compare Source

Patch Changes

v3.2.0

Compare Source

Minor Changes

v3.1.6

Compare Source

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

v5.1.5

Compare Source

Patch Changes

v5.1.4

Compare Source

Patch Changes

v5.1.3

Compare Source

Patch Changes

v5.1.2

Compare Source

Patch Changes

v5.1.1

Compare Source

Patch Changes
onwidget/astrolib (@​astrolib/analytics)

v0.6.1

Compare Source

v0.6.0

Compare Source

onwidget/astrolib (@​astrolib/seo)

v1.0.0-beta.8

Compare Source

v1.0.0-beta.7

Compare Source

v1.0.0-beta.6

Compare Source

fontsource/font-files (@​fontsource/inter)

v5.1.1

Compare Source

v5.1.0

Compare Source

v5.0.21

Compare Source

v5.0.20

Compare Source

v5.0.19

Compare Source

tailwindlabs/tailwindcss-typography (@​tailwindcss/typography)

v0.5.16

Compare Source

Fixed
  • Support installing with beta versions of Tailwind CSS v4 (#​365)

v0.5.15

Compare Source

Fixed
  • Support installing with alpha versions of Tailwind CSS v4 (#​358)

v0.5.14

Compare Source

  • Fix table text alignment (#​346)
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.24.1

Compare Source

🩹 Fixes
  • eslint-plugin: [class-methods-use-this] check accessor methods with a function initializer (#​10796)
  • eslint-plugin: [no-misused-promises] don't report on static accessor properties (#​10814)
  • eslint-plugin: [no-deprecated] don't report on deprecated accessor property declaration (#​10813)
  • eslint-plugin: [explicit-member-accessibility] check accessor class properties for missing accessibility modifier (#​10805)
  • eslint-plugin: [explicit-module-boundary-types] check accessor class properties with a function initializer (#​10804)
  • eslint-plugin: [prefer-return-this-type] check accessor properties with a function initializer (#​10794)
  • eslint-plugin: [consistent-generic-constructors] check accessor class properties (#​10789)
  • eslint-plugin: [no-unsafe-assignment] report on an any value assigned as an initializer of an accessor property (#​10785)
  • eslint-plugin: [no-unnecessary-template-expression] ignore enum and enum members (#​10782)
  • eslint-plugin: [no-inferrable-types] handle accessor (#​10780)
❤️ Thank You
  • Ronen Amiel
  • YeonJuan

You can read about our versioning strategy and releases on our website.

v8.24.0

Compare Source

🚀 Features
  • eslint-plugin: [no-unnecessary-condition] make allowConstantLoopConditions more granular (#​10639)
🩹 Fixes
  • eslint-plugin: [no-misused-spread] correct and elaborate string spread report message (#​10751)
  • eslint-plugin: [restrict-plus-operands] report adding bigints to strings when allowNumberAndString is false (#​10737)
❤️ Thank You
  • Josh Goldberg ✨
  • noah
  • Ronen Amiel

You can read about our versioning strategy and releases on our website.

v8.23.0

Compare Source

🚀 Features
  • eslint-plugin: [no-unnecessary-boolean-literal-compare] enforce strictNullChecks (#​10712)
🩹 Fixes
  • eslint-plugin: [no-shadow] ignore declare variables in definition files shadowing global variables (#​10710)
  • eslint-plugin: [no-restricted-imports] support regex option (#​10699)
  • eslint-plugin: [dot-notation] handle noPropertyAccessFromIndexSignature true (#​10644)
  • eslint-plugin: [prefer-nullish-coalescing] fix missing return (#​10732)
  • bump ts-api-utils to ^2.0.1 (#​10761)
  • eslint-plugin: [no-unnecessary-template-expression] allow interpolating type parameter in type context (#​10739)
  • eslint-plugin: [switch-exhaustiveness-check] suggest with qualified name (#​10697)
  • eslint-plugin: [no-unnecessary-type-assertion] should report readonly class properties with a literal initializer (#​10618)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.22.0

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unnecessary-template-expression] handle template literal type (#​10612)
  • eslint-plugin: [prefer-readonly] autofixer doesn't add type to property that is mutated in the constructor (#​10552)
  • eslint-plugin: [no-extraneous-class] handle accessor keyword (#​10678)
  • eslint-plugin: [no-shadow] don't report unnecessarily on valid ways of using module augmentation (#​10616)
  • eslint-plugin: [no-duplicate-type-constituents] handle nested types (#​10638)
  • eslint-plugin: [prefer-nullish-coalescing] doesn't report on ternary but on equivalent || (#​10517)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.21.0

Compare Source

🩹 Fixes
  • eslint-plugin: [no-duplicate-enum-values] handle template literal (#​10675)
  • eslint-plugin: [no-base-to-string] don't crash for recursive array or tuple types (#​10633)
  • eslint-plugin: [no-for-in-array] report on any type which may be an array or array-like (#​10535)
  • eslint-plugin: check JSX spread elements for misused spread usage (#​10653)
  • eslint-plugin: [no-unnecessary-type-arguments] handle type args on jsx (#​10630)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.20.0

Compare Source

🚀 Features
  • eslint-plugin: [consistent-type-assertions] add a

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 dependencies label Jun 1, 2024
Copy link

cloudflare-workers-and-pages bot commented Jun 1, 2024

Deploying cnia-io with  Cloudflare Pages  Cloudflare Pages

Latest commit: 42998d7
Status:🚫  Build failed.

View logs

@renovate renovate bot changed the title chore(deps): update dependency prettier to v3.3.0 chore(deps): update all minor, or patch dependencies on npm Jun 3, 2024
@renovate renovate bot force-pushed the renovate/all-minor-or-patch-dependencies-on-npm branch 8 times, most recently from b787000 to 5138008 Compare June 11, 2024 14:16
@renovate renovate bot force-pushed the renovate/all-minor-or-patch-dependencies-on-npm branch 3 times, most recently from 2a0e1c3 to ecd1028 Compare June 17, 2024 19:47
@renovate renovate bot force-pushed the renovate/all-minor-or-patch-dependencies-on-npm branch 6 times, most recently from b60ee8a to cbe4f3e Compare June 27, 2024 07:47
@renovate renovate bot force-pushed the renovate/all-minor-or-patch-dependencies-on-npm branch 6 times, most recently from 62e5b6b to 154ea82 Compare July 7, 2024 09:22
@renovate renovate bot force-pushed the renovate/all-minor-or-patch-dependencies-on-npm branch 4 times, most recently from 7530db9 to 0bd6aa0 Compare July 13, 2024 13:30
@renovate renovate bot force-pushed the renovate/all-minor-or-patch-dependencies-on-npm branch 7 times, most recently from 3dd8ce0 to 3734403 Compare December 18, 2024 12:51
@renovate renovate bot force-pushed the renovate/all-minor-or-patch-dependencies-on-npm branch 4 times, most recently from 3b8d817 to 18549ea Compare December 27, 2024 02:06
@renovate renovate bot force-pushed the renovate/all-minor-or-patch-dependencies-on-npm branch 2 times, most recently from 6713571 to 558462a Compare December 30, 2024 18:31
@renovate renovate bot force-pushed the renovate/all-minor-or-patch-dependencies-on-npm branch 5 times, most recently from d4125e6 to f98cad3 Compare January 13, 2025 18:11
@renovate renovate bot force-pushed the renovate/all-minor-or-patch-dependencies-on-npm branch 4 times, most recently from 4f8bd3f to 0ccfe07 Compare January 27, 2025 22:19
@renovate renovate bot force-pushed the renovate/all-minor-or-patch-dependencies-on-npm branch 2 times, most recently from e23b1f3 to 691cf21 Compare February 3, 2025 17:23
@renovate renovate bot force-pushed the renovate/all-minor-or-patch-dependencies-on-npm branch 4 times, most recently from 105c0ab to 2de23ae Compare February 13, 2025 15:44
@renovate renovate bot force-pushed the renovate/all-minor-or-patch-dependencies-on-npm branch from 2de23ae to 42998d7 Compare February 17, 2025 19:00
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.

0 participants