Merge pull request #281 from gsd-build/fix/276-version-sync
fix: 2.10.5 — correct optionalDependencies version sync (#276)
This commit is contained in:
commit
7b0b71da79
8 changed files with 23 additions and 83 deletions
|
|
@ -6,6 +6,11 @@ Format based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [2.10.5] - 2026-03-13
|
||||
|
||||
### Fixed
|
||||
- `optionalDependencies` in published `gsd-pi@2.10.4` were still pinned to `2.10.2`, causing users to install the broken engine binaries that 2.10.4 was meant to fix (#276)
|
||||
|
||||
## [2.10.4] - 2026-03-13
|
||||
|
||||
### Fixed
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@gsd-build/engine-darwin-arm64",
|
||||
"version": "2.10.3",
|
||||
"version": "2.10.5",
|
||||
"description": "GSD native engine binary for macOS ARM64",
|
||||
"os": [
|
||||
"darwin"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@gsd-build/engine-darwin-x64",
|
||||
"version": "2.10.3",
|
||||
"version": "2.10.5",
|
||||
"description": "GSD native engine binary for macOS Intel",
|
||||
"os": [
|
||||
"darwin"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@gsd-build/engine-linux-arm64-gnu",
|
||||
"version": "2.10.3",
|
||||
"version": "2.10.5",
|
||||
"description": "GSD native engine binary for Linux ARM64 (glibc)",
|
||||
"os": [
|
||||
"linux"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@gsd-build/engine-linux-x64-gnu",
|
||||
"version": "2.10.3",
|
||||
"version": "2.10.5",
|
||||
"description": "GSD native engine binary for Linux x64 (glibc)",
|
||||
"os": [
|
||||
"linux"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@gsd-build/engine-win32-x64-msvc",
|
||||
"version": "2.10.3",
|
||||
"version": "2.10.5",
|
||||
"description": "GSD native engine binary for Windows x64 (MSVC)",
|
||||
"os": [
|
||||
"win32"
|
||||
|
|
|
|||
79
package-lock.json
generated
79
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "gsd-pi",
|
||||
"version": "2.10.4",
|
||||
"version": "2.10.5",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "gsd-pi",
|
||||
"version": "2.10.4",
|
||||
"version": "2.10.5",
|
||||
"bundleDependencies": [
|
||||
"@gsd/native",
|
||||
"@gsd/pi-agent-core",
|
||||
|
|
@ -44,11 +44,11 @@
|
|||
"node": ">=20.6.0"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"@gsd-build/engine-darwin-arm64": "2.10.2",
|
||||
"@gsd-build/engine-darwin-x64": "2.10.2",
|
||||
"@gsd-build/engine-linux-arm64-gnu": "2.10.2",
|
||||
"@gsd-build/engine-linux-x64-gnu": "2.10.2",
|
||||
"@gsd-build/engine-win32-x64-msvc": "2.10.2",
|
||||
"@gsd-build/engine-darwin-arm64": "2.10.5",
|
||||
"@gsd-build/engine-darwin-x64": "2.10.5",
|
||||
"@gsd-build/engine-linux-arm64-gnu": "2.10.5",
|
||||
"@gsd-build/engine-linux-x64-gnu": "2.10.5",
|
||||
"@gsd-build/engine-win32-x64-msvc": "2.10.5",
|
||||
"fsevents": "~2.3.3"
|
||||
}
|
||||
},
|
||||
|
|
@ -838,71 +838,6 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"node_modules/@gsd-build/engine-darwin-arm64": {
|
||||
"version": "2.10.2",
|
||||
"resolved": "https://registry.npmjs.org/@gsd-build/engine-darwin-arm64/-/engine-darwin-arm64-2.10.2.tgz",
|
||||
"integrity": "sha512-P+NZReK9FMQM7Nh/z/wX2oZcf+ho5TNlajo/+PuUoVjJZ+XeBCBGXo5j5NgOcNtxUnWL5kStKHFswxDdG8ysMg==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"darwin"
|
||||
]
|
||||
},
|
||||
"node_modules/@gsd-build/engine-darwin-x64": {
|
||||
"version": "2.10.2",
|
||||
"resolved": "https://registry.npmjs.org/@gsd-build/engine-darwin-x64/-/engine-darwin-x64-2.10.2.tgz",
|
||||
"integrity": "sha512-1TAB1l5MKeKhFLpTcHqHeulIgcoHY3tHoHpXfoImjD6Bto0hsmufikjDoLUobzaJ+5wsqAFH8tL9tGC7LrOEcg==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"darwin"
|
||||
]
|
||||
},
|
||||
"node_modules/@gsd-build/engine-linux-arm64-gnu": {
|
||||
"version": "2.10.2",
|
||||
"resolved": "https://registry.npmjs.org/@gsd-build/engine-linux-arm64-gnu/-/engine-linux-arm64-gnu-2.10.2.tgz",
|
||||
"integrity": "sha512-NonJ4yUEfYxAUCAtJChtpyOYZJgJh+FTthG2dfQ1wpggoFui4M12kPOSGPwVy3baRojUu5pdI04x8tXs+s7mgA==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
]
|
||||
},
|
||||
"node_modules/@gsd-build/engine-linux-x64-gnu": {
|
||||
"version": "2.10.2",
|
||||
"resolved": "https://registry.npmjs.org/@gsd-build/engine-linux-x64-gnu/-/engine-linux-x64-gnu-2.10.2.tgz",
|
||||
"integrity": "sha512-99RiUk0YaK1AsW6UdUq/iAJr+oAPR2nvl9T8JW4MLOjDc3GO2BtGqOC5yzNBGXkcY3CJEOSJI/BuVhdbvSauQQ==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
]
|
||||
},
|
||||
"node_modules/@gsd-build/engine-win32-x64-msvc": {
|
||||
"version": "2.10.2",
|
||||
"resolved": "https://registry.npmjs.org/@gsd-build/engine-win32-x64-msvc/-/engine-win32-x64-msvc-2.10.2.tgz",
|
||||
"integrity": "sha512-Cu7nFkLqfp/YX7gTiHafV6qP0FfBOKc368feIWH5oG2BNHiptmc9OHrKZTkqycaeT8FWUUmvgac/07tuWwfGyg==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"win32"
|
||||
]
|
||||
},
|
||||
"node_modules/@gsd/native": {
|
||||
"resolved": "packages/native",
|
||||
"link": true
|
||||
|
|
|
|||
12
package.json
12
package.json
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "gsd-pi",
|
||||
"version": "2.10.4",
|
||||
"version": "2.10.5",
|
||||
"description": "GSD — Get Shit Done coding agent",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
|
|
@ -82,11 +82,11 @@
|
|||
"typescript": "^5.4.0"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"@gsd-build/engine-darwin-arm64": "2.10.2",
|
||||
"@gsd-build/engine-darwin-x64": "2.10.2",
|
||||
"@gsd-build/engine-linux-x64-gnu": "2.10.2",
|
||||
"@gsd-build/engine-linux-arm64-gnu": "2.10.2",
|
||||
"@gsd-build/engine-win32-x64-msvc": "2.10.2",
|
||||
"@gsd-build/engine-darwin-arm64": "2.10.5",
|
||||
"@gsd-build/engine-darwin-x64": "2.10.5",
|
||||
"@gsd-build/engine-linux-x64-gnu": "2.10.5",
|
||||
"@gsd-build/engine-linux-arm64-gnu": "2.10.5",
|
||||
"@gsd-build/engine-win32-x64-msvc": "2.10.5",
|
||||
"fsevents": "~2.3.3"
|
||||
},
|
||||
"overrides": {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue