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 #68

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Oct 12, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/rss (source) 4.0.8 -> 4.0.9 age adoption passing confidence
@galactiks/astro-integration (source) 0.3.15 -> 0.3.19 age adoption passing confidence
@galactiks/config (source) 0.3.6 -> 0.5.0 age adoption passing confidence
@galactiks/sitemap (source) 0.1.6 -> 0.1.7 age adoption passing confidence
@types/react (source) 18.3.11 -> 18.3.12 age adoption passing confidence
@types/react-dom (source) 18.3.0 -> 18.3.1 age adoption passing confidence
astro (source) 4.16.0 -> 4.16.9 age adoption passing confidence
astro-icon (source) 1.1.1 -> 1.1.2 age adoption passing confidence
eslint-plugin-astro (source) 1.2.4 -> 1.3.0 age adoption passing confidence
eslint-plugin-jsx-a11y 6.10.0 -> 6.10.2 age adoption passing confidence
lucide-react (source) 0.451.0 -> 0.454.0 age adoption passing confidence
tailwind-merge 2.5.3 -> 2.5.4 age adoption passing confidence
tailwindcss (source) 3.4.13 -> 3.4.14 age adoption passing confidence

Release Notes

withastro/astro (@​astrojs/rss)

v4.0.9

Compare Source

Patch Changes
thegalactiks/explorer (@​galactiks/astro-integration)

v0.3.19

Compare Source

Patch Changes

v0.3.18

Compare Source

Patch Changes

v0.3.17

Compare Source

Patch Changes

v0.3.16

Compare Source

Patch Changes
thegalactiks/explorer (@​galactiks/config)

v0.5.0

Compare Source

Minor Changes

v0.4.0

Compare Source

Minor Changes
thegalactiks/explorer (@​galactiks/sitemap)

v0.1.7

Compare Source

Patch Changes
withastro/astro (astro)

v4.16.9

Compare Source

Patch Changes

v4.16.8

Compare Source

Patch Changes

v4.16.7

Compare Source

Patch Changes

v4.16.6

Compare Source

Patch Changes
  • #​11823 a3d30a6 Thanks @​DerTimonius! - fix: improve error message when inferSize is used in local images with the Image component

  • #​12227 8b1a641 Thanks @​florian-lefebvre! - Fixes a case where environment variables would not be refreshed when using astro:env

  • #​12239 2b6daa5 Thanks @​ematipico! - BREAKING CHANGE to the experimental Container API only

    Changes the default page rendering behavior of Astro components in containers, and adds a new option partial: false to render full Astro pages as before.

    Previously, the Container API was rendering all Astro components as if they were full Astro pages containing <!DOCTYPE html> by default. This was not intended, and now by default, all components will render as page partials: only the contents of the components without a page shell.

    To render the component as a full-fledged Astro page, pass a new option called partial: false to renderToString() and renderToResponse():

    import { experimental_AstroContainer as AstroContainer } from 'astro/container';
    import Card from '../src/components/Card.astro';
    
    const container = AstroContainer.create();
    
    await container.renderToString(Card); // the string will not contain `<!DOCTYPE html>`
    await container.renderToString(Card, { partial: false }); // the string will contain `<!DOCTYPE html>`

v4.16.5

Compare Source

Patch Changes

v4.16.4

Compare Source

Patch Changes
  • #​12223 79ffa5d Thanks @​ArmandPhilippot! - Fixes a false positive reported by the dev toolbar Audit app where a label was considered missing when associated with a button

    The button element can be used with a label (e.g. to create a switch) and should not be reported as an accessibility issue when used as a child of a label.

  • #​12199 c351352 Thanks @​ematipico! - Fixes a regression in the computation of Astro.currentLocale

  • #​12222 fb55695 Thanks @​ematipico! - Fixes an issue where the edge middleware couldn't correctly compute the client IP address when calling ctx.clientAddress()

v4.16.3

Compare Source

Patch Changes

v4.16.2

Compare Source

Patch Changes

v4.16.1

Compare Source

Patch Changes
  • #​12177 a4ffbfa Thanks @​matthewp! - Ensure we target scripts for execution in the router

    Using document.scripts is unsafe because if the application has a name="scripts" this will shadow the built-in document.scripts. Fix is to use getElementsByTagName to ensure we're only grabbing real scripts.

  • #​12173 2d10de5 Thanks @​ematipico! - Fixes a bug where Astro Actions couldn't redirect to the correct pathname when there was a rewrite involved.

natemoo-re/astro-icon (astro-icon)

v1.1.2

Compare Source

Patch Changes
ota-meshi/eslint-plugin-astro (eslint-plugin-astro)

v1.3.0

Compare Source

Minor Changes
jsx-eslint/eslint-plugin-jsx-a11y (eslint-plugin-jsx-a11y)

v6.10.2

Compare Source

Fixed
  • [patch] no-redundandant-roles: allow &lt;img src="*.svg" role="img" /&gt; #936
Commits
  • [meta] fix changelog URLs 0d01a1a
  • [Refactor] remove no-longer-needed es-iterator-helpers aa075bd
  • [Refactor] avoid spreading things that are already arrays d15d3ab
  • [Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, @babel/plugin-transform-flow-strip-types, @babel/register 5dad7c4
  • [Tests] aria-role: Add valid test for &lt;svg role="img" /&gt; daba189
  • [Docs] label-has-associated-control: add line breaks for readability 0bc6378
  • [Tests] label-has-associated-control: add additional test cases 30d2318
  • [Tests] Add tests to reinforce required attributes for role="heading" d92446c

v6.10.1

Compare Source

Commits
  • [Fix] handle interactive/noninteractive changes from aria-query 4925ba8
  • [Docs] Use consistent spelling of 'screen reader' cb6788c
  • [Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, @babel/plugin-transform-flow-strip-types, @babel/register, auto-changelog, eslint-plugin-import, tape 518a77e
  • [Deps] update es-iterator-helpers, string.prototype.includes eed03a3
  • [meta] package.json - Update jscodeshift & remove babel-jest 2ee940c
  • [Docs] Remove accidental whitespace in CONTRIBUTING.md a262131
  • [Deps] unpin aria-query e517937
lucide-icons/lucide (lucide-react)

v0.454.0: New icons 0.454.0

Compare Source

Modified Icons 🔨

v0.453.0: New icons 0.453.0

Compare Source

New icons 🎨

v0.452.0: New icons 0.452.0

Compare Source

Modified Icons 🔨

dcastil/tailwind-merge (tailwind-merge)

v2.5.4

Compare Source

Bug Fixes

Full Changelog: dcastil/tailwind-merge@v2.5.3...v2.5.4

Thanks to @​brandonmcconnell, @​manavm1990, @​langy, @​jamesreaco, @​roboflow and @​codecov for sponsoring tailwind-merge! ❤️

tailwindlabs/tailwindcss (tailwindcss)

v3.4.14

Compare Source

Fixed
  • Don't set display: none on elements that use hidden="until-found" (#​14625)

Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 force-pushed the renovate/all-minor-patch branch 10 times, most recently from 3a27672 to 81ee4b8 Compare October 17, 2024 15:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 89c04a6 to 05c1124 Compare October 26, 2024 07:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 2c4639b to bb8ec43 Compare November 4, 2024 14:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants