Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Ardecky committed Feb 17, 2024
2 parents fa5a729 + ba25dfe commit 57811b7
Show file tree
Hide file tree
Showing 5 changed files with 63 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="xunit" Version="2.6.6" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="xunit" Version="2.7.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.7">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Moq" Version="4.18.4" />
<PackageReference Include="xunit" Version="2.6.6" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
<PackageReference Include="xunit" Version="2.7.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.7">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
64 changes: 55 additions & 9 deletions telemetry/definitions/commonDefinitions.json
Original file line number Diff line number Diff line change
Expand Up @@ -944,7 +944,8 @@
"description": "Allowed Java versions to transform from",
"allowedValues": [
"JDK_1_8",
"JDK_11"
"JDK_11",
"Other"
]
},
{
Expand All @@ -968,7 +969,7 @@
{
"name": "codeTransformRequestId",
"type": "string",
"description": "A string id for the API request"
"description": "The API request ID"
},
{
"name": "codeTransformTotalByteSize",
Expand Down Expand Up @@ -1077,6 +1078,7 @@
"NoJavaProject",
"MixedLanguages",
"UnsupportedJavaVersion",
"ProjectJDKDiffersFromMavenJDK",
"NonMavenProject",
"EmptyProject",
"NonSsoLogin",
Expand All @@ -1088,8 +1090,9 @@
"type": "string",
"description": "Type of maven command",
"allowedValues": [
"mvn",
"mvnw.cmd",
"mvnw",
"mvn",
"IDEBundledMaven"
]
}
Expand Down Expand Up @@ -2783,12 +2786,6 @@
],
"passive": true
},
{
"name": "amazonq_startChat",
"description": "Number of times the user have triggered /dev and started the chat",
"unit": "Count",
"metadata": [{ "type": "amazonqConversationId" }]
},
{
"name": "amazonq_endChat",
"description": "Captures end of the conversation with amazonq /dev",
Expand Down Expand Up @@ -3452,6 +3449,21 @@
}
]
},
{
"name": "codewhisperer_enabled",
"description": "Whether or not CodeWhisperer is enabled",
"passive": true,
"metadata": [
{
"type": "source",
"required": true
},
{
"type": "enabled",
"required": true
}
]
},
{
"name": "codecatalyst_createDevEnvironment",
"description": "Create an Amazon CodeCatalyst Dev Environment",
Expand Down Expand Up @@ -3655,6 +3667,32 @@
}
]
},
{
"name": "codeTransform_projectDetails",
"description": "Transform initiates project validation before user interaction and we want to gather project details then.",
"metadata" : [
{
"type": "codeTransformSessionId",
"required": true
},
{
"type": "result",
"required": true
},
{
"type": "reason",
"required": false
},
{
"type": "codeTransformPreValidationError",
"required": false
},
{
"type": "codeTransformLocalJavaVersion",
"required": false
}
]
},
{
"name": "codeTransform_jobStatusChanged",
"passive": true,
Expand Down Expand Up @@ -3797,6 +3835,10 @@
{
"type": "codeTransformJobId",
"required": false
},
{
"type": "codeTransformStatus",
"required": true
}
]
},
Expand All @@ -3811,6 +3853,10 @@
{
"type": "codeTransformJobId",
"required": false
},
{
"type": "codeTransformStatus",
"required": true
}
]
},
Expand Down
4 changes: 2 additions & 2 deletions telemetry/service/service-model.json
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
"AWSProductVersion":{"shape":"AWSProductVersion"},
"OS":{"shape":"Value"},
"OSVersion":{"shape":"Value"},
"CommputeEnv": {"shape":"ComputeEnv"},
"ComputeEnv": {"shape":"ComputeEnv"},
"ParentProduct":{"shape":"Value"},
"ParentProductVersion":{"shape":"Value"},
"Metadata":{"shape":"Metadata"},
Expand All @@ -209,7 +209,7 @@
"OS":{"shape":"Value"},
"OSArchitecture":{"shape":"Value"},
"OSVersion":{"shape":"Value"},
"CommputeEnv": {"shape":"ComputeEnv"},
"ComputeEnv": {"shape":"ComputeEnv"},
"ParentProduct":{"shape":"Value"},
"ParentProductVersion":{"shape":"Value"},
"MetricData":{"shape":"MetricData"}
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.185
1.0.189

0 comments on commit 57811b7

Please sign in to comment.