build(deps): bump the all group across 1 directory with 89 updates
Type: Pull Request
State: Open
![dependabot[bot]](https://github.com/dependabot.png)
Association: None
Comments: 0
(1 day ago)
(1 day ago)
dependencies javascript
Bumps the all group with 27 updates in the / directory:
Package | From | To |
---|---|---|
next | 15.5.0 |
15.5.2 |
@biomejs/biome | 2.2.2 |
2.2.3 |
@eslint/js | 9.34.0 |
9.35.0 |
@next/eslint-plugin-next | 15.5.0 |
15.5.2 |
@tailwindcss/postcss | 4.1.12 |
4.1.13 |
@tauri-apps/cli | 2.8.3 |
2.8.4 |
@types/node | 24.3.0 |
24.3.1 |
@types/react | 19.1.11 |
19.1.12 |
@types/react-dom | 19.1.7 |
19.1.9 |
@typescript-eslint/eslint-plugin | 8.40.0 |
8.42.0 |
@typescript-eslint/parser | 8.40.0 |
8.42.0 |
@vitejs/plugin-react | 5.0.1 |
5.0.2 |
eslint-config-next | 15.5.0 |
15.5.2 |
tailwindcss | 4.1.12 |
4.1.13 |
typescript-eslint | 8.40.0 |
8.42.0 |
@babel/compat-data | 7.28.0 |
7.28.4 |
@babel/core | 7.28.3 |
7.28.4 |
@babel/plugin-transform-block-scoping | 7.28.0 |
7.28.4 |
@babel/plugin-transform-classes | 7.28.3 |
7.28.4 |
@babel/plugin-transform-object-rest-spread | 7.28.0 |
7.28.4 |
@babel/plugin-transform-regenerator | 7.28.3 |
7.28.4 |
@babel/runtime | 7.28.3 |
7.28.4 |
@eslint-community/eslint-utils | 4.7.0 |
4.8.0 |
@humanfs/node | 0.16.6 |
0.16.7 |
browserslist | 4.25.3 |
4.25.4 |
rollup | 4.48.1 |
4.50.0 |
vite | 7.1.3 |
7.1.4 |
Updates next
from 15.5.0 to 15.5.2
Release notes
Sourced from next's releases.
v15.5.2
[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.Core Changes
- fix: disable unknownatrules lint rule entirely (#83059)
- revert: add ?dpl to fonts in /_next/static/media (#83062)
Credits
Huge thanks to
@bgub
and@ztanner
for helping!v15.5.1
[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.Core Changes
- fix: aliased navigations should apply scroll handling (#82900)
- Turbopack: fix invalid NFT entry with file behind symlink (#82887)
- fix: typesafe linking to route handlers and pages API routes (#82858)
- fix: change "noUnknownAtRules" to "warn" for Biome (#82974)
- fix: add path normalization to getRelativePath for Windows (#82918)
- feat: add typesafety with config.typedRoutes to redirect() and permanentRedirect() (#82860)
- fix: avoid importing types that will be unused (#82856)
- fix: update the config.api.responseLimit type (#82852)
- fix: update validation return types (#82854)
Credits
Huge thanks to
@bgub
,@mischnic
, and@ztanner
for helping!v15.5.1-canary.29
Core Changes
- [metadata] not add suffix to sitemap.xml in group routes: #83486
- [devtools] Use
useEffectEvent
instead of ignoring exhaustive deps: #83236- [metadata] refactor metadata sitemap loader code: #83443
- Include prerender interrupted error in unstable_rethrow: #83463
Misc Changes
- [turbopack] Attempt #2 at making rust-analyzer happy with our macros: #83461
- [turbopack] RFC: Serialize turbopack objects as u16s instead of fully qualified symbol names: #83193
- [turbopack] enable the signal feature of
nix
: #83473- Turbopack: Don't resolve tsconfig relative to file: #83484
Credits
Huge thanks to
@lukesandberg
,@huozhi
,@timneutkens
,@eps1lon
, and@gnoff
for helping!
... (truncated)
Commits
497ec6a
v15.5.2bc72f41
[backport] revert: add ?dpl to fonts in/_next/static/media
(#83062) (#83066)c8faf68
[backport] fix: disable unknownatrules lint rule entirely (#83059) (#83060)cc68ced
v15.5.11ce9857
[backport] fix: update validation return types (#82854) (#83027)b93c894
[backport] fix: update the config.api.responseLimit type (#82852) (#83028)8a92f28
[backport] fix: avoid importing types that will be unused (#82856) (#83026)19617ab
[backport] feat: add typesafety with config.typedRoutes to redirect() and per...822e4c0
[backport] fix: add path normalization to getRelativePath for Windows (#82918...bb67ca9
[backport] fix: change "noUnknownAtRules" to "warn" for Biome (#82974) (#83022)- Additional commits viewable in compare view
Updates @biomejs/biome
from 2.2.2 to 2.2.3
Release notes
Sourced from @biomejs/biome
's releases.
Biome CLI v2.2.3
2.2.3
Patch Changes
#7353
4d2b719
Thanks@JeetuSuthar
! - Fixed #7340: The linter now allows thenavigation
property for view-transition in CSS.Previously, the linter incorrectly flagged
navigation: auto
as an unknown property. This fix addsnavigation
to the list of known CSS properties, following the CSS View Transitions spec.#7275
560de1b
Thanks@arendjr
! - Fixed #7268: Files that are explicitly passed as CLI arguments are now correctly ignored if they reside in an ignored folder.#7358
963a246
Thanks@ematipico
! - Fixed #7085, now the rulenoDescendingSpecificity
correctly calculates the specificity of selectors when they are included inside a media query.#7387
923674d
Thanks@qraqras
! - Fixed #7381, now theuseOptionalChain
rule recognizes optional chaining using Yoda expressions (e.g.,undefined !== foo && foo.bar
).#7316
f9636d5
Thanks@Conaclos
! - Fixed #7289. The ruleuseImportType
now inlinesimport type
intoimport { type }
when thestyle
option is set toinlineType
.Example:
import type { T } from "mod"; // becomes import { type T } from "mod";
#7350
bb4d407
Thanks@siketyan
! - Fixed #7261: two characters・
(KATAKANA MIDDLE DOT, U+30FB) and・
(HALFWIDTH KATAKANA MIDDLE DOT, U+FF65) are no longer considered as valid characters in identifiers. Property keys containing these character(s) are now preserved as string literals.#7377
811f47b
Thanks@ematipico
! - Fixed a bug where the Biome Language Server didn't correctly compute the diagnostics of a monorepo setting, caused by an incorrect handling of the project status.#7245
fad34b9
Thanks@kedevked
! - Added the new lint ruleuseConsistentArrowReturn
.This rule enforces a consistent return style for arrow functions.
Invalid
const f = () => { return 1; };
This rule is a port of ESLint's arrow-body-style rule.
#7370
e8032dd
Thanks@fireairforce
! - Support dynamicimport defer
andimport source
. The syntax looks like:import.source("foo"); import.source("x", { with: { attr: "val" } }); import.defer("foo"); import.defer("x", { with: { attr: "val" } });
... (truncated)
Changelog
Sourced from @biomejs/biome
's changelog.
2.2.3
Patch Changes
#7353
4d2b719
Thanks@JeetuSuthar
! - Fixed #7340: The linter now allows thenavigation
property for view-transition in CSS.Previously, the linter incorrectly flagged
navigation: auto
as an unknown property. This fix addsnavigation
to the list of known CSS properties, following the CSS View Transitions spec.#7275
560de1b
Thanks@arendjr
! - Fixed #7268: Files that are explicitly passed as CLI arguments are now correctly ignored if they reside in an ignored folder.#7358
963a246
Thanks@ematipico
! - Fixed #7085, now the rulenoDescendingSpecificity
correctly calculates the specificity of selectors when they are included inside a media query.#7387
923674d
Thanks@qraqras
! - Fixed #7381, now theuseOptionalChain
rule recognizes optional chaining using Yoda expressions (e.g.,undefined !== foo && foo.bar
).#7316
f9636d5
Thanks@Conaclos
! - Fixed #7289. The ruleuseImportType
now inlinesimport type
intoimport { type }
when thestyle
option is set toinlineType
.Example:
import type { T } from "mod"; // becomes import { type T } from "mod";
#7350
bb4d407
Thanks@siketyan
! - Fixed #7261: two characters・
(KATAKANA MIDDLE DOT, U+30FB) and・
(HALFWIDTH KATAKANA MIDDLE DOT, U+FF65) are no longer considered as valid characters in identifiers. Property keys containing these character(s) are now preserved as string literals.#7377
811f47b
Thanks@ematipico
! - Fixed a bug where the Biome Language Server didn't correctly compute the diagnostics of a monorepo setting, caused by an incorrect handling of the project status.#7245
fad34b9
Thanks@kedevked
! - Added the new lint ruleuseConsistentArrowReturn
.This rule enforces a consistent return style for arrow functions.
Invalid
const f = () => { return 1; };
This rule is a port of ESLint's arrow-body-style rule.
#7370
e8032dd
Thanks@fireairforce
! - Support dynamicimport defer
andimport source
. The syntax looks like:import.source("foo"); import.source("x", { with: { attr: "val" } }); import.defer("foo"); import.defer("x", { with: { attr: "val" } });
... (truncated)
Commits
daa4a66
ci: release (#7306)0f38ea6
chore: add new bronze sponsor (#7397)7f53274
docs: safety of useSortedKeys (#6112)fad34b9
feat(biome_js_analyze): add UseConsistentArrowReturn rule (#7245)4416573
feat(lint/vue): implementuseVueMultiWordComponentNames
(#7373)62154b9
feat(biome_js_analyze): addnoUselessCatchBinding
(#7311)8771b84
chore: fix changelog due to skipped release- See full diff in compare view
Updates @eslint/js
from 9.34.0 to 9.35.0
Release notes
Sourced from @eslint/js
's releases.
v9.35.0
Features
42761fa
feat: implement suggestions for no-empty-function (#20057) (jaymarvelz)102f444
feat: implement suggestions for no-empty-static-block (#20056) (jaymarvelz)e51ffff
feat: addpreserve-caught-error
rule (#19913) (Amnish Singh Arora)Bug Fixes
10e7ae2
fix: update uncloneable options error message (#20059) (soda-sorcery)bfa4601
fix: ignore empty switch statements with comments in no-empty rule (#20045) (jaymarvelz)dfd11de
fix: addbefore
andafter
to test case types (#20049) (Francesco Trotta)dabbe95
fix: correct types forno-restricted-imports
rule (#20034) (Milos Djermanovic)ea789c7
fix: no-loss-of-precision false positive with uppercase exponent (#20032) (sethamus)Documentation
d265515
docs: improve phrasing - "if" → "even if" from getting-started section (#20074) (jjangga0214)a355a0e
docs: invert comparison logic for example inno-var
doc page (#20064) (OTonGitHub)5082fc2
docs: Update README (GitHub Actions Bot)99cfd7e
docs: add missing "the" in rule deprecation docs (#20050) (Josh Goldberg ✨)6ad8973
docs: update--no-ignore
and--ignore-pattern
documentation (#20036) (Francesco Trotta)8033b19
docs: add documentation for--no-config-lookup
(#20033) (Francesco Trotta)Chores
da87f2f
chore: upgrade@eslint/js
@9
.35.0 (#20077) (Milos Djermanovic)af2a087
chore: package.json update for@eslint/js
release (Jenkins)7055764
test: removetests/lib/eslint/eslint.config.js
(#20065) (Milos Djermanovic)84ffb96
chore: update@eslint-community/eslint-utils
(#20069) (Francesco Trotta)d5ef939
refactor: remove deprecatedcontext.parserOptions
usage across rules (#20060) (sethamus)1b3881d
chore: remove redundant word (#20058) (pxwanglu)
Changelog
Sourced from @eslint/js
's changelog.
v9.35.0 - September 5, 2025
da87f2f
chore: upgrade@eslint/js
@9
.35.0 (#20077) (Milos Djermanovic)af2a087
chore: package.json update for@eslint/js
release (Jenkins)d265515
docs: improve phrasing - "if" → "even if" from getting-started section (#20074) (jjangga0214)7055764
test: removetests/lib/eslint/eslint.config.js
(#20065) (Milos Djermanovic)10e7ae2
fix: update uncloneable options error message (#20059) (soda-sorcery)42761fa
feat: implement suggestions for no-empty-function (#20057) (jaymarvelz)102f444
feat: implement suggestions for no-empty-static-block (#20056) (jaymarvelz)84ffb96
chore: update@eslint-community/eslint-utils
(#20069) (Francesco Trotta)a355a0e
docs: invert comparison logic for example inno-var
doc page (#20064) (OTonGitHub)e51ffff
feat: addpreserve-caught-error
rule (#19913) (Amnish Singh Arora)5082fc2
docs: Update README (GitHub Actions Bot)d5ef939
refactor: remove deprecatedcontext.parserOptions
usage across rules (#20060) (sethamus)1b3881d
chore: remove redundant word (#20058) (pxwanglu)99cfd7e
docs: add missing "the" in rule deprecation docs (#20050) (Josh Goldberg ✨)bfa4601
fix: ignore empty switch statements with comments in no-empty rule (#20045) (jaymarvelz)dfd11de
fix: addbefore
andafter
to test case types (#20049) (Francesco Trotta)6ad8973
docs: update--no-ignore
and--ignore-pattern
documentation (#20036) (Francesco Trotta)dabbe95
fix: correct types forno-restricted-imports
rule (#20034) (Milos Djermanovic)8033b19
docs: add documentation for--no-config-lookup
(#20033) (Francesco Trotta)ea789c7
fix: no-loss-of-precision false positive with uppercase exponent (#20032) (sethamus)
Commits
af2a087
chore: package.json update for@eslint/js
release84ffb96
chore: update@eslint-community/eslint-utils
(#20069)- See full diff in compare view
Updates @next/eslint-plugin-next
from 15.5.0 to 15.5.2
Release notes
Sourced from @next/eslint-plugin-next
's releases.
v15.5.2
[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.Core Changes
- fix: disable unknownatrules lint rule entirely (#83059)
- revert: add ?dpl to fonts in /_next/static/media (#83062)
Credits
Huge thanks to
@bgub
and@ztanner
for helping!v15.5.1
[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.Core Changes
- fix: aliased navigations should apply scroll handling (#82900)
- Turbopack: fix invalid NFT entry with file behind symlink (#82887)
- fix: typesafe linking to route handlers and pages API routes (#82858)
- fix: change "noUnknownAtRules" to "warn" for Biome (#82974)
- fix: add path normalization to getRelativePath for Windows (#82918)
- feat: add typesafety with config.typedRoutes to redirect() and permanentRedirect() (#82860)
- fix: avoid importing types that will be unused (#82856)
- fix: update the config.api.responseLimit type (#82852)
- fix: update validation return types (#82854)
Credits
Huge thanks to
@bgub
,@mischnic
, and@ztanner
for helping!v15.5.1-canary.29
Core Changes
- [metadata] not add suffix to sitemap.xml in group routes: #83486
- [devtools] Use
useEffectEvent
instead of ignoring exhaustive deps: #83236- [metadata] refactor metadata sitemap loader code: #83443
- Include prerender interrupted error in unstable_rethrow: #83463
Misc Changes
- [turbopack] Attempt #2 at making rust-analyzer happy with our macros: #83461
- [turbopack] RFC: Serialize turbopack objects as u16s instead of fully qualified symbol names: #83193
- [turbopack] enable the signal feature of
nix
: #83473- Turbopack: Don't resolve tsconfig relative to file: #83484
Credits
Huge thanks to
@lukesandberg
,@huozhi
,@timneutkens
,@eps1lon
, and@gnoff
for helping!
... (truncated)
Commits
497ec6a
v15.5.2cc68ced
v15.5.1- See full diff in compare view
Updates @tailwindcss/postcss
from 4.1.12 to 4.1.13
Release notes
Sourced from @tailwindcss/postcss
's releases.
v4.1.13
Changed
- Drop warning from browser build (#18731)
- Drop exact duplicate declarations when emitting CSS (#18809)
Fixed
- Don't transition
visibility
when usingtransition
(#18795)- Discard matched variants with unknown named values (#18799)
- Discard matched variants with non-string values (#18799)
- Show suggestions for known
matchVariant
values (#18798)- Replace deprecated
clip
withclip-path
insr-only
(#18769)- Hide internal fields from completions in
matchUtilities
(#18820)- Ignore
.vercel
folders by default (can be overridden by@source …
rules) (#18855)- Consider variants starting with
@-
to be invalid (e.g.@-2xl:flex
) (#18869)- Do not allow custom variants to start or end with a
-
or_
(#18867, #18872)- Upgrade: Migrate
aria
theme keys to@custom-variant
(#18815)- Upgrade: Migrate
data
theme keys to@custom-variant
(#18816)- Upgrade: Migrate
supports
theme keys to@custom-variant
(#18817)
Changelog
Sourced from @tailwindcss/postcss
's changelog.
[4.1.13] - 2025-09-03
Changed
- Drop warning from browser build (#18731)
- Drop exact duplicate declarations when emitting CSS (#18809)
Fixed
- Don't transition
visibility
when usingtransition
(#18795)- Discard matched variants with unknown named values (#18799)
- Discard matched variants with non-string values (#18799)
- Show suggestions for known
matchVariant
values (#18798)- Replace deprecated
clip
withclip-path
insr-only
(#18769)- Hide internal fields from completions in
matchUtilities
(#18820)- Ignore
.vercel
folders by default (can be overridden by@source …
rules) (#18855)- Consider variants starting with
@-
to be invalid (e.g.@-2xl:flex
) (#18869)- Do not allow custom variants to start or end with a
-
or_
(#18867, #18872)- Upgrade: Migrate
aria
theme keys to@custom-variant
(#18815)- Upgrade: Migrate
data
theme keys to@custom-variant
(#18816)- Upgrade: Migrate
supports
theme keys to@custom-variant
(#18817)
Commits
1334c99
Prepare v4.1.13 release (#18868)- See full diff in compare view
Updates @tauri-apps/cli
from 2.8.3 to 2.8.4
Release notes
Sourced from @tauri-apps/cli
's releases.
@tauri-apps/cli
v2.8.4[2.8.4]
Enhancements
f70b28529
(#14093 by@lucasfernog
) Ensure Rust targets for mobile are installed when running the dev and build commands (previously only checked on init).a9b342125
(#14114 by@lucasfernog
) Fix iOS dev and build targeting the simulator on Intel machines.61b9b681e
(#14111 by@lucasfernog
) RetainRUST_*
environment variables when running the mobile commands.c23bec62d
(#14083 by@FabianLars
) Tauri now ignoresmacOS.minimumSystemVersion
intauri dev
to prevent forced rebuilds of macOS specific dependencies when using something likerust-analyzer
at the same time astauri dev
.Bug Fixes
c37a29833
(#14112 by@lucasfernog
) Fix usage with Deno failing withReferenceError: require is not defined
.bcf000c0a
(#14110 by@lucasfernog
) Fixes runningios
commands withdeno
crashing due to incorrect current working directory resolution.7db7142f9
(#14119 by@lucasfernog
) Fixes empty device name when using an Android emulator causing the emulator to never be detected as running.956b4fd6f
(#14106 by@lucasfernog
) Use the correct export method on Xcode < 15.4.Dependencies
- Upgraded to
tauri-cli@2.8.4
Commits
80eadb7
apply version updates (#14100)346a420
docs: improve resources docs (#14136)5239d39
chore(deps): update dependency rollup to v4.50.0 (#14127)0b1da30
chore(tauri): update documentation for home_dir on iOS (#14121)7db7142
fix(cli): empty Android emulator name (#14119)a9b3421
fix(cli): iOS simulator dev/build on Apple Intel, closes #13456 (#14114)bcf000c
fix(cli): ios command failing when running with deno, closes #13547 (#14110)61b9b68
feat(cli): retain all RUST_* env vars on mobile commands (#14111)c37a298
fix(cli): set package type for Deno (#14112)b8b866f
fix(examples): update tauri-plugin-log- Additional commits viewable in compare view
Updates @types/node
from 24.3.0 to 24.3.1
Commits
- See full diff in compare view
Updates @types/react
from 19.1.11 to 19.1.12
Commits
- See full diff in compare view
Updates @types/react-dom
from 19.1.7 to 19.1.9
Commits
- See full diff in compare view
Updates @typescript-eslint/eslint-plugin
from 8.40.0 to 8.42.0
Release notes
Sourced from @typescript-eslint/eslint-plugin
's releases.
v8.42.0
8.42.0 (2025-09-02)
🚀 Features
- deprecate tseslint.config() (#11531) -- see https://typescript-eslint.io/packages/typescript-eslint#migrating-to-defineconfig
🩹 Fixes
- deps: update eslint monorepo to v9.33.0 (#11482)
- typescript-eslint: handle non-normalized windows paths produced by jiti (#11546)
❤️ Thank You
- Kirk Waiblinger
@kirkwaiblinger
You can read about our versioning strategy and releases on our website.
v8.41.0
8.41.0 (2025-08-25)
🚀 Features
- tighten
tsconfigRootDir
validation (#11463)❤️ Thank You
- Kirk Waiblinger
@kirkwaiblinger
You can read about our versioning strategy and releases on our website.
Changelog
Sourced from @typescript-eslint/eslint-plugin
's changelog.
8.42.0 (2025-09-02)
🩹 Fixes
- deps: update eslint monorepo to v9.33.0 (#11482)
You can read about our versioning strategy and releases on our website.
8.41.0 (2025-08-25)
🩹 Fixes
- deps: update dependency prettier to v3.6.2 (#11496)
You can read about our versioning strategy and releases on our website.
Commits
d135909
chore(release): publish 8.42.00daf303
chore: use new ESLint rules internally (#11558)ee3efa7
feat(typescript-estree): forbid invalid keys inEnumMember
(#11497)264ca2f
fix(deps): update eslint monorepo to v9.33.0 (#11482)31a7336
chore(release): publish 8.41.0a4526b3
chore: skip failing tests to fix CI (#11505)03e21eb
fix(deps): update dependency prettier to v3.6.2 (#11496)- See full diff in compare view
Maintainer changes
This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @typescript-eslint/eslint-plugin
since your current version.
Updates @typescript-eslint/parser
from 8.40.0 to 8.42.0
Release notes
Sourced from @typescript-eslint/parser
's releases.
v8.42.0
8.42.0 (2025-09-02)
🚀 Features
- deprecate tseslint.config() (#11531) -- see https://typescript-eslint.io/packages/typescript-eslint#migrating-to-defineconfig
🩹 Fixes
- deps: update eslint monorepo to v9.33.0 (#11482)
- typescript-eslint: handle non-normalized windows paths produced by jiti (#11546)
❤️ Thank You
- Kirk Waiblinger
@kirkwaiblinger
You can read about our versioning strategy and releases on our website.
v8.41.0
8.41.0 (2025-08-25)
🚀 Features
- tighten
tsconfigRootDir
validation (#11463)❤️ Thank You
- Kirk Waiblinger
@kirkwaiblinger
You can read about our versioning strategy and releases on our website.
Changelog
Sourced from @typescript-eslint/parser
's changelog.
8.42.0 (2025-09-02)
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.41.0 (2025-08-25)
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.
Commits
d135909
chore(release): publish 8.42.031a7336
chore(release): publish 8.41.0- See full diff in compare view
Maintainer changes
This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @typescript-eslint/parser
since your current version.
Updates @vitejs/plugin-react
from 5.0.1 to 5.0.2
Rel...
Description has been truncated
Pull Request Statistics
1
2
+1047
-1047
Package Dependencies
@typescript-eslint/parser
npm
8.40.0 → 8.42.0
Minor
@typescript-eslint/eslint-plugin
npm
8.40.0 → 8.42.0
Minor
npm
7.28.0 → 7.28.4
Patch
@babel/plugin-transform-classes
npm
7.28.3 → 7.28.4
Patch
npm
7.28.0 → 7.28.4
Patch
@babel/plugin-transform-regenerator
npm
7.28.3 → 7.28.4
Patch
@eslint-community/eslint-utils
npm
4.7.0 → 4.8.0
Minor
Technical Details
ID: | 7034678 |
UUID: | 2803766266 |
Node ID: | PR_kwDOPoIRaM6nHhP6 |
Host: | GitHub |
Repository: | InterstellarMist/Project-Value |
Merge State: | Unknown |