Skip to content

Commit d72373d

Browse files
authored
Merge pull request #77 from MetaMask/release/2.0.5
2.0.5
2 parents aba24b6 + 59c2931 commit d72373d

File tree

6 files changed

+35
-8
lines changed

6 files changed

+35
-8
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [2.0.5]
11+
12+
### Added
13+
14+
- feat: add rule to catch npx usage in JS/TS/YAML
15+
16+
### Fixed
17+
18+
- fix: add .security-scanner directory to ignored paths
19+
1020
## [2.0.4]
1121

1222
### Changed
@@ -58,7 +68,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5868

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

61-
[Unreleased]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.4...HEAD
71+
[Unreleased]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.5...HEAD
72+
[2.0.5]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.4...v2.0.5
6273
[2.0.4]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.3...v2.0.4
6374
[2.0.3]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.2...v2.0.3
6475
[2.0.2]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.1...v2.0.2

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/action-security-code-scanner",
3-
"version": "2.0.4",
3+
"version": "2.0.5",
44
"private": true,
55
"description": "Security Code Scanner",
66
"repository": {

packages/codeql-action/CHANGELOG.md

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

88
## [Unreleased]
99

10-
## [2.0.3]
10+
## [2.0.5]
1111

1212
### Fixed
1313

14-
- Fix incorrect language selection based on repo config ([#63](https://github.com/MetaMask/action-security-code-scanner/pull/63))
14+
- fix: add .security-scanner directory to paths-ignore in CodeQL config
15+
16+
## [2.0.3]
1517

1618
### Fixed
1719

20+
- Fix incorrect language selection based on repo config ([#63](https://github.com/MetaMask/action-security-code-scanner/pull/63))
1821
- Fixed Codeql configuration build
1922

2023
## [2.0.1]
@@ -32,7 +35,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3235
- Added multi language support
3336
- Updated CodeQL action to v4
3437

35-
[Unreleased]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.3...HEAD
38+
[Unreleased]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.5...HEAD
39+
[2.0.5]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.3...v2.0.5
3640
[2.0.3]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.1...v2.0.3
3741
[2.0.1]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.0...v2.0.1
3842
[2.0.0]: https://github.com/MetaMask/action-security-code-scanner/releases/tag/v2.0.0

packages/codeql-action/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/codeql-action",
3-
"version": "2.0.3",
3+
"version": "2.0.5",
44
"private": true,
55
"description": "Custom CodeQL analysis action",
66
"keywords": [],

packages/semgrep-action/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [2.0.5]
11+
12+
### Fixed
13+
14+
- refactor: simplify Semgrep action by removing unnecessary file copy step
15+
- fix: update .semgrepignore to include .security-scanner directory
16+
17+
### Added
18+
19+
- feat: add rule to catch npx usage in JS/TS/YAML
20+
1021
## [2.0.2]
1122

1223
## [2.0.1]
@@ -22,7 +33,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2233

2334
- Migrated action from its separate repository to the monorepo
2435

25-
[Unreleased]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.2...HEAD
36+
[Unreleased]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.5...HEAD
37+
[2.0.5]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.2...v2.0.5
2638
[2.0.2]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.1...v2.0.2
2739
[2.0.1]: https://github.com/MetaMask/action-security-code-scanner/compare/v2.0.0...v2.0.1
2840
[2.0.0]: https://github.com/MetaMask/action-security-code-scanner/releases/tag/v2.0.0

packages/semgrep-action/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/semgrep-action",
3-
"version": "2.0.2",
3+
"version": "2.0.5",
44
"private": true,
55
"description": "Semgrep-based security scanning action",
66
"keywords": [

0 commit comments

Comments
 (0)