Skip to content

chore: bump renderer package versions to alpha.3#1178

Open
jacobsimionato wants to merge 2 commits intogoogle:mainfrom
jacobsimionato:increment_yet_again
Open

chore: bump renderer package versions to alpha.3#1178
jacobsimionato wants to merge 2 commits intogoogle:mainfrom
jacobsimionato:increment_yet_again

Conversation

@jacobsimionato
Copy link
Copy Markdown
Collaborator

Description of Changes

This pull request increments the versions of the core A2UI renderer packages and their dependencies to the next alpha release (alpha.3).

The following packages have been updated:

  • @a2ui/angular: 0.9.0-alpha.1 -> 0.9.0-alpha.3
  • @a2ui/lit: 0.9.2-alpha.1 -> 0.9.2-alpha.3
  • @a2ui/markdown-it: 0.0.2 -> 0.0.2-alpha.3
  • @a2ui/react: 0.9.0-alpha.1 -> 0.9.0-alpha.3
  • @a2ui/web_core: 0.9.1-alpha.1 -> 0.9.1-alpha.3

Corresponding package-lock.json files in samples/ and tools/ have been updated to reflect these version changes.

Rationale

These changes synchronize the versions of the various renderers and core libraries within the monorepo, preparing for the next phase of testing and integration.

Testing/Running Instructions

Reviewers can verify the version updates by checking the package.json files in the renderers/ directory.
To verify that the workspace remains consistent, run:

npm install

in the root or relevant subdirectories to ensure dependencies resolve correctly with the new versions.

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 versions of several packages across the repository, including @a2ui/angular, @a2ui/lit, @a2ui/react, @a2ui/web_core, and @a2ui/markdown-it, along with their corresponding lockfiles in samples and tools. The review feedback identifies critical version mismatches where package-lock.json files were updated to alpha.2 while the source package.json files were bumped to alpha.3. Additionally, some dependency and peer dependency versions in sample lockfiles were found to be inconsistent with the new alpha releases.

Comment on lines +3 to +9
"version": "0.9.0-alpha.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@a2ui/angular",
"version": "0.9.0-alpha.0",
"version": "0.9.0-alpha.2",
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.

high

The version in package-lock.json is set to 0.9.0-alpha.2, but the corresponding package.json is updated to 0.9.0-alpha.3. These should be kept in sync to ensure consistent builds.

Suggested change
"version": "0.9.0-alpha.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@a2ui/angular",
"version": "0.9.0-alpha.0",
"version": "0.9.0-alpha.2",
"version": "0.9.0-alpha.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@a2ui/angular",
"version": "0.9.0-alpha.3",

Comment on lines +3 to +9
"version": "0.9.2-alpha.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@a2ui/lit",
"version": "0.9.2-alpha.0",
"version": "0.9.2-alpha.2",
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.

high

The version in package-lock.json is set to 0.9.2-alpha.2, but the corresponding package.json is updated to 0.9.2-alpha.3.

Suggested change
"version": "0.9.2-alpha.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@a2ui/lit",
"version": "0.9.2-alpha.0",
"version": "0.9.2-alpha.2",
"version": "0.9.2-alpha.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@a2ui/lit",
"version": "0.9.2-alpha.3",

Comment on lines +3 to +9
"version": "0.0.2-alpha.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@a2ui/markdown-it",
"version": "0.0.2",
"version": "0.0.2-alpha.2",
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.

high

The version in package-lock.json is set to 0.0.2-alpha.2, but the corresponding package.json is updated to 0.0.2-alpha.3.

Suggested change
"version": "0.0.2-alpha.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@a2ui/markdown-it",
"version": "0.0.2",
"version": "0.0.2-alpha.2",
"version": "0.0.2-alpha.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@a2ui/markdown-it",
"version": "0.0.2-alpha.3",

Comment on lines +3 to +9
"version": "0.9.0-alpha.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@a2ui/react",
"version": "0.9.0-alpha.0",
"version": "0.9.0-alpha.2",
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.

high

The version in package-lock.json is set to 0.9.0-alpha.2, but the corresponding package.json is updated to 0.9.0-alpha.3.

Suggested change
"version": "0.9.0-alpha.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@a2ui/react",
"version": "0.9.0-alpha.0",
"version": "0.9.0-alpha.2",
"version": "0.9.0-alpha.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@a2ui/react",
"version": "0.9.0-alpha.3",

Comment on lines +29 to +32
"version": "0.9.0-alpha.2",
"license": "Apache-2.0",
"dependencies": {
"@a2ui/web_core": "^0.9.1-alpha.0",
"@a2ui/web_core": "^0.9.1-alpha.2",
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.

high

The versions for @a2ui/angular and its dependency @a2ui/web_core are updated to alpha.2 instead of the intended alpha.3 specified in the PR description.

Suggested change
"version": "0.9.0-alpha.2",
"license": "Apache-2.0",
"dependencies": {
"@a2ui/web_core": "^0.9.1-alpha.0",
"@a2ui/web_core": "^0.9.1-alpha.2",
"version": "0.9.0-alpha.3",
"license": "Apache-2.0",
"dependencies": {
"@a2ui/web_core": "^0.9.1-alpha.3",

},
"peerDependencies": {
"@a2ui/markdown-it": "file:../markdown/markdown-it",
"@a2ui/markdown-it": "^0.0.1",
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.

high

The peer dependency for @a2ui/markdown-it was changed to ^0.0.1. This should be updated to ^0.0.2-alpha.3 to be consistent with the other package updates and ensure compatibility with the new alpha release.

Suggested change
"@a2ui/markdown-it": "^0.0.1",
"@a2ui/markdown-it": "^0.0.2-alpha.3",

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

Status: Todo

Development

Successfully merging this pull request may close these issues.

1 participant