AminoffZ / github-repo-size

A browser extension for showing the size of repos.
https://chrome.google.com/webstore/detail/github-repo-size/jpdmfnflpdgefbfkafcikmhipofhanfl
MIT License
38 stars 4 forks source link

Bump the all-updates group across 1 directory with 13 updates #201

Closed dependabot[bot] closed 1 week ago

dependabot[bot] commented 2 weeks ago

Bumps the all-updates group with 11 updates in the / directory:

Package From To
@astrojs/svelte 4.0.4 5.7.2
@astrojs/tailwind 5.1.0 5.1.2
astro 3.6.5 4.16.6
svelte 4.2.18 5.0.3
@tailwindcss/forms 0.5.7 0.5.9
@types/chrome 0.0.269 0.0.278
@typescript-eslint/eslint-plugin 7.18.0 8.10.0
@typescript-eslint/parser 7.18.0 8.10.0
astro-purgecss 3.2.1 4.6.1
purgecss 5.0.0 6.0.0
tailwindcss 3.4.7 3.4.14

Updates @astrojs/svelte from 4.0.4 to 5.7.2

Release notes

Sourced from @​astrojs/svelte's releases.

@​astrojs/svelte@​5.7.2

Patch Changes

@​astrojs/svelte@​5.7.1

Patch Changes

Changelog

Sourced from @​astrojs/svelte's changelog.

5.7.2

Patch Changes

5.7.1

Patch Changes

5.7.0

Minor Changes

  • #11490 6ad02b5 Thanks @​bluwy! - Bumps Svelte 5 peer dependency to ^5.0.0-next.190 and support the latest slots/snippets API

5.6.0

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, });

... (truncated)

Commits


Updates @astrojs/tailwind from 5.1.0 to 5.1.2

Release notes

Sourced from @​astrojs/tailwind's releases.

@​astrojs/tailwind@​5.1.2

Patch Changes

  • #12161 8e500f2 Thanks @​delucis! - Adds keywords to package.json to improve categorization in the Astro integrations catalog

@​astrojs/tailwind@​5.1.1

Patch Changes

Changelog

Sourced from @​astrojs/tailwind's changelog.

5.1.2

Patch Changes

  • #12161 8e500f2 Thanks @​delucis! - Adds keywords to package.json to improve categorization in the Astro integrations catalog

5.1.1

Patch Changes

Commits


Updates astro from 3.6.5 to 4.16.6

Release notes

Sourced from astro's releases.

astro@4.16.6

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 &lt;!DOCTYPE html&gt; await container.renderToString(Card, { partial: false }); // the string will contain &lt;!DOCTYPE html&gt;

astro@4.16.5

Patch Changes

astro@4.16.4

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()

astro@4.16.3

Patch Changes

astro@4.16.2

Patch Changes

... (truncated)

Changelog

Sourced from astro's changelog.

4.16.6

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 &lt;!DOCTYPE html&gt; await container.renderToString(Card, { partial: false }); // the string will contain &lt;!DOCTYPE html&gt;

4.16.5

Patch Changes

4.16.4

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()

4.16.3

Patch Changes

  • #12220 b049359 Thanks @​bluwy! - Fixes accidental internal setOnSetGetEnv parameter rename that caused runtime errors

... (truncated)

Commits


Updates svelte from 4.2.18 to 5.0.3

Release notes

Sourced from svelte's releases.

svelte@5.0.3

Patch Changes

  • chore: ensure transition events are dispatched without current reaction (#13719)

svelte@5.0.2

Patch Changes

  • fix: don't blank css on migration error (#13703)

svelte@5.0.1

Patch Changes

  • fix: use typedef for JSDoc props and maintain comments (#13698)

svelte@5.0.0

A new major version of Svelte has been released! 🎉

The new version brings:

  • even better performance,
  • a more granular reactivity system with runes,
  • more expressive template syntax with snippets and event attributes,
  • native TypeScript support,
  • and backwards compatibility with the previous syntax!

For more details check out the Svelte docs and the migration guide.

svelte@5.0.0-next.272

Patch Changes

  • fix: ensure user effects are correctly executed on initialisation (#13697)

  • breaking: state mutations inside the template are no longer allowed (#13660)

svelte@5.0.0-next.271

Patch Changes

  • fix: avoid chromium issue with dispatching blur on element removal (#13694)

svelte@5.0.0-next.270

Patch Changes

  • fix: bail out if slot name changes and $slots assigned to variable (#13678)

  • feat: add migration-task for impossible to migrate slots (#13658)

  • feat: tell users of @migration-task (#13668)

  • fix: correct migration of uninitialised state (#13673)

... (truncated)

Changelog

Sourced from svelte's changelog.

5.0.3

Patch Changes

  • chore: ensure transition events are dispatched without current reaction (#13719)

5.0.2

Patch Changes

  • fix: don't blank css on migration error (#13703)

5.0.1

Patch Changes

  • fix: use typedef for JSDoc props and maintain comments (#13698)

5.0.0

A new major version of Svelte has been released! 🎉

The new version brings:

  • even better performance,
  • a more granular reactivity system with runes,
  • more expressive template syntax with snippets and event attributes,
  • native TypeScript support,
  • and backwards compatibility with the previous syntax!

For more details check out the Svelte docs and the migration guide.

5.0.0-next.272

Patch Changes

  • fix: ensure user effects are correctly executed on initialisation (#13697)

  • breaking: state mutations inside the template are no longer allowed (#13660)

5.0.0-next.271

Patch Changes

  • fix: avoid chromium issue with dispatching blur on element removal (#13694)

5.0.0-next.270

Patch Changes

... (truncated)

Commits


Updates @tailwindcss/forms from 0.5.7 to 0.5.9

Release notes

Sourced from @​tailwindcss/forms's releases.

v0.5.9

Fixed

  • Fallback to static chevron color if theme is using variables (#167)

v0.5.8

Fixed

  • Support installing with alpha versions of Tailwind CSS v4 (#163)
Changelog

Sourced from @​tailwindcss/forms's changelog.

[0.5.9] - 2024-09-05

Fixed

  • Fallback to static chevron color if theme is using variables (#167)

[0.5.8] - 2024-08-28

Fixed

  • Support installing with alpha versions of Tailwind CSS v4 (#163)
Commits


Updates @types/chrome from 0.0.269 to 0.0.278

Commits


Updates @typescript-eslint/eslint-plugin from 7.18.0 to 8.10.0

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.10.0

8.10.0 (2024-10-17)

🚀 Features

  • support TypeScript 5.6 (#9972)

🩹 Fixes

  • typescript-eslint: propagate name field to extended configs in config helper (#10094)

❤️ Thank You

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

v8.9.0

8.9.0 (2024-10-14)

🚀 Features

  • rule-tester: hooks for test cases (#10109)

🩹 Fixes

  • eslint-plugin: [no-unnecessary-type-parameters] cannot assume variables are either type or value (#10093)
  • eslint-plugin: [return-await] sync the behavior with await-thenable (#10069)
  • eslint-plugin: [prefer-literal-enum-member] report a different error message when allowBitwiseExpressions is enabled (#10096)
  • eslint-plugin: [no-loop-func] sync from upstream base rule (#10103)
  • eslint-plugin: [no-unused-vars] never report the naming of an enum member (#10117)
  • eslint-plugin: correct use-at-your-own-risk type definitions (#10049)
  • eslint-plugin: handle unions in await...for (#10110)
  • rule-tester: merge provided linterOptions (#10131)
  • scope-manager: [no-use-before-define] do not treat nested namespace aliases as variable references (#10095)
  • typescript-estree: improve project service error message when file extension missing from extraFileExtensions (#10076)
  • visitor-keys: reorder TSSatisfiesExpression and TSTypeAssertion (#10139)

❤️ Thank You

... (truncated)

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

8.10.0 (2024-10-17)

🚀 Features

  • support TypeScript 5.6 (#9972)

❤️ Thank You

  • Josh Goldberg ✨

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

8.9.0 (2024-10-14)

🩹 Fixes

  • eslint-plugin: [no-unnecessary-type-parameters] cannot assume variables are either type or value

  • scope-manager: [no-use-before-define] do not treat nested namespace aliases as variable references

  • eslint-plugin: [return-await] sync the behavior with await-thenable

  • eslint-plugin: [prefer-literal-enum-member] report a different error message when allowBitwiseExpressions is enabled

  • eslint-plugin: [no-loop-func] sync from upstream base rule

  • eslint-plugin: [no-unused-vars] never report the naming of an enum member

  • eslint-plugin: correct use-at-your-own-risk type definitions

  • eslint-plugin: handle unions in await...for

❤️ Thank You

  • Abraham Guo
  • Anna Bocharova
  • Arya Emami
  • auvred
  • Joshua Chen
  • Kirk Waiblinger
  • Lotfi Meklati
  • mdm317
  • Ronen Amiel
  • Sukka
  • YeonJuan

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

... (truncated)

Commits
  • 7effdea chore(release): publish 8.10.0
  • f9c49e3 feat: support TypeScript 5.6 (#9972)
  • d09d36d docs: inject option descriptions into rule docs when possible (#9925)
  • 373c63a chore(eslint-plugin): [no-unnecessary-condition] remove dead suggestion id (#...
  • 4666ed4 chore(release): publish 8.9.0
  • ef8642b fix(eslint-plugin): handle unions in await...for (#10110)
  • ef5df2f docs: update ordered-imports status (#10129)
  • 60f0766 fix(eslint-plugin): correct use-at-your-own-risk type definitions (#10049)
  • 15d0960 fix(eslint-plugin): [no-unused-vars] never report the naming of an enum membe...
  • a87c296 fix(eslint-plugin): [no-loop-func] sync from upstream base rule (#10103)
  • Additional commits viewable in compare view


Updates @typescript-eslint/parser from 7.18.0 to 8.10.0

Release notes

Sourced from @​typescript-eslint/parser's releases.

v8.10.0

8.10.0 (2024-10-17)

🚀 Features

  • support TypeScript 5.6 (#9972)

🩹 Fixes

  • typescript-eslint: propagate name field to extended configs in config helper (#10094)

❤️ Thank You

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

v8.9.0

8.9.0 (2024-10-14)

🚀 Features

  • rule-tester: hooks for test cases (#10109)

🩹 Fixes

  • eslint-plugin: [no-unnecessary-type-parameters] cannot assume variables are either type or value (#10093)
  • eslint-plugin: [return-await] sync the behavior with await-thenable (#10069)
  • eslint-plugin: [prefer-literal-enum-member] report a different error message when allowBitwiseExpressions is enabled (#10096)
  • eslint-plugin: [no-loop-func] sync from upstream base rule (#10103)
  • eslint-plugin: [no-unused-vars] never report the naming of an enum member (#10117)
  • eslint-plugin: correct use-at-your-own-risk type definitions (#10049)
  • eslint-plugin: handle unions in await...for (#10110)
  • rule-tester: merge provided linterOptions (#10131)
  • scope-manager: [no-use-before-define] do not treat nested namespace aliases as variable references (#10095)
  • typescript-estree: improve project service error message when file extension missing from extraFileExtensions (#10076)
  • visitor-keys: reorder TSSatisfiesExpression and TSTypeAssertion (#10139)

❤️ Thank You

... (truncated)

Changelog

Sourced from @​typescript-eslint/parser's changelog.

8.10.0 (2024-10-17)

🚀 Features

  • support TypeScript 5.6 (#9972)

❤️ Thank You

  • Josh Goldberg ✨

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

8.9.0 (2024-10-14)

This was a version bump only for parser to align it with other projects, there were no code changes.

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

8.8.1 (2024-10-07)

This was a version bump only for parser to align it with other projects, there were no code changes.

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

8.8.0 (2024-09-30)

This was a version bump only for parser to align it with other projects, there were no code changes.

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

8.7.0 (2024-09-23)

This was a version bump only for parser to align it with other projects, there were no code changes.

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

8.6.0 (2024-09-16)

This was a version bump only for parser to align it with other projects, there were no code changes.

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

8.5.0 (2024-09-09)

This was a version bump only for parser to align it with other projects, there were no code changes.

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

8.4.0 (2024-09-02)

... (truncated)

Commits


Updates astro-purgecss from 3.2.1 to 4.6.1

Release notes

Sourced from astro-purgecss's releases.

astro-purgecss@4.6.1

Patch Changes

astro-purgecss@4.6.0

Minor Changes

astro-purgecss@4.5.0

Minor Changes

astro-purgecss@4.4.1

Patch Changes

astro-purgecss@4.4.0

Minor Changes

astro-purgecss@4.3.0

Minor Changes

astro-purgecss@4.2.0

Minor Changes

  • 26df36e Thanks @​Diviei! - Fix astro-purgecss is modifying files keeping old hash

astro-purgecss@4.1.1

Patch Changes

astro-purgecss@4.1.0

Minor Changes

astro-purgecss@4.0.0

Major Changes

Changelog

Sourced from astro-purgecss's changelog.

4.6.1

Patch Changes

4.6.0

Minor Changes

4.5.0

Minor Changes

4.4.1

Patch Changes

4.4.0

Minor Changes

4.3.0

Minor Changes

4.2.0

Minor Changes

  • 26df36e Thanks @​Diviei! - Fix astro-purgecss is modifying files keeping old hash

4.1.1

Patch Changes

4.1.0

... (truncated)

Commits