Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci-deps): bump the minor-patch-dependencies group across 1 directory with 10 updates #17407

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 4, 2025

Bumps the minor-patch-dependencies group with 10 updates in the /.github/actions directory:

Package From To
tslib 2.4.0 2.8.1
@octokit/rest 19.0.4 19.0.13
@types/node 20.12.12 20.17.11
debug 4.3.4 4.4.0
@types/debug 4.1.7 4.1.12
esbuild 0.15.10 0.24.2
esbuild-runner 2.2.1 2.2.2
ts-jest 27.1.3 27.1.5
typescript 4.7.4 4.9.5
unzipper 0.10.11 0.12.3

Updates tslib from 2.4.0 to 2.8.1

Release notes

Sourced from tslib's releases.

v2.8.1

What's Changed

Full Changelog: microsoft/tslib@v2.8.0...v2.8.1

v2.8.0

What's Changed

Full Changelog: microsoft/tslib@v2.7.0...v2.8.0

v2.7.0

What's Changed

Full Changelog: microsoft/tslib@v2.6.3...v2.7.0

v2.6.3

What's Changed

Full Changelog: microsoft/tslib@v2.6.2...v2.6.3

tslib 2.6.2

What's Changed

Full Changelog: microsoft/tslib@v2.6.1...v2.6.2

tslib 2.6.1

What's Changed

Full Changelog: microsoft/tslib@2.6.0...v2.6.1

tslib 2.6.0

What's Changed

... (truncated)

Commits

Updates @octokit/rest from 19.0.4 to 19.0.13

Release notes

Sourced from @​octokit/rest's releases.

v19.0.13

19.0.13 (2023-06-16)

Bug Fixes

v19.0.12

19.0.12 (2023-06-16)

Bug Fixes

  • deps: update dependency @​octokit/plugin-paginate-rest to v7 (#316) (a860845)

v19.0.11

19.0.11 (2023-05-20)

Bug Fixes

v19.0.10

19.0.10 (2023-05-20)

Bug Fixes

v19.0.9

19.0.9 (2023-05-20)

Bug Fixes

  • build: replace pika with esbuild and tsc (#297) (5ca150f)

v19.0.8

19.0.8 (2023-05-14)

Bug Fixes

v19.0.7

19.0.7 (2023-01-21)

... (truncated)

Commits
  • f02bfd5 fix(deps): revert breaking dependency changes (#320)
  • a860845 fix(deps): update dependency @​octokit/plugin-paginate-rest to v7 (#316)
  • 615edf6 chore(deps): update dependency @​octokit/tsconfig to v2 (#308)
  • 393ca57 docs: replace references to Skypack CDN with esm.sh (#317)
  • e4dfad4 chore(deps): update dependency html-react-parser to v4 (#304)
  • 9be9f1f build(deps): lock file maintenance
  • 5307789 chore(deps): update dependency esbuild to ^0.18.0 (#310)
  • 00cd789 build(deps): lock file maintenance (#307)
  • 31a27cd build(deps): lock file maintenance
  • 217f55b build(deps): lock file maintenance (#301)
  • Additional commits viewable in compare view

Updates @types/node from 20.12.12 to 20.17.11

Commits

Updates debug from 4.3.4 to 4.4.0

Release notes

Sourced from debug's releases.

4.4.0

Fixes (hopefully) the inefficient regex warnings in .enable().

Minor version as this is invariably going to break certain users who misuse the .enable() API and expected it to work with regexes, which was never supported nor documented. That's on you, sorry - that functionality won't be added back.

Full Changelog: debug-js/debug@4.3.7...4.4.0

4.3.7

What's Changed

Full Changelog: debug-js/debug@4.3.6...4.3.7

4.3.6

What's Changed

New Contributors

Full Changelog: debug-js/debug@4.3.5...4.3.6

4.3.5

Patch

  • cac39b1c5b018b0fe93a53a05f084eee543d17f5 Fix/debug depth (#926)

Thank you @​calvintwr for the fix.

Commits

Updates @types/debug from 4.1.7 to 4.1.12

Commits

Updates esbuild from 0.15.10 to 0.24.2

Release notes

Sourced from esbuild's releases.

v0.24.2

  • Fix regression with --define and import.meta (#4010, #4012, #4013)

    The previous change in version 0.24.1 to use a more expression-like parser for define values to allow quoted property names introduced a regression that removed the ability to use --define:import.meta=.... Even though import is normally a keyword that can't be used as an identifier, ES modules special-case the import.meta expression to behave like an identifier anyway. This change fixes the regression.

    This fix was contributed by @​sapphi-red.

v0.24.1

  • Allow es2024 as a target in tsconfig.json (#4004)

    TypeScript recently added es2024 as a compilation target, so esbuild now supports this in the target field of tsconfig.json files, such as in the following configuration file:

    {
      "compilerOptions": {
        "target": "ES2024"
      }
    }

    As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.

    This fix was contributed by @​billyjanitsch.

  • Allow automatic semicolon insertion after get/set

    This change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:

    class Foo {
      get
      *x() {}
      set
      *y() {}
    }

    The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7.

  • Allow quoted property names in --define and --pure (#4008)

    The define and pure API options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes --define and --pure consistent with --global-name, which already supported quoted property names. For example, the following is now possible:

    // The following code now transforms to "return true;\n"
    console.log(esbuild.transformSync(
      `return process.env['SOME-TEST-VAR']`,
      { define: { 'process.env["SOME-TEST-VAR"]': 'true' } },
    ))

... (truncated)

Changelog

Sourced from esbuild's changelog.

Changelog: 2022

This changelog documents all esbuild versions published in the year 2022 (versions 0.14.11 through 0.16.12).

0.16.12

  • Loader defaults to js for extensionless files (#2776)

    Certain packages contain files without an extension. For example, the yargs package contains the file yargs/yargs which has no extension. Node, Webpack, and Parcel can all understand code that imports yargs/yargs because they assume that the file is JavaScript. However, esbuild was previously unable to understand this code because it relies on the file extension to tell it how to interpret the file. With this release, esbuild will now assume files without an extension are JavaScript files. This can be customized by setting the loader for "" (the empty string, representing files without an extension) to another loader. For example, if you want files without an extension to be treated as CSS instead, you can do that like this:

    • CLI:

      esbuild --bundle --loader:=css
      
    • JS:

      esbuild.build({
        bundle: true,
        loader: { '': 'css' },
      })
    • Go:

      api.Build(api.BuildOptions{
        Bundle: true,
        Loader: map[string]api.Loader{"": api.LoaderCSS},
      })

    In addition, the "type" field in package.json files now only applies to files with an explicit .js, .jsx, .ts, or .tsx extension. Previously it was incorrectly applied by esbuild to all files that had an extension other than .mjs, .mts, .cjs, or .cts including extensionless files. So for example an extensionless file in a "type": "module" package is now treated as CommonJS instead of ESM.

0.16.11

  • Avoid a syntax error in the presence of direct eval (#2761)

    The behavior of nested function declarations in JavaScript depends on whether the code is run in strict mode or not. It would be problematic if esbuild preserved nested function declarations in its output because then the behavior would depend on whether the output was run in strict mode or not instead of respecting the strict mode behavior of the original source code. To avoid this, esbuild transforms nested function declarations to preserve the intended behavior of the original source code regardless of whether the output is run in strict mode or not:

    // Original code
    if (true) {
      function foo() {}
      console.log(!!foo)
      foo = null
      console.log(!!foo)
    }

... (truncated)

Commits

Updates esbuild-runner from 2.2.1 to 2.2.2

Changelog

Sourced from esbuild-runner's changelog.

2.2.2 (2022-10-14)

Bug Fixes

Commits

Updates ts-jest from 27.1.3 to 27.1.5

Changelog

Sourced from ts-jest's changelog.

27.1.5 (2022-05-17)

Bug Fixes

27.1.4 (2022-03-24)

Bug Fixes

Commits
  • d0bf120 chore(release): 27.1.5
  • c89a907 fix(transformers): use Array.sort in hoisting transformer (#3498)
  • 8fc3e07 chore(release): 27.1.4
  • 8c8c1ca fix: remove esbuild from peer dependency (#3360)
  • 5e5ac4a fix: support Babel config file with .cjs extension (#3361)
  • 2b7dffe fix(compiler): revert #3194 (#3362)
  • b6ba9dc build(deps-dev): bump node-fetch from 3.2.2 to 3.2.3 (#3330)
  • 7900ee7 build(deps-dev): bump eslint-plugin-jsdoc from 37.9.7 to 38.0.0 (#3331)
  • 796b5a4 Merge pull request #3325 from kulshekhar/dependabot/npm_and_yarn/eslint-plugi...
  • 917f0ff Merge pull request #3326 from kulshekhar/dependabot/npm_and_yarn/node-fetch-3...
  • Additional commits viewable in compare view

Updates typescript from 4.7.4 to 4.9.5

Release notes

Sourced from typescript's releases.

TypeScript 4.9.5

For release notes, check out the release announcement.

Downloads are available on:

Changes:

  • 69e88ef5513a81acf69ec78f4af1f927da0d0584 Port ignore deprecations to 4.9 (#52419)
  • daf4e817a18def96b70ac34703b158ff0e6d58df Port timestamp fix to 4.9 (#52426)

TypeScript 4.9.4

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Changes:

  • e2868216f637e875a74c675845625eb15dcfe9a2 Bump version to 4.9.4 and LKG.
  • eb5419fc8d980859b98553586dfb5f40d811a745 Cherry-pick #51704 to release 4.9 (#51712)
  • b4d382b9b12460adf2da4cc0d1429cf19f8dc8be Cherry-pick changes for narrowing to tagged literal types.
  • e7a02f43fce47e1a39259ada5460bcc33c8e98b5 Port of #51626 and #51689 to release-4.9 (#51627)
  • 1727912f0437a7f367d90040fc4b0b4f3efd017a Cherry-pick fix around visitEachChild to release-4.9. (#51544)

This list of changes was auto generated.

TypeScript 4.9

For release notes, check out the release announcement.

Downloads are available on:

Changes:

  • 93bd577458d55cd720b2677705feab5c91eb12ce Bump version to 4.9.3 and LKG.
  • 107f832b80df2dc97748021cb00af2b6813db75b Update LKG.
  • 31bee5682df130a14ffdd5742f994dbe7313dd0e Cherry-pick PR #50977 into release-4.9 (#51363) [ #50872 ]
  • 1e2fa7ae15f8530910fef8b916ec8a4ed0b59c45 Update version to 4.9.2-rc and LKG.
  • 7ab89e5c6e401d161f31f28a6c555a3ba530910e Merge remote-tracking branch 'origin/main' into release-4.9
  • e5cd686defb1a4cbdb36bd012357ba5bed28f371 Update package-lock.json
  • 8d40dc15d1b9945837e7860320fdccfe27c40cad Update package-lock.json

... (truncated)

Commits

Updates unzipper from 0.10.11 to 0.12.3

Release notes

Sourced from unzipper's releases.

v0.12.3

Add @​ts-ignore to unblock typescript errors

v0.12.2

v0.12.1

  • unmaintained fstream replaced with fs-extra
  • empty directories in a zip file will now be created when zip file is extracted
  • big-integer replaced with node-int64 (up to 20x performance increase on large encrypted files)
  • npm deployment added to github actions

v0.12.0

  • unmaintained fstream replaced with fs-extra
  • empty directories in a zip file will now be created when zip file is extracted
  • big-integer replaced with node-int64 (up to 20x performance increase on large encrypted files)
  • npm deployment added to github actions

0.11.2

  • remove polyfills - no longer supporting ancient node versions
  • use GitHub actions for testing and coverage
  • remove 'binary' dependency
  • break up huge promise chain to minimize memory usage
  • ignore window zip slipped files
  • use pipeline to propagate errors in a chain of streams
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…ctory with 10 updates

Bumps the minor-patch-dependencies group with 10 updates in the /.github/actions directory:

| Package | From | To |
| --- | --- | --- |
| [tslib](https://github.com/Microsoft/tslib) | `2.4.0` | `2.8.1` |
| [@octokit/rest](https://github.com/octokit/rest.js) | `19.0.4` | `19.0.13` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.12.12` | `20.17.11` |
| [debug](https://github.com/debug-js/debug) | `4.3.4` | `4.4.0` |
| [@types/debug](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/debug) | `4.1.7` | `4.1.12` |
| [esbuild](https://github.com/evanw/esbuild) | `0.15.10` | `0.24.2` |
| [esbuild-runner](https://github.com/folke/esbuild-runner) | `2.2.1` | `2.2.2` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `27.1.3` | `27.1.5` |
| [typescript](https://github.com/microsoft/TypeScript) | `4.7.4` | `4.9.5` |
| [unzipper](https://github.com/ZJONSSON/node-unzipper) | `0.10.11` | `0.12.3` |



Updates `tslib` from 2.4.0 to 2.8.1
- [Release notes](https://github.com/Microsoft/tslib/releases)
- [Commits](microsoft/tslib@2.4.0...v2.8.1)

Updates `@octokit/rest` from 19.0.4 to 19.0.13
- [Release notes](https://github.com/octokit/rest.js/releases)
- [Commits](octokit/rest.js@v19.0.4...v19.0.13)

Updates `@types/node` from 20.12.12 to 20.17.11
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `debug` from 4.3.4 to 4.4.0
- [Release notes](https://github.com/debug-js/debug/releases)
- [Commits](debug-js/debug@4.3.4...4.4.0)

Updates `@types/debug` from 4.1.7 to 4.1.12
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/debug)

Updates `esbuild` from 0.15.10 to 0.24.2
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2022.md)
- [Commits](evanw/esbuild@v0.15.10...v0.24.2)

Updates `esbuild-runner` from 2.2.1 to 2.2.2
- [Release notes](https://github.com/folke/esbuild-runner/releases)
- [Changelog](https://github.com/folke/esbuild-runner/blob/2.2.2/CHANGELOG.md)
- [Commits](folke/esbuild-runner@2.2.1...2.2.2)

Updates `ts-jest` from 27.1.3 to 27.1.5
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v27.1.3...v27.1.5)

Updates `typescript` from 4.7.4 to 4.9.5
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v4.7.4...v4.9.5)

Updates `unzipper` from 0.10.11 to 0.12.3
- [Release notes](https://github.com/ZJONSSON/node-unzipper/releases)
- [Commits](https://github.com/ZJONSSON/node-unzipper/commits/v0.12.3)

---
updated-dependencies:
- dependency-name: tslib
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch-dependencies
- dependency-name: "@octokit/rest"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch-dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-patch-dependencies
- dependency-name: debug
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-patch-dependencies
- dependency-name: "@types/debug"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch-dependencies
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-patch-dependencies
- dependency-name: esbuild-runner
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch-dependencies
- dependency-name: ts-jest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch-dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-patch-dependencies
- dependency-name: unzipper
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-patch-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner January 4, 2025 05:56
@dependabot dependabot bot added automerge Merge this PR as soon as all checks pass dependencies Pull requests that update a dependency file labels Jan 4, 2025
Copy link
Contributor

coderabbitai bot commented Jan 4, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 11, 2025

Superseded by #17472.

@dependabot dependabot bot closed this Jan 11, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dot-github/actions/minor-patch-dependencies-ba82f98866 branch January 11, 2025 05:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
automerge Merge this PR as soon as all checks pass dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants