Skip to content

Commit

Permalink
Bump version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rctgardner committed May 9, 2021
1 parent bedcff0 commit 0550d50
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.0] - 2021-05-09

- Improved logging to include timestamps and more verbose messaging around ATT&CK map download process
- Standardized more tests
- New completion item format: `link`: insert an unformatted link to the attack.mitre.org site when performing code completion
- New command: `vscode-attack.insertLink`: convert a preexisting ATT&CK ID or name into a Markdown link to the attack.mitre.org site

## [1.0.0] - 2021-01-18

- Lots of code linting and cleanup
Expand All @@ -22,7 +29,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added Completions and Hovers for ATT&CK Groups, Software, and Mitigations
- Added new settings to toggle various providers based on ATT&CK item type (`vscode-attack.groups`, `.mitigations`, `.tactics`, etc.)

[Unreleased]: https://github.com/redcanaryco/vscode-attack/compare/v1.0.0...HEAD
[Unreleased]: https://github.com/redcanaryco/vscode-attack/compare/v1.1.0...HEAD
[1.1.0]: https://github.com/redcanaryco/vscode-attack/compare/v0.0.1...v1.1.0
[1.0.0]: https://github.com/redcanaryco/vscode-attack/compare/v0.1.1...v1.0.0
[0.1.1]: https://github.com/redcanaryco/vscode-attack/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/redcanaryco/vscode-attack/commit/0e439fa94b7f762462d6144b5e4445f9dfbf175a
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,18 @@ This extension provides a command that allows searching for techniques by their

For example, searching for the keyword `certutil`, which is not present in any technique name, will yield a result for `T1140 Deobfuscate/Decode Files or Information`, because there is a reference to it in the description. Any matching techniques reveal webpanel with results similar to those found in the hover results.

### Link Insertion

This extension provides a command that allows users to convert existing ATT&CK IDs or names into formatted links back to the corresponding attack.mitre.org page. Currently, Markdown files and links are the only ones supported, and multi-word names, such as `Defense Evasion`, must be fully highlighted; single words and IDs can resolve the correct link with just a cursor placement.

For example, highlighting the text `PowerShell` will replace it with the following:

```markdown
[PowerShell](https://attack.mitre.org/techniques/T1059/001/)
```

This applies to all objects that are enabled in the current workspace, so Groups, Mitigations, Tactics, etc. are all supported.

## Miscellaneous

### Automatic Updating
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": "git",
"url": "https://github.com/redcanaryco/vscode-attack/"
},
"version": "1.0.0",
"version": "1.1.0",
"engines": {
"vscode": "^1.47.0"
},
Expand Down

0 comments on commit 0550d50

Please sign in to comment.