-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release 0.5.3 #142
Merged
Merged
Release 0.5.3 #142
Changes from 17 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
a25017e
Add snyk workflow to github actions
Bdegraaf1234 38f1904
Merge pull request #125 from RADAR-base/add-snyk-workflow
yatharthranjan 4f26630
Update the versions of our dependencies to the latest available
Bdegraaf1234 5607b7a
Merge pull request #126 from RADAR-base/security-updates
Bdegraaf1234 f72531a
Update Versions.kt
mpgxvii 7e1af09
Merge pull request #131 from RADAR-base/release-0.5.2
mpgxvii 7908a49
Update Oura request backoff times
mpgxvii 17d0d45
Merge pull request #134 from RADAR-base/fix/oura-backoff
mpgxvii 0430499
Uninstall java 11 and install java 17 in the base docker images from …
Bdegraaf1234 8b6360a
Merge pull request #138 from RADAR-base/fix-dockerfile
Bdegraaf1234 78c20fe
Check if transfer-Encoding header is set, if so the response has a body
Bdegraaf1234 ef2f2f8
Merge pull request #139 from RADAR-base/fix-get-users
Bdegraaf1234 9971d00
Fix initialisation of kakfa offset manager
mpgxvii 5b32e99
Add backoff time when no records are found
mpgxvii c24c89e
UUpdate back off times
mpgxvii 1aebe6a
Merge pull request #141 from RADAR-base/fix/offset-manager
mpgxvii 593f50d
Bump version
mpgxvii 2e0cd88
Allow null end dates for continuous pull of data
mpgxvii 67af964
Update back off time for no records to ONE_DAY
mpgxvii 5d87b76
Refactor checking of end date for brevity
mpgxvii 2c3bc7e
Merge pull request #143 from RADAR-base/feat/allow-null-end
mpgxvii f7d3f33
Fix isComplete check for User
mpgxvii 6b9dc43
Merge pull request #145 from RADAR-base/fix/user
mpgxvii dbcd7dc
Fix lint errors
mpgxvii 7f0dcb1
Fix Oura offset times
mpgxvii db44b53
Merge pull request #147 from RADAR-base/feat/offset-times
mpgxvii 8544aa9
Fix lint errors
mpgxvii 27e5a19
Bump vulnerable deps
mpgxvii File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Snyk test | ||
|
||
on: | ||
- pull_request | ||
|
||
jobs: | ||
security: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: snyk/actions/setup@master | ||
with: | ||
snyk-version: v1.1032.0 | ||
|
||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: temurin | ||
java-version: 17 | ||
|
||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
|
||
- name: Run Snyk to check for vulnerabilities | ||
env: | ||
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | ||
run: > | ||
snyk test | ||
--all-projects | ||
--configuration-matching="^runtimeClasspath$" | ||
--fail-on=upgradable | ||
--org=radar-base | ||
--policy-path=.snyk | ||
--severity-threshold=high |
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
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
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
update to
ONE_DAY