Skip to content

Commit c8e5340

Browse files
authored
Merge branch 'main' into chore/add-browser-maintainers
2 parents f47614f + ed680dd commit c8e5340

File tree

139 files changed

+6333
-7731
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+6333
-7731
lines changed

.github/component-label-map.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,10 @@ pkg:instrumentation-user-interaction:
245245
- changed-files:
246246
- any-glob-to-any-file:
247247
- packages/instrumentation-user-interaction/**
248+
pkg:instrumentation-web-exception:
249+
- changed-files:
250+
- any-glob-to-any-file:
251+
- packages/instrumentation-web-exception/**
248252
pkg:instrumentation-winston:
249253
- changed-files:
250254
- any-glob-to-any-file:

.github/component_owners.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,10 @@ components:
160160
- t2t2
161161
packages/instrumentation-user-interaction:
162162
- obecny
163+
packages/instrumentation-web-exception:
164+
- martinkuba
165+
- pkanal
166+
- wolfgangcodes
163167
packages/plugin-react-load:
164168
- martinkuba
165169
packages/propagator-instana:

.github/workflows/release-please-validate.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,10 @@ jobs:
1313
rp-validate:
1414
runs-on: ubuntu-latest
1515
container:
16-
image: node:20
16+
image: node:22
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v5
2020

21-
- name: Install glob
22-
run: npm install glob
23-
2421
- name: Ensure Release Please Config and Manifest are in sync with the repository
2522
run: node scripts/check-release-please.mjs

.mocharc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"require": ["ts-node/register/transpile-only"]
3+
}

.mocharc.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.release-please-manifest.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
"packages/instrumentation-router": "0.53.0",
6262
"packages/instrumentation-winston": "0.53.0",
6363
"packages/instrumentation-document-load": "0.54.0",
64+
"packages/instrumentation-web-exception": "0.1.0",
6465
"packages/instrumentation-long-task": "0.53.0",
6566
"packages/instrumentation-user-interaction": "0.53.0",
6667
"packages/plugin-react-load": "0.40.0",

examples/express/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ setupTracing('example-express-server');
2121

2222
// Require in rest of modules
2323
import * as express from 'express';
24-
import * as axios from 'axios';
24+
import axios from 'axios';
2525
import { RequestHandler } from 'express';
2626

2727
// Setup express

karma.webpack.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ module.exports = {
3636
// because the `util` package expects there to be a global variable named `process`.
3737
// Thanks to https://stackoverflow.com/a/65018686/14239942
3838
// NOTE: I wish there was a better way as this pollutes the tests with a defined 'process' global.
39-
process: 'process/browser',
40-
}),
39+
process: 'process/browser.js'
40+
})
4141
],
4242
module: {
4343
rules: [

0 commit comments

Comments
 (0)