Skip to content

fix(deps): update dependency @effect/platform to ^0.96.0#425

Merged
WomB0ComB0 merged 2 commits intomasterfrom
renovate/effect-platform-0.x
Apr 10, 2026
Merged

fix(deps): update dependency @effect/platform to ^0.96.0#425
WomB0ComB0 merged 2 commits intomasterfrom
renovate/effect-platform-0.x

Conversation

@WomB0ComB0
Copy link
Copy Markdown
Owner

@WomB0ComB0 WomB0ComB0 commented Mar 26, 2026

This PR contains the following updates:

Package Change Age Confidence
@effect/platform (source) ^0.94.1^0.96.0 age confidence

Release Notes

Effect-TS/effect (@​effect/platform)

v0.96.0

Compare Source

Patch Changes

v0.95.0

Compare Source

Patch Changes

Configuration

📅 Schedule: (in timezone America/New_York)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@WomB0ComB0 WomB0ComB0 added the dependencies Pull requests that update a dependency file label Mar 26, 2026
@vercel
Copy link
Copy Markdown

vercel bot commented Mar 26, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
portfolio Error Error Apr 10, 2026 8:07pm

@coderabbitai
Copy link
Copy Markdown

coderabbitai bot commented Mar 26, 2026

Warning

Rate limit exceeded

@WomB0ComB0 has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 28 minutes and 22 seconds before requesting another review.

Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 28 minutes and 22 seconds.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: ASSERTIVE

Plan: Pro

Run ID: d1013f60-19bc-41eb-9a8a-cefc6d21cda6

📥 Commits

Reviewing files that changed from the base of the PR and between 6a742bc and f666bf4.

📒 Files selected for processing (1)
  • package.json
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch renovate/effect-platform-0.x

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@gemini-code-assist
Copy link
Copy Markdown
Contributor

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request automates the update of the @effect/platform dependency to its latest minor version. This ensures the project benefits from the most recent features, bug fixes, and performance enhancements, maintaining compatibility and leveraging improvements within the Effect-TS ecosystem.

Highlights

  • Dependency Update: Updated the @effect/platform dependency from ^0.94.1 to ^0.96.0.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates the @effect/platform dependency from ^0.94.1 to ^0.96.0. This update introduces a critical breaking change in a transitive dependency, effect, which impacts the schema validation error handling in src/lib/http-clients/effect-fetcher.ts. Specifically, ParseResult.TreeFormatter.formatIssueSync and direct access to the issue property on ParseError are no longer valid, leading to runtime errors. The suggested fix is to use ParseResult.TreeFormatter.formatErrors(result.left.errors) at line 435 in the affected file.

Comment thread package.json
"dependencies": {
"@ducanh2912/next-pwa": "^10.2.9",
"@effect/platform": "^0.94.1",
"@effect/platform": "^0.96.0",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

This update to @effect/platform from ^0.94.1 to ^0.96.0 pulls in a newer version of its transitive dependency effect, which contains breaking changes affecting your schema validation logic.

The code in src/lib/http-clients/effect-fetcher.ts uses ParseResult.TreeFormatter.formatIssueSync and accesses the issue property on a ParseError. These APIs have been removed/changed in recent versions of effect.

This will cause a runtime error whenever a schema validation fails. To fix this, the error handling logic in src/lib/http-clients/effect-fetcher.ts needs to be updated.

Specifically, at line 435, you should use ParseResult.TreeFormatter.formatErrors(result.left.errors) instead.

Example fix for src/lib/http-clients/effect-fetcher.ts:

// around line 435
const problems = ParseResult.TreeFormatter.formatErrors(result.left.errors);

This is a critical issue that needs to be addressed before merging this dependency update.

@WomB0ComB0 WomB0ComB0 merged commit d849f39 into master Apr 10, 2026
8 of 13 checks passed
@WomB0ComB0 WomB0ComB0 deleted the renovate/effect-platform-0.x branch April 10, 2026 19:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant