@vscode/vscode-settings-history 0.0.2-10 → 0.0.2-11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/history.json +54 -0
- package/dist/vscode-settings.d.ts +8 -1
- package/package.json +1 -1
package/dist/history.json
CHANGED
|
@@ -279995,5 +279995,59 @@
|
|
|
279995
279995
|
}
|
|
279996
279996
|
}
|
|
279997
279997
|
]
|
|
279998
|
+
},
|
|
279999
|
+
{
|
|
280000
|
+
"version": "1.122.0-insider+2026052623",
|
|
280001
|
+
"base": {
|
|
280002
|
+
"version": "1.122.0-insider+2026052517"
|
|
280003
|
+
},
|
|
280004
|
+
"patch": [
|
|
280005
|
+
{
|
|
280006
|
+
"op": "replace",
|
|
280007
|
+
"path": "/chat.agentHost.customTerminalTool.enabled/defaultDefaultValue",
|
|
280008
|
+
"value": false
|
|
280009
|
+
},
|
|
280010
|
+
{
|
|
280011
|
+
"op": "replace",
|
|
280012
|
+
"path": "/chat.agentHost.customTerminalTool.enabled/default",
|
|
280013
|
+
"value": false
|
|
280014
|
+
},
|
|
280015
|
+
{
|
|
280016
|
+
"op": "remove",
|
|
280017
|
+
"path": "/chat.agent.maxRequests"
|
|
280018
|
+
},
|
|
280019
|
+
{
|
|
280020
|
+
"op": "remove",
|
|
280021
|
+
"path": "/chat.tools.eligibleForAutoApproval/propertyNames/enumDescriptions/3"
|
|
280022
|
+
},
|
|
280023
|
+
{
|
|
280024
|
+
"op": "remove",
|
|
280025
|
+
"path": "/chat.tools.eligibleForAutoApproval/propertyNames/enumDescriptions/2"
|
|
280026
|
+
},
|
|
280027
|
+
{
|
|
280028
|
+
"op": "remove",
|
|
280029
|
+
"path": "/chat.tools.eligibleForAutoApproval/propertyNames/enumDescriptions/1"
|
|
280030
|
+
},
|
|
280031
|
+
{
|
|
280032
|
+
"op": "remove",
|
|
280033
|
+
"path": "/chat.tools.eligibleForAutoApproval/propertyNames/enumDescriptions/0"
|
|
280034
|
+
},
|
|
280035
|
+
{
|
|
280036
|
+
"op": "remove",
|
|
280037
|
+
"path": "/chat.tools.eligibleForAutoApproval/propertyNames/enum/3"
|
|
280038
|
+
},
|
|
280039
|
+
{
|
|
280040
|
+
"op": "remove",
|
|
280041
|
+
"path": "/chat.tools.eligibleForAutoApproval/propertyNames/enum/2"
|
|
280042
|
+
},
|
|
280043
|
+
{
|
|
280044
|
+
"op": "remove",
|
|
280045
|
+
"path": "/chat.tools.eligibleForAutoApproval/propertyNames/enum/1"
|
|
280046
|
+
},
|
|
280047
|
+
{
|
|
280048
|
+
"op": "remove",
|
|
280049
|
+
"path": "/chat.tools.eligibleForAutoApproval/propertyNames/enum/0"
|
|
280050
|
+
}
|
|
280051
|
+
]
|
|
279998
280052
|
}
|
|
279999
280053
|
]
|
|
@@ -10967,6 +10967,12 @@ export type VscodeSettings_1_122_0_insider_2026052517 = Patch<VscodeSettings_1_1
|
|
|
10967
10967
|
readonly 'chat.agentHost.enabled'?: boolean;
|
|
10968
10968
|
}, 'chat.agent.sandbox.enabled.windows' | 'github.copilot.chat.freezeCustomizationsIndex'>;
|
|
10969
10969
|
|
|
10970
|
+
// ── 1.122.0-insider+2026052623: ~2, -1 ──
|
|
10971
|
+
export type VscodeSettings_1_122_0_insider_2026052623 = Patch<VscodeSettings_1_122_0_insider_2026052517, {
|
|
10972
|
+
readonly 'chat.agentHost.customTerminalTool.enabled'?: boolean;
|
|
10973
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
10974
|
+
}, 'chat.agent.maxRequests'>;
|
|
10975
|
+
|
|
10970
10976
|
// ── Version map ──
|
|
10971
10977
|
// Stable entries map directly to their settings type.
|
|
10972
10978
|
// Insider entries map to a nested record keyed by 10-digit build release date
|
|
@@ -11016,12 +11022,13 @@ interface VscodeVersionMap {
|
|
|
11016
11022
|
'2026052105': VscodeSettings_1_122_0_insider_2026052105;
|
|
11017
11023
|
'2026052217': VscodeSettings_1_122_0_insider_2026052217;
|
|
11018
11024
|
'2026052517': VscodeSettings_1_122_0_insider_2026052517;
|
|
11025
|
+
'2026052623': VscodeSettings_1_122_0_insider_2026052623;
|
|
11019
11026
|
};
|
|
11020
11027
|
}
|
|
11021
11028
|
|
|
11022
11029
|
export type LatestVscodeSettings = VscodeSettings_1_121_0;
|
|
11023
11030
|
|
|
11024
|
-
export type LatestInsiderVscodeSettings =
|
|
11031
|
+
export type LatestInsiderVscodeSettings = VscodeSettings_1_122_0_insider_2026052623;
|
|
11025
11032
|
|
|
11026
11033
|
export type VscodeVersion = keyof VscodeVersionMap;
|
|
11027
11034
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vscode/vscode-settings-history",
|
|
3
|
-
"version": "0.0.2-
|
|
3
|
+
"version": "0.0.2-11",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"packageManager": "pnpm@10.18.0+sha512.e804f889f1cecc40d572db084eec3e4881739f8dec69c0ff10d2d1beff9a4e309383ba27b5b750059d7f4c149535b6cd0d2cb1ed3aeb739239a4284a68f40cfa",
|
|
6
6
|
"description": "Tracks VS Code settings schema changes across versions",
|