forked from open-telemetry/opentelemetry-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update
next
branch (open-telemetry#4294)
* chore: track package-lock.json (open-telemetry#4238) * chore: track package-lock.json * Pin to old versions for node 14 * Use version range * Remove unused cached directories * Temporarily disable other tests * Temporarily enable only api test * Enable only some packages * Test only api packages * Test trace exporters * Fix line ordering * Test all packages except otlp exporters * Add trace http exporter * Add trace proto exporter * Test all but grpc exporters * chore: use npm workspaces and degrade lerna to v6 * chore: get rid of lerna bootstrap * chore: use npx * chore: allow install scripts to setup buf * chore: fix w3c-integration-test cache key * chore: fix cache key * chore: disable resource compat test * chore: fix node_modules assumptions * chore: fix hoisted karma issue * chore: fix markdown linter complaints * chore: lock @grpc/grpc-js to v1.8.21 * Break caches * chore: remove cache * chore: fixup inline commands --------- Co-authored-by: Daniel Dyla <[email protected]> * docs: fixed link to benchmark results (open-telemetry#4233) Co-authored-by: Chengzhong Wu <[email protected]> * chore(deps): update all patch versions (open-telemetry#4215) * fix: otlp json encoding (open-telemetry#4220) Co-authored-by: Marc Pichler <[email protected]> * fix: remove duplicate export star from version.ts (open-telemetry#4225) Co-authored-by: Marc Pichler <[email protected]> * docs: fix sdk-node config instructions (open-telemetry#4249) Co-authored-by: Marc Pichler <[email protected]> * feat(api): publish api esnext target (open-telemetry#4231) * chore: release API 1.7.0/Core 1.18.0/Experimental 0.45.0 (open-telemetry#4254) * fix(sdk-metrics): hand-roll MetricAdvice type as older API versions do not include it (open-telemetry#4260) * chore: prepare release 1.18.1/0.45.1 (open-telemetry#4261) * chore: no need for 'packages' in "lerna.json" (open-telemetry#4264) * Benchmark tests for trace OTLP transform and BatchSpanProcessor (open-telemetry#4218) Co-authored-by: Marc Pichler <[email protected]> * chore: type reference on zone.js (open-telemetry#4257) Co-authored-by: Marc Pichler <[email protected]> * docs: add docker-compose to run prometheus for the experimental example (open-telemetry#4268) Co-authored-by: Marc Pichler <[email protected]> * fix(sdk-logs): avoid map attribute set when count limit exceeded (open-telemetry#4195) Co-authored-by: Marc Pichler <[email protected]> * chore(deps): update dependency chromedriver to v119 [security] (open-telemetry#4280) * chore(deps): update actions/setup-node action to v4 (open-telemetry#4236) * fix(sdk-trace-base): processor onStart called with a span having empty attributes (open-telemetry#4277) Co-authored-by: artahmetaj <[email protected]> * Update fetch instrumentation to be runtime agnostic (open-telemetry#4063) Co-authored-by: Marc Pichler <[email protected]> --------- Co-authored-by: Chengzhong Wu <[email protected]> Co-authored-by: Martin Kuba <[email protected]> Co-authored-by: Mend Renovate <[email protected]> Co-authored-by: Siim Kallas <[email protected]> Co-authored-by: Marc Pichler <[email protected]> Co-authored-by: David Luna <[email protected]> Co-authored-by: Dinko Osrecki <[email protected]> Co-authored-by: Trent Mick <[email protected]> Co-authored-by: François <[email protected]> Co-authored-by: Hyun Oh <[email protected]> Co-authored-by: André Cruz <[email protected]> Co-authored-by: artahmetaj <[email protected]> Co-authored-by: drewcorlin1 <[email protected]>
- Loading branch information
1 parent
1c7d7a3
commit 0f8aa79
Showing
126 changed files
with
64,948 additions
and
1,146 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-node@v3 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node_version }} | ||
|
||
|
@@ -33,31 +33,11 @@ jobs: | |
- run: npm install -g npm@"<10.0.0" | ||
if: ${{ matrix.node_version == '14' || matrix.node_version == '16' }} | ||
|
||
- name: restore lerna | ||
id: cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
node_modules | ||
package-lock.json | ||
packages/*/node_modules | ||
packages/*/package-lock.json | ||
experimental/packages/*/node_modules | ||
experimental/packages/*/package-lock.json | ||
key: node-tests-${{ runner.os }}-${{ matrix.node_version }}-${{ hashFiles('package.json', 'packages/*/package.json', 'experimental/packages/*/package.json') }}-04292022 | ||
|
||
# temporary fix for https://github.com/nrwl/nx/issues/19022 | ||
- run: npm install --save-dev [email protected] @nx/[email protected] | ||
if: ${{ matrix.node_version == '14' }} | ||
|
||
- name: Bootstrap | ||
run: | | ||
npm install --ignore-scripts | ||
npx lerna bootstrap --no-ci --hoist --nohoist='zone.js' --ignore @opentelemetry/selenium-tests | ||
run: npm ci | ||
|
||
- name: Build 🔧 | ||
run: | | ||
npm run compile | ||
run: npm run compile | ||
|
||
- name: Unit tests | ||
run: | | ||
|
@@ -77,29 +57,14 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-node@v3 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: '18' | ||
|
||
- run: npm install -g npm@latest | ||
|
||
- name: restore lerna | ||
id: cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
node_modules | ||
package-lock.json | ||
packages/*/node_modules | ||
packages/*/package-lock.json | ||
experimental/packages/*/node_modules | ||
experimental/packages/*/package-lock.json | ||
key: node-windows-tests-${{ runner.os }}-${{ hashFiles('package.json', 'packages/*/package.json', 'experimental/packages/*/package.json') }} | ||
|
||
- name: Bootstrap | ||
run: | | ||
npm install --ignore-scripts | ||
npx lerna bootstrap --no-ci --hoist --nohoist='zone.js' --ignore @opentelemetry/selenium-tests | ||
run: npm ci | ||
|
||
- name: Build 🔧 | ||
run: | | ||
|
@@ -118,31 +83,15 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-node@v3 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 16 | ||
|
||
- name: restore lerna | ||
id: cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
node_modules | ||
package-lock.json | ||
packages/*/node_modules | ||
packages/*/package-lock.json | ||
experimental/packages/*/node_modules | ||
experimental/packages/*/package-lock.json | ||
key: browser-tests-${{ runner.os }}-${{ hashFiles('package.json', 'packages/*/package.json', 'experimental/packages/*/package.json') }}-04292022 | ||
|
||
- name: Bootstrap | ||
run: | | ||
npm install --ignore-scripts | ||
npx lerna bootstrap --no-ci --hoist --nohoist='zone.js' --ignore @opentelemetry/selenium-tests | ||
run: npm ci | ||
|
||
- name: Build 🔧 | ||
run: | | ||
npm run compile | ||
run: npm run compile | ||
|
||
- name: Unit tests | ||
run: npm run test:browser | ||
|
@@ -155,31 +104,15 @@ jobs: | |
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
- uses: actions/setup-node@v3 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 16 | ||
|
||
- name: restore lerna | ||
id: cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
node_modules | ||
package-lock.json | ||
packages/*/node_modules | ||
packages/*/package-lock.json | ||
experimental/packages/*/node_modules | ||
experimental/packages/*/package-lock.json | ||
key: webworker-tests-${{ runner.os }}-${{ hashFiles('package.json', 'packages/*/package.json', 'experimental/packages/*/package.json') }}-04292022 | ||
|
||
- name: Bootstrap | ||
run: | | ||
npm install --ignore-scripts | ||
npx lerna bootstrap --no-ci --hoist --nohoist='zone.js' | ||
run: npm ci | ||
|
||
- name: Build 🔧 | ||
run: | | ||
npm run compile | ||
run: npm run compile | ||
|
||
- name: Unit tests | ||
run: npm run test:webworker | ||
|
@@ -198,7 +131,7 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-node@v3 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node_version }} | ||
|
||
|
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 |
---|---|---|
|
@@ -66,7 +66,6 @@ typings/ | |
|
||
# lock files | ||
yarn.lock | ||
package-lock.json | ||
|
||
# docs files | ||
docs | ||
|
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.