Skip to content

Commit 4ff2cc9

Browse files
authored
Merge master into feature/debugconfig #1189
2 parents 900cf74 + 2254409 commit 4ff2cc9

39 files changed

+1308
-77
lines changed

.changes/1.11.0.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"date": "2020-07-18",
3+
"version": "1.11.0",
4+
"entries": [
5+
{
6+
"type": "Breaking Change",
7+
"description": "Bumped minimum (inclusive) supported SAM CLI version from 0.38.0 to 0.47.0."
8+
},
9+
{
10+
"type": "Bug Fix",
11+
"description": "Amazon States Language Server: Replaces \"True\" strings of End with boolean in snippets."
12+
},
13+
{
14+
"type": "Bug Fix",
15+
"description": "Makes the ItemsPath property of Map state optional in ASL linter."
16+
},
17+
{
18+
"type": "Bug Fix",
19+
"description": "Amazon States Language Server: Adds validation of next property for Catch of Map state."
20+
},
21+
{
22+
"type": "Bug Fix",
23+
"description": "Amazon States Language Server: Adds missing \"Comment\" property for ChoiceRules, Catcher and Retrier."
24+
},
25+
{
26+
"type": "Feature",
27+
"description": "Amazon States Language Server: Adds validation of JSON Paths within Parameters."
28+
},
29+
{
30+
"type": "Feature",
31+
"description": "Added `dotnetcore3.1` app creation and local run support. Local debug is not currently supported."
32+
},
33+
{
34+
"type": "Feature",
35+
"description": "support SAM CLI version 1.x"
36+
}
37+
]
38+
}

.changes/next-release/Bug Fix-5fefb880-c18d-4d2d-8024-2a635e295d22.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

.changes/next-release/Bug Fix-7011a4f4-309d-42c7-95c6-fd8a9f5df136.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

.changes/next-release/Bug Fix-a128fcc4-26d3-4a49-b680-05489c6b0d24.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

.changes/next-release/Feature-14640c03-b9f6-46b2-8109-3c6bafac99ad.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

.changes/next-release/Feature-6930a1df-1673-4ffb-8a98-38720d102fe9.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 1.11.0 2020-07-18
2+
3+
- **Breaking Change** Bumped minimum (inclusive) supported SAM CLI version from 0.38.0 to 0.47.0.
4+
- **Bug Fix** Amazon States Language Server: Replaces "True" strings of End with boolean in snippets.
5+
- **Bug Fix** Makes the ItemsPath property of Map state optional in ASL linter.
6+
- **Bug Fix** Amazon States Language Server: Adds validation of next property for Catch of Map state.
7+
- **Bug Fix** Amazon States Language Server: Adds missing "Comment" property for ChoiceRules, Catcher and Retrier.
8+
- **Feature** Amazon States Language Server: Adds validation of JSON Paths within Parameters.
9+
- **Feature** Added `dotnetcore3.1` app creation and local run support. Local debug is not currently supported.
10+
- **Feature** support SAM CLI version 1.x
11+
112
## 1.10.0 2020-05-27
213

314
- **Feature** Add basic visualisation capability for step function state machines defined in YAML.

buildspec/linuxIntegrationTests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ phases:
4747
commands:
4848
- export AWS_TOOLKIT_TEST_USER_DIR=/tmp/
4949
- export AWS_TOOLKIT_TEST_NO_COLOR=1
50+
- export NO_COVERAGE=true
5051
- npm install --unsafe-perm
5152
- xvfb-run npm run integrationTest
5253

package-lock.json

Lines changed: 42 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "aws-toolkit-vscode",
33
"displayName": "AWS Toolkit",
44
"description": "An extension for working with Amazon Web Services",
5-
"version": "1.11.0-SNAPSHOT",
5+
"version": "1.12.0-SNAPSHOT",
66
"publisher": "amazonwebservices",
77
"license": "Apache-2.0",
88
"repository": {
@@ -32,6 +32,7 @@
3232
"preview": false,
3333
"qna": "https://github.com/aws/aws-toolkit-vscode/issues",
3434
"activationEvents": [
35+
"onStartupFinished",
3536
"onDebugResolve:aws-sam",
3637
"onCommand:aws.login",
3738
"onCommand:aws.credential.profile.create",
@@ -874,7 +875,7 @@
874875
"@types/glob": "^7.1.1",
875876
"@types/js-yaml": "^3.12.0",
876877
"@types/lodash": "^4.14.136",
877-
"@types/lolex": "^3.1.1",
878+
"@types/lolex": "^5.1.0",
878879
"@types/marked": "^0.6.5",
879880
"@types/mocha": "^7.0.2",
880881
"@types/node": "^10.14.22",
@@ -900,7 +901,7 @@
900901
"husky": "^2.3.0",
901902
"istanbul": "^0.4.5",
902903
"json-schema-to-typescript": "^8.2.0",
903-
"lolex": "^4.2.0",
904+
"lolex": "^5.1.0",
904905
"marked": "^0.7.0",
905906
"mocha": "^7.1.1",
906907
"mocha-junit-reporter": "^1.23.3",
@@ -923,7 +924,7 @@
923924
},
924925
"dependencies": {
925926
"adm-zip": "^0.4.13",
926-
"amazon-states-language-service": "^1.1.2",
927+
"amazon-states-language-service": "^1.1.6",
927928
"async-lock": "^1.1.3",
928929
"aws-sdk": "^2.581.0",
929930
"cloudformation-schema-js-yaml": "^1.0.1",
@@ -934,7 +935,7 @@
934935
"immutable": "^4.0.0-rc.12",
935936
"js-yaml": "^3.13.1",
936937
"jsonc-parser": "^2.0.2",
937-
"lodash": "^4.17.15",
938+
"lodash": "^4.17.19",
938939
"moment": "^2.24.0",
939940
"original-fs": "^1.1.0",
940941
"portfinder": "^1.0.25",

0 commit comments

Comments
 (0)