Skip to content

Commit 0db1887

Browse files
committed
Merge branch 'feature/bump-github-copilot-language-server-1.32.0' into develop
2 parents 3c91c46 + ad2f0cb commit 0db1887

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

Tool/Sources/GitHubCopilotService/LanguageServer/CopilotLocalProcessServer.swift

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,13 @@ extension CustomJSONRPCLanguageServer {
241241
}
242242
block(nil)
243243
return true
244+
case "conversation/preconditionsNotification":
245+
if UserDefaults.shared.value(for: \.gitHubCopilotVerboseLog) {
246+
Logger.gitHubCopilot
247+
.info("\(anyNotification.method): \(debugDescription)")
248+
}
249+
block(nil)
250+
return true
244251
default:
245252
return false
246253
}

Tool/Sources/GitHubCopilotService/LanguageServer/GitHubCopilotInstallationManager.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ public struct GitHubCopilotInstallationManager {
55
private static var isInstalling = false
66

77
static var downloadURL: URL {
8-
let commitHash = "a4a6d6b3f9e284e7f5c849619e06cd228cad8abd"
8+
let commitHash = "25feddf8e3aa79f0573c8f43ddb13c44c530cfa5"
99
let link = "https://github.com/github/copilot.vim/archive/\(commitHash).zip"
1010
return URL(string: link)!
1111
}
1212

13-
static let latestSupportedVersion = "1.25.0"
13+
static let latestSupportedVersion = "1.32.0"
1414

1515
public init() {}
1616

0 commit comments

Comments
 (0)