Skip to content

Commit 5f02926

Browse files
Bump bun from 1.2.22 to 1.2.23 in the bun group (#1569)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Arda TANRIKULU <[email protected]>
1 parent dcc58d0 commit 5f02926

File tree

4 files changed

+96
-93
lines changed

4 files changed

+96
-93
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"@yarnpkg/cli": "4.10.3",
4545
"@yarnpkg/core": "4.4.4",
4646
"@yarnpkg/plugin-pack": "4.0.3",
47-
"bun": "1.2.22",
47+
"bun": "1.2.23",
4848
"cross-env": "10.1.0",
4949
"eslint": "9.36.0",
5050
"eslint-plugin-import": "2.32.0",

packages/gateway/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,11 +141,11 @@
141141
"@rollup/plugin-sucrase": "^5.0.2",
142142
"@tsconfig/node18": "^18.2.4",
143143
"@types/adm-zip": "^0.5.5",
144-
"@types/bun": "1.2.22",
144+
"@types/bun": "1.2.23",
145145
"@types/ws": "^8.5.12",
146146
"@whatwg-node/fetch": "^0.10.11",
147147
"adm-zip": "^0.5.15",
148-
"bun": "^1.2.22",
148+
"bun": "^1.2.23",
149149
"graphql": "^16.9.0",
150150
"parse-duration": "^2.0.0",
151151
"pkgroll": "2.15.4",

packages/pubsub/tests/pubsub.test.ts

Lines changed: 31 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -20,35 +20,38 @@ for (const PubSub of PubSubCtors) {
2020
)(PubSub.name, () => {
2121
let redis: Container | null = null;
2222
let nats: Container | null = null;
23-
beforeAll(async () => {
24-
switch (PubSub) {
25-
case RedisPubSub: {
26-
const { container } = createTenv(__dirname);
27-
redis = await container({
28-
name: 'redis',
29-
image: 'redis:8',
30-
containerPort: 6379,
31-
healthcheck: ['CMD-SHELL', 'redis-cli ping'],
32-
env: {
33-
LANG: '', // fixes "Failed to configure LOCALE for invalid locale name."
34-
},
35-
});
36-
return;
23+
beforeAll(
24+
async () => {
25+
switch (PubSub) {
26+
case RedisPubSub: {
27+
const { container } = createTenv(__dirname);
28+
redis = await container({
29+
name: 'redis',
30+
image: 'redis:8',
31+
containerPort: 6379,
32+
healthcheck: ['CMD-SHELL', 'redis-cli ping'],
33+
env: {
34+
LANG: '', // fixes "Failed to configure LOCALE for invalid locale name."
35+
},
36+
});
37+
return;
38+
}
39+
case NATSPubSub:
40+
const { container } = createTenv(__dirname);
41+
nats = await container({
42+
name: 'nats',
43+
image: 'nats:2.11-alpine', // we want alpine for healtcheck
44+
containerPort: 4222,
45+
healthcheck: [
46+
'CMD-SHELL',
47+
'wget --spider http://localhost:8222/healthz',
48+
],
49+
});
50+
break;
3751
}
38-
case NATSPubSub:
39-
const { container } = createTenv(__dirname);
40-
nats = await container({
41-
name: 'nats',
42-
image: 'nats:2.11-alpine', // we want alpine for healtcheck
43-
containerPort: 4222,
44-
healthcheck: [
45-
'CMD-SHELL',
46-
'wget --spider http://localhost:8222/healthz',
47-
],
48-
});
49-
break;
50-
}
51-
}, 60_000);
52+
},
53+
globalThis.Bun ? undefined : 60_000,
54+
);
5255

5356
/** Imitates a flush of data/operations by simply waiting, if the pubsub is async, like Redis. */
5457
function flush(ms: number = 100) {

yarn.lock

Lines changed: 62 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -4237,11 +4237,11 @@ __metadata:
42374237
"@rollup/plugin-sucrase": "npm:^5.0.2"
42384238
"@tsconfig/node18": "npm:^18.2.4"
42394239
"@types/adm-zip": "npm:^0.5.5"
4240-
"@types/bun": "npm:1.2.22"
4240+
"@types/bun": "npm:1.2.23"
42414241
"@types/ws": "npm:^8.5.12"
42424242
"@whatwg-node/fetch": "npm:^0.10.11"
42434243
adm-zip: "npm:^0.5.15"
4244-
bun: "npm:^1.2.22"
4244+
bun: "npm:^1.2.23"
42454245
commander: "npm:^14.0.1"
42464246
dotenv: "npm:^17.2.3"
42474247
graphql: "npm:^16.9.0"
@@ -7893,79 +7893,79 @@ __metadata:
78937893
languageName: node
78947894
linkType: hard
78957895

7896-
"@oven/bun-darwin-aarch64@npm:1.2.22":
7897-
version: 1.2.22
7898-
resolution: "@oven/bun-darwin-aarch64@npm:1.2.22"
7896+
"@oven/bun-darwin-aarch64@npm:1.2.23":
7897+
version: 1.2.23
7898+
resolution: "@oven/bun-darwin-aarch64@npm:1.2.23"
78997899
conditions: os=darwin & cpu=arm64
79007900
languageName: node
79017901
linkType: hard
79027902

7903-
"@oven/bun-darwin-x64-baseline@npm:1.2.22":
7904-
version: 1.2.22
7905-
resolution: "@oven/bun-darwin-x64-baseline@npm:1.2.22"
7903+
"@oven/bun-darwin-x64-baseline@npm:1.2.23":
7904+
version: 1.2.23
7905+
resolution: "@oven/bun-darwin-x64-baseline@npm:1.2.23"
79067906
conditions: os=darwin & cpu=x64
79077907
languageName: node
79087908
linkType: hard
79097909

7910-
"@oven/bun-darwin-x64@npm:1.2.22":
7911-
version: 1.2.22
7912-
resolution: "@oven/bun-darwin-x64@npm:1.2.22"
7910+
"@oven/bun-darwin-x64@npm:1.2.23":
7911+
version: 1.2.23
7912+
resolution: "@oven/bun-darwin-x64@npm:1.2.23"
79137913
conditions: os=darwin & cpu=x64
79147914
languageName: node
79157915
linkType: hard
79167916

7917-
"@oven/bun-linux-aarch64-musl@npm:1.2.22":
7918-
version: 1.2.22
7919-
resolution: "@oven/bun-linux-aarch64-musl@npm:1.2.22"
7920-
conditions: os=linux & cpu=aarch64
7917+
"@oven/bun-linux-aarch64-musl@npm:1.2.23":
7918+
version: 1.2.23
7919+
resolution: "@oven/bun-linux-aarch64-musl@npm:1.2.23"
7920+
conditions: os=linux & cpu=arm64
79217921
languageName: node
79227922
linkType: hard
79237923

7924-
"@oven/bun-linux-aarch64@npm:1.2.22":
7925-
version: 1.2.22
7926-
resolution: "@oven/bun-linux-aarch64@npm:1.2.22"
7924+
"@oven/bun-linux-aarch64@npm:1.2.23":
7925+
version: 1.2.23
7926+
resolution: "@oven/bun-linux-aarch64@npm:1.2.23"
79277927
conditions: os=linux & cpu=arm64
79287928
languageName: node
79297929
linkType: hard
79307930

7931-
"@oven/bun-linux-x64-baseline@npm:1.2.22":
7932-
version: 1.2.22
7933-
resolution: "@oven/bun-linux-x64-baseline@npm:1.2.22"
7931+
"@oven/bun-linux-x64-baseline@npm:1.2.23":
7932+
version: 1.2.23
7933+
resolution: "@oven/bun-linux-x64-baseline@npm:1.2.23"
79347934
conditions: os=linux & cpu=x64
79357935
languageName: node
79367936
linkType: hard
79377937

7938-
"@oven/bun-linux-x64-musl-baseline@npm:1.2.22":
7939-
version: 1.2.22
7940-
resolution: "@oven/bun-linux-x64-musl-baseline@npm:1.2.22"
7938+
"@oven/bun-linux-x64-musl-baseline@npm:1.2.23":
7939+
version: 1.2.23
7940+
resolution: "@oven/bun-linux-x64-musl-baseline@npm:1.2.23"
79417941
conditions: os=linux & cpu=x64
79427942
languageName: node
79437943
linkType: hard
79447944

7945-
"@oven/bun-linux-x64-musl@npm:1.2.22":
7946-
version: 1.2.22
7947-
resolution: "@oven/bun-linux-x64-musl@npm:1.2.22"
7945+
"@oven/bun-linux-x64-musl@npm:1.2.23":
7946+
version: 1.2.23
7947+
resolution: "@oven/bun-linux-x64-musl@npm:1.2.23"
79487948
conditions: os=linux & cpu=x64
79497949
languageName: node
79507950
linkType: hard
79517951

7952-
"@oven/bun-linux-x64@npm:1.2.22":
7953-
version: 1.2.22
7954-
resolution: "@oven/bun-linux-x64@npm:1.2.22"
7952+
"@oven/bun-linux-x64@npm:1.2.23":
7953+
version: 1.2.23
7954+
resolution: "@oven/bun-linux-x64@npm:1.2.23"
79557955
conditions: os=linux & cpu=x64
79567956
languageName: node
79577957
linkType: hard
79587958

7959-
"@oven/bun-windows-x64-baseline@npm:1.2.22":
7960-
version: 1.2.22
7961-
resolution: "@oven/bun-windows-x64-baseline@npm:1.2.22"
7959+
"@oven/bun-windows-x64-baseline@npm:1.2.23":
7960+
version: 1.2.23
7961+
resolution: "@oven/bun-windows-x64-baseline@npm:1.2.23"
79627962
conditions: os=win32 & cpu=x64
79637963
languageName: node
79647964
linkType: hard
79657965

7966-
"@oven/bun-windows-x64@npm:1.2.22":
7967-
version: 1.2.22
7968-
resolution: "@oven/bun-windows-x64@npm:1.2.22"
7966+
"@oven/bun-windows-x64@npm:1.2.23":
7967+
version: 1.2.23
7968+
resolution: "@oven/bun-windows-x64@npm:1.2.23"
79697969
conditions: os=win32 & cpu=x64
79707970
languageName: node
79717971
linkType: hard
@@ -9438,12 +9438,12 @@ __metadata:
94389438
languageName: node
94399439
linkType: hard
94409440

9441-
"@types/bun@npm:1.2.22":
9442-
version: 1.2.22
9443-
resolution: "@types/bun@npm:1.2.22"
9441+
"@types/bun@npm:1.2.23":
9442+
version: 1.2.23
9443+
resolution: "@types/bun@npm:1.2.23"
94449444
dependencies:
9445-
bun-types: "npm:1.2.22"
9446-
checksum: 10c0/2d9ae0e1abd52ee6472bba7ff92b8c281a5e5a26a6c3506cdbf854461606ace6ca22764783729df6430351cf6d39552e69e78280dc981251b99747eafe64a807
9445+
bun-types: "npm:1.2.23"
9446+
checksum: 10c0/2131350bf822f3147cb526106b0354fd87e49fb65d3e888042270f7b04ed7aa46c04070e9a68fd7a4cb831b0b0028d82146ef18ab4a6b82a5be6acc504acc253
94479447
languageName: node
94489448
linkType: hard
94499449

@@ -12041,32 +12041,32 @@ __metadata:
1204112041
languageName: node
1204212042
linkType: hard
1204312043

12044-
"bun-types@npm:1.2.22":
12045-
version: 1.2.22
12046-
resolution: "bun-types@npm:1.2.22"
12044+
"bun-types@npm:1.2.23":
12045+
version: 1.2.23
12046+
resolution: "bun-types@npm:1.2.23"
1204712047
dependencies:
1204812048
"@types/node": "npm:*"
1204912049
peerDependencies:
1205012050
"@types/react": ^19
12051-
checksum: 10c0/fe9ecbdd9777b00e791be74cb018793ad6b4bd2ed069fa3f55601249328420d498f98189c448f3d179ed02efd79916693d7327ef4ec913de4f616ce4f000206f
12051+
checksum: 10c0/31eb03566d24b897cde45455753eb1ec3936c7dad226a8938900cae558af1f27c30cc647309fc6be9e0d4f355ec8a9026576398ef2b5c602c0b1c50a348bfc79
1205212052
languageName: node
1205312053
linkType: hard
1205412054

12055-
"bun@npm:1.2.22, bun@npm:^1.2.22":
12056-
version: 1.2.22
12057-
resolution: "bun@npm:1.2.22"
12055+
"bun@npm:1.2.23, bun@npm:^1.2.23":
12056+
version: 1.2.23
12057+
resolution: "bun@npm:1.2.23"
1205812058
dependencies:
12059-
"@oven/bun-darwin-aarch64": "npm:1.2.22"
12060-
"@oven/bun-darwin-x64": "npm:1.2.22"
12061-
"@oven/bun-darwin-x64-baseline": "npm:1.2.22"
12062-
"@oven/bun-linux-aarch64": "npm:1.2.22"
12063-
"@oven/bun-linux-aarch64-musl": "npm:1.2.22"
12064-
"@oven/bun-linux-x64": "npm:1.2.22"
12065-
"@oven/bun-linux-x64-baseline": "npm:1.2.22"
12066-
"@oven/bun-linux-x64-musl": "npm:1.2.22"
12067-
"@oven/bun-linux-x64-musl-baseline": "npm:1.2.22"
12068-
"@oven/bun-windows-x64": "npm:1.2.22"
12069-
"@oven/bun-windows-x64-baseline": "npm:1.2.22"
12059+
"@oven/bun-darwin-aarch64": "npm:1.2.23"
12060+
"@oven/bun-darwin-x64": "npm:1.2.23"
12061+
"@oven/bun-darwin-x64-baseline": "npm:1.2.23"
12062+
"@oven/bun-linux-aarch64": "npm:1.2.23"
12063+
"@oven/bun-linux-aarch64-musl": "npm:1.2.23"
12064+
"@oven/bun-linux-x64": "npm:1.2.23"
12065+
"@oven/bun-linux-x64-baseline": "npm:1.2.23"
12066+
"@oven/bun-linux-x64-musl": "npm:1.2.23"
12067+
"@oven/bun-linux-x64-musl-baseline": "npm:1.2.23"
12068+
"@oven/bun-windows-x64": "npm:1.2.23"
12069+
"@oven/bun-windows-x64-baseline": "npm:1.2.23"
1207012070
dependenciesMeta:
1207112071
"@oven/bun-darwin-aarch64":
1207212072
optional: true
@@ -12093,8 +12093,8 @@ __metadata:
1209312093
bin:
1209412094
bun: bin/bun.exe
1209512095
bunx: bin/bunx.exe
12096-
checksum: 10c0/d7fd575e18b97812d74d5a734e5bc621d67037c7afc4609c1763e962c638144111f66ce77475b159e44a59066784503d8b404db82575a57e4da58c83e33fa2e2
12097-
conditions: (os=darwin | os=linux | os=win32) & (cpu=arm64 | cpu=x64 | cpu=aarch64)
12096+
checksum: 10c0/94715a50196df2f4b67dc921607f45a24822c5d37166b9157ed0f53e6bae07b7db4f55955b02bebf25758dd16ba502e3afced51f8fb11672e73f55045c617a9a
12097+
conditions: (os=darwin | os=linux | os=win32) & (cpu=arm64 | cpu=x64)
1209812098
languageName: node
1209912099
linkType: hard
1210012100

@@ -14858,7 +14858,7 @@ __metadata:
1485814858
"@yarnpkg/cli": "npm:4.10.3"
1485914859
"@yarnpkg/core": "npm:4.4.4"
1486014860
"@yarnpkg/plugin-pack": "npm:4.0.3"
14861-
bun: "npm:1.2.22"
14861+
bun: "npm:1.2.23"
1486214862
cross-env: "npm:10.1.0"
1486314863
eslint: "npm:9.36.0"
1486414864
eslint-plugin-import: "npm:2.32.0"

0 commit comments

Comments
 (0)