Replies: 2 comments 3 replies
-
|
Same here: ▲ ~ refreshenv
▲ ~ github-copilot-cli --version
0.1.33
▲ ~ npm cache clean --force
npm WARN using --force Recommended protections disabled.
▲ ~ npm i --global @githubnext/github-copilot-cli@0.1.35
changed 247 packages in 26s
54 packages are looking for funding
run `npm fund` for details
▲ ~ refreshenv
▲ ~ github-copilot-cli --version
0.1.33
▲ ~ ?? hello
┌──────────────────────────────────────────────────────────┐
│ New version of @githubnext/github-copilot-cli available! │
│ Current Version: 0.1.33 │
│ Latest Version: 0.1.35 │
└──────────────────────────────────────────────────────────┘
──────────────────── Command ────────────────────
⚠️ Sorry. GitHub Copilot doesn't know how to do that.
📝 Revise query
❯ ❌ Cancel
▲ ~ which refreshenv
refreshenv: aliased to exec zsh -l
▲ ~
▲ ~ computer_info
solrevdev@macmini-2014.local
----------------------------
OS: macOS 12.7.2 21G1974 x86_64
Host: Macmini7,1
Kernel: 21.6.0
Uptime: 2 days, 17 hours, 41 mins
Packages: 379 (brew)
Shell: zsh 5.8.1
Resolution: 1920x1080
DE: Aqua
WM: Quartz Compositor
WM Theme: Blue (Light)
Terminal: iTerm2
Terminal Font: CascadiaMonoPL-Regular 16
CPU: Intel i5-4278U (4) @ 2.60GHz
GPU: Intel Iris
Memory: 9821MiB / 16384MiB
▲ ~ which computer_info
computer_info () {
os=$(what_os_is_this)
if [ "$os" = "linux" ]
then
sudo lshw
fi
if [ "$os" = "macos" ]
then
neofetch --off
fi
}
▲ ~ |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Its has stopped working completely now ▲ ~ ?? "are you working today"
┌──────────────────────────────────────────────────────────┐
│ New version of @githubnext/github-copilot-cli available! │
│ Current Version: 0.1.33 │
│ Latest Version: 0.1.35 │
└──────────────────────────────────────────────────────────┘
──────────────────── Command ────────────────────
⚠️ Sorry. GitHub Copilot ran into an issue while getting a response. Error: Request failed
with status code 404
📝 Revise query
❯ ❌ Cancel
▲ ~ npm install -g @githubnext/github-copilot-cli
changed 247 packages in 15s
54 packages are looking for funding
run `npm fund` for details
▲ ~ refreshenv
▲ ~ ?? what time is it
┌──────────────────────────────────────────────────────────┐
│ New version of @githubnext/github-copilot-cli available! │
│ Current Version: 0.1.33 │
│ Latest Version: 0.1.35 │
└──────────────────────────────────────────────────────────┘
──────────────────── Command ────────────────────
⚠️ Sorry. GitHub Copilot ran into an issue while getting a response. Error: Request failed
with status code 404
📝 Revise query
❯ ❌ Cancel
▲ ~
▲ ~
▲ ~ github-copilot-cli --version
0.1.33
▲ ~ npm install -g @githubnext/github-copilot-cli@latest
changed 247 packages in 2s
54 packages are looking for funding
run `npm fund` for details
▲ ~ github-copilot-cli --version
0.1.33
▲ ~ ?? does this work
┌──────────────────────────────────────────────────────────┐
│ New version of @githubnext/github-copilot-cli available! │
│ Current Version: 0.1.33 │
│ Latest Version: 0.1.35 │
└──────────────────────────────────────────────────────────┘
──────────────────── Command ────────────────────
⚠️ Sorry. GitHub Copilot ran into an issue while getting a response. Error: Request failed
with status code 404
❯ 📝 Revise query
❌ Cancel |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Bug
Body
Issue Summary:
The GitHub Copilot CLI package (
@githubnext/github-copilot-cli) version 0.1.35, when installed and queried for its version using--version, incorrectly reports version 0.1.33. This discrepancy persists despite thorough troubleshooting and confirmation that version 0.1.35 is indeed installed.Steps to Reproduce:
@githubnext/github-copilot-cliversion 0.1.35 globally using npm./usr/lib/node_modules/@githubnext/github-copilot-cli/cli.js --version.0.1.33instead of the expected0.1.35.Troubleshooting Steps:
npm cache clean --force.@githubnext/github-copilot-cli@0.1.35./usr/lib/node_modules/@githubnext/github-copilot-cli) and confirmedpackage.jsonshows version0.1.35.cli.jswith Node and inspected the script, which revealed the hardcoded version string0.1.33.Expected Behavior:
The command should return the actual installed version of the package,
0.1.35.Actual Behavior:
The output is
0.1.33, indicating a mismatch between the installed version and the version reported by the script.Code Snippet Indicating the Issue:
Beta Was this translation helpful? Give feedback.
All reactions