Skip to content

Commit dfa65ba

Browse files
authored
Merge branch 'aws:master' into master
2 parents 2bd7e33 + aa2209b commit dfa65ba

File tree

379 files changed

+43932
-24723
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

379 files changed

+43932
-24723
lines changed

.changes/1.100.0.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"date": "2023-11-26",
3+
"version": "1.100.0",
4+
"entries": [
5+
{
6+
"type": "Bug Fix",
7+
"description": "Fix a not connected error when starting connection to CodeCatalyst Dev Environment from link"
8+
},
9+
{
10+
"type": "Feature",
11+
"description": "CodeWhisperer supports Json, yaml and Tf"
12+
},
13+
{
14+
"type": "Feature",
15+
"description": "CodeWhisperer security scans support typescript, csharp, json, yaml, tf and hcl files."
16+
},
17+
{
18+
"type": "Feature",
19+
"description": "Auth: Redesign Add Connection page to show all options at once"
20+
},
21+
{
22+
"type": "Feature",
23+
"description": "CodeWhisperer: Uses Generative AI and automated reasoning to rewrite lines of code flagged for security vulnerabilities during a security scan."
24+
}
25+
]
26+
}

.changes/1.99.0.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"date": "2023-11-17",
3+
"version": "1.99.0",
4+
"entries": [
5+
{
6+
"type": "Feature",
7+
"description": "CodeWhisperer: status bar lists options when clicked and shows suggestion state"
8+
},
9+
{
10+
"type": "Feature",
11+
"description": "Don't show \"invalid settings.json\" message if settings.json is valid but unwritable"
12+
},
13+
{
14+
"type": "Feature",
15+
"description": "CodeWhisperer: faster code completion by enabling HTTP connection reuse for completions API"
16+
},
17+
{
18+
"type": "Feature",
19+
"description": "Connect to Amazon CodeCatalyst Dev Environments with IAM Identity Center"
20+
}
21+
]
22+
}

.changes/2.0.0.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"date": "2023-11-28",
3+
"version": "2.0.0",
4+
"entries": [
5+
{
6+
"type": "Bug Fix",
7+
"description": "CodeWhisperer status bar showing even when not in use"
8+
},
9+
{
10+
"type": "Feature",
11+
"description": "Auth: Delete SSO connections from quickpick with button on hover"
12+
},
13+
{
14+
"type": "Feature",
15+
"description": "Support for Amazon Q, your generative AI–powered assistant designed for work that can be tailored to your business, code, data, and operations."
16+
}
17+
]
18+
}

.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ node_modules/**
33
src/shared/telemetry/clienttelemetry.d.ts
44
src/codewhisperer/client/codewhispererclient.d.ts
55
src/codewhisperer/client/codewhispereruserclient.d.ts
6+
src/amazonqFeatureDev/client/featuredevproxyclient.d.ts
67
**/*.gen.ts
78
src/testFixtures/**
89
dist/**
910
types/*.d.ts
11+
src.gen/**

.github/CODEOWNERS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
* @aws/aws-ides-team
22
src/codewhisperer/ @aws/codewhisperer-team
3+
src/amazonqFeatureDev/ @aws/earlybird
4+
src/codewhispererChat/ @aws/aws-mynah
5+
src/amazonq/ @aws/aws-mynah

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
push:
88
branches: [master]
99
pull_request:
10-
branches: [master, feature/*]
10+
branches: [master, feature/*, mynah-dev]
1111

1212
jobs:
1313
macos:

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ resources/debugger/__pycache__
1717

1818
# Auto generated definitions
1919
src/**/*.gen.ts
20+
src.gen/*
2021
# Telemetry definition for testing adding telemetry
2122
src/shared/telemetry/vscodeTelemetry.json
2223

@@ -27,6 +28,7 @@ src/shared/telemetry/vscodeTelemetry.json
2728
src/shared/telemetry/clienttelemetry.d.ts
2829
src/codewhisperer/client/codewhispererclient.d.ts
2930
src/codewhisperer/client/codewhispereruserclient.d.ts
31+
src/amazonqFeatureDev/client/featuredevproxyclient.d.ts
3032

3133
# Generated by tests
3234
src/testFixtures/**/bin
@@ -37,5 +39,9 @@ resources/icons/cloud9/generated/**
3739
resources/fonts/aws-toolkit-icons.woff
3840
resources/css/icons.css
3941

42+
# local configuration
43+
.local.env
44+
*.config.local.json
45+
4046
# Created by `npm run runInBrowser` when testing extension in the browser
4147
.vscode-test-web

.npmrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
# ensure that the project uses the public npm registry see: https://docs.npmjs.com/cli/v8/configuring-npm/npmrc
2+
registry = "https://registry.npmjs.org/"
13
engine-strict=true

.prettierignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,8 @@ CHANGELOG.md
44
src/shared/telemetry/service-2.json
55
.changes
66
src/testFixtures/**
7+
*.d.ts
8+
*.gen.ts
9+
dist/**
10+
types/*.d.ts
11+
src.gen/**

.vscode/launch.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"SSMDOCUMENT_LANGUAGESERVER_PORT": "6010",
2121
"WEBPACK_DEVELOPER_SERVER": "http://localhost:8080"
2222
},
23+
"envFile": "${workspaceFolder}/.local.env",
2324
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
2425
"preLaunchTask": "watch"
2526
},

0 commit comments

Comments
 (0)