-
Notifications
You must be signed in to change notification settings - Fork 835
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into eric/propagate_flask_exceptions_enabled
- Loading branch information
Showing
419 changed files
with
77,957 additions
and
13,582 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,23 @@ | ||
version: 1 | ||
|
||
update_configs: | ||
- package_manager: "python" | ||
directory: "/python" | ||
- directory: "/python" | ||
package_manager: "python" | ||
update_schedule: "weekly" | ||
default_reviewers: | ||
- adriangonz | ||
- package_manager: "java:maven" | ||
directory: "/engine" | ||
- directory: "/engine" | ||
package_manager: "java:maven" | ||
update_schedule: "weekly" | ||
default_reviewers: | ||
- adriangonz | ||
- directory: "/executor" | ||
package_manager: "go:modules" | ||
update_schedule: "weekly" | ||
default_reviewers: | ||
- adriangonz | ||
- directory: "/operator" | ||
package_manager: "go:modules" | ||
update_schedule: "weekly" | ||
default_reviewers: | ||
- adriangonz |
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,27 @@ | ||
<!-- | ||
Thanks for sending a pull request! | ||
If this is your first time, please read our contributor guidelines: | ||
https://docs.seldon.io/projects/seldon-core/en/latest/developer/contributing.html | ||
--> | ||
|
||
**What this PR does / why we need it**: | ||
|
||
**Which issue(s) this PR fixes**: | ||
<!-- | ||
Automatically closes linked issue when PR is merged. | ||
Usage: `Fixes #<issue number>`, or `Fixes (paste link of issue)`. | ||
--> | ||
Fixes # | ||
|
||
**Special notes for your reviewer**: | ||
|
||
**Does this PR introduce a user-facing change?**: | ||
<!-- | ||
If no, just write "NONE" in the release-note block below. | ||
Otherwise, enter your extended release note in the block below. | ||
For more information on release notes see: | ||
https://docs.seldon.io/projects/seldon-core/en/latest/developer/contributing.html#release-notes | ||
--> | ||
```release-note | ||
``` | ||
|
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 |
---|---|---|
|
@@ -7,6 +7,9 @@ cluster-manager/.m2/ | |
|
||
.ipynb_checkpoints | ||
|
||
# osx | ||
.DS_Store | ||
|
||
# Tags | ||
.tags | ||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,22 @@ | ||
# Security Policy | ||
|
||
This document provides an overview of the security policy of Seldon Core. | ||
|
||
Seldon Core aims to follow the two following policies: | ||
|
||
* Keep dependencies up to date | ||
* Identify and address common vulnerabilities and exposures | ||
|
||
## Supported Versions | ||
|
||
The versions that support this Security policies are the following | ||
|
||
| Version | Supported | | ||
| ------- | ------------------ | | ||
| >= 1.2.2 | :white_check_mark: | | ||
| < 1.2.2 | :x: | | ||
|
||
## Reporting a Vulnerability | ||
|
||
If you identify a vulnerability the best way to report it is by opening an issue with the type "bug". The discussion can then take place there on next steps (ie updating library, reaching out to 3rd party projects, etc). | ||
|
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,48 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# add-pr-build-comment | ||
# | ||
set -o nounset | ||
set -o errexit | ||
set -o pipefail | ||
set -o noglob | ||
set -o xtrace | ||
|
||
VERSION=$(cat ../version.txt) | ||
|
||
# Check if version has trailing -dev otherwise exit | ||
if [ ${VERSION##*-dev} ]; then | ||
echo "Version does not end with -dev" | ||
exit 1 | ||
fi | ||
|
||
# Remove trailing dev as that will be our release version | ||
VERSION=${VERSION%"-dev"} | ||
BRANCH_NAME="release-$VERSION" | ||
|
||
# Check out master branch to use as base | ||
git fetch origin master | ||
git checkout master | ||
|
||
# Don't exit on failure so we can test branch exists | ||
set +o errexit | ||
git checkout -b $BRANCH_NAME | ||
RETVAL=$? | ||
if [[ ${RETVAL} -gt 0 ]]; then | ||
echo "Branch already exists" | ||
git checkout $BRANCH_NAME | ||
git rebase master | ||
fi | ||
set -o errexit | ||
|
||
# Perform required actions for release | ||
echo "$VERSION" > ../version.txt | ||
(cd ../engine && mvn versions:set -DnewVersion=$(cat ../version.txt)) | ||
(cd ../ && python release.py $(cat version.txt)) | ||
|
||
# Push updated changes for release | ||
git add .. | ||
git commit -m "Updating $BRANCH_NAME" | ||
git push origin $BRANCH_NAME | ||
|
||
|
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
Oops, something went wrong.