Skip to content
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

v5.21.0 proposal #4590

Merged
merged 19 commits into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
de55e5d
Fix @types/node to version 18.x (#4532)
watson Jul 25, 2024
9789ae8
Update @datadog/native-iast-taint-tracking to 3.1.0 to support linuxm…
uurien Aug 1, 2024
c092810
Add CI options to prepare and merge release branches (#4548)
uurien Aug 1, 2024
ee81689
Revise OTel Context and API Implementation To Enable OTel Auto Instru…
khanayan123 Aug 2, 2024
34f75c1
use SSI variables on release builds (#4571)
bengl Aug 2, 2024
b25c34c
[test visibility] Add total code coverage measure to vitest (#4570)
juan-fernandez Aug 5, 2024
8e4edc9
Run onboarding tests with and without profiling (#4572)
randomanderson Aug 5, 2024
20ac152
[test-visibility] Add compatibility with nyc's `all` input (#4568)
juan-fernandez Aug 6, 2024
74edd32
Update native-iast-rewriter to fix bug with template literals (#4584)
uurien Aug 8, 2024
28db9d4
[test-visibility] Update telemetry for test visibility (#4575)
juan-fernandez Aug 8, 2024
d9ae471
Fix ALS continuation bug in body-parser (#4582)
simon-id Aug 9, 2024
16a4604
[test visibility] Add check to determine whether git is available (#4…
juan-fernandez Aug 9, 2024
173f420
Fix release proposal ci (#4589)
uurien Aug 9, 2024
039d9f4
Add missing configuration values to telemetry (#4580)
simon-id Aug 9, 2024
dfa98ac
ensure require-package-json is called with try-catch (#4587)
bengl Aug 12, 2024
110109a
Update TraceProvider Constructors Typings (#4596)
khanayan123 Aug 12, 2024
5451aa0
simplify github actions for plugins (#4547)
bengl Aug 12, 2024
b443390
correctly handle 128 bits traceids in log injection (#4601)
khanayan123 Aug 13, 2024
725f161
v5.21.0
uurien Aug 13, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/actions/plugins/test-and-upstream/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Plugin Tests
runs:
using: composite
steps:
- uses: ./.github/actions/testagent/start
- uses: ./.github/actions/node/setup
- uses: ./.github/actions/install
- uses: ./.github/actions/node/oldest
- run: yarn test:plugins:ci
shell: bash
- run: yarn test:plugins:upstream
shell: bash
- uses: ./.github/actions/node/latest
- run: yarn test:plugins:ci
shell: bash
- run: yarn test:plugins:upstream
shell: bash
- uses: codecov/codecov-action@v3
- if: always()
uses: ./.github/actions/testagent/logs
16 changes: 16 additions & 0 deletions .github/actions/plugins/test/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Plugin Tests
runs:
using: composite
steps:
- uses: ./.github/actions/testagent/start
- uses: ./.github/actions/node/setup
- uses: ./.github/actions/install
- uses: ./.github/actions/node/oldest
- run: yarn test:plugins:ci
shell: bash
- uses: ./.github/actions/node/latest
- run: yarn test:plugins:ci
shell: bash
- uses: codecov/codecov-action@v3
- if: always()
uses: ./.github/actions/testagent/logs
16 changes: 16 additions & 0 deletions .github/actions/plugins/upstream/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Plugin Upstream Tests
runs:
using: composite
steps:
- uses: ./.github/actions/testagent/start
- uses: ./.github/actions/node/setup
- uses: ./.github/actions/install
- uses: ./.github/actions/node/oldest
- run: yarn test:plugins:upstream
shell: bash
- uses: ./.github/actions/node/latest
- run: yarn test:plugins:upstream
shell: bash
- uses: codecov/codecov-action@v3
- if: always()
uses: ./.github/actions/testagent/logs
Loading
Loading