Skip to content

Commit b678707

Browse files
authored
Merge pull request #70 from MetaMask/release/2.0.4
2.0.4
2 parents 45cec30 + 256e888 commit b678707

File tree

4 files changed

+27
-14
lines changed

4 files changed

+27
-14
lines changed

CHANGELOG.md

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.0.4]
11+
12+
### Changed
13+
14+
- Updated language detector to remove Javascript as fallback default language
15+
1016
## [2.0.3]
1117

1218
### Added
1319

1420
- Enable Swift support ([#62](https://github.com/MetaMask/action-security-code-scanner/pull/62))
1521

16-
### Changed
17-
18-
- Updated language detector to add Github Actions support by default
19-
2022
### Fixed
2123

2224
- Fix incorrect language selection based on repo config ([#63](https://github.com/MetaMask/action-security-code-scanner/pull/63))
2325

26+
## [2.0.2]
27+
28+
### Changed
29+
30+
- Updated language detector to add Github Actions support by default
31+
2432
## [2.0.1]
2533

2634
### Fixed
@@ -50,9 +58,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5058

5159
- Initial release of this action ([#29](https://github.com/MetaMask/action-security-code-scanner/pull/29))
5260

53-
[Unreleased]: https://github.com/metamask/action-security-code-scanner/compare/v2.0.3...HEAD
54-
[2.0.3]: https://github.com/metamask/action-security-code-scanner/compare/v2.0.1...v2.0.3
55-
[2.0.1]: https://github.com/metamask/action-security-code-scanner/compare/v2.0.0...v2.0.1
56-
[2.0.0]: https://github.com/metamask/action-security-code-scanner/compare/v1.1.0...v2.0.0
57-
[1.1.0]: https://github.com/metamask/action-security-code-scanner/compare/v1.0.0...v1.1.0
58-
[1.0.0]: https://github.com/metamask/action-security-code-scanner/releases/tag/v1.0.0
61+
[Unreleased]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.4...HEAD
62+
[2.0.4]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.3...v2.0.4
63+
[2.0.3]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.2...v2.0.3
64+
[2.0.2]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.1...v2.0.2
65+
[2.0.1]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.0...v2.0.1
66+
[2.0.0]: https://github.com/MetaMask/action-security-code-scanner/compare/v1.1.0...v2.0.0
67+
[1.1.0]: https://github.com/MetaMask/action-security-code-scanner/compare/v1.0.0...v1.1.0
68+
[1.0.0]: https://github.com/MetaMask/action-security-code-scanner/releases/tag/v1.0.0

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "@metamask/action-security-code-scanner",
3-
"version": "2.0.3",
3+
"version": "2.0.4",
44
"private": true,
55
"description": "Security Code Scanner",
66
"repository": {
77
"type": "git",
8-
"url": "https://github.com/metamask/action-security-code-scanner.git"
8+
"url": "https://github.com/MetaMask/action-security-code-scanner.git"
99
},
1010
"license": "ISC",
1111
"author": "metamask",

packages/language-detector/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.0.4]
11+
1012
### Changed
1113

1214
- Updated language detector to remove Javascript as fallback default language
@@ -40,7 +42,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4042

4143
- Added support for autodetecting languages using Github API
4244

43-
[Unreleased]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.3...HEAD
45+
[Unreleased]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.4...HEAD
46+
[2.0.4]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.3...v2.0.4
4447
[2.0.3]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.2...v2.0.3
4548
[2.0.2]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.1...v2.0.2
4649
[2.0.1]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.0...v2.0.1

packages/language-detector/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/language-detector",
3-
"version": "2.0.3",
3+
"version": "2.0.4",
44
"description": "Language detection and matrix generation for code scanning",
55
"type": "module",
66
"main": "src/index.js",

0 commit comments

Comments
 (0)