Skip to content

Commit e0deab9

Browse files
committed
chore(deps): squash dependency updates
Squashed Renovate PRs: - google#332 (tmp to v0.2.6) - google#330 (protobufjs-cli to v1.3.2) - google#328 (protobufjs to ~7.6.0) - google#325/google#317 (debian docker tag to 12) - google#323 (@mapbox/node-pre-gyp to v2) - google#322 (@types/sinon to v21) - google#319 (mocha to v11) - google#318 (linkinator to v7) - google#316 (golang docker tag to 1.24) - google#289 (@types/pretty-ms to v5) Excluded: - google#326 (p-limit to v7) because versions >= 4.0.0 are ESM-only. TAG=agy CONV=4ca117e0-d8fa-4e4c-8cfa-b52e896710d3
1 parent fe45b35 commit e0deab9

8 files changed

Lines changed: 7715 additions & 303 deletions

File tree

js-green-licenses.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"packageAllowlist": [
3+
"tar",
4+
"minipass",
5+
"chownr",
6+
"yallist"
7+
]
8+
}

package-lock.json

Lines changed: 391 additions & 297 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

system-test/Dockerfile.linux

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM golang:1.22-bullseye as builder
1+
FROM golang:1.24-bullseye as builder
22
RUN apt-get update && apt-get install -y \
33
git \
44
&& rm -rf /var/lib/apt/lists/*
55
WORKDIR /root/
66
RUN go install github.com/google/pprof@v0.0.0-20240827171923-fa2c70bbbfe5
77

8-
FROM debian:11
8+
FROM debian:12
99

1010
ARG NODE_VERSION
1111
ARG ADDITIONAL_PACKAGES

system-test/Dockerfile.node-alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG NODE_VERSION
22

3-
FROM golang:1.22-alpine as builder
3+
FROM golang:1.24-alpine as builder
44
RUN apk add --no-cache git
55
WORKDIR /root/
66
RUN go install github.com/google/pprof@v0.0.0-20240827171923-fa2c70bbbfe5

system-test/busybench-js/src/busybench.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ function busyLoop(durationSeconds) {
3131
}
3232
}
3333
if (Date.now() - startTime < 1000 * durationSeconds) {
34-
setTimeout(() => busyLoop(durationSeconds), 5);
34+
const busyLoopTick = () => {
35+
busyLoop(durationSeconds);
36+
};
37+
setTimeout(busyLoopTick, 5);
3538
}
3639
}
3740

system-test/busybench/src/busybench.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ function busyLoop(durationSeconds: number) {
3333
}
3434
}
3535
if (Date.now() - startTime < 1000 * durationSeconds) {
36-
setTimeout(() => busyLoop(durationSeconds), 5);
36+
const busyLoopTick = () => {
37+
busyLoop(durationSeconds);
38+
};
39+
setTimeout(busyLoopTick, 5);
3740
}
3841
}
3942

system-test/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ node --trace-warnings "$BENCHPATH" 10 $VERIFY_TIME_LINE_NUMBERS
6060

6161
if [[ "$VERIFY_TIME_LINE_NUMBERS" == "true" ]]; then
6262
pprof -lines -top -nodecount=2 time.pb.gz | tee $tty | \
63-
grep "busyLoop.*src/busybench.js:[2-3][08-9]"
63+
grep "busyLoop.*src/busybench.js:[2-4][0-9]"
6464
pprof -filefunctions -top -nodecount=2 heap.pb.gz | tee $tty | \
6565
grep "busyLoop.*src/busybench.js"
6666
else

system_test_failure2.log

Lines changed: 7304 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)