From eb8356f304fd53a034536029c98d4ff09024d56f Mon Sep 17 00:00:00 2001 From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> Date: Mon, 2 Feb 2026 10:52:32 -0800 Subject: [PATCH 1/4] Disable dangerbot CI job for now (#74446) --- .github/workflows/CI.yml | 64 ++++++++++++++++++++-------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 742c753b16250d..fe192a5fa8b8d6 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -124,38 +124,38 @@ jobs: retention-days: 1 if: ${{ github.event_name == 'pull_request' }} - dangerbot: - runs-on: ubuntu-latest - if: github.repository == 'DefinitelyTyped/DefinitelyTyped' && github.event_name == 'pull_request' - - needs: - - test - - steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - uses: ./.github/actions/setup-for-scripts - - - name: Get suggestions dir - id: suggestions-dir - run: echo "path=$(node ./scripts/get-suggestions-dir.js)" >> "$GITHUB_OUTPUT" - - - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 - with: - path: ${{ steps.suggestions-dir.outputs.path }} - merge-multiple: true - - - name: 'Run Danger' - env: - # See https://github.com/danger/danger-js/issues/1042 - DANGER_GITHUB_API_BASE_URL: 'https://api.github.com' - - # Danger failing (for example through rate-limiting) shouldn't fail the build - run: | - # Exposing this token is safe because the user of it has no other public repositories - # and has no permission to modify this repository. See #62638 for the discussion. - TOKEN='ghp_i5wtj1l2AbpFv3OU96w6R' - TOKEN+='On3bHOkcV2AmVY6' - DANGER_GITHUB_API_TOKEN=$TOKEN pnpm danger ci || $( exit 0 ) + # dangerbot: + # runs-on: ubuntu-latest + # if: github.repository == 'DefinitelyTyped/DefinitelyTyped' && github.event_name == 'pull_request' + + # needs: + # - test + + # steps: + # - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + # - uses: ./.github/actions/setup-for-scripts + + # - name: Get suggestions dir + # id: suggestions-dir + # run: echo "path=$(node ./scripts/get-suggestions-dir.js)" >> "$GITHUB_OUTPUT" + + # - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 + # with: + # path: ${{ steps.suggestions-dir.outputs.path }} + # merge-multiple: true + + # - name: 'Run Danger' + # env: + # # See https://github.com/danger/danger-js/issues/1042 + # DANGER_GITHUB_API_BASE_URL: 'https://api.github.com' + + # # Danger failing (for example through rate-limiting) shouldn't fail the build + # run: | + # # Exposing this token is safe because the user of it has no other public repositories + # # and has no permission to modify this repository. See #62638 for the discussion. + # TOKEN='ghp_i5wtj1l2AbpFv3OU96w6R' + # TOKEN+='On3bHOkcV2AmVY6' + # DANGER_GITHUB_API_TOKEN=$TOKEN pnpm danger ci || $( exit 0 ) scripts: runs-on: ubuntu-latest From 851387e9f4d75c911b51ded5e3ac8d93653b0fba Mon Sep 17 00:00:00 2001 From: Alison McKay Date: Mon, 2 Feb 2026 11:39:27 -0800 Subject: [PATCH 2/4] [office-js] [office-js-preview] (Excel) Add clarifying notes (#74413) --- types/office-js-preview/index.d.ts | 9 +++++++-- types/office-js/index.d.ts | 9 +++++++-- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/types/office-js-preview/index.d.ts b/types/office-js-preview/index.d.ts index 872626cdbd9294..2470ccc82c1516 100644 --- a/types/office-js-preview/index.d.ts +++ b/types/office-js-preview/index.d.ts @@ -40142,6 +40142,7 @@ declare namespace Excel { readonly calculationEngineVersion: number; /** * Returns the calculation mode used in the workbook, as defined by the constants in `Excel.CalculationMode`. Possible values are: `Automatic`, where Excel controls recalculation; `AutomaticExceptTables`, where Excel controls recalculation but ignores changes in tables; `Manual`, where calculation is done when the user requests it. + * This is a runtime property. The `calculationMode` setting is not persisted in the workbook. * * @remarks * [Api set: ExcelApi 1.1 for get, 1.8 for set] @@ -40815,13 +40816,12 @@ declare namespace Excel { * Inserts the specified worksheets from a source workbook into the current workbook. The `extensionHardening` Windows registry key affects this API. The file extension defined by the `base64File` param must match the real file type of the inserted file. If `extensionHardening` is set to deny mismatches and the file extension does not match the real file type, this API throws the following error: "This operation is not allowed due to the extension hardening policy." - - **Note**: This API is currently only supported for Office on Windows, Mac, and the web. * * @remarks * [Api set: ExcelApi 1.13] * * This API is currently only supported for Office on Windows, Mac, and the web. + * In Excel on the web, this API doesn't support inserting charts, comments, PivotTables, or slicers. * * @param base64File Required. The Base64-encoded string representing the source workbook file. * @param options Optional. The options that define which worksheets to insert and where in the workbook the new worksheets will be inserted. By default, all the worksheets from the source workbook are inserted at the end of the current workbook. @@ -41289,6 +41289,7 @@ declare namespace Excel { evaluate(name: string): OfficeExtension.ClientResult; /** * Finds all occurrences of the given string based on the criteria specified and returns them as a `RangeAreas` object, comprising one or more rectangular ranges. + * Content in hidden worksheets is not returned. * * @remarks * [Api set: ExcelApi 1.9] @@ -41300,6 +41301,7 @@ declare namespace Excel { findAll(text: string, criteria: Excel.WorksheetSearchCriteria): Excel.RangeAreas; /** * Finds all occurrences of the given string based on the criteria specified and returns them as a `RangeAreas` object, comprising one or more rectangular ranges. + * Content in hidden worksheets is not returned. * * @remarks * [Api set: ExcelApi 1.9] @@ -74574,6 +74576,7 @@ declare namespace Excel { iterativeCalculation?: Excel.Interfaces.IterativeCalculationUpdateData; /** * Returns the calculation mode used in the workbook, as defined by the constants in `Excel.CalculationMode`. Possible values are: `Automatic`, where Excel controls recalculation; `AutomaticExceptTables`, where Excel controls recalculation but ignores changes in tables; `Manual`, where calculation is done when the user requests it. + * This is a runtime property. The `calculationMode` setting is not persisted in the workbook. * * @remarks * [Api set: ExcelApi 1.1 for get, 1.8 for set] @@ -80452,6 +80455,7 @@ declare namespace Excel { calculationEngineVersion?: number; /** * Returns the calculation mode used in the workbook, as defined by the constants in `Excel.CalculationMode`. Possible values are: `Automatic`, where Excel controls recalculation; `AutomaticExceptTables`, where Excel controls recalculation but ignores changes in tables; `Manual`, where calculation is done when the user requests it. + * This is a runtime property. The `calculationMode` setting is not persisted in the workbook. * * @remarks * [Api set: ExcelApi 1.1 for get, 1.8 for set] @@ -88620,6 +88624,7 @@ declare namespace Excel { calculationEngineVersion?: boolean; /** * Returns the calculation mode used in the workbook, as defined by the constants in `Excel.CalculationMode`. Possible values are: `Automatic`, where Excel controls recalculation; `AutomaticExceptTables`, where Excel controls recalculation but ignores changes in tables; `Manual`, where calculation is done when the user requests it. + * This is a runtime property. The `calculationMode` setting is not persisted in the workbook. * * @remarks * [Api set: ExcelApi 1.1 for get, 1.8 for set] diff --git a/types/office-js/index.d.ts b/types/office-js/index.d.ts index bd566426b7bf2f..1f937ea2baf9ac 100644 --- a/types/office-js/index.d.ts +++ b/types/office-js/index.d.ts @@ -35796,6 +35796,7 @@ declare namespace Excel { readonly calculationEngineVersion: number; /** * Returns the calculation mode used in the workbook, as defined by the constants in `Excel.CalculationMode`. Possible values are: `Automatic`, where Excel controls recalculation; `AutomaticExceptTables`, where Excel controls recalculation but ignores changes in tables; `Manual`, where calculation is done when the user requests it. + * This is a runtime property. The `calculationMode` setting is not persisted in the workbook. * * @remarks * [Api set: ExcelApi 1.1 for get, 1.8 for set] @@ -36349,13 +36350,12 @@ declare namespace Excel { * Inserts the specified worksheets from a source workbook into the current workbook. The `extensionHardening` Windows registry key affects this API. The file extension defined by the `base64File` param must match the real file type of the inserted file. If `extensionHardening` is set to deny mismatches and the file extension does not match the real file type, this API throws the following error: "This operation is not allowed due to the extension hardening policy." - - **Note**: This API is currently only supported for Office on Windows, Mac, and the web. * * @remarks * [Api set: ExcelApi 1.13] * * This API is currently only supported for Office on Windows, Mac, and the web. + * In Excel on the web, this API doesn't support inserting charts, comments, PivotTables, or slicers. * * @param base64File Required. The Base64-encoded string representing the source workbook file. * @param options Optional. The options that define which worksheets to insert and where in the workbook the new worksheets will be inserted. By default, all the worksheets from the source workbook are inserted at the end of the current workbook. @@ -36815,6 +36815,7 @@ declare namespace Excel { evaluate(name: string): OfficeExtension.ClientResult; /** * Finds all occurrences of the given string based on the criteria specified and returns them as a `RangeAreas` object, comprising one or more rectangular ranges. + * Content in hidden worksheets is not returned. * * @remarks * [Api set: ExcelApi 1.9] @@ -36826,6 +36827,7 @@ declare namespace Excel { findAll(text: string, criteria: Excel.WorksheetSearchCriteria): Excel.RangeAreas; /** * Finds all occurrences of the given string based on the criteria specified and returns them as a `RangeAreas` object, comprising one or more rectangular ranges. + * Content in hidden worksheets is not returned. * * @remarks * [Api set: ExcelApi 1.9] @@ -69455,6 +69457,7 @@ declare namespace Excel { iterativeCalculation?: Excel.Interfaces.IterativeCalculationUpdateData; /** * Returns the calculation mode used in the workbook, as defined by the constants in `Excel.CalculationMode`. Possible values are: `Automatic`, where Excel controls recalculation; `AutomaticExceptTables`, where Excel controls recalculation but ignores changes in tables; `Manual`, where calculation is done when the user requests it. + * This is a runtime property. The `calculationMode` setting is not persisted in the workbook. * * @remarks * [Api set: ExcelApi 1.1 for get, 1.8 for set] @@ -74992,6 +74995,7 @@ declare namespace Excel { calculationEngineVersion?: number; /** * Returns the calculation mode used in the workbook, as defined by the constants in `Excel.CalculationMode`. Possible values are: `Automatic`, where Excel controls recalculation; `AutomaticExceptTables`, where Excel controls recalculation but ignores changes in tables; `Manual`, where calculation is done when the user requests it. + * This is a runtime property. The `calculationMode` setting is not persisted in the workbook. * * @remarks * [Api set: ExcelApi 1.1 for get, 1.8 for set] @@ -82545,6 +82549,7 @@ declare namespace Excel { calculationEngineVersion?: boolean; /** * Returns the calculation mode used in the workbook, as defined by the constants in `Excel.CalculationMode`. Possible values are: `Automatic`, where Excel controls recalculation; `AutomaticExceptTables`, where Excel controls recalculation but ignores changes in tables; `Manual`, where calculation is done when the user requests it. + * This is a runtime property. The `calculationMode` setting is not persisted in the workbook. * * @remarks * [Api set: ExcelApi 1.1 for get, 1.8 for set] From b78a6b0d6296523783b984e748b38f81e4d5471b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Feb 2026 12:18:01 -0800 Subject: [PATCH 3/4] Bump actions/cache from 5.0.2 to 5.0.3 in the github-actions group across 1 directory (#74445) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/CI.yml | 2 +- .github/workflows/format-and-commit.yml | 2 +- .github/workflows/pnpm-cache.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index fe192a5fa8b8d6..76fbe4f636ad17 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -87,7 +87,7 @@ jobs: echo "store=$(pnpm store path)" >> $GITHUB_OUTPUT - name: Restore pnpm cache - uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 + uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 with: path: ${{ steps.pnpm-cache.outputs.store }} key: ${{ runner.os }}-pnpm-store-cache- diff --git a/.github/workflows/format-and-commit.yml b/.github/workflows/format-and-commit.yml index d61c439d9e0fe8..461ba1f843a9a8 100644 --- a/.github/workflows/format-and-commit.yml +++ b/.github/workflows/format-and-commit.yml @@ -24,7 +24,7 @@ jobs: id: date run: echo "date=$(/bin/date -u "+%Y-%m-%d")" >> $GITHUB_OUTPUT - - uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 + - uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 with: # dprint caches info about the files in the repo to skip formatting them. # However, since package.json and .dprint.jsonc don't change very often, diff --git a/.github/workflows/pnpm-cache.yml b/.github/workflows/pnpm-cache.yml index 7590363e8552ca..38d7c2d62a2148 100644 --- a/.github/workflows/pnpm-cache.yml +++ b/.github/workflows/pnpm-cache.yml @@ -27,7 +27,7 @@ jobs: run: pnpm install - name: Save pnpm cache - uses: actions/cache/save@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 + uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 with: path: ${{ steps.pnpm-cache.outputs.store }} key: ${{ runner.os }}-pnpm-store-cache-${{ steps.pnpm-cache.outputs.date }} From c0e4c41164885d5d2d40845848b4d64782d7ca61 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Feb 2026 12:19:07 -0800 Subject: [PATCH 4/4] Remove contributors with deleted accounts (#74442) Co-authored-by: TypeScript Bot --- types/ng-notify/package.json | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/types/ng-notify/package.json b/types/ng-notify/package.json index fe430e88e9380c..de0ca84979ebbb 100644 --- a/types/ng-notify/package.json +++ b/types/ng-notify/package.json @@ -11,10 +11,5 @@ "devDependencies": { "@types/ng-notify": "workspace:." }, - "owners": [ - { - "name": "Nick Zamosenchuk", - "githubUsername": "nzamosenchuk" - } - ] + "owners": [] }