chore(deps): bump the minor-and-patch group across 1 directory with 4 updates#455
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
The latest updates on your projects. Learn more about Unkey Deploy
|
There was a problem hiding this comment.
1 issue found across 4 files
Confidence score: 3/5
- There is a concrete compatibility risk in
apps/docs/package.json:fumadocs-mdxwas bumped to 14.3.2, which expectsfumadocs-core^16.7.0, while the PR still pins 15.5.0. - Given the medium severity (6/10) and high confidence (9/10), this could cause install/build or runtime issues in the docs app until versions are aligned.
- This is likely fixable with a targeted dependency update, but it introduces enough regression risk to warrant a cautious merge.
- Pay close attention to
apps/docs/package.json- alignfumadocs-corewith the newfumadocs-mdxrequirement to avoid version mismatch failures.
Prompt for AI agents (unresolved issues)
Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.
<file name="apps/docs/package.json">
<violation number="1" location="apps/docs/package.json:60">
P2: Bump fumadocs-core alongside fumadocs-mdx; 14.3.2 requires fumadocs-core ^16.7.0, but this package still pins 15.5.0.</violation>
</file>
Architecture diagram
sequenceDiagram
participant App as Application
participant SDK as OTel SDK
participant Config as YAML Config
participant Diag as Diagnostic Logger
participant Core as json-render Core
participant Dir as @json-render/directives
participant Schema as fumadocs-core/source/schema
participant Biome as Biome CLI
Note over App,Biome: Runtime flows after dependency updates
App->>SDK: startNodeSDK()
alt NEW: log_level in YAML config
App->>Config: Read declarative config file
alt Config valid
Config-->>SDK: config object with log_level
SDK->>Diag: Setup DiagConsoleLogger at specified level
Diag-->>SDK: Diagnostic logger active
else Config invalid
Config-->>SDK: parse error
SDK->>SDK: Noop SDK initialization
SDK-->>App: TracerProvider as noop
end
else No log_level set
SDK->>Diag: Setup default "info" DiagConsoleLogger
end
SDK->>SDK: Set TracerProvider
SDK-->>App: Running TracerProvider
Note over Core,Dir: Dashboard rendering flow (NEW directive resolution)
App->>Core: Render JSON template with directives
Core->>Dir: Resolve custom directives ($format, $math, $concat, etc.)
Dir->>Dir: Process nested directives (inside-out)
Dir-->>Core: Computed values
Core->>App: Rendered React components
Note over App,Schema: Docs MDX schema import (CHANGED source)
App->>Schema: Import schema utilities (NEW preferred path)
Note over App,Biome: Dev-time linting (CHANGED: new nursery rules)
App->>Biome: Run lint
Biome-->>App: Diagnostics including new rules
Shadow auto-approve: would not auto-approve because issues were found.
Fix all with cubic
| "fumadocs-core": "15.5.0", | ||
| "fumadocs-docgen": "^2.1.0", | ||
| "fumadocs-mdx": "14.3.0", | ||
| "fumadocs-mdx": "14.3.2", |
There was a problem hiding this comment.
P2: Bump fumadocs-core alongside fumadocs-mdx; 14.3.2 requires fumadocs-core ^16.7.0, but this package still pins 15.5.0.
Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At apps/docs/package.json, line 60:
<comment>Bump fumadocs-core alongside fumadocs-mdx; 14.3.2 requires fumadocs-core ^16.7.0, but this package still pins 15.5.0.</comment>
<file context>
@@ -57,7 +57,7 @@
"fumadocs-core": "15.5.0",
"fumadocs-docgen": "^2.1.0",
- "fumadocs-mdx": "14.3.0",
+ "fumadocs-mdx": "14.3.2",
"fumadocs-ui": "15.5.0",
"gray-matter": "^4.0.3",
</file context>
b749ba0 to
537baaf
Compare
… updates Bumps the minor-and-patch group with 4 updates in the / directory: [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome), [@opentelemetry/sdk-node](https://github.com/open-telemetry/opentelemetry-js), [@json-render/react](https://github.com/vercel-labs/json-render/tree/HEAD/packages/react) and [fumadocs-mdx](https://github.com/fuma-nama/fumadocs). Updates `@biomejs/biome` from 2.4.13 to 2.4.15 - [Release notes](https://github.com/biomejs/biome/releases) - [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md) - [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.4.15/packages/@biomejs/biome) Updates `@opentelemetry/sdk-node` from 0.215.0 to 0.217.0 - [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases) - [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md) - [Commits](open-telemetry/opentelemetry-js@experimental/v0.215.0...experimental/v0.217.0) Updates `@json-render/react` from 0.18.0 to 0.19.0 - [Release notes](https://github.com/vercel-labs/json-render/releases) - [Changelog](https://github.com/vercel-labs/json-render/blob/main/CHANGELOG.md) - [Commits](https://github.com/vercel-labs/json-render/commits/v0.19.0/packages/react) Updates `fumadocs-mdx` from 14.3.0 to 14.3.2 - [Release notes](https://github.com/fuma-nama/fumadocs/releases) - [Commits](https://github.com/fuma-nama/fumadocs/compare/fumadocs-mdx@14.3.0...fumadocs-mdx@14.3.2) --- updated-dependencies: - dependency-name: "@biomejs/biome" dependency-version: 2.4.15 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@json-render/react" dependency-version: 0.19.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: "@opentelemetry/sdk-node" dependency-version: 0.217.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: fumadocs-mdx dependency-version: 14.3.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch ... Signed-off-by: dependabot[bot] <support@github.com>
537baaf to
2f6e467
Compare
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub. |
|
Warning Review the following alerts detected in dependencies. According to your organization's Security Policy, it is recommended to resolve "Warn" alerts. Learn more about Socket for GitHub.
|
Bumps the minor-and-patch group with 4 updates in the / directory: @biomejs/biome, @opentelemetry/sdk-node, @json-render/react and fumadocs-mdx.
Updates
@biomejs/biomefrom 2.4.13 to 2.4.15Release notes
Sourced from @biomejs/biome's releases.
... (truncated)
Changelog
Sourced from @biomejs/biome's changelog.
... (truncated)
Commits
9dd3271ci: release (#10210)7b8d4e1feat(lint/html/vue): adduseVueValidVFor(#10195)ba3480efeat(lint/js): adduseTestHooksInOrder(#9394)e0a54ccfeat(lint/js/vue): adduseVueNextTickPromise(#10254)1110256feat(lint/vue): addnoVueImportCompilerMacros(#10238)7f7419cfix: grammar in extends docstring (#10263)0ae5840feat(lint/js): adduseThisForClassMethods(#9807)83f7385feat(lint/js): addnoBaseToString(#9838)64aee45feat(lint/html/vue): addnoVueVOnNumberValues(#10219)46393e0ci: release (#10100)Updates
@opentelemetry/sdk-nodefrom 0.215.0 to 0.217.0Release notes
Sourced from @opentelemetry/sdk-node's releases.
Commits
74cde1bchore: prepare next release (#6675)e8f439afix: handle malformed URLs in Prometheus exporter request handler (#6674)ab3a2e2feat(sdk-node, configuration): diag log handling updates for startNodeSDK(), ...d5b7d1efix(deps): update dependency axios to v1.15.2 [security] (#6670)c163618chore(deps): update github/codeql-action digest to e46ed2c (#6661)ec2bfbechore(configuration): move config generation scripts into the configuration p...acc9ecdchore(configuration): cosmetic changes to generated types.ts (#6663)8f008ecchore: Move inactive members to emeritus (#6649)435431efix(configuration): improve the technique for removing '| null' on types due ...4222024fix(configuration): improve handling of enums in generated types (#6659)Updates
@json-render/reactfrom 0.18.0 to 0.19.0Changelog
Sourced from @json-render/react's changelog.
Commits
838ee7bprepare v0.19.0 (#282)714c38ffeat: add custom directives API and@json-render/directivespackage (#279)Maintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for
@json-render/reactsince your current version.Updates
fumadocs-mdxfrom 14.3.0 to 14.3.2Release notes
Sourced from fumadocs-mdx's releases.
Commits
d6bf3e0Merge pull request #3235 from fuma-nama/changeset-release/devaf7ee2dCLI: fix layout preserve plugin970b1bfOpenAPI: fix inconsistency in option names2eff8e9Chore: update showcasesfa781f1fix jsdoc omitted from outputa83709fclean code3e85c69Docs: add more docs for MDX Remote79d3209Core: narrow schema types387e659UI: relocate toc widthe1f19c7Version Packages (#3232)