Skip to content

Commit f01357c

Browse files
author
Mert Can Altin
committed
stream: Fix util.inspect for compression/decompressionStream
1 parent ec15504 commit f01357c

File tree

3,820 files changed

+60586
-415487
lines changed

Some content is hidden

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

3,820 files changed

+60586
-415487
lines changed

.github/workflows/build-tarball.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ concurrency:
2828
cancel-in-progress: true
2929

3030
env:
31-
PYTHON_VERSION: '3.12'
31+
PYTHON_VERSION: '3.11'
3232
FLAKY_TESTS: keep_retrying
3333

3434
permissions:
@@ -43,7 +43,7 @@ jobs:
4343
with:
4444
persist-credentials: false
4545
- name: Set up Python ${{ env.PYTHON_VERSION }}
46-
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
46+
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
4747
with:
4848
python-version: ${{ env.PYTHON_VERSION }}
4949
- name: Environment Information
@@ -69,13 +69,13 @@ jobs:
6969
with:
7070
persist-credentials: false
7171
- name: Set up Python ${{ env.PYTHON_VERSION }}
72-
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
72+
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
7373
with:
7474
python-version: ${{ env.PYTHON_VERSION }}
7575
- name: Environment Information
7676
run: npx envinfo
7777
- name: Download tarball
78-
uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 # v4.1.4
78+
uses: actions/download-artifact@87c55149d96e628cc2ef7e6fc2aab372015aec85 # v4.1.3
7979
with:
8080
name: tarballs
8181
path: tarballs

.github/workflows/build-windows.yml

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,34 @@ name: Build Windows
22

33
on:
44
pull_request:
5-
paths-ignore:
6-
- README.md
7-
- .github/**
8-
- '!.github/workflows/build-windows.yml'
5+
paths:
6+
- lib/**/*.js
7+
- Makefile
8+
- src/**/*.cc
9+
- src/**/*.h
10+
- tools/gyp/**
11+
- .github/workflows/build-windows.yml
912
types: [opened, synchronize, reopened, ready_for_review]
1013
push:
1114
branches:
1215
- main
1316
- canary
1417
- v[0-9]+.x-staging
1518
- v[0-9]+.x
16-
paths-ignore:
17-
- README.md
18-
- .github/**
19-
- '!.github/workflows/build-windows.yml'
19+
paths:
20+
- lib/**/*.js
21+
- Makefile
22+
- src/**/*.cc
23+
- src/**/*.h
24+
- tools/gyp/**
25+
- .github/workflows/build-windows.yml
2026

2127
concurrency:
2228
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
2329
cancel-in-progress: true
2430

2531
env:
26-
PYTHON_VERSION: '3.12'
32+
PYTHON_VERSION: '3.11'
2733
FLAKY_TESTS: keep_retrying
2834

2935
permissions:
@@ -42,7 +48,7 @@ jobs:
4248
with:
4349
persist-credentials: false
4450
- name: Set up Python ${{ env.PYTHON_VERSION }}
45-
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
51+
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
4652
with:
4753
python-version: ${{ env.PYTHON_VERSION }}
4854
- name: Install deps

.github/workflows/coverage-linux-without-intl.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ concurrency:
3030
cancel-in-progress: true
3131

3232
env:
33-
PYTHON_VERSION: '3.12'
33+
PYTHON_VERSION: '3.11'
3434
FLAKY_TESTS: keep_retrying
3535

3636
permissions:
@@ -45,7 +45,7 @@ jobs:
4545
with:
4646
persist-credentials: false
4747
- name: Set up Python ${{ env.PYTHON_VERSION }}
48-
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
48+
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
4949
with:
5050
python-version: ${{ env.PYTHON_VERSION }}
5151
- name: Environment Information
@@ -68,7 +68,7 @@ jobs:
6868
- name: Clean tmp
6969
run: rm -rf coverage/tmp && rm -rf out
7070
- name: Upload
71-
uses: codecov/codecov-action@c16abc29c95fcf9174b58eb7e1abf4c866893bc8 # v4.1.1
71+
uses: codecov/codecov-action@54bcd8715eee62d40e33596ef5e8f0f48dbbccab # v4.1.0
7272
with:
7373
directory: ./coverage
7474
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/coverage-linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ concurrency:
3030
cancel-in-progress: true
3131

3232
env:
33-
PYTHON_VERSION: '3.12'
33+
PYTHON_VERSION: '3.11'
3434
FLAKY_TESTS: keep_retrying
3535

3636
permissions:
@@ -45,7 +45,7 @@ jobs:
4545
with:
4646
persist-credentials: false
4747
- name: Set up Python ${{ env.PYTHON_VERSION }}
48-
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
48+
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
4949
with:
5050
python-version: ${{ env.PYTHON_VERSION }}
5151
- name: Environment Information
@@ -68,7 +68,7 @@ jobs:
6868
- name: Clean tmp
6969
run: rm -rf coverage/tmp && rm -rf out
7070
- name: Upload
71-
uses: codecov/codecov-action@c16abc29c95fcf9174b58eb7e1abf4c866893bc8 # v4.1.1
71+
uses: codecov/codecov-action@54bcd8715eee62d40e33596ef5e8f0f48dbbccab # v4.1.0
7272
with:
7373
directory: ./coverage
7474
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/coverage-windows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ concurrency:
3030
cancel-in-progress: true
3131

3232
env:
33-
PYTHON_VERSION: '3.12'
33+
PYTHON_VERSION: '3.11'
3434
FLAKY_TESTS: keep_retrying
3535

3636
permissions:
@@ -45,7 +45,7 @@ jobs:
4545
with:
4646
persist-credentials: false
4747
- name: Set up Python ${{ env.PYTHON_VERSION }}
48-
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
48+
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
4949
with:
5050
python-version: ${{ env.PYTHON_VERSION }}
5151
- name: Install deps
@@ -67,7 +67,7 @@ jobs:
6767
- name: Clean tmp
6868
run: npx rimraf ./coverage/tmp
6969
- name: Upload
70-
uses: codecov/codecov-action@c16abc29c95fcf9174b58eb7e1abf4c866893bc8 # v4.1.1
70+
uses: codecov/codecov-action@54bcd8715eee62d40e33596ef5e8f0f48dbbccab # v4.1.0
7171
with:
7272
directory: ./coverage
7373
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/daily-wpt-fyi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
- cron: 30 0 * * *
1919

2020
env:
21-
PYTHON_VERSION: '3.12'
21+
PYTHON_VERSION: '3.11'
2222

2323
permissions:
2424
contents: read
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: Set up Python ${{ env.PYTHON_VERSION }}
36-
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
36+
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
3737
with:
3838
python-version: ${{ env.PYTHON_VERSION }}
3939
- name: Environment Information

.github/workflows/linters.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414
cancel-in-progress: true
1515

1616
env:
17-
PYTHON_VERSION: '3.12'
17+
PYTHON_VERSION: '3.11'
1818
NODE_VERSION: lts/*
1919

2020
permissions:
@@ -44,7 +44,7 @@ jobs:
4444
with:
4545
persist-credentials: false
4646
- name: Set up Python ${{ env.PYTHON_VERSION }}
47-
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
47+
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
4848
with:
4949
python-version: ${{ env.PYTHON_VERSION }}
5050
- name: Environment Information
@@ -64,7 +64,7 @@ jobs:
6464
with:
6565
node-version: ${{ env.NODE_VERSION }}
6666
- name: Set up Python ${{ env.PYTHON_VERSION }}
67-
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
67+
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
6868
with:
6969
python-version: ${{ env.PYTHON_VERSION }}
7070
- name: Environment Information
@@ -122,7 +122,7 @@ jobs:
122122
with:
123123
persist-credentials: false
124124
- name: Set up Python ${{ env.PYTHON_VERSION }}
125-
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
125+
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
126126
with:
127127
python-version: ${{ env.PYTHON_VERSION }}
128128
- name: Environment Information
@@ -139,7 +139,7 @@ jobs:
139139
with:
140140
persist-credentials: false
141141
- name: Use Python ${{ env.PYTHON_VERSION }}
142-
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
142+
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
143143
with:
144144
python-version: ${{ env.PYTHON_VERSION }}
145145
- name: Environment Information

.github/workflows/notify-on-push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Slack Notification
17-
uses: rtCamp/action-slack-notify@4e5fb42d249be6a45a298f3c9543b111b02f7907 # 2.3.0
17+
uses: rtCamp/action-slack-notify@b24d75fe0e728a4bf9fc42ee217caa686d141ee8 # 2.2.1
1818
env:
1919
SLACK_COLOR: '#DE512A'
2020
SLACK_ICON: https://github.com/nodejs.png?size=48
@@ -56,7 +56,7 @@ jobs:
5656
GH_TOKEN: ${{ github.token }}
5757
- name: Slack Notification
5858
if: ${{ env.INVALID_COMMIT_MESSAGE }}
59-
uses: rtCamp/action-slack-notify@4e5fb42d249be6a45a298f3c9543b111b02f7907 # 2.3.0
59+
uses: rtCamp/action-slack-notify@b24d75fe0e728a4bf9fc42ee217caa686d141ee8 # 2.2.1
6060
env:
6161
SLACK_COLOR: '#DE512A'
6262
SLACK_ICON: https://github.com/nodejs.png?size=48

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,6 @@ jobs:
7373

7474
# Upload the results to GitHub's code scanning dashboard.
7575
- name: Upload to code-scanning
76-
uses: github/codeql-action/upload-sarif@1b1aada464948af03b950897e5eb522f92603cc2 # v3.24.9
76+
uses: github/codeql-action/upload-sarif@8a470fddafa5cbb6266ee11b37ef4d8aae19c571 # v3.24.6
7777
with:
7878
sarif_file: results.sarif

.github/workflows/test-asan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ concurrency:
3030

3131
env:
3232
ASAN_OPTIONS: intercept_tls_get_addr=0
33-
PYTHON_VERSION: '3.12'
33+
PYTHON_VERSION: '3.11'
3434
FLAKY_TESTS: keep_retrying
3535

3636
permissions:
@@ -51,7 +51,7 @@ jobs:
5151
with:
5252
persist-credentials: false
5353
- name: Set up Python ${{ env.PYTHON_VERSION }}
54-
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
54+
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
5555
with:
5656
python-version: ${{ env.PYTHON_VERSION }}
5757
- name: Environment Information

0 commit comments

Comments
 (0)