Skip to content

Commit e06051f

Browse files
authoredApr 10, 2023
Merge pull request #203 from mattfarina/update-readme-fuzz
Updating docs for security, fuzz, codeql, gosec
2 parents e683c4b + 36ea773 commit e06051f

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed
 

‎README.md

+14
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ If you are looking for a command line tool for version comparisons please see
1818

1919
## Package Versions
2020

21+
Note, import `github.com/github.com/Masterminds/semver/v3` to use the latest version.
22+
2123
There are three major versions fo the `semver` package.
2224

2325
* 3.x.x is the stable and active version. This version is focused on constraint
@@ -242,3 +244,15 @@ for _, m := range msgs {
242244

243245
If you find an issue or want to contribute please file an [issue](https://github.com/Masterminds/semver/issues)
244246
or [create a pull request](https://github.com/Masterminds/semver/pulls).
247+
248+
## Security
249+
250+
Security is an important consideration for this project. The project currently
251+
uses the following tools to help discover security issues:
252+
253+
* [CodeQL](https://github.com/Masterminds/semver)
254+
* [gosec](https://github.com/securego/gosec)
255+
* Daily Fuzz testing
256+
257+
If you believe you have found a security vulnerability you can privately disclose
258+
it through the [GitHub security page](https://github.com/Masterminds/semver/security).

‎SECURITY.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Security Policy
2+
3+
## Supported Versions
4+
5+
The following versions of semver are currently supported:
6+
7+
| Version | Supported |
8+
| ------- | ------------------ |
9+
| 3.x | :white_check_mark: |
10+
| 2.x | :x: |
11+
| 1.x | :x: |
12+
13+
Fixes are only released for the latest minor version in the form of a patch release.
14+
15+
## Reporting a Vulnerability
16+
17+
You can privately disclose a vulnerability through GitHubs
18+
[private vulnerability reporting](https://github.com/Masterminds/semver/security/advisories)
19+
mechanism.

0 commit comments

Comments
 (0)
Please sign in to comment.