@vscode/vscode-settings-history 0.0.2-71 → 0.0.2-72

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 CHANGED
@@ -472976,5 +472976,77 @@
472976
472976
  }
472977
472977
  }
472978
472978
  ]
472979
+ },
472980
+ {
472981
+ "version": "1.135.0-insider+2026082500",
472982
+ "base": {
472983
+ "version": "1.135.0-insider+2026082117"
472984
+ },
472985
+ "patch": [
472986
+ {
472987
+ "op": "replace",
472988
+ "path": "/chat.agentSessions.showExternal/defaultDefaultValue",
472989
+ "value": "recent"
472990
+ },
472991
+ {
472992
+ "op": "replace",
472993
+ "path": "/chat.agentSessions.showExternal/default",
472994
+ "value": "recent"
472995
+ },
472996
+ {
472997
+ "op": "replace",
472998
+ "path": "/chat.agentSessions.showExternal/enumDescriptions/1",
472999
+ "value": "Shows up to the 2 most recently updated external sessions from the last 7 days, hiding any that you have started 2 newer sessions after."
473000
+ },
473001
+ {
473002
+ "op": "add",
473003
+ "path": "/chat.agentSessions.showExternal/tags",
473004
+ "value": [
473005
+ "experimental",
473006
+ "onExP"
473007
+ ]
473008
+ },
473009
+ {
473010
+ "op": "add",
473011
+ "path": "/chat.agentSessions.showExternal/experiment",
473012
+ "value": {
473013
+ "mode": "auto"
473014
+ }
473015
+ },
473016
+ {
473017
+ "op": "replace",
473018
+ "path": "/notebook.editorOptionsCustomizations/allOf/0/properties/editor.selectionHighlightMaxLength/description",
473019
+ "value": "Controls how many characters can be in the selection before similar matches are not highlighted. Set to zero for unlimited."
473020
+ },
473021
+ {
473022
+ "op": "replace",
473023
+ "path": "/editor.selectionHighlightMaxLength/description",
473024
+ "value": "Controls how many characters can be in the selection before similar matches are not highlighted. Set to zero for unlimited."
473025
+ },
473026
+ {
473027
+ "op": "add",
473028
+ "path": "/chat.copilot.subagentModelGuidance.enabled",
473029
+ "value": {
473030
+ "type": "boolean",
473031
+ "markdownDescription": "When enabled, Copilot SDK agent sessions instruct the model to keep subagents on their default model, setting the task tool's `model` parameter only when you explicitly name the model a subagent should run on. Applied when a session launches or resumes.",
473032
+ "default": false,
473033
+ "experiment": {
473034
+ "mode": "startup"
473035
+ },
473036
+ "tags": [
473037
+ "experimental",
473038
+ "advanced",
473039
+ "onExP"
473040
+ ],
473041
+ "section": {
473042
+ "id": "chatSidebar",
473043
+ "title": "Chat"
473044
+ },
473045
+ "defaultDefaultValue": false,
473046
+ "scope": 4,
473047
+ "restricted": false
473048
+ }
473049
+ }
473050
+ ]
472979
473051
  }
472980
473052
  ]
@@ -13342,6 +13342,14 @@ export type VscodeSettings_1_135_0_insider_2026082117 = Patch<VscodeSettings_1_1
13342
13342
  readonly 'github.copilot.chat.languageContext.typescript7.enabled'?: boolean;
13343
13343
  }, 'chat.agentSessions.showSessionMetadataInInput' | 'github.copilot.chat.semanticSearchTool.mode'>;
13344
13344
 
13345
+ // ── 1.135.0-insider+2026082500: +1, ~3 ──
13346
+ export type VscodeSettings_1_135_0_insider_2026082500 = Patch<VscodeSettings_1_135_0_insider_2026082117, {
13347
+ readonly 'chat.agentSessions.showExternal'?: 'none' | 'recent' | 'last24Hours' | 'last7Days' | 'last30Days';
13348
+ readonly 'chat.copilot.subagentModelGuidance.enabled'?: boolean;
13349
+ readonly 'editor.selectionHighlightMaxLength'?: number;
13350
+ readonly 'notebook.editorOptionsCustomizations'?: unknown;
13351
+ }, never>;
13352
+
13345
13353
  // ── Version map ──
13346
13354
  // Stable entries map directly to their settings type.
13347
13355
  // Insider entries map to a nested record keyed by 10-digit build release date
@@ -13496,12 +13504,13 @@ interface VscodeVersionMap {
13496
13504
  '2026081921': VscodeSettings_1_135_0_insider_2026081921;
13497
13505
  '2026082005': VscodeSettings_1_135_0_insider_2026082005;
13498
13506
  '2026082117': VscodeSettings_1_135_0_insider_2026082117;
13507
+ '2026082500': VscodeSettings_1_135_0_insider_2026082500;
13499
13508
  }>;
13500
13509
  }
13501
13510
 
13502
13511
  export type LatestVscodeSettings = VscodeSettings_1_134_0;
13503
13512
 
13504
- export type LatestInsiderVscodeSettings = VscodeSettings_1_135_0_insider_2026082117;
13513
+ export type LatestInsiderVscodeSettings = VscodeSettings_1_135_0_insider_2026082500;
13505
13514
 
13506
13515
  export type VscodeVersion = keyof VscodeVersionMap;
13507
13516
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vscode/vscode-settings-history",
3
- "version": "0.0.2-71",
3
+ "version": "0.0.2-72",
4
4
  "type": "module",
5
5
  "description": "Tracks VS Code settings schema changes across versions",
6
6
  "license": "MIT",
@@ -37,5 +37,5 @@
37
37
  "tsx": "4.22.4",
38
38
  "vitest": "^4.1.4"
39
39
  },
40
- "gitHead": "8bfa535027fcb90244ae3516d9440507ccc950f8"
40
+ "gitHead": "b5fd5cda44376c118dd383f8c03ac4f6a06c648e"
41
41
  }