Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
82223ee
🤖 Merge PR #75295 [express-serve-static-core]: Changed Errback type e…
adamakiva Jul 31, 2026
4602407
🤖 Merge PR #75189 Add missing types Google libphonenumber by @spike-r…
spike-rabbit Jul 31, 2026
277f45f
🤖 Merge PR #75246 [three] Refactor Node type extensions into a lookup…
mrcljx Jul 31, 2026
6d34125
🤖 Merge PR #75330 fix(d3-geo): GeoRawProjection misdefined by @k-yle
k-yle Jul 31, 2026
0b84dd3
🤖 Merge PR #75264 fix(pg): add verify option to PoolConfig by @Abhi-D…
Abhi-DevHub Jul 31, 2026
a7c768f
🤖 Merge PR #75326 chore: sync updates to google.maps by @googlemaps-bot
googlemaps-bot Jul 31, 2026
7446100
🤖 Merge PR #75251 [three] Fix barrelMask typo in CRT declarations by …
Gyeonghun-Park Jul 31, 2026
2477dfe
Bump the github-actions group across 2 directories with 2 updates (#7…
dependabot[bot] Jul 31, 2026
2bae1bb
🤖 Merge PR #75331 [oidc-provider] v9.11.0 bump and various fixes by @…
panva Jul 31, 2026
b68e8a2
🤖 Merge PR #75206 chore: remove pnpm overrides field by @hkleungai
hkleungai Jul 31, 2026
2b87eb6
🤖 Merge PR #75319 [chrome] fix chrome.action.setIcon() by @erwanjugand
erwanjugand Jul 31, 2026
d08908b
🤖 Merge PR #75320 [chrome] fix chrome.tabs.insertCSS() by @erwanjugand
erwanjugand Jul 31, 2026
bcf4d54
🤖 Merge PR #75281 [chrome] fix chrome.declarativeWebRequest, bad enum…
erwanjugand Jul 31, 2026
032680d
🤖 Merge PR #75283 [chrome] update manifest type by @erwanjugand
erwanjugand Jul 31, 2026
38cc134
🤖 Merge PR #75221 Add types for lua-format by @dnrovs
dnrovs Jul 31, 2026
5bd77bf
🤖 Merge PR #75235 CoverageJSON Update: Rework how CoverageCollection,…
murithigeo Jul 31, 2026
8589d93
🤖 Merge PR #75286 [clearoutio__clearout] Remove, bundled with @clearo…
max-programming Jul 31, 2026
df2b717
[office-js] [office-js-preview] (Access) Ensure that deprecation warn…
ElizabethSamuel-MSFT Jul 31, 2026
d939d77
🤖 Merge PR #75301 Remove types for @commerce7/admin-ui by @Weldawadya…
Weldawadyathink Jul 31, 2026
229ee68
🤖 Merge PR #75243 [koa-favicon] Fix maxage option to maxAge by @unrev…
unrevised6419 Jul 31, 2026
ebe04c3
Remove contributors with deleted accounts (#75312)
github-actions[bot] Jul 31, 2026
759858c
🤖 Merge PR #75304 [pg] Make PoolClient extend Client by @bobnil
bobnil Jul 31, 2026
95f8bff
🤖 Merge PR #75335 [chrome] update since Chrome 151 by @erwanjugand
erwanjugand Jul 31, 2026
51936b9
🤖 Merge PR #75317 [chrome] fix chrome.identity.getAuthToken() by @erw…
erwanjugand Jul 31, 2026
72af9ae
🤖 Merge PR #75318 [chrome] fix chrome.system.display.setMirrorMode() …
erwanjugand Jul 31, 2026
a64f764
🤖 Merge PR #75321 [chrome] fix chrome.alarms.AlarmCreateInfo() by @er…
erwanjugand Jul 31, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/setup-for-scripts/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Set up repo for running scripts
runs:
using: composite
steps:
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: '24'
- uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ jobs:
matrix: ${{ steps.matrix.outputs.matrix }}

steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
# Need this to be able to inquire about origin/master
filter: blob:none # https://github.blog/2020-12-21-get-up-to-speed-with-partial-clone-and-shallow-clone/
fetch-depth: 0 # Default is 1; need to set to 0 to get the benefits of blob:none.
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: '24'

Expand All @@ -62,12 +62,12 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
# Need this to be able to inquire about origin/master
filter: blob:none # https://github.blog/2020-12-21-get-up-to-speed-with-partial-clone-and-shallow-clone/
fetch-depth: 0 # Default is 1; need to set to 0 to get the benefits of blob:none.
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: '24'

Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
- test

steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: ./.github/actions/setup-for-scripts

- name: Get suggestions dir
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'

steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: ./.github/actions/setup-for-scripts

- run: pnpm tsc -p ./scripts
2 changes: 1 addition & 1 deletion .github/workflows/UpdateCodeowners.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'

steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format-and-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
contents: write
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: ./.github/actions/setup-for-scripts

- name: Get date
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ghostbuster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'

steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: ./.github/actions/setup-for-scripts
- run: node ./scripts/ghostbuster.js > ${{ runner.temp }}/comment.md
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-md.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ jobs:
runs-on: ubuntu-slim
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: ./.github/actions/setup-for-scripts
- run: pnpm remark --frail . .github
4 changes: 2 additions & 2 deletions .github/workflows/pnpm-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.repository == 'DefinitelyTyped/DefinitelyTyped' }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: '24'
- uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/support-window.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: ./.github/actions/setup-for-scripts

- name: Fetch TypeScript versions and release dates from npm
Expand Down
8 changes: 8 additions & 0 deletions notNeededPackages.json
Original file line number Diff line number Diff line change
Expand Up @@ -1060,6 +1060,10 @@
"libraryName": "clear-module",
"asOfVersion": "3.2.0"
},
"clearoutio__clearout": {
"libraryName": "@clearoutio/clearout",
"asOfVersion": "1.1.9"
},
"cli-boxes": {
"libraryName": "cli-boxes",
"asOfVersion": "2.0.0"
Expand Down Expand Up @@ -1136,6 +1140,10 @@
"libraryName": "comment-json",
"asOfVersion": "2.4.1"
},
"commerce7__admin-ui": {
"libraryName": "@commerce7/admin-ui",
"asOfVersion": "2.0.47"
},
"commitlint__load": {
"libraryName": "@commitlint/load",
"asOfVersion": "9.0.0"
Expand Down
5 changes: 0 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,5 @@
"risk": "^0.0.4",
"typescript": "<7"
},
"pnpm": {
"overrides": {
"fflate": "0.8.2"
}
},
"type": "module"
}
Loading