Skip to content

Conversation

@danielleroux
Copy link
Collaborator

🆕 What is the new behavior?

This branch introduces pnpm catalog dependencies to centralize version management across the IX monorepo.

🏁 Checklist

A pull request can only be merged if all of these conditions are met (where applicable):

  • 🦮 Accessibility (a11y) features were implemented
  • 🗺️ Internationalization (i18n) - no hard coded strings
  • 📲 Responsiveness - components handle viewport changes and content overflow gracefully
  • 📕 Add or update a Storybook story
  • 📄 Documentation was reviewed/updated siemens/ix-docs
  • 🧪 Unit tests were added/updated and pass (pnpm test)
  • 📸 Visual regression tests were added/updated and pass (Guide)
  • 🧐 Static code analysis passes (pnpm lint)
  • 🏗️ Successful compilation (pnpm build, changes pushed)

👨‍💻 Help & support

@changeset-bot
Copy link

changeset-bot bot commented Dec 4, 2025

⚠️ No Changeset found

Latest commit: 68fcb21

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@gemini-code-assist
Copy link
Contributor

Summary of Changes

Hello @danielleroux, 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 streamlines dependency management within the monorepo by adopting pnpm's catalog feature. This change centralizes the definition of versions for critical development dependencies such as Playwright, Vite, and Esbuild, ensuring consistency and simplifying future updates across all packages.

Highlights

  • Centralized Dependency Management: Introduced pnpm catalog dependencies to centralize version management for key development tools across the monorepo.
  • Package.json Updates: Modified package.json files in multiple packages (e.g., aggrid, core, echarts, html-test-app, ionic-test-app, react-test-app, react, storybook-docs, vue-test-app, vue, visual-testing) to reference versions via catalog: for @playwright/test, vite, and @esbuild/linux-arm64.
  • New TypeScript Configuration: Added packages/aggrid/tsconfig.node.json to provide specific TypeScript configurations for Node.js-related files.
  • Pnpm Lockfile and Workspace Configuration: Updated the pnpm-lock.yaml file to reflect the new catalog structure and removed older esbuild versions, and added a catalog section to pnpm-workspace.yaml to define the centralized versions.
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.

@sonarqubecloud
Copy link

sonarqubecloud bot commented Dec 4, 2025

Copy link
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 introduces pnpm catalogs to centralize dependency version management, which is a commendable improvement for maintaining this monorepo. The changes correctly implement the catalog for dependencies like @playwright/test and @esbuild/linux-arm64.

However, this PR also includes a significant major version upgrade for vite across multiple packages (e.g., from v4 to v7), which is a substantial change not reflected in the chore scope of the PR. This carries a risk of introducing breaking changes. My review includes a comment with suggestions on how to handle this.

- 'testing/*'

catalog:
vite: ^7.2.6
Copy link
Contributor

Choose a reason for hiding this comment

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

high

This change centralizes the vite version, which is great. However, it also upgrades vite from v4 and v6 to v7 for several packages. This is a major version bump that could introduce breaking changes.

For example:

  • packages/html-test-app moves from ^4.5.14 to ^7.2.6.
  • packages/aggrid moves from ^6.3.5 to ^7.2.6.

A chore pull request should ideally not contain potentially breaking changes. Could you please clarify if this upgrade was intentional and if the affected applications have been thoroughly tested?

If the upgrade is intentional, it would be better to change the PR title to reflect this (e.g., feat: upgrade vite to v7 and centralize versions) and add more details about the upgrade in the description.

Alternatively, you could consider keeping the vite versions as they are for now by defining multiple versions in the catalog or keeping them in package.json files, and handle the upgrade in a separate PR.

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.

3 participants