chore(deps)(deps-dev): bump the minor-updates group across 1 directory with 10 updates
Type: Pull Request
State: Open
Association: None
Comments: 2
(4 months ago)
(4 months ago)
Bumps the minor-updates group with 9 updates in the / directory:
| Package | From | To |
|---|---|---|
| @rollup/plugin-commonjs | 28.0.5 |
28.0.6 |
| @rollup/plugin-typescript | 12.1.2 |
12.1.4 |
| @types/node | 24.0.1 |
24.1.0 |
| @vitest/coverage-v8 | 3.2.3 |
3.2.4 |
| rollup | 4.43.0 |
4.46.2 |
| rollup-plugin-node-externals | 8.0.0 |
8.0.1 |
| typedoc | 0.28.5 |
0.28.9 |
| typedoc-plugin-markdown | 4.6.4 |
4.8.0 |
| typescript | 5.8.3 |
5.9.2 |
Updates @rollup/plugin-commonjs from 28.0.5 to 28.0.6
Changelog
Sourced from @rollup/plugin-commonjs's changelog.
v28.0.6
2025-06-17
Bugfixes
- fix: fix crash with invalidated proxy modules (#1876)
Commits
a433ac9chore(release): commonjs v28.0.67b9d40dfix(commonjs): fix crash with invalidated proxy modules (#1876)- See full diff in compare view
Updates @rollup/plugin-typescript from 12.1.2 to 12.1.4
Changelog
Sourced from @rollup/plugin-typescript's changelog.
v12.1.4
2025-06-28
Bugfixes
v12.1.3
2025-06-17
Bugfixes
Commits
Updates @types/node from 24.0.1 to 24.1.0
Commits
- See full diff in compare view
Updates @vitest/coverage-v8 from 3.2.3 to 3.2.4
Release notes
Sourced from @vitest/coverage-v8's releases.
v3.2.4
🐞 Bug Fixes
- Use correct path for optimisation of strip-literal - by
@mrginglymusin vitest-dev/vitest#8139 (44940)- Print uint and buffer as a simple string - by
@sheremet-vain vitest-dev/vitest#8141 (b86bf)- browser:
- Show a helpful error when spying on an export - by
@sheremet-vain vitest-dev/vitest#8178 (56007)- cli:
vitest run --watchshould be watch-mode - by@AriPerkkioin vitest-dev/vitest#8128 (657e8)- Use absolute path environment on Windows - by
@colinaaain vitest-dev/vitest#8105 (85dc0)- Throw error when
--shard x/<count>exceeds count of test files - by@AriPerkkioin vitest-dev/vitest#8112 (8a18c)- coverage:
- Ignore SCSS in browser mode - by
@sheremet-vain vitest-dev/vitest#8161 (0c3be)- deps:
- Update all non-major dependencies - in vitest-dev/vitest#8123 (93f32)
- expect:
- Handle async errors in expect.soft - by
@lzl0304in vitest-dev/vitest#8145 (68699)- pool:
- Auto-adjust
minWorkerswhen onlymaxWorkersspecified - by@AriPerkkioin vitest-dev/vitest#8110 (14dc0)- reporter:
task.metashould be available in custom reporter's errors - by@AriPerkkioin vitest-dev/vitest#8115 (27df6)- runner:
- Preserve handler wrapping on extend - by
@pengooseDevin vitest-dev/vitest#8153 (a9281)- ui:
- Ensure ui config option works correctly - by
@lzl0304in vitest-dev/vitest#8147 (42eeb)View changes on GitHub
Commits
c666d14chore: release v3.2.4- See full diff in compare view
Updates rollup from 4.43.0 to 4.46.2
Release notes
Sourced from rollup's releases.
v4.46.2
4.46.2
2025-07-29
Bug Fixes
- Fix in-operator handling for external namespace and when the left side cannot be analyzed (#6041)
Pull Requests
- #6041: Correct the logic of include in BinaryExpression and don't optimize external references away (
@TrickyPi,@cyyynthia,@lukastaegert)v4.46.1
4.46.1
2025-07-28
Bug Fixes
- Do not fail when using the
inoperator on external namespaces (#6036)Pull Requests
- #6036: disables optimization for external namespace when using the in operator (
@TrickyPi)v4.46.0
4.46.0
2025-07-27
Features
- Optimize
inchecks on namespaces to keep them treeshake-able (#6029)Pull Requests
- #5991: feat: update linux-loongarch64-gnu (
@wojiushixiaobai,@lukastaegert)- #6029: feat: optimize
inchecks on namespaces to keep them treeshake-able (@cyyynthia,@lukastaegert)- #6033: fix(deps): update swc monorepo (major) (
@renovate[bot],@lukastaegert)v4.45.3
4.45.3
2025-07-26
Bug Fixes
... (truncated)
Changelog
Sourced from rollup's changelog.
4.46.2
2025-07-29
Bug Fixes
- Fix in-operator handling for external namespace and when the left side cannot be analyzed (#6041)
Pull Requests
- #6041: Correct the logic of include in BinaryExpression and don't optimize external references away (
@TrickyPi,@cyyynthia,@lukastaegert)4.46.1
2025-07-28
Bug Fixes
- Do not fail when using the
inoperator on external namespaces (#6036)Pull Requests
- #6036: disables optimization for external namespace when using the in operator (
@TrickyPi)4.46.0
2025-07-27
Features
- Optimize
inchecks on namespaces to keep them treeshake-able (#6029)Pull Requests
- #5991: feat: update linux-loongarch64-gnu (
@wojiushixiaobai,@lukastaegert)- #6029: feat: optimize
inchecks on namespaces to keep them treeshake-able (@cyyynthia,@lukastaegert)- #6033: fix(deps): update swc monorepo (major) (
@renovate[bot],@lukastaegert)4.45.3
2025-07-26
Bug Fixes
- Do not fail build if a const is reassigned but warn instead (#6020)
- Fail with a helpful error message if an exported binding is not defined (#6023)
Pull Requests
- #6014: chore(deps): update dependency
@vue/language-serverto v3 (@renovate[bot])
... (truncated)
Commits
4e19bad4.46.2603e046Correct the logic of include in BinaryExpression and don't optimize external ...244dc204.46.16031a33disables optimization for external namespace when using the in operator (#6036)09794f14.46.09a8614ffeat: optimizeinchecks on namespaces to keep them treeshake-able (#6029)fdd48a9feat: update linux-loongarch64-gnu (#5991)461b1acfix(deps): update swc monorepo (major) (#6033)d6908c94.45.3ccdde29Fix option name- Additional commits viewable in compare view
Updates rollup-plugin-node-externals from 8.0.0 to 8.0.1
Release notes
Sourced from rollup-plugin-node-externals's releases.
v8.0.1
This is a maintenance-only release.
- Typos 4e233eb
- Update dev dependencies 8775fc8
- Update VS Code task to run on folder open 2d3c7d0
- Update package description c75855d
- Update README.md with #35 warning 171b2b6
- Add Vite's apply: 'build' property 04add45
https://github.com/Septh/rollup-plugin-node-externals/compare/v8.0.0...v8.0.1
Commits
Updates typedoc from 0.28.5 to 0.28.9
Release notes
Sourced from typedoc's releases.
v0.28.9
Features
- Add support for TypeScript 5.9, #2989.
Bug Fixes
- Fixed bug introduced in 0.28.8 where TypeDoc could not render docs when members inherited from a complex type alias, #2982.
- Fixed automatic discovery of entry points when not running in packages mode, #2988.
- Fixed discovery of package.json file when running with entry points containing a glob, #2985.
v0.28.8
Features
- If using JS config files, the
pluginoption can now be given plugin functions to load.- Permit
-within tag names to supporttypescript-json-schema's@TJS-typetag, #2972.- Exposed
Context.createSymbolIdfor use by plugins.Bug Fixes
- Relative links in
<img srcset>will now be discovered by TypeDoc, #2975.- Relative links in
<source src>and<source srcset>elements will now be discovered by TypeDoc, #2975.- Improved inherited from/overwrites link discovery to point to parent properties in more cases, #2978
Thanks!
v0.28.7
Features
- Introduced the
@sortStrategytag to override thesortoption on a specific reflection, #2965.Bug Fixes
- Classes and functions exported with
export { type X }are no longer missing comments, #2970.- Setting
localeto an unknown value will now cause TypeDoc to operate in English instead of a debug locale.- Array options will now report an error if set to a non-array/non-string value.
v0.28.6
Features
- TypeDoc now supports resolving relative paths in links to the package directory as belonging to the project, #2961.
- Declarations without comments will now check for comments on their export specifier, #2964.
Bug Fixes
... (truncated)
Changelog
Sourced from typedoc's changelog.
v0.28.9 (2025-08-01)
Features
- Add support for TypeScript 5.9, #2989.
Bug Fixes
- Fixed bug introduced in 0.28.8 where TypeDoc could not render docs when members inherited from a complex type alias, #2982.
- Fixed automatic discovery of entry points when not running in packages mode, #2988.
- Fixed discovery of package.json file when running with entry points containing a glob, #2985.
v0.28.8 (2025-07-28)
Features
- If using JS config files, the
pluginfunction can now be given plugin functions to load.- Permit
-within tag names to supporttypescript-json-schema's@TJS-typetag, #2972.- Exposed
Context.createSymbolIdfor use by plugins.Bug Fixes
- Relative links in
<img srcset>will now be discovered by TypeDoc, #2975.- Relative links in
<source src>and<source srcset>elements will now be discovered by TypeDoc, #2975.- Improved inherited from/overwrites link discovery to point to parent properties in more cases, #2978
Thanks!
v0.28.7 (2025-06-30)
Features
- Introduced the
@sortStrategytag to override thesortoption on a specific reflection, #2965.Bug Fixes
- Classes and functions exported with
export { type X }are no longer missing comments, #2970.- Setting
localeto an unknown value will now cause TypeDoc to operate in English instead of a debug locale.- Array options will now report an error if set to a non-array/non-string value.
v0.28.6 (2025-06-27)
Features
... (truncated)
Commits
e764a51Update changelog for release344f74cBump version to 0.28.9f1aee85Be even more restrictive with parent links303eb38Fix discovery of package.json when entry points are globbed47b5e98Fix auto discovery of entry points73f3dc2Support TypeScript 5.9ddcddb0Merge pull request #2983 from XeroAlpha/i18n-zh-updatef625f15Update Chinese translationsda37862Update changelog for releasedb59553Bump version to 0.28.8- Additional commits viewable in compare view
Updates typedoc-plugin-markdown from 4.6.4 to 4.8.0
Release notes
Sourced from typedoc-plugin-markdown's releases.
typedoc-plugin-markdown@4.8.0
Minor Changes
- Exposed additional placeholders in
pageTitleTemplatesand adjusted default templates (#831).- Tweaked the format of abstract class page titles to include the translated abstract keyword (e.g., "Abstract Class: MyClass") for improved readability.
- Added
strikeDeprecatedPageTitlesoption.Patch Changes
- Fix incorrect link fragments (#832).
typedoc-plugin-markdown@4.7.1
Patch Changes
- Escape square brackets in index signature types (typedoc2md/typedoc-plugin-markdown#829).
- Fix missing segments in declaration titles that contain periods.
typedoc-plugin-markdown@4.7.0
Minor Changes
- Added
useCustomAnchorsandcustomAnchorsFormatoptions - thanks@ocavue.Patch Changes
- Fix incorrect overload function comments (#827).
Changelog
Sourced from typedoc-plugin-markdown's changelog.
4.8.0 (2025-07-29)
Minor Changes
- Exposed additional placeholders in
pageTitleTemplatesand adjusted default templates (#831).- Tweaked the format of abstract class page titles to include the translated abstract keyword (e.g., "Abstract Class: MyClass") for improved readability.
- Added
strikeDeprecatedPageTitlesoption.Patch Changes
- Fix incorrect link fragments (#832).
4.7.1 (2025-07-19)
Patch Changes
- Escape square brackets in index signature types (#829).
- Fix missing segments in declaration titles that contain periods.
4.7.0 (2025-06-19)
Minor Changes
- Added
useCustomAnchorsandcustomAnchorsFormatoptions - thanks@ocavue.Patch Changes
- Fix incorrect overload function comments (#827).
Commits
7da57e2Version Packages4f7cbf1feat(core): exposed additional placeholders to "pageTitleTemplates" and adjus...5ad7a88fix(core): fix incorrect link fragmentsf872871chore(core): updated changelog date74a649fVersion Packages51b8f88fix(core): fix missing segments in declaration titles that contain periods649dd41fix(core): escape square brackets in index signature types (#829)53641e2chore(all): update to pnpm780af69chore(docs): updated changelog date53dcf2fchore(all): replace Jest with Mocha and Node's assert module- Additional commits viewable in compare view
Updates typescript from 5.8.3 to 5.9.2
Release notes
Sourced from typescript's releases.
TypeScript 5.9
For release notes, check out the release announcement
- fixed issues query for Typescript 5.9.0 (Beta).
- fixed issues query for Typescript 5.9.1 (RC).
- No specific changes for TypeScript 5.9.2 (Stable)
Downloads are available on:
TypeScript 5.9 RC
For release notes, check out the release announcement
Downloads are available on:
TypeScript 5.9 Beta
For release notes, check out the release announcement.
Downloads are available on:
Commits
be86783Give more specific errors forverbatimModuleSyntax(#62113)22ef577LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250714...d5a414cDon't usenoErrorTruncationwhen printing types withmaximumLengthset (#...f14b5c8Remove unused and confusing dom.iterable.d.ts file (#62037)2778e84Restore AbortSignal.abort (#62086)65cb4bdLEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250710...9e20e03Clear out checker-level stacks on pop (#62016)87740bcFix for Issue 61081 (#61221)833a8d4Fix Symbol completion priority and cursor positioning (#61945)0018c9fLEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250702...- Additional commits viewable in compare view
Updates vitest from 3.2.3 to 3.2.4
Release notes
Sourced from vitest's releases.
v3.2.4
🐞 Bug Fixes
- Use correct path for optimisation of strip-literal - by
@mrginglymusin vitest-dev/vitest#8139 (44940)- Print uint and buffer as a simple string - by
@sheremet-vain vitest-dev/vitest#8141 (b86bf)- browser:
- Show a helpful error when spying on an export - by
@sheremet-vain vitest-dev/vitest#8178 (56007)- cli:
vitest run --watchshould be watch-mode - by@AriPerkkioin vitest-dev/vitest#8128 (657e8)- Use absolute path environment on Windows - by
@colinaaain vitest-dev/vitest#8105 (85dc0)- Throw error when
--shard x/<count>exceeds count of test files - by@AriPerkkioin vitest-dev/vitest#8112 (8a18c)- coverage:
- Ignore SCSS in browser mode - by
@sheremet-vain vitest-dev/vitest#8161 (0c3be)- deps:
- Update all non-major dependencies - in vitest-dev/vitest#8123 (93f32)
- expect:
- Handle async errors in expect.soft - by
@lzl0304in vitest-dev/vitest#8145 (68699)- pool:
- Auto-adjust
minWorkerswhen onlymaxWorkersspecified - by@AriPerkkioin vitest-dev/vitest#8110 (14dc0)- reporter:
task.metashould be available in custom reporter's errors - by@AriPerkkioin vitest-dev/vitest#8115 (27df6)- runner:
- Preserve handler wrapping on extend - by
@pengooseDevin vitest-dev/vitest#8153 (a9281)- ui:
- Ensure ui config option works correctly - by
@lzl0304in vitest-dev/vitest#8147 (42eeb)View changes on GitHub
Commits
c666d14chore: release v3.2.48a18c8efix(cli): throw error when--shard x/\<count>exceeds count of test files (#...8abd7ccchore(deps): updatetinypool(#8174)93f3200fix(deps): update all non-major dependencies (#8123)0c3be6ffix(coverage): ignore SCSS in browser mode (#8161)790bc31chore: update deprecation notice for globs (#8148)c0eae7dchore: update deprecated workspace file log (#8118)14dc072fix(pool): auto-adjustminWorkerswhen onlymaxWorkersspecified (#8110)85dc019fix(cli): use absolute path environment on Windows (#8105)27df68afix(reporter):task.metashould be available in custom reporter's errors (#...- Additional commits viewable in compare view
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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
Pull Request Statistics
0
0
+0
-0
Package Dependencies
@rollup/plugin-typescript
npm
12.1.2 → 12.1.4
Patch
rollup-plugin-node-externals
npm
8.0.0 → 8.0.1
Patch
Technical Details
| ID: | 4483709 |
| UUID: | 3286717166 |
| Node ID: | PR_kwDONq-d186h3bSw |
| Host: | GitHub |
| Repository: | stone-foundation/stone-js-aws-lambda-http-adapter |