8000 build(deps): bump the all group with 7 updates by dependabot[bot] · Pull Request #56 · Pkcarreno/homepage · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

build(deps): bump the all group with 7 updates #56

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

Merged
merged 1 commit into from
Mar 17, 2025

Conversation

dependabot[bot]
Copy link
Contributor
@dependabot dependabot bot commented on behalf of github Mar 17, 2025

Bumps the all group with 7 updates:

Package From To
@astrojs/markdoc 0.12.10 0.13.0
@astrojs/vercel 8.1.1 8.1.2
astro 5.4.2 5.5.2
eslint-plugin-oxlint 0.15.13 0.16.0
lightningcss 1.29.2 1.29.3
oxlint 0.15.13 0.16.0
typescript-eslint 8.26.0 8.26.1

Updates @astrojs/markdoc from 0.12.10 to 0.13.0

Release notes

Sourced from @​astrojs/markdoc's releases.

@​astrojs/markdoc@​0.13.0

Minor Changes

  • #13352 cb886dc Thanks @​delucis! - Adds support for a new experimental.headingIdCompat flag

    By default, Astro removes a trailing - from the end of IDs it generates for headings ending with special characters. This differs from the behavior of common Markdown processors.

    You can now disable this behavior with a new configuration flag:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    export default defineConfig({
    experimental: {
    headingIdCompat: true,
    },
    });

    This can be useful when heading IDs and anchor links need to behave consistently across your site and other platforms such as GitHub and npm.

    If you are using the rehypeHeadingIds plugin directly, you can also pass this new option:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    import { rehypeHeadingIds } from '@astrojs/markdown-remark';
    import { otherPluginThatReliesOnHeadingIDs } from 'some/plugin/source';
    export default defineConfig({
    markdown: {
    rehypePlugins: [
    [rehypeHeadingIds, { experimentalHeadingIdCompat: true }],
    otherPluginThatReliesOnHeadingIDs,
    ],
    },
    });

Patch Changes

@​astrojs/markdoc@​0.12.11

Patch Changes

... (truncated)

Changelog

Sourced from @​astrojs/markdoc's changelog.

0.13.0

Minor Changes

  • #13352 cb886dc Thanks @​delucis! - Adds support for a new experimental.headingIdCompat flag

    By default, Astro removes a trailing - from the end of IDs it generates for headings ending with special characters. This differs from the behavior of common Markdown processors.

    You can now disable this behavior with a new configuration flag:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    export default defineConfig({
    experimental: {
    headingIdCompat: true,
    },
    });

    This can be useful when heading IDs and anchor links need to behave consistently across your site and other platforms such as GitHub and npm.

    If you are using the rehypeHeadingIds plugin directly, you can also pass this new option:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    import { rehypeHeadingIds } from '@astrojs/markdown-remark';
    import { otherPluginThatReliesOnHeadingIDs } from 'some/plugin/source';
    expor
    8000
    t default defineConfig({
    markdown: {
    rehypePlugins: [
    [rehypeHeadingIds, { experimentalHeadingIdCompat: true }],
    otherPluginThatReliesOnHeadingIDs,
    ],
    },
    });

Patch Changes

0.12.11

... (truncated)

Commits

Updates @astrojs/vercel from 8.1.1 to 8.1.2

Release notes

Sourced from @​astrojs/vercel's releases.

@​astrojs/vercel@​8.1.2

Patch Changes

  • Updated dependencies [042d1de]:
    • @​astrojs/internal-helpers@​0.6.1
Changelog

Sourced from @​astrojs/vercel's changelog.

8.1.2

Patch Changes

  • Updated dependencies [042d1de]:
    • @​astrojs/internal-helpers@​0.6.1
Commits

Updates astro from 5.4.2 to 5.5.2

Release notes

Sourced from astro's releases.

astro@5.5.2

Patch Changes

  • #13415 be866a1 Thanks @​ascorbic! - Reuses experimental session storage object between requests. This prevents memory leaks and improves performance for drivers that open persistent connections to a database.

  • #13420 2f039b9 Thanks @​ematipico! - It fixes an issue that caused some regressions in how styles are bundled.

astro@5.5.1

Patch Changes

astro@5.5.0

Minor Changes

  • #13402 3e7b498 Thanks @​ematipico! - Adds a new experimental flag called experimental.preserveScriptOrder that renders <script> and <style> tags in the same order as they are defined.

    When rendering multiple <style> and <script> tags on the same page, Astro currently reverses their order in your generated HTML output. This can give unexpected results, for example CSS styles being overridden by earlier defined style tags when your site is built.

    With the new preserveScriptOrder flag enabled, Astro will generate the styles in the order they are defined:

    import { defineConfig } from 'astro/config';
    export default defineConfig({
    experimental: {
    preserveScriptOrder: true,
    },
    });

    For example, the following component has two <style> tags, and both define the same style for the body tag:

    <p>I am a component</p>
    <style>
      body {
        background: red;
      }
    </style>
    <style>
      body {
        background: yellow;
      }
    </style>

    Once the project is compiled, Astro will create an inline style where yellow appears first, and then red. Ultimately, the red background is applied:

... (truncated)

Changelog

Sourced from astro's changelog.

5.5.2

Patch Changes

  • #13415 be866a1 Thanks @​ascorbic! - Reuses experimental session storage object between requests. This prevents memory leaks and improves performance for drivers that open persistent connections to a database.

  • #13420 2f039b9 Thanks @​ematipico! - It fixes an issue that caused some regressions in how styles are bundled.

5.5.1

Patch Changes

5.5.0

Minor Changes

  • #13402 3e7b498 Thanks @​ematipico! - Adds a new experimental flag called experimental.preserveScriptOrder that renders <script> and <style> tags in the same order as they are defined.

    When rendering multiple <style> and <script> tags on the same page, Astro currently reverses their order in your generated HTML output. This can give unexpected results, for example CSS styles being overridden by earlier defined style tags when your site is built.

    With the new preserveScriptOrder flag enabled, Astro will generate the styles in the order they are defined:

    import { defineConfig } from 'astro/config';
    export default defineConfig({
    experimental: {
    preserveScriptOrder: true,
    },
    });

    For example, the following component has two <style> tags, and both define the same style for the body tag:

    <p>I am a component</p>
    <style>
      body {
        background: red;
      }
    </style>
    <style>
      body {
        background: yellow;
      }
    </style>

... (truncated)

Commits

Updates eslint-plugin-oxlint from 0.15.13 to 0.16.0

Release notes

Sourced from eslint-plugin-oxlint's releases.

v0.16.0

   🐞 Bug Fixes

    View changes on GitHub

v0.15.15

No significant changes

    View changes on GitHub

v0.15.14

No significant changes

    View changes on GitHub
Commits

Updates lightningcss from 1.29.2 to 1.29.3

Release notes

Sourced from lightningcss's releases.

v1.29.3

Commits

Updates oxlint from 0.15.13 to 0.16.0

Release notes

Sourced from oxlint's releases.

oxlint v0.16.0

Announcing Oxlint Beta: https://oxc.rs/blog/2025-03-15-oxlint-beta.html

[0.16.0] - 2025-03-16

  • 225e266 linter: [BREAKING] Enable --experimental-nested-config by default and add --disable-nested-config option (#9760) (camchenry)

Features

  • 27d6e9b editor: Only watch .oxlintrc.json or user supplied config paths (#9731) (Nicholas Rayburn)
  • 8dd6809 linter: Add eslint/no-lonely-if (#9660) (therewillbecode)
  • c22276e oxc_linter: Sort rules by plugin and rule name when outputting resolved config as a JSON string (#9799) (Nicholas Rayburn)

Bug Fixes

  • 22f18ac linter: Improve jsx-a11y/anchor-ambiguous-text diagnostic message (#9789) (1zumii)
  • 6c11740 linter: False positive in unicorn/catch-error-name (#9763) (shulaoda)

Documentation

  • ea6b6d9 linter: Improve docs for eslint-valid-typeof (#9797) (therewillbecode)
  • 2c48fba linter: Fix typo in oxc/bad-min-max-func (#9791) (Flo)
  • 210b876 linter: Improve eslint-no-async-promise-executor (#9778) (therewillbecode)
  • f8628bc linter: Improve eslint-no-class-assign (#9779) (therewillbecode)
  • faca7a8 linter: Improve eslint-no-self-assign (#9768) (therewillbecode)

Refactor

  • 227d203 linter: Improve typescript-no-unnecessary-type-constraint (#9798) (therewillbecode)
  • 05fe2cd linter: Use is_lexical when checking for lexical decl (#9781) (camc314)
  • fcdd810 linter: Remove if let nesting from unicorn-no-date-clone (#9767) (therewillbecode)
  • 5a9e1b9 linter: Improve typescript-no-misused-new (#9766) (therewillbecode)
  • 9df5565 linter: Improve unicorn/filename-case (#9762) (shulaoda)
  • b0b1f18 linter: Remove if let nesting from nextjs-no-async-client-component (#9764) (therewillbecode)

oxlint v0.15.15

[0.15.15] - 2025-03-13

This release introduces a new multi-file analysis runtime that addresses numerous bugs reported by the import plugin.

  • 474a57b linter: A new multi-file analysis runtime (#9383) (branchseer)

Features

  • 2ddad59 linter: Add unicorn/require-post-message-target-origin rule (#9684) (yefan)

Bug Fixes

  • 6c0978b linter: No-single-promise-in-promise-methods: do not fix Promise.all when chained (#9697) (camchenry)
  • ab594f1 linter: Turn oxc/no-redundant-constructor-init into typescript/no-unnecessary-parameter-property-assignment (#9618) (Uli)

... (truncated)

Changelog

Sourced from oxlint's changelog.

Changelog

All notable changes to this package will be documented in this file.

The format is based on Keep a Changelog, and this project does not adhere to Se 8000 mantic Versioning until v1.0.0.

[0.15.14] - 2025-03-11

Features

  • 3fce826 linter: Add support for extends property in oxlintrc (#9217) (camchenry)
Commits

Updates typescript-eslint from 8.26.0 to 8.26.1

Release notes

Sourced from typescript-eslint's releases.

v8.26.1

8.26.1 (2025-03-10)

🩹 Fixes

  • eslint-plugin: [prefer-nullish-coalescing] treat any/unknown as eligible for nullish coalescing (#10865)
  • eslint-plugin: [no-unsafe-return] handle recursive type (#10883)
  • rule-tester: export TestLanguageOptions (#10930)

❤️ Thank You

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

Changelog

Sourced from typescript-eslint's changelog.

8.26.1 (2025-03-10)

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

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

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/markdoc](https://github.com/withastro/astro/tree/HEAD/packages/integrations/markdoc) | `0.12.10` | `0.13.0` |
| [@astrojs/vercel](https://github.com/withastro/astro/tree/HEAD/packages/integrations/vercel) | `8.1.1` | `8.1.2` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `5.4.2` | `5.5.2` |
| [eslint-plugin-oxlint](https://github.com/oxc-project/eslint-plugin-oxlint) | `0.15.13` | `0.16.0` |
| [lightningcss](https://github.com/parcel-bundler/lightningcss) | `1.29.2` | `1.29.3` |
| [oxlint](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxlint) | `0.15.13` | `0.16.0` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.26.0` | `8.26.1` |


Updates `@astrojs/markdoc` from 0.12.10 to 0.13.0
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/markdoc/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/markdoc@0.13.0/packages/integrations/markdoc)

Updates `@astrojs/vercel` from 8.1.1 to 8.1.2
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/vercel/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/vercel@8.1.2/packages/integrations/vercel)

Updates `astro` from 5.4.2 to 5.5.2
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/astro@5.5.2/packages/astro)

Updates `eslint-plugin-oxlint` from 0.15.13 to 0.16.0
- [Release notes](https://github.com/oxc-project/eslint-plugin-oxlint/releases)
- [Commits](oxc-project/eslint-plugin-oxlint@v0.15.13...v0.16.0)

Updates `lightningcss` from 1.29.2 to 1.29.3
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
- [Commits](parcel-bundler/lightningcss@v1.29.2...v1.29.3)

Updates `oxlint` from 0.15.13 to 0.16.0
- [Release notes](https://github.com/oxc-project/oxc/releases)
- [Changelog](https://github.com/oxc-project/oxc/blob/main/npm/oxlint/CHANGELOG.md)
- [Commits](https://github.com/oxc-project/oxc/commits/oxlint_v0.16.0/npm/oxlint)

Updates `typescript-eslint` from 8.26.0 to 8.26.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.26.1/packages/typescript-eslint)

---
updated-dependencies:
- dependency-name: "@astrojs/markdoc"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@astrojs/vercel"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: astro
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: eslint-plugin-oxlint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: lightningcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: oxlint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: typescript-eslint
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 17, 2025
Copy link
vercel bot commented Mar 17, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
homepage ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 17, 2025 11:34am

@Pkcarreno Pkcarreno merged commit ee3b5c8 into master Mar 17, 2025
4 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/all-32c13f5e33 branch March 17, 2025 13:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant
0