-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/async-httpclient-5
- Loading branch information
Showing
489 changed files
with
4,279 additions
and
1,344 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Snyk Vulnerability Scan | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '00 15 * * 1' | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
security: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Java Agent | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: 'main' | ||
|
||
- name: Set gradle.properties Workaround | ||
shell: bash | ||
run: | | ||
echo "jdk8=/tmp" >> gradle.properties | ||
echo "jdk11=/tmp" >> gradle.properties | ||
echo "jdk17=/tmp" >> gradle.properties | ||
- name: Run Snyk to check for vulnerabilities | ||
uses: snyk/actions/gradle@master | ||
env: | ||
SNYK_TOKEN: ${{ secrets.JAVA_AGENT_SNYK_TOKEN }} | ||
with: | ||
command: monitor | ||
args: --all-sub-projects --org=java-agent --configuration-matching='(includeInJar)|(shadowIntoJar)' |
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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
# The agent version. | ||
agentVersion=1.0.3 | ||
jsonVersion=1.0.1 | ||
agentVersion=1.0.6 | ||
jsonVersion=1.1.0 | ||
# Updated exposed NR APM API version. | ||
nrAPIVersion=8.3.0-SNAPSHOT | ||
nrAPIVersion=8.3.0 | ||
|
||
# Actual NR APM Agent version | ||
# This is intentionally kept to an older NR agent version since it is only used as dependency for unit test framework & | ||
# verify instrumentation plugin. This will only be updated when either of these functions require the update. | ||
nrAgentVersion=8.2.0 | ||
nrAgentVersion=8.3.0 | ||
#org.gradle.jvmargs=-Xmx2048m | ||
org.gradle.jvmargs=-Xmx4g | ||
org.gradle.caching=true | ||
file.encoding=utf-8 | ||
commitId=dev | ||
buildNumber=0 | ||
buildNumber=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
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.