chore(deps-dev): bump astro-eslint-parser from 1.4.0 to 2.1.0 - #12007
Closed
dependabot[bot] wants to merge 1 commit into
Closed
chore(deps-dev): bump astro-eslint-parser from 1.4.0 to 2.1.0#12007dependabot[bot] wants to merge 1 commit into
dependabot[bot] wants to merge 1 commit into
Conversation
Contributor
Merge Protections🔴 1 of 6 protections blocking · waiting on 🤖 CI
🔴 🤖 Continuous IntegrationWaiting for
This rule is failing.
Show 5 satisfied protections🟢 👀 Review Requirements
🟢 Enforce conventional commitMake sure that we follow https://www.conventionalcommits.org/en/v1.0.0/
🟢 🔎 Reviews
🟢 📕 PR description
🟢 🚦 Auto-queueWhen all merge protections are satisfied, this pull request will be queued automatically. |
dependabot
Bot
force-pushed
the
dependabot/npm_and_yarn/astro-eslint-parser-2.1.0
branch
from
July 2, 2026 07:07
f89a646 to
72bc863
Compare
dependabot
Bot
force-pushed
the
dependabot/npm_and_yarn/astro-eslint-parser-2.1.0
branch
from
July 3, 2026 06:32
72bc863 to
3612236
Compare
dependabot
Bot
force-pushed
the
dependabot/npm_and_yarn/astro-eslint-parser-2.1.0
branch
from
July 6, 2026 06:25
3612236 to
643a083
Compare
Contributor
|
@dependabot[bot] this pull request is now in conflict 😩 |
dependabot
Bot
force-pushed
the
dependabot/npm_and_yarn/astro-eslint-parser-2.1.0
branch
from
July 6, 2026 06:38
643a083 to
5012688
Compare
Contributor
|
@dependabot[bot] this pull request is now in conflict 😩 |
dependabot
Bot
force-pushed
the
dependabot/npm_and_yarn/astro-eslint-parser-2.1.0
branch
from
July 7, 2026 06:26
5012688 to
9eb5185
Compare
Contributor
|
@dependabot[bot] this pull request is now in conflict 😩 |
dependabot
Bot
force-pushed
the
dependabot/npm_and_yarn/astro-eslint-parser-2.1.0
branch
from
July 7, 2026 06:40
9eb5185 to
1f58d4c
Compare
dependabot
Bot
force-pushed
the
dependabot/npm_and_yarn/astro-eslint-parser-2.1.0
branch
from
July 8, 2026 06:47
1f58d4c to
f4d2507
Compare
dependabot
Bot
force-pushed
the
dependabot/npm_and_yarn/astro-eslint-parser-2.1.0
branch
from
July 9, 2026 06:41
f4d2507 to
2310d57
Compare
dependabot
Bot
force-pushed
the
dependabot/npm_and_yarn/astro-eslint-parser-2.1.0
branch
from
July 9, 2026 06:49
2310d57 to
a62fbd0
Compare
dependabot
Bot
force-pushed
the
dependabot/npm_and_yarn/astro-eslint-parser-2.1.0
branch
from
July 9, 2026 07:00
a62fbd0 to
d95726d
Compare
Contributor
|
@dependabot[bot] this pull request is now in conflict 😩 |
dependabot
Bot
force-pushed
the
dependabot/npm_and_yarn/astro-eslint-parser-2.1.0
branch
from
July 10, 2026 07:06
d95726d to
9eddb23
Compare
dependabot
Bot
force-pushed
the
dependabot/npm_and_yarn/astro-eslint-parser-2.1.0
branch
from
July 10, 2026 07:17
9eddb23 to
ae5e25a
Compare
Contributor
|
@dependabot[bot] this pull request is now in conflict 😩 |
dependabot
Bot
force-pushed
the
dependabot/npm_and_yarn/astro-eslint-parser-2.1.0
branch
from
July 14, 2026 07:09
ae5e25a to
6d14207
Compare
Contributor
|
@dependabot[bot] this pull request is now in conflict 😩 |
Bumps [astro-eslint-parser](https://github.com/ota-meshi/astro-eslint-parser) from 1.4.0 to 2.1.0. - [Release notes](https://github.com/ota-meshi/astro-eslint-parser/releases) - [Changelog](https://github.com/ota-meshi/astro-eslint-parser/blob/main/CHANGELOG.md) - [Commits](ota-meshi/astro-eslint-parser@v1.4.0...v2.1.0) --- updated-dependencies: - dependency-name: astro-eslint-parser dependency-version: 2.1.0 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
dependabot
Bot
force-pushed
the
dependabot/npm_and_yarn/astro-eslint-parser-2.1.0
branch
from
July 14, 2026 07:19
6d14207 to
d81dd7b
Compare
jd
added a commit
that referenced
this pull request
Jul 15, 2026
Major upgrade of the `astro-eslint-parser` dev dependency. Supersedes the failing Dependabot PR #12007, whose `lint` check was red because v2 is a breaking change. Breaking changes handled: - **v2 is now a pure named-export ESM module** — it no longer provides a `default` export. The old `import astroParser from 'astro-eslint-parser'` threw `SyntaxError: The requested module 'astro-eslint-parser' does not provide an export named 'default'` when ESLint loaded the flat config, which is exactly the failing `lint` check. Switched to a namespace import (`import * as astroParser`), which exposes `parseForESLint`/`meta` — the shape ESLint's flat-config `parser` expects. - **v2 drops old Node** (now requires `^22.22.3 || ^24.16.0 || >=26.3.0`). The repo's `.node-version` pins `24`, which CI resolves to the latest 24.x (well past 24.16), so no bump is needed. - v2.1.0 swaps fast-glob/is-glob for tinyglobby (transitive only); the lockfile shrinks accordingly, no source changes required. `pnpm check` (astro check + eslint + biome) passes clean locally. Supersedes #12007. Change-Id: Ieb581ee0f89a9f22c78f705ede03bfec1b479275
mergify Bot
pushed a commit
that referenced
this pull request
Jul 15, 2026
Major upgrade of the `astro-eslint-parser` dev dependency. Supersedes the failing Dependabot PR #12007, whose `lint` check was red because v2 is a breaking change. Breaking changes handled: - **v2 is now a pure named-export ESM module** — it no longer provides a `default` export. The old `import astroParser from 'astro-eslint-parser'` threw `SyntaxError: The requested module 'astro-eslint-parser' does not provide an export named 'default'` when ESLint loaded the flat config, which is exactly the failing `lint` check. Switched to a namespace import (`import * as astroParser`), which exposes `parseForESLint`/`meta` — the shape ESLint's flat-config `parser` expects. - **v2 drops old Node** (now requires `^22.22.3 || ^24.16.0 || >=26.3.0`). The repo's `.node-version` pins `24`, which CI resolves to the latest 24.x (well past 24.16), so no bump is needed. - v2.1.0 swaps fast-glob/is-glob for tinyglobby (transitive only); the lockfile shrinks accordingly, no source changes required. `pnpm check` (astro check + eslint + biome) passes clean locally. Supersedes #12007.
Contributor
Author
|
Looks like astro-eslint-parser is up-to-date now, so this is no longer needed. |
dependabot
Bot
deleted the
dependabot/npm_and_yarn/astro-eslint-parser-2.1.0
branch
July 15, 2026 09:22
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps astro-eslint-parser from 1.4.0 to 2.1.0.
Release notes
Sourced from astro-eslint-parser's releases.
Changelog
Sourced from astro-eslint-parser's changelog.
Commits
232f0d4Version Packages (#449)245f053feat: replace fast-glob and is-glob with tinyglobby (#448)8e0ab8fchore(deps): update astro monorepo (#447)4954622chore(deps): update dependency eslint-plugin-astro to v2 (#446)ee8c974Version Packages (#437)26f43f8docs: Update README.mdd5a015fchore(deps): update dependency astro to v6.4.6 [security] (#444)2807282chore(deps): update actions/checkout action to v7 (#443)ce311c5fix(deps): update dependency@astrojs/compilerto v4 (#442)4a128eachore(deps): update dependency typescript to v6 (#420)