Skip to content

Commit bf9a72a

Browse files
committed
Merge master into feature/debugconfig
2 parents f368353 + 2f9a82f commit bf9a72a

File tree

112 files changed

+1292
-455
lines changed

Some content is hidden

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

112 files changed

+1292
-455
lines changed

.changes/1.10.0.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"date": "2020-05-27",
3+
"version": "1.10.0",
4+
"entries": [
5+
{
6+
"type": "Feature",
7+
"description": "Add basic visualisation capability for step function state machines defined in YAML."
8+
},
9+
{
10+
"type": "Feature",
11+
"description": "Step Functions Linter: Resource property of Task state will accept any string instead of just arn. Additional disallowed properties will be marked as invalid."
12+
},
13+
{
14+
"type": "Feature",
15+
"description": "If a file conflict is detected when downloading event schemas code bindings, a confirmation prompt is shown"
16+
}
17+
]
18+
}

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
],
4646
"env": {
4747
"TEST_REPORT_DIR": "${workspaceFolder}/.test-reports",
48-
"TEST_FILE": null,
48+
"TEST_FILE": "null",
4949
"AWS_TOOLKIT_IGNORE_WEBPACK_BUNDLE": "true",
5050
"NO_COVERAGE": "true"
5151
},
@@ -82,7 +82,7 @@
8282
],
8383
"env": {
8484
"TEST_REPORT_DIR": "${workspaceFolder}/.test-reports",
85-
"TEST_FILE": null,
85+
"TEST_FILE": "null",
8686
"AWS_TOOLKIT_IGNORE_WEBPACK_BUNDLE": "true",
8787
"NO_COVERAGE": "true"
8888
},

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 1.10.0 2020-05-27
2+
3+
- **Feature** Add basic visualisation capability for step function state machines defined in YAML.
4+
- **Feature** Step Functions Linter: Resource property of Task state will accept any string instead of just arn. Additional disallowed properties will be marked as invalid.
5+
- **Feature** If a file conflict is detected when downloading event schemas code bindings, a confirmation prompt is shown
6+
17
## 1.9.0 2020-04-29
28

39
- **Breaking Change** Bumping VS Code minimum version: 1.31.1 => 1.42.0

codecov.yml

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,24 @@
22
# cat codecov.yml | curl --data-binary @- https://codecov.io/validate
33

44
codecov:
5-
notify:
6-
require_ci_to_pass: no
5+
notify:
6+
require_ci_to_pass: no
77

88
coverage:
9-
precision: 2
10-
round: down
11-
range: "70...100"
9+
precision: 2
10+
round: down
11+
range: '70...100'
1212

13-
status:
14-
project:
15-
default:
16-
threshold: 1
17-
patch:
18-
default:
19-
threshold: 1
20-
only_pulls: true
21-
changes: no
13+
status:
14+
project:
15+
default:
16+
threshold: 1
17+
informational: true
18+
patch:
19+
default:
20+
threshold: 1
21+
only_pulls: true
22+
informational: false
23+
changes: no
2224

2325
comment: off

designs/s3/design-vscode-s3.md

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Buckets are listed as children of the S3 root node.
128128
- Works like `Upload...`, except targeting the parent of the current item.
129129
This allows the user to avoid needing to navigate to the parent folder.
130130
- _Destructive operations (separator):_
131-
- (P1) `Delete bucket`
131+
- (P0) `Delete bucket`
132132
- "Super confirm": similar to AWS web console, show a prompt which
133133
requires typing the word "Delete".
134134

@@ -162,22 +162,26 @@ S3 objects and folders are listed as children of their respective parent bucket/
162162
experiences in the Toolkit.
163163
- (P1) Loading bar or updating percentage.
164164
- (P1) Toolkit tracks current downloads so that they are cancellable.
165-
- User can cancel all downloads by clicking a button in the Toolkit
166-
explorer toolbar, or by the `AWS: Cancel downloads` VSCode command.
165+
- User can cancel _all_ downloads by clicking a button in the Toolkit
166+
explorer toolbar, or by the `AWS: Cancel Downloads` VSCode command.
167167
- (P2) User can download multiple files/folders by selecting them in the S3
168168
tree and using the `Download` context-menu item.
169169
- (P0) `Download as...`
170170
- Presents the standard file-chooser dialog. Otherwise behaves like the `Download` action.
171171
- (P2) `Edit`
172172
- Downloads the object to a temp folder and opens it in a [readonly view](https://code.visualstudio.com/api/extension-guides/virtual-documents).
173-
- (P0) Upload... (similar UX as [S3 buckets](#s3-buckets) `Upload...` item)
173+
- (P0) `Upload...` (similar UX as [S3 buckets](#s3-buckets) `Upload...` item)
174+
- (P1) User can cancel upload by clicking a button in the progress popup.
175+
- (P1) User can cancel _all_ uploads by clicking a button in the
176+
Toolkit explorer toolbar, or by the `AWS: Cancel Uploads` VSCode command.
177+
- (P1) `Upload current file...` allows uploading the current file (i.e.
178+
the "active editor" in VSCode) to the selected S3 folder.
174179
- _Destructive operations (separator):_
175-
- (P1) `Delete`
176-
- If versioning is enabled, do _not_ prompt to confirm deletion.
177-
- Show a passive toaster message: _Deleted `foo.txt`. `Undo` from previous versions?_
178-
- If user clicks `Undo` in the toaster message, restore the file from the previous versions list.
179-
- If versioning is not enabled, show a prompt to confirm deletion :(
180-
- Show a passive toaster message: _Deleted `foo.txt`. (Cannot undo because S3 bucket versioning is disabled.)_
180+
- `Delete`
181+
- (P0) Show a prompt to confirm deletion.
182+
- Show a passive message: _Deleted `foo.txt`. (Cannot undo because S3 bucket versioning is disabled.)_
183+
- (P1) If versioning is enabled, do _not_ prompt to confirm deletion.
184+
- Show a passive message: _Deleted `foo.txt`. Restore previous version to undo._
181185

182186
### S3 bucket properties
183187

0 commit comments

Comments
 (0)