Fix referrer (#3848)

This commit is contained in:
Matt Rubens 2025-05-22 14:35:14 -04:00 committed by GitHub
parent 9ee203385d
commit 790c6b50f2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 8 additions and 8 deletions

View file

@ -1116,7 +1116,7 @@ Join us at https://www.reddit.com/r/RooCode to share your custom modes and be pa
## [2.2.16]
- Incorporate Premshay's [PR](https://github.com/RooCodeInc/Roo-Cline/pull/60) to add support for Amazon Nova and Meta Llama Models via Bedrock (3, 3.1, 3.2) and unified Bedrock calls using BedrockClient and Bedrock Runtime API
- Incorporate Premshay's [PR](https://github.com/RooCodeInc/Roo-Code/pull/60) to add support for Amazon Nova and Meta Llama Models via Bedrock (3, 3.1, 3.2) and unified Bedrock calls using BedrockClient and Bedrock Runtime API
## [2.2.14 - 2.2.15]
@ -1188,7 +1188,7 @@ Join us at https://www.reddit.com/r/RooCode to share your custom modes and be pa
## [2.1.15]
- Incorporate dbasclpy's [PR](https://github.com/RooCodeInc/Roo-Cline/pull/54) to add support for gemini-exp-1206
- Incorporate dbasclpy's [PR](https://github.com/RooCodeInc/Roo-Code/pull/54) to add support for gemini-exp-1206
- Make it clear that diff editing is very experimental
## [2.1.14]
@ -1198,7 +1198,7 @@ Join us at https://www.reddit.com/r/RooCode to share your custom modes and be pa
## [2.1.13]
- Fix https://github.com/RooCodeInc/Roo-Cline/issues/50 where sound effects were not respecting settings
- Fix https://github.com/RooCodeInc/Roo-Code/issues/50 where sound effects were not respecting settings
## [2.1.12]
@ -1206,7 +1206,7 @@ Join us at https://www.reddit.com/r/RooCode to share your custom modes and be pa
## [2.1.11]
- Incorporate lloydchang's [PR](https://github.com/RooCodeInc/Roo-Cline/pull/42) to add support for OpenRouter compression
- Incorporate lloydchang's [PR](https://github.com/RooCodeInc/Roo-Code/pull/42) to add support for OpenRouter compression
## [2.1.10]

View file

@ -101,7 +101,7 @@ describe("OpenAiHandler", () => {
baseURL: expect.any(String),
apiKey: expect.any(String),
defaultHeaders: {
"HTTP-Referer": "https://github.com/RooCodeInc/Roo-Cline",
"HTTP-Referer": "https://github.com/RooVetGit/Roo-Cline",
"X-Title": "Roo Code",
},
})

View file

@ -58,7 +58,7 @@ describe("OpenRouterHandler", () => {
baseURL: "https://openrouter.ai/api/v1",
apiKey: mockOptions.openRouterApiKey,
defaultHeaders: {
"HTTP-Referer": "https://github.com/RooCodeInc/Roo-Cline",
"HTTP-Referer": "https://github.com/RooVetGit/Roo-Cline",
"X-Title": "Roo Code",
},
})

View file

@ -43,7 +43,7 @@ describe("RequestyHandler", () => {
baseURL: "https://router.requesty.ai/v1",
apiKey: mockOptions.requestyApiKey,
defaultHeaders: {
"HTTP-Referer": "https://github.com/RooCodeInc/Roo-Cline",
"HTTP-Referer": "https://github.com/RooVetGit/Roo-Cline",
"X-Title": "Roo Code",
},
})

View file

@ -1,5 +1,5 @@
export const DEFAULT_HEADERS = {
"HTTP-Referer": "https://github.com/RooCodeInc/Roo-Cline",
"HTTP-Referer": "https://github.com/RooVetGit/Roo-Cline",
"X-Title": "Roo Code",
}