chore: update schemas and dependencies#509
Conversation
felix-schultz
commented
Feb 13, 2026
- Refactored JSON schemas in desktop and macOS to improve structure and maintainability by reordering properties and removing redundant definitions.
- Updated the version of @sentry/nextjs to ^10.38.0 in web, ui, and root package.json files to ensure compatibility and access to the latest features and fixes.
- Refactored JSON schemas in desktop and macOS to improve structure and maintainability by reordering properties and removing redundant definitions. - Updated the version of @sentry/nextjs to ^10.38.0 in web, ui, and root package.json files to ensure compatibility and access to the latest features and fixes.
Summary of ChangesHello @felix-schultz, 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 focuses on essential maintenance by updating core dependencies and refining JSON schema definitions. The dependency updates ensure that the project benefits from the latest features, performance improvements, and security fixes provided by the updated libraries, particularly for Sentry integration. The schema refactoring enhances the clarity and organization of configuration files, making them easier to understand and manage. Highlights
Changelog
Activity
Using Gemini Code AssistThe 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
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 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
|
There was a problem hiding this comment.
Code Review
This pull request primarily focuses on updating dependencies, with a significant update to the Sentry ecosystem across both Rust and JavaScript packages, and some refactoring of JSON schemas. The changes are well-contained and improve the project's maintainability. My review includes suggestions to pin the exact versions of the updated npm packages to further enhance dependency stability.
| "@radix-ui/react-toolbar": "^1.1.10", | ||
| "@radix-ui/react-tooltip": "^1.2.7", | ||
| "@sentry/nextjs": "^9.39.0", | ||
| "@sentry/nextjs": "^10.38.0", |
There was a problem hiding this comment.
For better dependency stability, it's a good practice to pin the exact version of dependencies, especially after a major version bump like this one from v9 to v10. This ensures that everyone on the team and in CI/CD environments uses the exact same version of the package.
| "@sentry/nextjs": "^10.38.0", | |
| "@sentry/nextjs": "10.38.0", |
| "@radix-ui/react-toolbar": "^1.1.10", | ||
| "@radix-ui/react-tooltip": "^1.2.7", | ||
| "@sentry/nextjs": "^10", | ||
| "@sentry/nextjs": "^10.38.0", |
| }, | ||
| "workspaces": ["packages/*", "apps/*"], | ||
| "overrides": { | ||
| "@sentry/nextjs": "^10.38.0" |
There was a problem hiding this comment.
To ensure dependency stability across the monorepo, it's recommended to pin the exact version in the overrides section. This guarantees that all packages in the workspace resolve to the identical package version, preventing potential issues from minor version differences.
| "@sentry/nextjs": "^10.38.0" | |
| "@sentry/nextjs": "10.38.0" |
| "@react-three/drei": "^10.7.7", | ||
| "@react-three/fiber": "^9.5.0", | ||
| "@sentry/nextjs": "^9.39.0", | ||
| "@sentry/nextjs": "^10.38.0", |
There was a problem hiding this comment.
For better dependency stability, it's a good practice to pin the exact version of dependencies, especially after a major version bump like this one from v9 to v10. This ensures that everyone on the team and in CI/CD environments uses the exact same version of the package.
| "@sentry/nextjs": "^10.38.0", | |
| "@sentry/nextjs": "10.38.0", |