Skip to content

Commit 2bbfe75

Browse files
committed
remove workers, add changes entry
1 parent 555e52f commit 2bbfe75

File tree

4 files changed

+17
-52
lines changed

4 files changed

+17
-52
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1335,9 +1335,11 @@ jobs:
13351335
git config --global --add safe.directory "*"
13361336
13371337
- name: Install yarn
1338-
run: |
1339-
npm i -g [email protected] --force
1340-
yarn config set network-timeout 600000 -g
1338+
run: npm i -g [email protected] --force
1339+
1340+
- name: Increase yarn network timeout on Windows
1341+
if: contains(matrix.os, 'windows')
1342+
run: yarn config set network-timeout 600000 -g
13411343

13421344
- name: Setup python
13431345
uses: actions/setup-python@v4

packages/profiling-node/CHANGES

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## This is an old changelog.
2+
3+
The profiling-node package has since been migrated to sentry-javascript monorepo. Any changes to this package made after
4+
the migration are now tracked in the root CHANGELOG.md.
5+
16
## 1.3.3
27

38
### Various fixes & improvements
@@ -63,7 +68,7 @@
6368

6469
- deps(sentry): bump sentry deps (#203) by @sanjaytwisk
6570
- build(deps-dev): bump @babel/traverse from 7.22.20 to 7.23.2 (#202) by @dependabot
66-
- feat(preprocessEvent): emit preprocessEvent for profiles (#198) by @JonasBa
71+
- feat(preprocessEvent): emit preprocessEvent for profiles (#198) by @JonasBa
6772
- Update README.md to include Next.js 13+ bundling (#200) by @Negan1911
6873

6974
## 1.2.1
@@ -109,7 +114,8 @@
109114

110115
- bindings: prebuild more binaries for node 20 (#177) by @JonasBa
111116
- build(deps): bump semver from 6.3.0 to 6.3.1 (#175) by @dependabot
112-
- ref(profiling): change import so contextReplacementPlugin can ignore warning and attempt to provide darwin binaries (#176) by @JonasBa
117+
- ref(profiling): change import so contextReplacementPlugin can ignore warning and attempt to provide darwin binaries
118+
(#176) by @JonasBa
113119

114120
## 1.0.9
115121

@@ -497,4 +503,3 @@
497503
- fix(ci): run ci for release (#28) by @JonasBa
498504
- chore(craft): add bump version script (#26) by @JonasBa
499505
- chore(changelog): add changelog (#25) by @JonasBa
500-

packages/profiling-node/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ We currently ship prebuilt binaries for a few of the most common platforms and n
7575
- Linux x64 (glibc)
7676
- Windows x64
7777

78-
For a more detailed list, see our build.yml workflow.
78+
For a more detailed list, see job_compile_bindings_profiling_node job in our build.yml github action workflow.
7979

8080
### Bundling
8181

@@ -296,6 +296,6 @@ to exploring the possibilities. Please file an issue if you have suggestions or
296296
### How much overhead will this profiler add?
297297

298298
The profiler uses the kEagerLogging option by default which trades off fast calls to startProfiling for a small amount
299-
of constant CPU overhead. If you are using kEagerLogging then the tradeoff is reversed and there will be no CPU overhead
300-
while the profiler is not running, but calls to startProfiling could be slow (in our tests, this varies by environments
301-
and node versions, but could be in the order of a couple 100ms).
299+
of constant CPU overhead. If you are using kEagerLogging then the tradeoff is reversed and there will be a small CPU
300+
overhead while the profiler is not running, but calls to startProfiling could be slow (in our tests, this varies by
301+
environments and node versions, but could be in the order of a couple 100ms).

packages/profiling-node/WORKERS.md

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)