-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
481 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Security Policy | ||
|
||
## Report a Vulnerability | ||
|
||
If you found a security vulnerability in Haystack, send a message to | ||
[[email protected]](mailto:[email protected]). | ||
|
||
In your message, please include: | ||
|
||
1. Reproducible steps to trigger the vulnerability. | ||
2. An explanation of what makes you think there is a vulnerability. | ||
3. Any information you may have on active exploitations of the vulnerability (zero-day). | ||
|
||
## Vulnerability Response | ||
|
||
We'll review your report within 5 business days and we will do a preliminary analysis | ||
to confirm that the vulnerability is plausible. Otherwise, we'll decline the report. | ||
|
||
We won't disclose any information you share with us but we'll use it to get the issue | ||
fixed or to coordinate a vendor response, as needed. | ||
|
||
We'll keep you updated of the status of the issue. | ||
|
||
Our goal is to disclose bugs as soon as possible once a user mitigation is available. | ||
Once we get a good understanding of the vulnerability, we'll set a disclosure date after | ||
consulting the author of the report and Haystack maintainers. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# SPDX-FileCopyrightText: 2022-present deepset GmbH <[email protected]> | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# SPDX-FileCopyrightText: 2022-present deepset GmbH <[email protected]> | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# SPDX-FileCopyrightText: 2022-present deepset GmbH <[email protected]> | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# SPDX-FileCopyrightText: 2022-present deepset GmbH <[email protected]> | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
from importlib import metadata | ||
|
||
try: | ||
__version__ = str(metadata.version("haystack-experimental")) | ||
except metadata.PackageNotFoundError: | ||
__version__ = "main" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
SPDX-FileCopyrightText: ${inceptionYear}-present ${copyrightOwner} | ||
|
||
SPDX-License-Identifier: Apache-2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
headerPath = "license-header.txt" | ||
|
||
excludes = [ | ||
".github", | ||
"docker", | ||
"docs", | ||
"examples", | ||
"proposals", | ||
"releasenotes", | ||
"test", | ||
"CITATION.cff", | ||
"*.ini", | ||
"*.jinja2", | ||
"*.md", | ||
"*.toml", | ||
"*.txt", | ||
"*.yaml", | ||
"*.wav", | ||
] | ||
|
||
[properties] | ||
inceptionYear = 2022 | ||
copyrightOwner = "deepset GmbH <[email protected]>" |
Oops, something went wrong.