-
Notifications
You must be signed in to change notification settings - Fork 825
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4887 from dynatrace-oss-contrib/next-main-2024-07-30
[next] merge latest changes from `main`
- Loading branch information
Showing
523 changed files
with
22,102 additions
and
29,020 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
name: SBOM | ||
on: | ||
release: | ||
types: [published] | ||
|
||
permissions: read-all | ||
|
||
jobs: | ||
generate-sboms: | ||
runs-on: ubuntu-latest | ||
env: | ||
NPM_CONFIG_UNSAFE_PERM: true | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
|
||
- run: npm install -g npm@latest | ||
|
||
- name: Bootstrap | ||
run: npm ci | ||
|
||
- name: Generate SBOM for core packages | ||
if: ${{ ! startsWith(github.ref, 'refs/tags/experimental') && ! startsWith(github.ref, 'refs/tags/api') }} | ||
run: | | ||
for dir in $(find packages -mindepth 1 -maxdepth 1 -type d) | ||
do | ||
dir_name=$(basename "$dir") | ||
echo "Generating SBOM for $dir_name" | ||
npm sbom --sbom-format=spdx --legacy-peer-deps --workspace ${dir} > "opentelemetry-js_${dir_name}.spdx.json" | ||
done | ||
- name: Generate SBOM for the API package | ||
if: startsWith(github.ref, 'refs/tags/api/') | ||
run: | | ||
npm sbom --sbom-format=spdx --legacy-peer-deps --workspace api > opentelemetry-js_api.spdx.json | ||
- name: Generate SBOMs for experimental packages | ||
if: startsWith(github.ref, 'refs/tags/experimental/') | ||
run: | | ||
for dir in $(find experimental/packages -mindepth 1 -maxdepth 1 -type d) | ||
do | ||
dir_name=$(basename "$dir") | ||
echo "Generating SBOM for $dir_name" | ||
npm sbom --sbom-format=spdx --legacy-peer-deps --workspace ${dir} > "opentelemetry-js_${dir_name}.spdx.json" | ||
done | ||
- name: Zip all SBOM files | ||
run: | | ||
zip sbom.zip *.spdx.json | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: SBOM.zip | ||
path: ./sbom.zip | ||
|
||
add-release-artifact: | ||
needs: generate-sboms | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: Download artifact from generate-sboms | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: SBOM.zip | ||
- name: Upload release asset | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ github.event.release.upload_url }} | ||
asset_path: ./sbom.zip | ||
asset_name: SBOM.zip | ||
asset_content_type: application/zip |
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,6 +1,3 @@ | ||
[submodule "experimental/packages/otlp-grpc-exporter-base/protos"] | ||
path = experimental/packages/otlp-grpc-exporter-base/protos | ||
url = https://github.com/open-telemetry/opentelemetry-proto.git | ||
[submodule "experimental/packages/otlp-proto-exporter-base/protos"] | ||
path = experimental/packages/otlp-proto-exporter-base/protos | ||
[submodule "experimental/packages/otlp-transformer/protos"] | ||
path = experimental/packages/otlp-transformer/protos | ||
url = https://github.com/open-telemetry/opentelemetry-proto.git |
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,15 @@ | ||
// https://github.com/DavidAnson/markdownlint-cli2#markdownlint-cli2jsonc | ||
{ | ||
"config": { | ||
// https://github.com/DavidAnson/markdownlint/blob/main/README.md#rules--aliases | ||
"MD013": false, | ||
"MD024": false, | ||
"MD033": false, | ||
"MD041": false, | ||
"MD026": false, | ||
"MD004": { "style": "dash" } // ul-style | ||
}, | ||
"gitignore": true, | ||
"noBanner": true, | ||
"noProgress": true | ||
} |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
require: 'ts-node/register' |
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,3 +1,5 @@ | ||
<!-- markdownlint-disable MD004 --> | ||
|
||
## 2.0 | ||
|
||
### :boom: Breaking Change | ||
|
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,5 +1,5 @@ | ||
# OpenTelemetry JavaScript SDK 2.0 | ||
|
||
> [!WARNING] | ||
> [!WARNING] | ||
> You have found the working branch for the work in progress 2.0 SDK. | ||
> If you are a user, you are probably looking for the 1.x SDK on the main branch. |
Oops, something went wrong.