Skip to content

fix extra running state - #46

Merged
erohinaelena merged 1 commit into
mainfrom
erohinaelena/update-dependencies
Feb 5, 2026
Merged

fix extra running state#46
erohinaelena merged 1 commit into
mainfrom
erohinaelena/update-dependencies

Conversation

@erohinaelena

Copy link
Copy Markdown
Contributor

No description provided.

@gemini-code-assist

Copy link
Copy Markdown

Summary of Changes

Hello @erohinaelena, 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 primarily focuses on a comprehensive update of project dependencies, including a significant upgrade of React and ReactDOM to version 19. These updates are crucial for incorporating the latest features, performance enhancements, and bug fixes from upstream libraries. While the PR title mentions a 'fix extra running state', the direct changes observed are dependency bumps, suggesting that the mentioned fix is likely an indirect benefit from these updated package versions.

Highlights

  • React Version Upgrade: React and ReactDOM have been updated to a major new version, upgrading from 18.3.1 to 19.2.4.
  • Extensive Dependency Updates: Numerous dependencies across @milaboratories and @platforma-sdk packages have been updated. This includes core components like graph-maker, block-tools, model, tengo-builder, test, ui-vue, and various pl- prefixed libraries, ensuring the project benefits from the latest features and fixes.
  • New Dependency Introduced: The fast-json-patch@3.1.1 package has been added to the project dependencies.
  • Dependency Removed: The loose-envify@1.4.0 dependency has been removed from the project.
  • Changeset Documentation: A new changeset file (.changeset/goofy-flowers-fix.md) was added to explicitly document these dependency updates.
Changelog
  • .changeset/goofy-flowers-fix.md
    • Added a new changeset file to document dependency updates for @platforma-open/milaboratories.repertoire-diversity-2, @platforma-open/milaboratories.repertoire-diversity-2.model, and @platforma-open/milaboratories.repertoire-diversity-2.ui.
  • pnpm-lock.yaml
    • Updated versions and integrity hashes for a wide range of packages, including @milaboratories/graph-maker, @platforma-sdk/block-tools, @platforma-sdk/model, @platforma-sdk/tengo-builder, @platforma-sdk/test, @platforma-sdk/ui-vue, @milaboratories/miplots4, @milaboratories/pf-driver, @milaboratories/pl-client, @milaboratories/pl-deployments, @milaboratories/pl-drivers, @milaboratories/pl-errors, @milaboratories/pl-middle-layer, @milaboratories/pl-model-backend, @milaboratories/pl-model-common, @milaboratories/pl-model-middle-layer, @milaboratories/pl-tree, @milaboratories/ptabler-expression-js, @milaboratories/uikit, @platforma-open/milaboratories.software-ptabler.schema, react-dom, react, and scheduler.
    • Introduced fast-json-patch@3.1.1 as a new dependency.
    • Removed loose-envify@1.4.0 from the lockfile.
  • pnpm-workspace.yaml
    • Updated catalog versions for @platforma-sdk/model, @platforma-sdk/ui-vue, @platforma-sdk/tengo-builder, @platforma-sdk/block-tools, @platforma-sdk/test, and @milaboratories/graph-maker.
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.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

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.

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

Copy link
Copy Markdown

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 several dependencies, including a major version upgrade of React from v18 to v19. While dependency updates are important for security and bug fixes, the major version bump for React introduces significant breaking changes that could impact the application's stability. I've added a specific comment regarding this. It would be beneficial to add a more detailed description to the pull request explaining the 'extra running state' bug and how these dependency updates address it. This context is crucial for understanding the changes and ensuring a thorough review.

Comment thread pnpm-lock.yaml
Comment on lines +5106 to 5113
resolution: {integrity: sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==}
peerDependencies:
react: ^18.3.1
react: ^19.2.4

react@18.3.1:
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
react@19.2.4:
resolution: {integrity: sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==}
engines: {node: '>=0.10.0'}

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

high

Upgrading React from v18 to v19 is a major version change that introduces several breaking changes. For example, legacy APIs like ReactDOM.render are removed, and there are changes to ref handling and other features. Please ensure that the application has been thoroughly tested to confirm compatibility with React 19 and that all necessary code migrations have been performed. Refer to the React 19 Upgrade Guide for details on the required changes.

@erohinaelena
erohinaelena added this pull request to the merge queue Feb 5, 2026
Merged via the queue into main with commit da927f7 Feb 5, 2026
8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant