-
-
Notifications
You must be signed in to change notification settings - Fork 1
chore: 🤖 update dependencies and add support for env config files #10
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
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| "@hyperse/config-loader": patch | ||
| --- | ||
|
|
||
| chore: 🤖 update dependencies and add support for env config files |
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
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
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
4 changes: 4 additions & 0 deletions
4
tests/config-loader/fixtures/esm-ts/env-mts-test/env.valid.mts
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| // env config file (.mts only) | ||
| export default { | ||
| cake: 'a lie env mts', | ||
| }; |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| // env config file (.mts) | ||
| export default { | ||
| cake: 'a lie env mts', | ||
| }; |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| // env config file | ||
| export default { | ||
| cake: 'a lie env', | ||
| }; |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| // env config file (.mts) | ||
| export default { | ||
| cake: 'a lie env mts', | ||
| }; |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| // env config file | ||
| export default { | ||
| cake: 'a lie env', | ||
| }; |
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🌐 Web query:
vitest 4.0 breaking changes migration guide💡 Result:
Here are the main Vitest 4.0 breaking changes and the minimal migration actions you should take. See the official migration guide and release post for full details. [1][2]
V8 coverage remapping changed
Mocking / spies behavior changed
Deprecated APIs removed — update config/tests to new options
Browser mode / providers changes
@vitest/browser-playwright). Update test config and imports accordingly. [5][2]Internal/entry changes
Other renames / env vars
Reporters / defaults
Quick migration checklist
Sources:
Would you like a PR-ready patch (search-and-replace script) for your vitest config and common patterns?
🌐 Web query:
commitlint 20.0 breaking changes💡 Result:
Summary — breaking change in commitlint v20.0.0 (released Sep 25, 2025)
Impact and migration
Sources
🌐 Web query:
@types/node 25 breaking changes💡 Result:
Short answer: there’s no dedicated “@types/node v25 changelog.” Breaking/type changes for
@types/nodev25 mainly mirror Node.js v25 API changes (removed/EOLed APIs and new globals/DOM-ish APIs) and TypeScript-compatibility updates. Check these sources to see what will break and how to migrate:@types/nodechangelog and that you must inspect DT commits/PRs or the upstream Node changes. (github.com)@types/noderelease history / diffs (inspect specific@types/nodev25.x releases or use a package-diff/compare tool to see the exact .d.ts changes). Example release list. (releasealert.dev)If you want, I can:
@types/nodeversion → v25 and highlight breaking type changes (I can fetch the two releases and summarize).Citations:
Verify vitest 4.0 compatibility — multiple breaking changes require attention.
The major version bumps here warrant careful testing:
vitest 4.0 has significant breaking changes: V8 coverage remapping (may affect CI thresholds), mocking/spy behavior changes (e.g.,
vi.fn().getMockName()defaults differ,vi.restoreAllMocks()no longer resets automocks), deprecated config keys removed (poolMatchGlobs,environmentMatchGlobs,deps.external/inline/fallbackCJS, reporter hooks API), browser mode provider changes, and removed internal APIs. Verify your test config and test suite runs cleanly.commitlint 20.x: One minor breaking change —
body-max-line-lengthnow ignores URLs. Update config if you relied on strict line length for URL lines.@types/node 25.x: Type-only update mirroring Node.js v25 API changes. Low risk for build tools; verify in CI.
Ensure CI passes with these updates before merging.
🤖 Prompt for AI Agents