Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@
"matchFileNames": ["**/react-18/**"],
"ignoreDeps": ["react", "react-dom", "@types/react", "@types/react-dom"],
},
// renovate doesn't properly handle x.x.x-beta-hash-yyyymm version schema
{
"matchPackageNames": [
"react-compiler-runtime",
"babel-plugin-react-compiler",
],
"followTag": "latest",
},
{
"matchDepTypes": ["action"],
"excludePackagePrefixes": ["actions/", "github/"],
Expand All @@ -30,9 +38,5 @@
"kill-port", // `kill-port:^2.0.0 has perf issues (#8392)

"prettier", // waiting for stable choice on ternaries

// renovate doesn't properly handle x.x.x-experimental-yyy-zzz version schema
Copy link
Member

@ArnaudBarre ArnaudBarre Apr 15, 2025

Choose a reason for hiding this comment

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

We need to keep this as they are still putting the hash before the date 🤦‍♂️
(otherwise it can update backwards when a new hash is "before" the current one)

Copy link
Member Author

Choose a reason for hiding this comment

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

Ah, I see. I added the followTag option instead now.
https://docs.renovatebot.com/configuration-options/#followtag
It probably works as it has the latest tag.
https://www.npmjs.com/package/react-compiler-runtime?activeTab=versions

Copy link
Member

Choose a reason for hiding this comment

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

Ah good! Let's be vigilant on the next auto update from the bot

"react-compiler-runtime",
"babel-plugin-react-compiler",
],
}
4 changes: 2 additions & 2 deletions playground/compiler-react-18/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
},
"dependencies": {
"react": "^18.3.1",
"react-compiler-runtime": "0.0.0-experimental-dc8bd44-20241121",
"react-compiler-runtime": "19.0.0-beta-ebf51a3-20250411",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx-development": "^7.25.9",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.6",
"@vitejs/plugin-react": "workspace:*",
"babel-plugin-react-compiler": "0.0.0-experimental-dc8bd44-20241121",
"babel-plugin-react-compiler": "19.0.0-beta-ebf51a3-20250411",
"typescript": "^5.8.3"
}
}
2 changes: 1 addition & 1 deletion playground/compiler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.6",
"@vitejs/plugin-react": "workspace:*",
"babel-plugin-react-compiler": "0.0.0-experimental-dc8bd44-20241121",
"babel-plugin-react-compiler": "19.0.0-beta-ebf51a3-20250411",
"typescript": "^5.8.3"
}
}
38 changes: 19 additions & 19 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading