Release: 1.0.0

This commit is contained in:
Sonatype Zion
2024-07-19 17:42:59 +00:00
parent 9bf19bb075
commit 73bc155e58
18 changed files with 307771 additions and 0 deletions

85
fetch-sbom/README.md Normal file
View File

@@ -0,0 +1,85 @@
<!--
Copyright (c) 2023-present Sonatype, Inc. All rights reserved.
Includes the third-party code listed at https://links.sonatype.com/products/clm/attributions.
"Sonatype" is a trademark of Sonatype, Inc.
-->
# Fetch SBOM Action
A [GitHub Action](https://github.com/features/actions) for retrieving an SBOM (Software Bill of Materials) file
associated with a previous Lifecycle evaluation. It supports both the [CycloneDX](https://cyclonedx.org/) and
[SPDX](https://spdx.dev/) standards.
## Usage Example
```yaml
name: Sonatype Workflow
on: push
jobs:
sonatype-cli:
runs-on: ubuntu-latest
steps:
# some steps are omitted...
# Run Sonatype CLI
- name: Run Sonatype CLI
id: run-iq-cli
uses: sonatype/actions/run-iq-cli@v1
with:
iq-server-url: https://your.lifecycle.server
username: ${{ secrets.LIFECYCLE_USERNAME }}
password: ${{ secrets.LIFECYCLE_PASSWORD }}
application-id: lifecycle-app
scan-targets: target/*.jar
# Fetch the SBOM file associated with the previous Sonatype CLI run
- name: Fetch SBOM
uses: sonatype/actions/fetch-sbom@v1
if: always()
with:
iq-server-url: https://your.lifecycle.server
username: ${{ secrets.LIFECYCLE_USERNAME }}
password: ${{ secrets.LIFECYCLE_PASSWORD }}
application-id: lifecycle-app
scan-id: ${{ steps.run-iq-cli.outputs.scan-id }}
sbom-standard: cyclonedx
sbom-version: 1.5
artifact-name: my-sbom
```
## Parameters
> **iq-server-url**\
> Lifecycle (IQ Server) URL. `Required`
> **username**\
> The username to authenticate with Lifecycle (IQ Server). `Required`
> **password**\
> The password to authenticate with Lifecycle (IQ Server). `Required`
> **application-id**\
> Lifecycle (IQ Server) application ID. `Required`
> **scan-id**\
> The SBOM file associated with the provided scan ID is fetched and stored as an action artifact. `Required`
> **sbom-standard**\
> The SBOM standard: `spdx` or `cyclonedx`. `Required`
> **sbom-version**\
> The version of the SBOM standard.\
> Available CycloneDX versions: `1.2`, `1.3`, `1.4`, `1.5`. Available SPDX versions: `2.3`. `Required`
> **sbom-format**\
> The output file format: `json` or `xml`. Default: `json`. `Optional`
> **artifact-name**\
> The name of the artifact to be stored. Default: `sbom-document`. `Optional`
> **push-dependency-graph**\
> If set, the dependency information from the fetched SBOM will be available in GitHub Insights Dependency Graph.
> Default: `false`. `Optional`
> **token**\
> GitHub Personal Access Token (PAT). Defaults to the PAT provided by the actions runner. `Optional`

50
fetch-sbom/action.yml Normal file
View File

@@ -0,0 +1,50 @@
name: 'Fetch SBOM'
description: 'fetch-sbom action gets the project SBOM and uploads it as an artifact'
author: 'Sonatype'
branding:
icon: 'shield'
color: 'purple'
inputs:
scan-id:
description: 'The scan ID to fetch the report'
required: true
application-id:
description: 'The IQ Server application ID'
required: true
sbom-standard:
description: 'The SBOM standard (spdx or cycloneDx)'
required: true
sbom-format:
description: 'The output file format (json or xml)'
required: false
default: 'json'
sbom-version:
description:
'The version of the SBOM (- Available CycloneDX Versions: 1.2, 1.3, 1.4, 1.5 - Available SPDX version: 2.3)'
required: true
artifact-name:
description: 'The name of the artifact to be uploaded'
required: false
push-dependency-graph:
description: 'A true value will push SBOM information to the GitHub dependency graph feature.'
required: false
default: false
iq-server-url:
description: 'The location of your Lifecycle server (e.g. http://localhost:8070).'
required: true
username:
description: 'The username/usercode to authenticate with IQ Server'
required: true
password:
description: 'Password/passcode to authenticate with IQ Server'
required: true
token:
description: 'GitHub Personal Access Token (PAT). Defaults to PAT provided by Actions runner.'
required: false
default: ${{ github.token }}
runs:
using: node20
main: dist/index.js

143587
fetch-sbom/dist/index.js vendored Normal file

File diff suppressed because one or more lines are too long

1
fetch-sbom/dist/index.js.map vendored Normal file

File diff suppressed because one or more lines are too long

3737
fetch-sbom/dist/licenses.txt vendored Normal file

File diff suppressed because it is too large Load Diff

1
fetch-sbom/dist/sourcemap-register.js vendored Normal file

File diff suppressed because one or more lines are too long

120
run-iq-cli/README.md Normal file
View File

@@ -0,0 +1,120 @@
<!--
Copyright (c) 2023-present Sonatype, Inc. All rights reserved.
Includes the third-party code listed at https://links.sonatype.com/products/clm/attributions.
"Sonatype" is a trademark of Sonatype, Inc.
-->
# Sonatype CLI Run Action
A [GitHub Action](https://github.com/features/actions) for running
[Sonatype CLI](https://help.sonatype.com/en/sonatype-iq-cli.html) in GitHub workflows.
## Usage Example
```yaml
name: Sonatype Workflow
on: push
jobs:
sonatype-cli:
runs-on: ubuntu-latest
steps:
# some steps are omitted...
# Sonatype CLI requires Java to run
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
# Make Sonatype CLI available to GitHub runners
- name: Setup Sonatype CLI
uses: sonatype/actions/setup-iq-cli@v1
with:
iq-cli-version: 1.178.0-06
# Run Sonatype CLI
- name: Run Sonatype CLI
uses: sonatype/actions/run-iq-cli@v1
with:
iq-server-url: https://your.lifecycle.server
username: ${{ secrets.LIFECYCLE_USERNAME }}
password: ${{ secrets.LIFECYCLE_PASSWORD }}
application-id: lifecycle-app
scan-targets: target/*.jar
```
## Parameters
> **iq-server-url**\
> Lifecycle (IQ Server) URL. `Required`
> **username**\
> The username to authenticate with Lifecycle (IQ Server). `Required`
> **password**\
> The password to authenticate with Lifecycle (IQ Server). `Required`
> **application-id**\
> Lifecycle (IQ Server) application ID. When
> [Automatic Applications](https://help.sonatype.com/en/automatic-application.html) is enabled and the application ID
> has not yet been used, a new application will be created with the given ID. `Required`
> **organization-id**\
> The ID for the Lifecycle organization to which the application belongs. When automatic application creation is enabled
> and the application does not exist, it will be created under the organization having the provided organization ID. See
> [Automatic application creation with the CLI](https://help.sonatype.com/en/automatic-application-with-the-cli.html)
> for more details. `Optional`
> **scan-targets**\
> Space separated list of paths to specific files, directory, or docker image.
> [Apache Ant-styled patterns](https://ant.apache.org/manual/dirtasks.html#patterns) are allowed. See supported file
> formats in [Analysis](https://help.sonatype.com/en/analysis.html). `Required`
> **stage**\
> Specify the development lifecycle stage for the analysis. Defaults to the `build` stage. `Optional`
> **result-file**\
> If set, the analysis output (in JSON format) will be uploaded as a run artifact with the specified name. `Optional`
> **module-exclude**\
> Specify module files to ignore via Apache Ant-styled patterns. `Optional`
> **fail-on-policy-warnings**\
> Causes a failure of the evaluation if any warnings are encountered. Default: `false`. `Optional`
> **ignore-system-errors**\
> Ignore system errors (e.g. IO, Network, server, etc.) to avoid unintentional build failures. Default: `false`.
> `Optional`
> **ignore-scanning-errors**\
> Ignore scanning errors (e.g. invalid files, inaccessible files, etc). It is useful when the code base contains invalid
> files for testing purposes. Scanning these files may cause unintentional build failures. Default: `false`. `Optional`
> **debug**\
> Enables debug logging for troubleshooting. Use with caution as this log may expose sensitive information. Default:
> `false`. `Optional`
> **keep-scan-file**\
> Retains and uploads the scan file as an action artifact. Default: `false`. `Optional`
> **proxy**\
> Specify a proxy to use when connecting to Lifecycle (IQ Server). This property is set using the format `host[:port]`,
> otherwise, the CLI uses the default HTTP proxy set with the JVM.' `Optional`
> **proxy-user**\
> Specify proxy credentials in the following format: `username:password`. `Optional`
> **include-sha-256**\
> If set, SHA256 checksums are included in the scan file. Default: `false`. `Optional`
> **exclude-maven-dependency-management**\
> Enable this parameter to limit analysis to the projects dependencies section of a pom file while excluding the
> components under the dependencyManagement section. Default: `false`. `Optional`
## Output
> **scan-id**\
> Scan id result of the run operation. It can be used to access the Lifecycle report of relater artifacts.
> **report-url**\
> Use this link to navigate directly to the analysis report in Lifecycle (IQ Server).

97
run-iq-cli/action.yml Normal file
View File

@@ -0,0 +1,97 @@
name: 'Run IQ CLI'
description:
'run-iq-cli action runs IQ CLI (jar) with the set of parameters provided and outputs the scan id and the report URL'
author: 'Sonatype'
# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: 'shield'
color: 'purple'
# Define your inputs here.
inputs:
username:
description: 'The username to authenticate with IQ Server'
required: true
password:
description: 'The password to authenticate with IQ Server'
required: true
application-id:
description: 'The IQ Server application ID'
required: true
organization-id:
description: 'The ID for the organization to which the application belongs.'
required: false
iq-server-url:
description: 'The location of your Lifecycle server (e.g. http://localhost:8070).'
required: true
scan-targets:
description: 'Paths to specific files, directories, or docker images.'
required: true
stage:
description: 'Specify the development lifecycle stage for the analysis.'
required: false
default: 'build'
result-file:
description: 'Will upload the result file as an action artifact.'
required: false
module-exclude:
description:
'Specify module files to ignore via Apache Ant-styled patterns. Repeat the option for multiple specifications.'
required: false
fail-on-policy-warnings:
description: 'Causes a failure of the evaluation if any warnings are encountered.'
required: false
default: false
ignore-system-errors:
description:
'Ignore system errors (e.g. IO, Network, server, etc.) when running on continuous integration servers to avoid
unintentional build failures.'
required: false
default: false
ignore-scanning-errors:
description:
'Ignore scanning errors (e.g. invalid files, inaccessible files, etc) when the code base contains invalid files
for testing purposes. Scanning these files may cause unintentional build failures.'
required: false
default: false
debug:
description:
'Enables debug logging for troubleshooting. Use with caution as this log may expose sensitive information.'
required: false
default: false
keep-scan-file:
description: 'Upload the scan file as an action artifact.'
required: false
default: false
proxy:
description:
'Specify a proxy to use when connecting to the Lifecycle server. This property is set using the format
<host[:port]>, otherwise, the CLI uses the default HTTP proxy for the JVM.'
required: false
proxy-user:
description: 'Specify proxy credentials in the following format: <username:password>'
required: false
include-sha-256:
description: 'Include the SHA256 in the scan file'
required: false
default: false
exclude-maven-dependency-management:
description:
'Enable this parameter to limit analysis to the projects dependencies section of a pom file while excluding the
components under the dependencyManagement section.'
required: false
default: false
# Define your outputs here.
outputs:
scan-id:
description: 'Scan id result of the run operation'
report-url:
description: 'Use this link to navigate directly to the report'
runs:
using: node20
main: dist/index.js

125585
run-iq-cli/dist/index.js vendored Normal file

File diff suppressed because one or more lines are too long

1
run-iq-cli/dist/index.js.map vendored Normal file

File diff suppressed because one or more lines are too long

3454
run-iq-cli/dist/licenses.txt vendored Normal file

File diff suppressed because it is too large Load Diff

1
run-iq-cli/dist/sourcemap-register.js vendored Normal file

File diff suppressed because one or more lines are too long

34
setup-iq-cli/README.md Normal file
View File

@@ -0,0 +1,34 @@
<!--
Copyright (c) 2023-present Sonatype, Inc. All rights reserved.
Includes the third-party code listed at https://links.sonatype.com/products/clm/attributions.
"Sonatype" is a trademark of Sonatype, Inc.
-->
# Sonatype CLI Setup Action
A [GitHub Action](https://github.com/features/actions) for setting up
[Sonatype CLI](https://help.sonatype.com/en/sonatype-iq-cli.html) as a tool that is available for GitHub runners and
subsequent actions. The action downloads and configures the requested version of the Sonatype CLI.
## Usage Example
```yaml
name: Sonatype Workflow
on: push
jobs:
sonatype-cli:
runs-on: ubuntu-latest
steps:
- name: Setup Sonatype CLI
uses: sonatype/actions/setup-iq-cli@v1
with:
iq-cli-version: 1.179.0-01
```
## Parameters
> **iq-cli-version**\
> Sonatype CLI version to be used. It could be a full version (e.g. 1.179.0-01), a short version (e.g. 179) or `latest`.
> `Required`

23
setup-iq-cli/action.yml Normal file
View File

@@ -0,0 +1,23 @@
name: 'Setup IQ CLI'
description: 'setup-iq-cli action sets up the IQ CLI (jar) as a tool in GitHub, to be available to other actions'
author: 'Sonatype'
# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: 'shield'
color: 'purple'
# Define your inputs here.
inputs:
iq-cli-version:
description: 'IQ CLI version to be used'
required: true
# Define your outputs here.
outputs:
result:
description: 'Message stating the result of the setup operation'
runs:
using: node20
main: dist/index.js

30818
setup-iq-cli/dist/index.js vendored Normal file

File diff suppressed because one or more lines are too long

1
setup-iq-cli/dist/index.js.map vendored Normal file

File diff suppressed because one or more lines are too long

175
setup-iq-cli/dist/licenses.txt vendored Normal file
View File

@@ -0,0 +1,175 @@
@actions/core
MIT
The MIT License (MIT)
Copyright 2019 GitHub
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@actions/exec
MIT
The MIT License (MIT)
Copyright 2019 GitHub
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@actions/http-client
MIT
Actions Http Client for Node.js
Copyright (c) GitHub, Inc.
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
associated documentation files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@actions/io
MIT
The MIT License (MIT)
Copyright 2019 GitHub
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@actions/tool-cache
MIT
The MIT License (MIT)
Copyright 2019 GitHub
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@fastify/busboy
MIT
Copyright Brian White. All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
semver
ISC
The ISC License
Copyright (c) Isaac Z. Schlueter and Contributors
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
tunnel
MIT
The MIT License (MIT)
Copyright (c) 2012 Koichi Kobayashi
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
undici
MIT
MIT License
Copyright (c) Matteo Collina and Undici contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
uuid
MIT
The MIT License (MIT)
Copyright (c) 2010-2020 Robert Kieffer and other contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

File diff suppressed because one or more lines are too long