@vscode/chat-lib 0.54.2026062302 → 0.55.0
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/src/_internal/extension/conversation/common/languageModelAccess.d.ts +8 -1
- package/dist/src/_internal/extension/conversation/common/languageModelAccess.d.ts.map +1 -1
- package/dist/src/_internal/extension/conversation/common/languageModelAccess.js +14 -2
- package/dist/src/_internal/extension/conversation/common/languageModelAccess.js.map +1 -1
- package/dist/src/_internal/extension/inlineEdits/node/nextEditCache.d.ts +52 -0
- package/dist/src/_internal/extension/inlineEdits/node/nextEditCache.d.ts.map +1 -1
- package/dist/src/_internal/extension/inlineEdits/node/nextEditCache.js +4 -1
- package/dist/src/_internal/extension/inlineEdits/node/nextEditCache.js.map +1 -1
- package/dist/src/_internal/extension/inlineEdits/node/nextEditProvider.d.ts +11 -0
- package/dist/src/_internal/extension/inlineEdits/node/nextEditProvider.d.ts.map +1 -1
- package/dist/src/_internal/extension/inlineEdits/node/nextEditProvider.js +83 -5
- package/dist/src/_internal/extension/inlineEdits/node/nextEditProvider.js.map +1 -1
- package/dist/src/_internal/extension/inlineEdits/node/nextEditProviderTelemetry.d.ts +3 -0
- package/dist/src/_internal/extension/inlineEdits/node/nextEditProviderTelemetry.d.ts.map +1 -1
- package/dist/src/_internal/extension/inlineEdits/node/nextEditProviderTelemetry.js +8 -1
- package/dist/src/_internal/extension/inlineEdits/node/nextEditProviderTelemetry.js.map +1 -1
- package/dist/src/_internal/extension/xtab/node/xtabPatchResponseHandler.d.ts +31 -3
- package/dist/src/_internal/extension/xtab/node/xtabPatchResponseHandler.d.ts.map +1 -1
- package/dist/src/_internal/extension/xtab/node/xtabPatchResponseHandler.js +94 -16
- package/dist/src/_internal/extension/xtab/node/xtabPatchResponseHandler.js.map +1 -1
- package/dist/src/_internal/extension/xtab/node/xtabProvider.d.ts.map +1 -1
- package/dist/src/_internal/extension/xtab/node/xtabProvider.js +9 -2
- package/dist/src/_internal/extension/xtab/node/xtabProvider.js.map +1 -1
- package/dist/src/_internal/platform/configuration/common/configurationService.d.ts +5 -0
- package/dist/src/_internal/platform/configuration/common/configurationService.d.ts.map +1 -1
- package/dist/src/_internal/platform/configuration/common/configurationService.js +7 -2
- package/dist/src/_internal/platform/configuration/common/configurationService.js.map +1 -1
- package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.d.ts +1 -0
- package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.d.ts.map +1 -1
- package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.js +14 -3
- package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.js.map +1 -1
- package/dist/src/_internal/platform/inlineEdits/common/inlineEditLogContext.d.ts +0 -5
- package/dist/src/_internal/platform/inlineEdits/common/inlineEditLogContext.d.ts.map +1 -1
- package/dist/src/_internal/platform/inlineEdits/common/inlineEditLogContext.js +1 -14
- package/dist/src/_internal/platform/inlineEdits/common/inlineEditLogContext.js.map +1 -1
- package/dist/src/_internal/platform/inlineEdits/common/statelessNextEditProvider.d.ts +8 -0
- package/dist/src/_internal/platform/inlineEdits/common/statelessNextEditProvider.d.ts.map +1 -1
- package/dist/src/_internal/platform/inlineEdits/common/statelessNextEditProvider.js.map +1 -1
- package/dist/src/_internal/platform/otel/common/otelConfig.d.ts +33 -6
- package/dist/src/_internal/platform/otel/common/otelConfig.d.ts.map +1 -1
- package/dist/src/_internal/platform/otel/common/otelConfig.js +78 -28
- package/dist/src/_internal/platform/otel/common/otelConfig.js.map +1 -1
- package/dist/src/_internal/util/vs/base/common/async.d.ts.map +1 -1
- package/dist/src/_internal/util/vs/base/common/async.js +5 -3
- package/dist/src/_internal/util/vs/base/common/async.js.map +1 -1
- package/dist/src/package.json +112 -28
- package/package.json +1 -1
package/dist/src/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "copilot-chat",
|
|
3
|
-
"displayName": "GitHub Copilot
|
|
3
|
+
"displayName": "GitHub Copilot",
|
|
4
4
|
"description": "AI chat features powered by Copilot",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.55.0",
|
|
6
6
|
"build": "1",
|
|
7
7
|
"completionsCoreVersion": "1.378.1799",
|
|
8
8
|
"internalLargeStorageAriaKey": "ec712b3202c5462fb6877acae7f1f9d7-c19ad55e-3e3c-4f99-984b-827f6d95bd9e-6917",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"icon": "assets/copilot.png",
|
|
23
23
|
"pricing": "Trial",
|
|
24
24
|
"engines": {
|
|
25
|
-
"vscode": "^1.
|
|
25
|
+
"vscode": "^1.127.0",
|
|
26
26
|
"npm": ">=9.0.0",
|
|
27
27
|
"node": ">=22.14.0"
|
|
28
28
|
},
|
|
@@ -1835,7 +1835,10 @@
|
|
|
1835
1835
|
},
|
|
1836
1836
|
{
|
|
1837
1837
|
"vendor": "ollama",
|
|
1838
|
-
"displayName": "Ollama",
|
|
1838
|
+
"displayName": "Ollama (Deprecated)",
|
|
1839
|
+
"deprecation": {
|
|
1840
|
+
"link": "vscode:extension/Ollama.ollama"
|
|
1841
|
+
},
|
|
1839
1842
|
"configuration": {
|
|
1840
1843
|
"type": "object",
|
|
1841
1844
|
"properties": {
|
|
@@ -4013,7 +4016,7 @@
|
|
|
4013
4016
|
},
|
|
4014
4017
|
"github.copilot.chat.gemini35FlashReducedToolUsePrompt.enabled": {
|
|
4015
4018
|
"type": "boolean",
|
|
4016
|
-
"default":
|
|
4019
|
+
"default": true,
|
|
4017
4020
|
"tags": [
|
|
4018
4021
|
"experimental",
|
|
4019
4022
|
"onExp"
|
|
@@ -4104,7 +4107,7 @@
|
|
|
4104
4107
|
},
|
|
4105
4108
|
"github.copilot.chat.gemini3GetChangedFilesTool.enabled": {
|
|
4106
4109
|
"type": "boolean",
|
|
4107
|
-
"default":
|
|
4110
|
+
"default": false,
|
|
4108
4111
|
"markdownDescription": "%github.copilot.config.gemini3GetChangedFilesTool.enabled%",
|
|
4109
4112
|
"tags": [
|
|
4110
4113
|
"experimental",
|
|
@@ -5276,7 +5279,10 @@
|
|
|
5276
5279
|
"type": "boolean",
|
|
5277
5280
|
"default": false,
|
|
5278
5281
|
"scope": "application",
|
|
5279
|
-
"
|
|
5282
|
+
"policyReference": {
|
|
5283
|
+
"name": "CopilotOtelEnabled"
|
|
5284
|
+
},
|
|
5285
|
+
"markdownDescription": "Enable OpenTelemetry trace/metric/log emission for Copilot Chat operations. Precedence: enterprise policy > env var `COPILOT_OTEL_ENABLED` > user setting. Requires window reload.",
|
|
5280
5286
|
"tags": [
|
|
5281
5287
|
"advanced"
|
|
5282
5288
|
]
|
|
@@ -5291,7 +5297,28 @@
|
|
|
5291
5297
|
],
|
|
5292
5298
|
"default": "otlp-http",
|
|
5293
5299
|
"scope": "application",
|
|
5294
|
-
"
|
|
5300
|
+
"policyReference": {
|
|
5301
|
+
"name": "CopilotOtelProtocol"
|
|
5302
|
+
},
|
|
5303
|
+
"markdownDescription": "OTel exporter type for Copilot Chat telemetry. Configurable in user settings or managed by enterprise policy (policy takes precedence). Requires window reload.",
|
|
5304
|
+
"tags": [
|
|
5305
|
+
"advanced"
|
|
5306
|
+
]
|
|
5307
|
+
},
|
|
5308
|
+
"github.copilot.chat.otel.protocol": {
|
|
5309
|
+
"type": "string",
|
|
5310
|
+
"enum": [
|
|
5311
|
+
"",
|
|
5312
|
+
"http/json",
|
|
5313
|
+
"http/protobuf",
|
|
5314
|
+
"grpc"
|
|
5315
|
+
],
|
|
5316
|
+
"default": "",
|
|
5317
|
+
"scope": "application",
|
|
5318
|
+
"policyReference": {
|
|
5319
|
+
"name": "CopilotOtelOtlpProtocol"
|
|
5320
|
+
},
|
|
5321
|
+
"markdownDescription": "OTLP wire protocol for Copilot Chat OTel data, mirroring `OTEL_EXPORTER_OTLP_PROTOCOL`. `http/protobuf` selects the protobuf-over-HTTP exporter; the default (empty) uses `http/json`. Precedence: enterprise policy > env var > user setting. Requires window reload.",
|
|
5295
5322
|
"tags": [
|
|
5296
5323
|
"advanced"
|
|
5297
5324
|
]
|
|
@@ -5300,7 +5327,10 @@
|
|
|
5300
5327
|
"type": "string",
|
|
5301
5328
|
"default": "http://localhost:4318",
|
|
5302
5329
|
"scope": "application",
|
|
5303
|
-
"
|
|
5330
|
+
"policyReference": {
|
|
5331
|
+
"name": "CopilotOtelEndpoint"
|
|
5332
|
+
},
|
|
5333
|
+
"markdownDescription": "OTLP collector endpoint URL for Copilot Chat OTel data. Precedence: enterprise policy > env var `OTEL_EXPORTER_OTLP_ENDPOINT` > user setting. Requires window reload.",
|
|
5304
5334
|
"tags": [
|
|
5305
5335
|
"advanced"
|
|
5306
5336
|
]
|
|
@@ -5309,7 +5339,52 @@
|
|
|
5309
5339
|
"type": "boolean",
|
|
5310
5340
|
"default": false,
|
|
5311
5341
|
"scope": "application",
|
|
5312
|
-
"
|
|
5342
|
+
"policyReference": {
|
|
5343
|
+
"name": "CopilotOtelCaptureContent"
|
|
5344
|
+
},
|
|
5345
|
+
"markdownDescription": "Capture input/output messages, system instructions, and tool definitions in OTel telemetry. **Contains potentially sensitive data.** Precedence: enterprise policy > env var `COPILOT_OTEL_CAPTURE_CONTENT` > user setting. Requires window reload.",
|
|
5346
|
+
"tags": [
|
|
5347
|
+
"advanced"
|
|
5348
|
+
]
|
|
5349
|
+
},
|
|
5350
|
+
"github.copilot.chat.otel.serviceName": {
|
|
5351
|
+
"type": "string",
|
|
5352
|
+
"default": "",
|
|
5353
|
+
"scope": "application",
|
|
5354
|
+
"policyReference": {
|
|
5355
|
+
"name": "CopilotOtelServiceName"
|
|
5356
|
+
},
|
|
5357
|
+
"markdownDescription": "OTel `service.name` resource attribute for Copilot Chat OTel data. Configurable in user settings only. Env var `OTEL_SERVICE_NAME` takes precedence over the setting; enterprise policy takes precedence over both. Requires window reload.",
|
|
5358
|
+
"tags": [
|
|
5359
|
+
"advanced"
|
|
5360
|
+
]
|
|
5361
|
+
},
|
|
5362
|
+
"github.copilot.chat.otel.resourceAttributes": {
|
|
5363
|
+
"type": "object",
|
|
5364
|
+
"additionalProperties": {
|
|
5365
|
+
"type": "string"
|
|
5366
|
+
},
|
|
5367
|
+
"default": {},
|
|
5368
|
+
"scope": "application",
|
|
5369
|
+
"policyReference": {
|
|
5370
|
+
"name": "CopilotOtelResourceAttributes"
|
|
5371
|
+
},
|
|
5372
|
+
"markdownDescription": "Additional OTel resource attributes for Copilot Chat OTel data, as a `{ \"key\": \"value\" }` map. Configurable in user settings only. Merged per-key with `OTEL_RESOURCE_ATTRIBUTES` env (env wins over the setting); enterprise policy wins over both. Requires window reload.",
|
|
5373
|
+
"tags": [
|
|
5374
|
+
"advanced"
|
|
5375
|
+
]
|
|
5376
|
+
},
|
|
5377
|
+
"github.copilot.chat.otel.headers": {
|
|
5378
|
+
"type": "object",
|
|
5379
|
+
"additionalProperties": {
|
|
5380
|
+
"type": "string"
|
|
5381
|
+
},
|
|
5382
|
+
"default": {},
|
|
5383
|
+
"scope": "application",
|
|
5384
|
+
"policyReference": {
|
|
5385
|
+
"name": "CopilotOtelHeaders"
|
|
5386
|
+
},
|
|
5387
|
+
"markdownDescription": "Extra OTLP exporter headers (e.g. auth tokens) for Copilot Chat OTel data, as a `{ \"key\": \"value\" }` map. Applied directly to the OTLP exporter, not via environment variables. Configurable in user settings only. Merged per-key with `OTEL_EXPORTER_OTLP_HEADERS` env (env wins over the setting); enterprise policy wins over both. **Contains potentially sensitive credentials.** Requires window reload.",
|
|
5313
5388
|
"tags": [
|
|
5314
5389
|
"advanced"
|
|
5315
5390
|
]
|
|
@@ -5328,7 +5403,10 @@
|
|
|
5328
5403
|
"type": "string",
|
|
5329
5404
|
"default": "",
|
|
5330
5405
|
"scope": "application",
|
|
5331
|
-
"
|
|
5406
|
+
"policyReference": {
|
|
5407
|
+
"name": "CopilotOtelOutfile"
|
|
5408
|
+
},
|
|
5409
|
+
"markdownDescription": "File path for file-based OTel exporter output (JSON-lines). When set, overrides exporter type to `file`. Configurable in user settings or managed by enterprise policy (policy takes precedence). Requires window reload.",
|
|
5332
5410
|
"tags": [
|
|
5333
5411
|
"advanced"
|
|
5334
5412
|
]
|
|
@@ -5483,69 +5561,69 @@
|
|
|
5483
5561
|
"agents/changes/actions/primary": [
|
|
5484
5562
|
{
|
|
5485
5563
|
"command": "github.copilot.sessions.initializeRepository",
|
|
5486
|
-
"when": "
|
|
5564
|
+
"when": "sessionType == copilotcli && isSessionsWindow && sessions.isolationMode == workspace && !sessions.hasGitRepository && !sessions.isAgentHostSession",
|
|
5487
5565
|
"group": "0_init@1"
|
|
5488
5566
|
},
|
|
5489
5567
|
{
|
|
5490
5568
|
"command": "github.copilot.chat.mergeCopilotCLIAgentSessionChanges.merge",
|
|
5491
|
-
"when": "
|
|
5569
|
+
"when": "sessionType == copilotcli && isSessionsWindow && sessions.isolationMode == worktree && sessions.hasGitRepository && !sessions.isMergeBaseBranchProtected && !sessions.hasPullRequest && (sessions.hasUncommittedChanges || sessions.hasOutgoingChanges) && !sessions.isAgentHostSession",
|
|
5492
5570
|
"group": "1_merge@1"
|
|
5493
5571
|
},
|
|
5494
5572
|
{
|
|
5495
5573
|
"command": "github.copilot.chat.mergeCopilotCLIAgentSessionChanges.mergeAndSync",
|
|
5496
|
-
"when": "
|
|
5574
|
+
"when": "sessionType == copilotcli && isSessionsWindow && sessions.isolationMode == worktree && sessions.hasGitRepository && !sessions.isMergeBaseBranchProtected && !sessions.hasPullRequest && (sessions.hasUncommittedChanges || sessions.hasOutgoingChanges) && !sessions.isAgentHostSession",
|
|
5497
5575
|
"group": "1_merge@2"
|
|
5498
5576
|
},
|
|
5499
5577
|
{
|
|
5500
5578
|
"command": "github.copilot.chat.createPullRequestCopilotCLIAgentSession.createPR",
|
|
5501
|
-
"when": "
|
|
5579
|
+
"when": "sessionType == copilotcli && isSessionsWindow && sessions.isolationMode == worktree && sessions.hasGitRepository && sessions.hasGitHubRemote && !sessions.hasPullRequest && sessions.hasBranchChanges && !sessions.isAgentHostSession",
|
|
5502
5580
|
"group": "2_pull_request@1"
|
|
5503
5581
|
},
|
|
5504
5582
|
{
|
|
5505
5583
|
"command": "github.copilot.chat.createDraftPullRequestCopilotCLIAgentSession.createDraftPR",
|
|
5506
|
-
"when": "
|
|
5584
|
+
"when": "sessionType == copilotcli && isSessionsWindow && sessions.isolationMode == worktree && sessions.hasGitRepository && sessions.hasGitHubRemote && !sessions.hasPullRequest && sessions.hasBranchChanges && !sessions.isAgentHostSession",
|
|
5507
5585
|
"group": "2_pull_request@2"
|
|
5508
5586
|
},
|
|
5509
5587
|
{
|
|
5510
5588
|
"command": "github.copilot.sessions.commit",
|
|
5511
|
-
"when": "
|
|
5589
|
+
"when": "sessionType == copilotcli && isSessionsWindow && sessions.hasGitRepository && sessions.hasUncommittedChanges && !sessions.isAgentHostSession",
|
|
5512
5590
|
"group": "3_commit@1"
|
|
5513
5591
|
},
|
|
5514
5592
|
{
|
|
5515
5593
|
"command": "github.copilot.sessions.commitAndSync",
|
|
5516
|
-
"when": "
|
|
5594
|
+
"when": "sessionType == copilotcli && isSessionsWindow && sessions.hasGitRepository && sessions.hasUncommittedChanges && !sessions.isAgentHostSession",
|
|
5517
5595
|
"group": "3_commit@2"
|
|
5518
5596
|
},
|
|
5519
5597
|
{
|
|
5520
5598
|
"command": "github.copilot.sessions.sync",
|
|
5521
|
-
"when": "
|
|
5599
|
+
"when": "sessionType == copilotcli && isSessionsWindow && sessions.hasGitRepository && sessions.hasUpstream && !sessions.hasUncommittedChanges && (sessions.hasIncomingChanges || sessions.hasOutgoingChanges) && !sessions.isAgentHostSession",
|
|
5522
5600
|
"group": "4_sync@1"
|
|
5523
5601
|
},
|
|
5524
5602
|
{
|
|
5525
5603
|
"command": "github.copilot.claude.sessions.initializeRepository",
|
|
5526
|
-
"when": "
|
|
5604
|
+
"when": "sessionType == claude-code && isSessionsWindow && !sessions.hasGitRepository",
|
|
5527
5605
|
"group": "init@1"
|
|
5528
5606
|
},
|
|
5529
5607
|
{
|
|
5530
5608
|
"command": "github.copilot.claude.sessions.commit",
|
|
5531
|
-
"when": "
|
|
5609
|
+
"when": "sessionType == claude-code && isSessionsWindow && sessions.hasGitRepository && sessions.hasUncommittedChanges",
|
|
5532
5610
|
"group": "commit@1"
|
|
5533
5611
|
},
|
|
5534
5612
|
{
|
|
5535
5613
|
"command": "github.copilot.claude.sessions.commitAndSync",
|
|
5536
|
-
"when": "
|
|
5614
|
+
"when": "sessionType == claude-code && isSessionsWindow && sessions.hasGitRepository && sessions.hasUncommittedChanges && sessions.hasUpstream",
|
|
5537
5615
|
"group": "commit@2"
|
|
5538
5616
|
},
|
|
5539
5617
|
{
|
|
5540
5618
|
"command": "github.copilot.claude.sessions.sync",
|
|
5541
|
-
"when": "
|
|
5619
|
+
"when": "sessionType == claude-code && isSessionsWindow && sessions.hasGitRepository && !sessions.hasUncommittedChanges && sessions.hasUpstream",
|
|
5542
5620
|
"group": "sync@1"
|
|
5543
5621
|
}
|
|
5544
5622
|
],
|
|
5545
5623
|
"agents/change/inline": [
|
|
5546
5624
|
{
|
|
5547
5625
|
"command": "github.copilot.sessions.discardChanges",
|
|
5548
|
-
"when": "
|
|
5626
|
+
"when": "sessionType == copilotcli && isSessionsWindow && sessions.hasGitRepository && !sessionIsArchived && !sessions.isAgentHostSession",
|
|
5549
5627
|
"group": "navigation@2"
|
|
5550
5628
|
}
|
|
5551
5629
|
],
|
|
@@ -6295,12 +6373,12 @@
|
|
|
6295
6373
|
"chatSessions/item/context": [
|
|
6296
6374
|
{
|
|
6297
6375
|
"command": "github.copilot.claude.sessions.rename",
|
|
6298
|
-
"when": "
|
|
6376
|
+
"when": "sessionType == claude-code && sessionProviderId == default-copilot",
|
|
6299
6377
|
"group": "1_edit@4"
|
|
6300
6378
|
},
|
|
6301
6379
|
{
|
|
6302
6380
|
"command": "github.copilot.cli.sessions.rename",
|
|
6303
|
-
"when": "
|
|
6381
|
+
"when": "sessionType == copilotcli && sessionProviderId == default-copilot",
|
|
6304
6382
|
"group": "1_edit@4"
|
|
6305
6383
|
}
|
|
6306
6384
|
],
|
|
@@ -6314,7 +6392,7 @@
|
|
|
6314
6392
|
"chat/input/editing/sessionTitleToolbar": [
|
|
6315
6393
|
{
|
|
6316
6394
|
"command": "github.copilot.sessions.refreshChanges",
|
|
6317
|
-
"when": "
|
|
6395
|
+
"when": "sessionType == copilotcli && isSessionsWindow && !sessions.isAgentHostSession",
|
|
6318
6396
|
"group": "9_refresh@1"
|
|
6319
6397
|
}
|
|
6320
6398
|
],
|
|
@@ -6684,6 +6762,7 @@
|
|
|
6684
6762
|
"canDelegate": true,
|
|
6685
6763
|
"requiresCustomModels": true,
|
|
6686
6764
|
"supportsAutoModel": false,
|
|
6765
|
+
"requiresCopilotSignIn": true,
|
|
6687
6766
|
"capabilities": {
|
|
6688
6767
|
"supportsFileAttachments": true,
|
|
6689
6768
|
"supportsImageAttachments": true
|
|
@@ -6744,6 +6823,7 @@
|
|
|
6744
6823
|
"description": "%github.copilot.session.providerDescription.background%",
|
|
6745
6824
|
"when": "config.github.copilot.chat.backgroundAgent.enabled",
|
|
6746
6825
|
"supportsAutoModel": true,
|
|
6826
|
+
"requiresCopilotSignIn": true,
|
|
6747
6827
|
"capabilities": {
|
|
6748
6828
|
"supportsFileAttachments": true,
|
|
6749
6829
|
"supportsProblemAttachments": true,
|
|
@@ -6802,6 +6882,7 @@
|
|
|
6802
6882
|
"description": "%github.copilot.session.providerDescription.cloud%",
|
|
6803
6883
|
"when": "config.github.copilot.chat.cloudAgent.enabled",
|
|
6804
6884
|
"supportsAutoModel": false,
|
|
6885
|
+
"requiresCopilotSignIn": true,
|
|
6805
6886
|
"capabilities": {
|
|
6806
6887
|
"supportsFileAttachments": true
|
|
6807
6888
|
},
|
|
@@ -7089,7 +7170,7 @@
|
|
|
7089
7170
|
"@anthropic-ai/claude-agent-sdk": "0.2.112",
|
|
7090
7171
|
"@anthropic-ai/sdk": "^0.82.0",
|
|
7091
7172
|
"@github/blackbird-external-ingest-utils": "^0.3.0",
|
|
7092
|
-
"@github/copilot": "^1.0.
|
|
7173
|
+
"@github/copilot": "^1.0.65",
|
|
7093
7174
|
"@google/genai": "^1.22.0",
|
|
7094
7175
|
"@humanwhocodes/gitignore-to-minimatch": "1.0.2",
|
|
7095
7176
|
"@microsoft/tiktokenizer": "^1.0.10",
|
|
@@ -7098,10 +7179,13 @@
|
|
|
7098
7179
|
"@opentelemetry/api-logs": "^0.212.0",
|
|
7099
7180
|
"@opentelemetry/exporter-logs-otlp-grpc": "^0.214.0",
|
|
7100
7181
|
"@opentelemetry/exporter-logs-otlp-http": "^0.214.0",
|
|
7182
|
+
"@opentelemetry/exporter-logs-otlp-proto": "^0.214.0",
|
|
7101
7183
|
"@opentelemetry/exporter-metrics-otlp-grpc": "^0.214.0",
|
|
7102
7184
|
"@opentelemetry/exporter-metrics-otlp-http": "^0.214.0",
|
|
7185
|
+
"@opentelemetry/exporter-metrics-otlp-proto": "^0.214.0",
|
|
7103
7186
|
"@opentelemetry/exporter-trace-otlp-grpc": "^0.214.0",
|
|
7104
7187
|
"@opentelemetry/exporter-trace-otlp-http": "^0.214.0",
|
|
7188
|
+
"@opentelemetry/exporter-trace-otlp-proto": "^0.214.0",
|
|
7105
7189
|
"@opentelemetry/resources": "^2.5.1",
|
|
7106
7190
|
"@opentelemetry/sdk-logs": "^0.212.0",
|
|
7107
7191
|
"@opentelemetry/sdk-metrics": "^2.5.1",
|