Skip to content

Commit 81a0264

Browse files
authored
Fix aiKey and changelog in the release branch. (#10604)
1 parent 9f2d17d commit 81a0264

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

Extension/CHANGELOG.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
* Add Ada to supported languages for debugging. [#10475](https://github.com/microsoft/vscode-cpptools/issues/10475)
3030
* Anthony Leonardo Gracio (@AnthonyLeonardoGracio) [PR #10476](https://github.com/microsoft/vscode-cpptools/pull/10476)
3131

32-
## Version 1.13.8: December 15, 2022
3332
### Bug Fixes
3433
* Fix usage of relative paths in IntelliSense configuration settings with multi-root workspaces. [#4983](https://github.com/microsoft/vscode-cpptools/issues/4983)
3534
* Fix infinite recursion in scout_parser. [#8898](https://github.com/microsoft/vscode-cpptools/issues/8898)
@@ -890,7 +889,7 @@
890889
## Version 0.29.0: July 15, 2020
891890
### New Features
892891
* Add Doxygen comment support (to tooltip display of hover, completion, and signature help). [#658](https://github.com/microsoft/vscode-cpptools/issues/658)
893-
* The way comments are formatted is controlled by the `C_Cpp.simplifyStructuredComments` setting.
892+
* The way comments are formatted is controlled by the `C_Cpp.simplifyStructuredComments` setting.
894893
* Auto-convert `.` to `->` when the type is a pointer. [#862](https://github.com/microsoft/vscode-cpptools/issues/862)
895894
* Switch to using the VS Code Semantic Tokens API for semantic colorization (works with remoting). [PR #5401](https://github.com/microsoft/vscode-cpptools/pull/5401), [#3932](https://github.com/microsoft/vscode-cpptools/issues/3932), [#3933](https://github.com/microsoft/vscode-cpptools/issues/3933), [#3942](https://github.com/microsoft/vscode-cpptools/issues/3942)
896895
* Add support for LogMessage Breakpoints for debug type `cppdbg`. [PR MIEngine#1013](https://github.com/microsoft/MIEngine/pull/1013)
@@ -1595,7 +1594,7 @@
15951594
## Version 0.16.1: March 30, 2018
15961595
* Fix random deadlock caused by logging code on Linux/Mac. [#1759](https://github.com/Microsoft/vscode-cpptools/issues/1759)
15971596
* Fix compiler from `compileCommands` not being queried for includes/defines if `compilerPath` isn't set on Windows. [#1754](https://github.com/Microsoft/vscode-cpptools/issues/1754)
1598-
* Fix OSX `UseShellExecute` I/O bug. [#1756](https://github.com/Microsoft/vscode-cpptools/issues/1756)
1597+
* Fix OSX `UseShellExecute` I/O bug. [#1756](https://github.com/Microsoft/vscode-cpptools/issues/1756)
15991598
* Invalidate partially unzipped files from package manager. [#1757](https://github.com/Microsoft/vscode-cpptools/issues/1757)
16001599

16011600
## Version 0.16.0: March 28, 2018
@@ -1940,4 +1939,4 @@
19401939
## Version 0.5.0: April 14, 2016
19411940
* Usability and correctness bug fixes.
19421941
* Simplify installation experience.
1943-
* Usability and correctness bug fixes.
1942+
* Usability and correctness bug fixes.

Extension/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3127,7 +3127,7 @@
31273127
"rust"
31283128
],
31293129
"_aiKeyComment": "Ignore 'Property aiKey is not allowed'. See https://github.com/microsoft/vscode/issues/76493",
3130-
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
3130+
"aiKey": "0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255",
31313131
"variables": {
31323132
"pickProcess": "extension.pickNativeProcess",
31333133
"pickRemoteProcess": "extension.pickRemoteNativeProcess"
@@ -4875,7 +4875,7 @@
48754875
"rust"
48764876
],
48774877
"_aiKeyComment": "Ignore 'Property aiKey is not allowed'. See https://github.com/microsoft/vscode/issues/76493",
4878-
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
4878+
"aiKey": "0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255",
48794879
"variables": {
48804880
"pickProcess": "extension.pickNativeProcess"
48814881
},

Extension/src/telemetry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export class ExperimentationTelemetry implements IExperimentationTelemetry {
5555

5656
let initializationPromise: Promise<IExperimentationService> | undefined;
5757
let experimentationTelemetry: ExperimentationTelemetry | undefined;
58-
const appInsightsKey: string = "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217";
58+
const appInsightsKey: string = "0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255";
5959

6060
export function activate(): void {
6161
try {

0 commit comments

Comments
 (0)