Skip to content

Bump react and @types/react - #44

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/multi-4b102aa8b0
Open

Bump react and @types/react#44
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/multi-4b102aa8b0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Feb 5, 2025

Copy link
Copy Markdown
Contributor

Bumps react and @types/react. These dependencies needed to be updated together.
Updates react from 18.3.1 to 19.0.0

Release notes

Sourced from react's releases.

19.0.0 (December 5, 2024)

Below is a list of all new features, APIs, deprecations, and breaking changes. Read React 19 release post and React 19 upgrade guide for more information.

Note: To help make the upgrade to React 19 easier, we’ve published a react@18.3 release that is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19. We recommend upgrading to React 18.3.1 first to help identify any issues before upgrading to React 19.

New Features

React

  • Actions: startTransition can now accept async functions. Functions passed to startTransition are called “Actions”. A given Transition can include one or more Actions which update state in the background and update the UI with one commit. In addition to updating state, Actions can now perform side effects including async requests, and the Action will wait for the work to finish before finishing the Transition. This feature allows Transitions to include side effects like fetch() in the pending state, and provides support for error handling, and optimistic updates.
  • useActionState: is a new hook to order Actions inside of a Transition with access to the state of the action, and the pending state. It accepts a reducer that can call Actions, and the initial state used for first render. It also accepts an optional string that is used if the action is passed to a form action prop to support progressive enhancement in forms.
  • useOptimistic: is a new hook to update state while a Transition is in progress. It returns the state, and a set function that can be called inside a transition to “optimistically” update the state to expected final value immediately while the Transition completes in the background. When the transition finishes, the state is updated to the new value.
  • use: is a new API that allows reading resources in render. In React 19, use accepts a promise or Context. If provided a promise, use will suspend until a value is resolved. use can only be used in render but can be called conditionally.
  • ref as a prop: Refs can now be used as props, removing the need for forwardRef.
  • Suspense sibling pre-warming: When a component suspends, React will immediately commit the fallback of the nearest Suspense boundary, without waiting for the entire sibling tree to render. After the fallback commits, React will schedule another render for the suspended siblings to “pre-warm” lazy requests.

React DOM Client

  • <form> action prop: Form Actions allow you to manage forms automatically and integrate with useFormStatus. When a <form> action succeeds, React will automatically reset the form for uncontrolled components. The form can be reset manually with the new requestFormReset API.
  • <button> and <input> formAction prop: Actions can be passed to the formAction prop to configure form submission behavior. This allows using different Actions depending on the input.
  • useFormStatus: is a new hook that provides the status of the parent <form> action, as if the form was a Context provider. The hook returns the values: pending, data, method, and action.
  • Support for Document Metadata: We’ve added support for rendering document metadata tags in components natively. React will automatically hoist them into the <head> section of the document.
  • Support for Stylesheets: React 19 will ensure stylesheets are inserted into the <head> on the client before revealing the content of a Suspense boundary that depends on that stylesheet.
  • Support for async scripts: Async scripts can be rendered anywhere in the component tree and React will handle ordering and deduplication.
  • Support for preloading resources: React 19 ships with preinit, preload, prefetchDNS, and preconnect APIs to optimize initial page loads by moving discovery of additional resources like fonts out of stylesheet loading. They can also be used to prefetch resources used by an anticipated navigation.

React DOM Server

  • Added prerender and prerenderToNodeStream APIs for static site generation. They are designed to work with streaming environments like Node.js Streams and Web Streams. Unlike renderToString, they wait for data to load for HTML generation.

React Server Components

  • RSC features such as directives, server components, and server functions are now stable. This means libraries that ship with Server Components can now target React 19 as a peer dependency with a react-server export condition for use in frameworks that support the Full-stack React Architecture. The underlying APIs used to implement a React Server Components bundler or framework do not follow semver and may break between minors in React 19.x. See docs for how to support React Server Components.

Deprecations

  • Deprecated: element.ref access: React 19 supports ref as a prop, so we’re deprecating element.ref in favor of element.props.ref. Accessing will result in a warning.
  • react-test-renderer: In React 19, react-test-renderer logs a deprecation warning and has switched to concurrent rendering for web usage. We recommend migrating your tests to @​testinglibrary.com/docs/react-testing-library/intro/) or @​testingesting-library.com/docs/react-native-testing-library/intro)

Breaking Changes

React 19 brings in a number of breaking changes, including the removals of long-deprecated APIs. We recommend first upgrading to 18.3.1, where we've added additional deprecation warnings. Check out the upgrade guide for more details and guidance on codemodding.

React

  • New JSX Transform is now required: We introduced a new JSX transform in 2020 to improve bundle size and use JSX without importing React. In React 19, we’re adding additional improvements like using ref as a prop and JSX speed improvements that require the new transform.
  • Errors in render are not re-thrown: Errors that are not caught by an Error Boundary are now reported to window.reportError. Errors that are caught by an Error Boundary are reported to console.error. We’ve introduced onUncaughtError and onCaughtError methods to createRoot and hydrateRoot to customize this error handling.
  • Removed: propTypes: Using propTypes will now be silently ignored. If required, we recommend migrating to TypeScript or another type-checking solution.
  • Removed: defaultProps for functions: ES6 default parameters can be used in place. Class components continue to support defaultProps since there is no ES6 alternative.
  • Removed: contextTypes and getChildContext: Legacy Context for class components has been removed in favor of the contextType API.

... (truncated)

Changelog

Sourced from react's changelog.

19.0.0 (December 5, 2024)

Below is a list of all new features, APIs, deprecations, and breaking changes. Read React 19 release post and React 19 upgrade guide for more information.

Note: To help make the upgrade to React 19 easier, we’ve published a react@18.3 release that is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19. We recommend upgrading to React 18.3.1 first to help identify any issues before upgrading to React 19.

New Features

React

  • Actions: startTransition can now accept async functions. Functions passed to startTransition are called “Actions”. A given Transition can include one or more Actions which update state in the background and update the UI with one commit. In addition to updating state, Actions can now perform side effects including async requests, and the Action will wait for the work to finish before finishing the Transition. This feature allows Transitions to include side effects like fetch() in the pending state, and provides support for error handling, and optimistic updates.
  • useActionState: is a new hook to order Actions inside of a Transition with access to the state of the action, and the pending state. It accepts a reducer that can call Actions, and the initial state used for first render. It also accepts an optional string that is used if the action is passed to a form action prop to support progressive enhancement in forms.
  • useOptimistic: is a new hook to update state while a Transition is in progress. It returns the state, and a set function that can be called inside a transition to “optimistically” update the state to expected final value immediately while the Transition completes in the background. When the transition finishes, the state is updated to the new value.
  • use: is a new API that allows reading resources in render. In React 19, use accepts a promise or Context. If provided a promise, use will suspend until a value is resolved. use can only be used in render but can be called conditionally.
  • ref as a prop: Refs can now be used as props, removing the need for forwardRef.
  • Suspense sibling pre-warming: When a component suspends, React will immediately commit the fallback of the nearest Suspense boundary, without waiting for the entire sibling tree to render. After the fallback commits, React will schedule another render for the suspended siblings to “pre-warm” lazy requests.

React DOM Client

  • <form> action prop: Form Actions allow you to manage forms automatically and integrate with useFormStatus. When a <form> action succeeds, React will automatically reset the form for uncontrolled components. The form can be reset manually with the new requestFormReset API.
  • <button> and <input> formAction prop: Actions can be passed to the formAction prop to configure form submission behavior. This allows using different Actions depending on the input.
  • useFormStatus: is a new hook that provides the status of the parent <form> action, as if the form was a Context provider. The hook returns the values: pending, data, method, and action.
  • Support for Document Metadata: We’ve added support for rendering document metadata tags in components natively. React will automatically hoist them into the <head> section of the document.
  • Support for Stylesheets: React 19 will ensure stylesheets are inserted into the <head> on the client before revealing the content of a Suspense boundary that depends on that stylesheet.
  • Support for async scripts: Async scripts can be rendered anywhere in the component tree and React will handle ordering and deduplication.
  • Support for preloading resources: React 19 ships with preinit, preload, prefetchDNS, and preconnect APIs to optimize initial page loads by moving discovery of additional resources like fonts out of stylesheet loading. They can also be used to prefetch resources used by an anticipated navigation.

React DOM Server

  • Added prerender and prerenderToNodeStream APIs for static site generation. They are designed to work with streaming environments like Node.js Streams and Web Streams. Unlike renderToString, they wait for data to load for HTML generation.

React Server Components

  • RSC features such as directives, server components, and server functions are now stable. This means libraries that ship with Server Components can now target React 19 as a peer dependency with a react-server export condition for use in frameworks that support the Full-stack React Architecture. The underlying APIs used to implement a React Server Components bundler or framework do not follow semver and may break between minors in React 19.x. See docs for how to support React Server Components.

Deprecations

  • Deprecated: element.ref access: React 19 supports ref as a prop, so we’re deprecating element.ref in favor of element.props.ref. Accessing will result in a warning.
  • react-test-renderer: In React 19, react-test-renderer logs a deprecation warning and has switched to concurrent rendering for web usage. We recommend migrating your tests to @​testing-library/react or @​testing-library/react-native

Breaking Changes

React 19 brings in a number of breaking changes, including the removals of long-deprecated APIs. We recommend first upgrading to 18.3.1, where we've added additional deprecation warnings. Check out the upgrade guide for more details and guidance on codemodding.

React

  • New JSX Transform is now required: We introduced a new JSX transform in 2020 to improve bundle size and use JSX without importing React. In React 19, we’re adding additional improvements like using ref as a prop and JSX speed improvements that require the new transform.
  • Errors in render are not re-thrown: Errors that are not caught by an Error Boundary are now reported to window.reportError. Errors that are caught by an Error Boundary are reported to console.error. We’ve introduced onUncaughtError and onCaughtError methods to createRoot and hydrateRoot to customize this error handling.
  • Removed: propTypes: Using propTypes will now be silently ignored. If required, we recommend migrating to TypeScript or another type-checking solution.
  • Removed: defaultProps for functions: ES6 default parameters can be used in place. Class components continue to support defaultProps since there is no ES6 alternative.

... (truncated)

Commits
  • e137890 [string-refs] cleanup string ref code (#31443)
  • d1f0472 [string-refs] remove enableLogStringRefsProd flag (#31414)
  • 3dc1e48 Followup: remove dead test code from #30346 (#31415)
  • 07aa494 Remove enableRefAsProp feature flag (#30346)
  • 45804af [flow] Eliminate usage of more than 1-arg React.AbstractComponent in React ...
  • 5636fad [string-refs] log string ref from prod (#31161)
  • b78a7f2 [rcr] Re-export useMemoCache in top level React namespace (#31139)
  • 4e9540e [Fiber] Log the Render/Commit phases and the gaps in between (#31016)
  • d4688df [Fiber] Track Event Time, startTransition Time and setState Time (#31008)
  • 15da917 Don't read currentTransition back from internals (#30991)
  • Additional commits viewable in compare view

Updates @types/react from 18.3.18 to 19.0.8

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Summary by Sourcery

Upgrade React to v19.0.0 and @types/react to v19.0.8.

New Features:

  • Upgrade to React 19 with new features like Actions, useActionState, useOptimistic, use, ref as a prop, Suspense sibling pre-warming, form action prop, useFormStatus, support for Document Metadata, Stylesheets, async scripts, and preloading resources.
  • React DOM Server now has prerender and prerenderToNodeStream APIs for static site generation.
  • React Server Components features are now stable.

Tests:

  • Deprecated react-test-renderer in favor of @testing-library/react and @testing-library/react-native.

Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react) and [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react). These dependencies needed to be updated together.

Updates `react` from 18.3.1 to 19.0.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.0.0/packages/react)

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

---
updated-dependencies:
- dependency-name: react
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 5, 2025
@sourcery-ai

sourcery-ai Bot commented Feb 5, 2025

Copy link
Copy Markdown
Contributor

Reviewer's Guide by Sourcery

This pull request bumps the versions of react and @types/react. It updates react from v18.3.1 to v19.0.0 and @types/react from v18.3.18 to v19.0.8. The changes are reflected in the pnpm-lock.yaml file and package.json files.

Sequence diagram for new React 19 Action and Transition flow

sequenceDiagram
    participant C as Component
    participant R as React
    participant S as Server/API

    C->>R: startTransition(async () => {...})
    activate R
    R->>S: fetch() or other side effects
    S-->>R: Response
    R->>C: Update UI (one commit)
    deactivate R

    Note over C,R: Optimistic Updates
    C->>R: useOptimistic(state, setOptimistic)
    activate R
    R->>C: Immediate optimistic state update
    R->>S: Actual state update operation
    S-->>R: Confirmation
    R->>C: Final state update
    deactivate R
Loading

File-Level Changes

Change Details Files
Update react dependency
  • Updated react version in pnpm-lock.yaml
  • Updated react version in test-codetypo-eslint-plugin-v9/package.json
  • Updated react version in test-codetypo-eslint-plugin-v7/package.json
  • Updated react version in website/package.json
pnpm-lock.yaml
test-packages/codetypo-eslint-plugin/test-codetypo-eslint-plugin-v9/package.json
test-packages/codetypo-eslint-plugin/test-codetypo-eslint-plugin-v7/package.json
website/package.json
Update @types/react dependency
  • Updated @types/react version in pnpm-lock.yaml
  • Updated @types/react version in test-codetypo-eslint-plugin-v9/package.json
pnpm-lock.yaml
test-packages/codetypo-eslint-plugin/test-codetypo-eslint-plugin-v9/package.json

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!
  • Generate a plan of action for an issue: Comment @sourcery-ai plan on
    an issue to generate a plan of action for it.

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

@coderabbitai

coderabbitai Bot commented Feb 5, 2025

Copy link
Copy Markdown

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.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 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.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

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.

@sourcery-ai sourcery-ai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have skipped reviewing this pull request. It seems to have been created by a bot (hey, dependabot[bot]!). We assume it knows what it's doing!

@codiumai-pr-agent-free

codiumai-pr-agent-free Bot commented Feb 5, 2025

Copy link
Copy Markdown
Contributor

CI Feedback 🧐

(Feedback updated until commit 0c444b7)

A test triggered by this PR failed. Here is an AI-generated analysis of the failure:

Action: Analyze

Failed stage: Perform CodeQL Analysis [❌]

Failure summary:

The CodeQL analysis failed because the repository has both a default CodeQL setup and an advanced
configuration enabled simultaneously. This is not supported. Specifically, the error message states:
"CodeQL analyses from advanced configurations cannot be processed when the default setup is
enabled".

Relevant error logs:
1:  ##[group]Operating System
2:  Ubuntu
...

286:  },
287:  "logging" : {
288:  "title" : "Options pertaining to logging.",
289:  "description" : "Options pertaining to logging.",
290:  "type" : "object",
291:  "properties" : {
292:  "verbosity" : {
293:  "title" : "Extractor logging verbosity level.",
294:  "description" : "Controls the level of verbosity of the extractor. The supported levels are (in order of increasing verbosity):\n  - off\n  - errors\n  - warnings\n  - info or progress\n  - debug or progress+\n  - trace or progress++\n  - progress+++\n",
295:  "type" : "string",
296:  "pattern" : "^(off|errors|warnings|(info|progress)|(debug|progress\\+)|(trace|progress\\+\\+)|progress\\+\\+\\+)$"
...

326:  "extractor_options" : {
327:  "logging" : {
328:  "title" : "Options pertaining to logging.",
329:  "description" : "Options pertaining to logging.",
330:  "type" : "object",
331:  "properties" : {
332:  "verbosity" : {
333:  "title" : "Python extractor logging verbosity level.",
334:  "description" : "Controls the level of verbosity of the CodeQL Python extractor.\nThe supported levels are (in order of increasing verbosity):\n\n  - off\n  - errors\n  - warnings\n  - info or progress\n  - debug or progress+\n  - trace or progress++\n  - progress+++\n",
335:  "type" : "string",
336:  "pattern" : "^(off|errors|warnings|(info|progress)|(debug|progress\\+)|(trace|progress\\+\\+)|progress\\+\\+\\+)$"
...

562:  },
563:  "logging" : {
564:  "title" : "Options pertaining to logging.",
565:  "description" : "Options pertaining to logging.",
566:  "type" : "object",
567:  "properties" : {
568:  "verbosity" : {
569:  "title" : "Extractor logging verbosity level.",
570:  "description" : "Controls the level of verbosity of the extractor. The supported levels are (in order of increasing verbosity):\n  - off\n  - errors\n  - warnings\n  - info or progress\n  - debug or progress+\n  - trace or progress++\n  - progress+++\n",
571:  "type" : "string",
572:  "pattern" : "^(off|errors|warnings|(info|progress)|(debug|progress\\+)|(trace|progress\\+\\+)|progress\\+\\+\\+)$"
...

602:  "extractor_options" : {
603:  "logging" : {
604:  "title" : "Options pertaining to logging.",
605:  "description" : "Options pertaining to logging.",
606:  "type" : "object",
607:  "properties" : {
608:  "verbosity" : {
609:  "title" : "Python extractor logging verbosity level.",
610:  "description" : "Controls the level of verbosity of the CodeQL Python extractor.\nThe supported levels are (in order of increasing verbosity):\n\n  - off\n  - errors\n  - warnings\n  - info or progress\n  - debug or progress+\n  - trace or progress++\n  - progress+++\n",
611:  "type" : "string",
612:  "pattern" : "^(off|errors|warnings|(info|progress)|(debug|progress\\+)|(trace|progress\\+\\+)|progress\\+\\+\\+)$"
...

822:  cleanup-level: brutal
823:  add-snippets: false
824:  skip-queries: false
825:  checkout_path: /home/runner/work/codetypo/codetypo
826:  upload-database: true
827:  wait-for-processing: true
828:  token: ***
829:  matrix: null
830:  expect-error: false
...

1211:  [2025-02-05 15:22:02] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/DictionaryNegRef.html
1212:  [2025-02-05 15:22:02] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/DictionaryId.html (0 ms)
1213:  [2025-02-05 15:22:02] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/DictionaryPath.html
1214:  [2025-02-05 15:22:02] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/CodeTypoUserSettingsFields.html (10 ms)
1215:  [2025-02-05 15:22:02] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/DictionaryRef.html
1216:  [2025-02-05 15:22:02] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/DictionaryPath.html (2 ms)
1217:  [2025-02-05 15:22:02] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/DictionaryReference.html
1218:  [2025-02-05 15:22:02] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/DictionaryNegRef.html (3 ms)
1219:  [2025-02-05 15:22:02] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/ErrorEmitter.html
1220:  [2025-02-05 15:22:02] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/DictionaryReference.html (1 ms)
1221:  [2025-02-05 15:22:02] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/ErrorLike.html
1222:  [2025-02-05 15:22:02] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/DictionaryRef.html (4 ms)
1223:  [2025-02-05 15:22:02] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/FSPathResolvable.html
1224:  [2025-02-05 15:22:02] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/DictionaryFileTypes.html (5 ms)
1225:  [2025-02-05 15:22:02] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/Feature.html
1226:  [2025-02-05 15:22:02] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/Feature.html (1 ms)
1227:  [2025-02-05 15:22:02] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/FsPath.html
1228:  [2025-02-05 15:22:02] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/FsPath.html (1 ms)
1229:  [2025-02-05 15:22:02] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/Glob.html
1230:  [2025-02-05 15:22:02] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/ErrorEmitter.html (1 ms)
1231:  [2025-02-05 15:22:02] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/LanguageId.html
1232:  [2025-02-05 15:22:02] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/FSPathResolvable.html (4 ms)
1233:  [2025-02-05 15:22:02] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/LanguageIdMultiple.html
1234:  [2025-02-05 15:22:02] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/ErrorLike.html (5 ms)
...

1277:  [2025-02-05 15:22:02] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/ReporterSettings.html
1278:  [2025-02-05 15:22:02] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/ReplaceMap.html (1 ms)
1279:  [2025-02-05 15:22:02] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/ResultEmitter.html
1280:  [2025-02-05 15:22:02] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/PredefinedPatterns.html (5 ms)
1281:  [2025-02-05 15:22:02] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/SimpleGlob.html
1282:  [2025-02-05 15:22:02] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/ResultEmitter.html (1 ms)
1283:  [2025-02-05 15:22:02] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/Source.html
1284:  [2025-02-05 15:22:02] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/SimpleGlob.html (1 ms)
1285:  [2025-02-05 15:22:02] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/SpellingErrorEmitter.html
...

1293:  [2025-02-05 15:22:02] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/Version.html
1294:  [2025-02-05 15:22:02] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/TrustLevel.html (2 ms)
1295:  [2025-02-05 15:22:02] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/Source.html (5 ms)
1296:  [2025-02-05 15:22:02] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/VersionLatest.html
1297:  [2025-02-05 15:22:02] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/Version.html (3 ms)
1298:  [2025-02-05 15:22:02] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/VersionLegacy.html
1299:  [2025-02-05 15:22:02] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/VersionLatest.html (0 ms)
1300:  [2025-02-05 15:22:02] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/variables/ConfigFields.html
1301:  [2025-02-05 15:22:02] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/docs/types/codetypo-types/types/SpellingErrorEmitter.html (6 ms)
...

1471:  [2025-02-05 15:22:11] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-service-bus/src/Dispatcher.ts
1472:  [2025-02-05 15:22:11] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-service-bus/src/Dispatcher.ts (2 ms)
1473:  [2025-02-05 15:22:11] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-service-bus/src/ServiceRequestFactory.ts
1474:  [2025-02-05 15:22:11] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-service-bus/src/ServiceRequestFactory.ts (9 ms)
1475:  [2025-02-05 15:22:11] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-service-bus/src/bus.ts
1476:  [2025-02-05 15:22:11] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-service-bus/src/bus.ts (71 ms)
1477:  [2025-02-05 15:22:11] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-service-bus/src/createRequestHandler.ts
1478:  [2025-02-05 15:22:11] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-service-bus/src/createRequestHandler.ts (6 ms)
1479:  [2025-02-05 15:22:11] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-service-bus/src/errors.ts
1480:  [2025-02-05 15:22:11] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-service-bus/src/errors.ts (7 ms)
...

1883:  [2025-02-05 15:22:23] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-glob/src/index.ts
1884:  [2025-02-05 15:22:23] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-glob/src/index.ts (1 ms)
1885:  [2025-02-05 15:22:23] [build-stdout] Opening project /home/runner/work/codetypo/codetypo/packages/codetypo-grammar/tsconfig.json
1886:  [2025-02-05 15:22:23] [build-stdout] Done opening project /home/runner/work/codetypo/codetypo/packages/codetypo-grammar/tsconfig.json (1 ms)
1887:  [2025-02-05 15:22:23] [build-stdout] Opening project /home/runner/work/codetypo/codetypo/packages/codetypo-io/tsconfig.json
1888:  [2025-02-05 15:22:24] [build-stdout] Done opening project /home/runner/work/codetypo/codetypo/packages/codetypo-io/tsconfig.json (354 ms)
1889:  [2025-02-05 15:22:24] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/handlers/node/file.ts
1890:  [2025-02-05 15:22:24] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/handlers/node/file.ts (171 ms)
1891:  [2025-02-05 15:22:24] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/node/file/FetchError.test.ts
1892:  [2025-02-05 15:22:24] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/node/file/FetchError.test.ts (16 ms)
1893:  [2025-02-05 15:22:24] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/node/file/FetchError.ts
1894:  [2025-02-05 15:22:24] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/node/file/FetchError.ts (10 ms)
...

1953:  [2025-02-05 15:22:24] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/common/stat.ts
1954:  [2025-02-05 15:22:24] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/common/stat.ts (5 ms)
1955:  [2025-02-05 15:22:24] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/common/transformers.test.ts
1956:  [2025-02-05 15:22:24] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/common/transformers.test.ts (40 ms)
1957:  [2025-02-05 15:22:24] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/common/transformers.ts
1958:  [2025-02-05 15:22:24] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/common/transformers.ts (18 ms)
1959:  [2025-02-05 15:22:24] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/common/urlOrReferenceToUrl.ts
1960:  [2025-02-05 15:22:24] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/common/urlOrReferenceToUrl.ts (1 ms)
1961:  [2025-02-05 15:22:24] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/errors/assert.test.ts
1962:  [2025-02-05 15:22:24] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/errors/assert.test.ts (9 ms)
1963:  [2025-02-05 15:22:24] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/errors/assert.ts
1964:  [2025-02-05 15:22:24] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/errors/assert.ts (1 ms)
1965:  [2025-02-05 15:22:24] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/errors/error.test.ts
1966:  [2025-02-05 15:22:24] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/errors/error.test.ts (4 ms)
1967:  [2025-02-05 15:22:24] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/errors/error.ts
1968:  [2025-02-05 15:22:24] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/errors/error.ts (3 ms)
1969:  [2025-02-05 15:22:24] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/errors/errors.test.ts
1970:  [2025-02-05 15:22:24] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/errors/errors.test.ts (6 ms)
1971:  [2025-02-05 15:22:24] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/errors/errors.ts
1972:  [2025-02-05 15:22:24] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/errors/errors.ts (2 ms)
1973:  [2025-02-05 15:22:24] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/errors/index.ts
1974:  [2025-02-05 15:22:24] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-io/src/errors/index.ts (4 ms)
...

2051:  [2025-02-05 15:22:27] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/Settings/Controller/configLoader/configToRawSettings.ts
2052:  [2025-02-05 15:22:27] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/Settings/Controller/configLoader/configToRawSettings.ts (11 ms)
2053:  [2025-02-05 15:22:27] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/Settings/Controller/configLoader/defaultConfigLoader.test.ts
2054:  [2025-02-05 15:22:27] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/Settings/Controller/configLoader/defaultConfigLoader.test.ts (4 ms)
2055:  [2025-02-05 15:22:27] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/Settings/Controller/configLoader/defaultConfigLoader.ts
2056:  [2025-02-05 15:22:27] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/Settings/Controller/configLoader/defaultConfigLoader.ts (13 ms)
2057:  [2025-02-05 15:22:27] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/Settings/Controller/configLoader/defaultSettings.ts
2058:  [2025-02-05 15:22:27] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/Settings/Controller/configLoader/defaultSettings.ts (2 ms)
2059:  [2025-02-05 15:22:27] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/Settings/Controller/configLoader/extractImportErrors.ts
2060:  [2025-02-05 15:22:27] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/Settings/Controller/configLoader/extractImportErrors.ts (18 ms)
...

2067:  [2025-02-05 15:22:27] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/Settings/Controller/configLoader/readSettings.ts
2068:  [2025-02-05 15:22:27] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/Settings/Controller/configLoader/readSettings.ts (7 ms)
2069:  [2025-02-05 15:22:27] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/Settings/Controller/configLoader/readSettingsFiles.ts
2070:  [2025-02-05 15:22:27] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/Settings/Controller/configLoader/readSettingsFiles.ts (8 ms)
2071:  [2025-02-05 15:22:27] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/Settings/Controller/configLoader/toGlobDef.ts
2072:  [2025-02-05 15:22:27] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/Settings/Controller/configLoader/toGlobDef.ts (10 ms)
2073:  [2025-02-05 15:22:27] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/Settings/Controller/configLoader/types.ts
2074:  [2025-02-05 15:22:27] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/Settings/Controller/configLoader/types.ts (1 ms)
2075:  [2025-02-05 15:22:27] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/Settings/Controller/ImportError.test.ts
2076:  [2025-02-05 15:22:27] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/Settings/Controller/ImportError.test.ts (6 ms)
2077:  [2025-02-05 15:22:27] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/Settings/Controller/ImportError.ts
2078:  [2025-02-05 15:22:27] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/Settings/Controller/ImportError.ts (3 ms)
...

2223:  [2025-02-05 15:22:29] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/SpellingDictionary/Dictionaries.ts
2224:  [2025-02-05 15:22:29] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/SpellingDictionary/Dictionaries.ts (15 ms)
2225:  [2025-02-05 15:22:29] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/SpellingDictionary/DictionaryLoader.test.ts
2226:  [2025-02-05 15:22:29] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/SpellingDictionary/DictionaryLoader.test.ts (61 ms)
2227:  [2025-02-05 15:22:29] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/SpellingDictionary/DictionaryLoader.ts
2228:  [2025-02-05 15:22:29] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/SpellingDictionary/DictionaryLoader.ts (4 ms)
2229:  [2025-02-05 15:22:29] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/SpellingDictionary/SpellingDictionary.ts
2230:  [2025-02-05 15:22:29] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/SpellingDictionary/SpellingDictionary.ts (1 ms)
2231:  [2025-02-05 15:22:29] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/SpellingDictionary/SpellingDictionaryError.ts
2232:  [2025-02-05 15:22:29] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/SpellingDictionary/SpellingDictionaryError.ts (2 ms)
...

2353:  [2025-02-05 15:22:31] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/util/TextRange.test.ts
2354:  [2025-02-05 15:22:31] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/util/TextRange.test.ts (6 ms)
2355:  [2025-02-05 15:22:31] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/util/TextRange.ts
2356:  [2025-02-05 15:22:31] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/util/TextRange.ts (48 ms)
2357:  [2025-02-05 15:22:31] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/util/Uri.test.ts
2358:  [2025-02-05 15:22:31] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/util/Uri.test.ts (58 ms)
2359:  [2025-02-05 15:22:31] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/util/Uri.ts
2360:  [2025-02-05 15:22:31] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/util/Uri.ts (29 ms)
2361:  [2025-02-05 15:22:31] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/util/errors.test.ts
2362:  [2025-02-05 15:22:31] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/util/errors.test.ts (13 ms)
2363:  [2025-02-05 15:22:31] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/util/errors.ts
2364:  [2025-02-05 15:22:31] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/src/lib/util/errors.ts (19 ms)
...

2807:  [2025-02-05 15:22:37] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-tools/src/test/TestHelper.ts
2808:  [2025-02-05 15:22:37] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-tools/src/test/TestHelper.ts (20 ms)
2809:  [2025-02-05 15:22:37] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-tools/src/test/console.ts
2810:  [2025-02-05 15:22:37] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-tools/src/test/console.ts (5 ms)
2811:  [2025-02-05 15:22:37] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-tools/src/test/escapeRegEx.ts
2812:  [2025-02-05 15:22:37] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-tools/src/test/escapeRegEx.ts (1 ms)
2813:  [2025-02-05 15:22:37] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-tools/src/test/normalizeOutput.ts
2814:  [2025-02-05 15:22:37] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-tools/src/test/normalizeOutput.ts (8 ms)
2815:  [2025-02-05 15:22:37] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-tools/src/util/errors.test.ts
2816:  [2025-02-05 15:22:37] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-tools/src/util/errors.test.ts (6 ms)
2817:  [2025-02-05 15:22:37] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-tools/src/util/errors.ts
2818:  [2025-02-05 15:22:37] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-tools/src/util/errors.ts (2 ms)
...

3367:  [2025-02-05 15:22:46] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo/src/app/util/async.ts
3368:  [2025-02-05 15:22:46] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo/src/app/util/async.ts (1 ms)
3369:  [2025-02-05 15:22:46] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo/src/app/util/canUseColor.test.ts
3370:  [2025-02-05 15:22:46] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo/src/app/util/canUseColor.test.ts (5 ms)
3371:  [2025-02-05 15:22:46] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo/src/app/util/canUseColor.ts
3372:  [2025-02-05 15:22:46] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo/src/app/util/canUseColor.ts (1 ms)
3373:  [2025-02-05 15:22:46] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo/src/app/util/constants.ts
3374:  [2025-02-05 15:22:46] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo/src/app/util/constants.ts (1 ms)
3375:  [2025-02-05 15:22:46] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo/src/app/util/errors.test.ts
3376:  [2025-02-05 15:22:46] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo/src/app/util/errors.test.ts (20 ms)
3377:  [2025-02-05 15:22:46] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo/src/app/util/errors.ts
3378:  [2025-02-05 15:22:46] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo/src/app/util/errors.ts (7 ms)
...

3583:  [2025-02-05 15:22:50] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/website/docusaurus.config.ts
3584:  [2025-02-05 15:22:50] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/website/docusaurus.config.ts (20 ms)
3585:  [2025-02-05 15:22:50] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/website/sidebars.ts
3586:  [2025-02-05 15:22:50] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/website/sidebars.ts (1 ms)
3587:  [2025-02-05 15:22:50] [build-stdout] Opening project /home/runner/work/codetypo/codetypo/tsconfig.json
3588:  [2025-02-05 15:22:50] [build-stdout] Done opening project /home/runner/work/codetypo/codetypo/tsconfig.json (2 ms)
3589:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/samples/react/sample.tsx
3590:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/samples/react/sample.tsx (4 ms)
3591:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/with-errors/react/sample.tsx
3592:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/with-errors/react/sample.tsx (3 ms)
...

3623:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/dictionaries/sv/src/hunspell/index.d.ts
3624:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/dictionaries/sv/src/hunspell/index.d.ts (2 ms)
3625:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/dictionaries/uk_UA/src/hunspell/index.d.ts
3626:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/dictionaries/uk_UA/src/hunspell/index.d.ts (2 ms)
3627:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/import-support/sample.ts
3628:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/import-support/sample.ts (1 ms)
3629:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/samples/sample.ts
3630:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/samples/sample.ts (7 ms)
3631:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/with-errors/auto-fix.ts
3632:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/with-errors/auto-fix.ts (1 ms)
3633:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/with-errors/creepyData.ts
3634:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/with-errors/creepyData.ts (2 ms)
3635:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/with-errors/importAlias.ts
3636:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/with-errors/importAlias.ts (1 ms)
3637:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/with-errors/imports.ts
3638:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/with-errors/imports.ts (1 ms)
3639:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/with-errors/strings.ts
3640:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/with-errors/strings.ts (1 ms)
...

3679:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-json-reporter/src/utils/setToJSONReplacer.ts
3680:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-json-reporter/src/utils/setToJSONReplacer.ts (1 ms)
3681:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-json-reporter/src/utils/validateSettings.test.ts
3682:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-json-reporter/src/utils/validateSettings.test.ts (5 ms)
3683:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-json-reporter/src/utils/validateSettings.ts
3684:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-json-reporter/src/utils/validateSettings.ts (6 ms)
3685:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/fixtures/docValidator/sample-with-codetypo-directives.ts
3686:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/fixtures/docValidator/sample-with-codetypo-directives.ts (1 ms)
3687:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/fixtures/docValidator/sample-with-directives-errors.ts
3688:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/fixtures/docValidator/sample-with-directives-errors.ts (2 ms)
3689:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/fixtures/docValidator/sample-with-errors.ts
3690:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/fixtures/docValidator/sample-with-errors.ts (2 ms)
3691:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/fixtures/docValidator/sample-with-many-errors.ts
3692:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-lib/fixtures/docValidator/sample-with-many-errors.ts (3 ms)
...

3786:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-config-lib/fixtures/js/module/package.json
3787:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-config-lib/fixtures/js/module/codetypo.function.js (0 ms)
3788:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-config-lib/fixtures/package/with-value/package.json
3789:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-config-lib/fixtures/package/with-value/package.json (0 ms)
3790:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-config-lib/fixtures/package/without-value/package.json
3791:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-config-lib/fixtures/js/module/package.json (1 ms)
3792:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/samples/react/sample.jsx
3793:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/samples/react/sample.jsx (0 ms)
3794:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/with-errors/react/sample.jsx
3795:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/with-errors/react/sample.jsx (0 ms)
...

4010:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/simple/eslint.config.js
4011:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/samples/sampleESM.mjs (0 ms)
4012:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/simple/package.json
4013:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/simple/eslint.config.js (1 ms)
4014:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/simple/sampleESM.mjs
4015:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/simple/sampleESM.mjs (0 ms)
4016:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/simple/tsconfig.json
4017:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/simple/tsconfig.json (0 ms)
4018:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/with-errors/sampleESM.mjs
4019:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/json-support/package.json (4 ms)
4020:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/with-errors/sampleTemplateString.mjs
4021:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/simple/package.json (3 ms)
4022:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/yaml-support/eslint.config.mjs
4023:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/yaml-support/eslint.config.mjs (0 ms)
4024:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/yaml-support/sample.yaml
4025:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/with-errors/sampleESM.mjs (1 ms)
4026:  [2025-02-05 15:22:51] [build-stdout] Extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/src/common/tsconfig.json
4027:  [2025-02-05 15:22:51] [build-stdout] Done extracting /home/runner/work/codetypo/codetypo/packages/codetypo-eslint-plugin/fixtures/with-errors/sampleTemplateString.mjs (1 ms)
...

5716:  [77/90] Loaded /opt/hostedtoolcache/CodeQL/2.20.3/x64/codeql/qlpacks/codeql/javascript-queries/1.3.0/Security/CWE-346/CorsMisconfigurationForCredentials.qlx.
5717:  [78/90] Loaded /opt/hostedtoolcache/CodeQL/2.20.3/x64/codeql/qlpacks/codeql/javascript-queries/1.3.0/Security/CWE-798/HardcodedCredentials.qlx.
5718:  [79/90] Loaded /opt/hostedtoolcache/CodeQL/2.20.3/x64/codeql/qlpacks/codeql/javascript-queries/1.3.0/Security/CWE-598/SensitiveGetQuery.qlx.
5719:  [80/90] Loaded /opt/hostedtoolcache/CodeQL/2.20.3/x64/codeql/qlpacks/codeql/javascript-queries/1.3.0/Security/CWE-078/UselessUseOfCat.qlx.
5720:  [81/90] Loaded /opt/hostedtoolcache/CodeQL/2.20.3/x64/codeql/qlpacks/codeql/javascript-queries/1.3.0/Security/CWE-134/TaintedFormatString.qlx.
5721:  [82/90] Loaded /opt/hostedtoolcache/CodeQL/2.20.3/x64/codeql/qlpacks/codeql/javascript-queries/1.3.0/Security/CWE-078/CommandInjection.qlx.
5722:  [83/90] Loaded /opt/hostedtoolcache/CodeQL/2.20.3/x64/codeql/qlpacks/codeql/javascript-queries/1.3.0/Security/CWE-078/UnsafeShellCommandConstruction.qlx.
5723:  [84/90] Loaded /opt/hostedtoolcache/CodeQL/2.20.3/x64/codeql/qlpacks/codeql/javascript-queries/1.3.0/Security/CWE-078/SecondOrderCommandInjection.qlx.
5724:  [85/90] Loaded /opt/hostedtoolcache/CodeQL/2.20.3/x64/codeql/qlpacks/codeql/javascript-queries/1.3.0/Diagnostics/ExtractionErrors.qlx.
...

5726:  [87/90] Loaded /opt/hostedtoolcache/CodeQL/2.20.3/x64/codeql/qlpacks/codeql/javascript-queries/1.3.0/Security/CWE-078/ShellCommandInjectionFromEnvironment.qlx.
5727:  [88/90] Loaded /opt/hostedtoolcache/CodeQL/2.20.3/x64/codeql/qlpacks/codeql/javascript-queries/1.3.0/Summary/LinesOfCode.qlx.
5728:  [89/90] Loaded /opt/hostedtoolcache/CodeQL/2.20.3/x64/codeql/qlpacks/codeql/javascript-queries/1.3.0/Security/CWE-754/UnvalidatedDynamicMethodCall.qlx.
5729:  [90/90] Loaded /opt/hostedtoolcache/CodeQL/2.20.3/x64/codeql/qlpacks/codeql/javascript-queries/1.3.0/Summary/LinesOfUserCode.qlx.
5730:  Starting evaluation of codeql/javascript-queries/AngularJS/DoubleCompilation.ql.
5731:  Starting evaluation of codeql/javascript-queries/Diagnostics/ExtractedFiles.ql.
5732:  Starting evaluation of codeql/javascript-queries/AngularJS/DisablingSce.ql.
5733:  Starting evaluation of codeql/javascript-queries/AngularJS/InsecureUrlWhitelist.ql.
5734:  Starting evaluation of codeql/javascript-queries/Diagnostics/ExtractionErrors.ql.
5735:  Starting evaluation of codeql/javascript-queries/Electron/AllowRunningInsecureContent.ql.
5736:  Starting evaluation of codeql/javascript-queries/Electron/DisablingWebSecurity.ql.
5737:  [1/90 eval 3.5s] Evaluation done; writing results to codeql/javascript-queries/Diagnostics/ExtractedFiles.bqrs.
5738:  [2/90 eval 5.5s] Evaluation done; writing results to codeql/javascript-queries/Diagnostics/ExtractionErrors.bqrs.
...

6078:  Interpreting /opt/hostedtoolcache/CodeQL/2.20.3/x64/codeql/qlpacks/codeql/javascript-queries/1.3.0/Security/CWE-078/UnsafeShellCommandConstruction.ql...
6079:  ... found results file at /home/runner/work/_temp/codeql_databases/javascript/results/codeql/javascript-queries/Security/CWE-078/UnsafeShellCommandConstruction.bqrs.
6080:  Interpreting /opt/hostedtoolcache/CodeQL/2.20.3/x64/codeql/qlpacks/codeql/javascript-queries/1.3.0/Security/CWE-078/SecondOrderCommandInjection.ql...
6081:  ... found results file at /home/runner/work/_temp/codeql_databases/javascript/results/codeql/javascript-queries/Security/CWE-078/SecondOrderCommandInjection.bqrs.
6082:  Interpreting /opt/hostedtoolcache/CodeQL/2.20.3/x64/codeql/qlpacks/codeql/javascript-queries/1.3.0/Security/CWE-078/ShellCommandInjectionFromEnvironment.ql...
6083:  ... found results file at /home/runner/work/_temp/codeql_databases/javascript/results/codeql/javascript-queries/Security/CWE-078/ShellCommandInjectionFromEnvironment.bqrs.
6084:  Interpreting /opt/hostedtoolcache/CodeQL/2.20.3/x64/codeql/qlpacks/codeql/javascript-queries/1.3.0/Security/CWE-754/UnvalidatedDynamicMethodCall.ql...
6085:  ... found results file at /home/runner/work/_temp/codeql_databases/javascript/results/codeql/javascript-queries/Security/CWE-754/UnvalidatedDynamicMethodCall.bqrs.
6086:  Interpreting /opt/hostedtoolcache/CodeQL/2.20.3/x64/codeql/qlpacks/codeql/javascript-queries/1.3.0/Diagnostics/ExtractionErrors.ql...
6087:  ... found results file at /home/runner/work/_temp/codeql_databases/javascript/results/codeql/javascript-queries/Diagnostics/ExtractionErrors.bqrs.
...

6172:  Interpreted problem query "Sensitive data read from GET request" (js/sensitive-get-query) at path /home/runner/work/_temp/codeql_databases/javascript/results/codeql/javascript-queries/Security/CWE-598/SensitiveGetQuery.bqrs.
6173:  Interpreted pathproblem query "Use of externally-controlled format string" (js/tainted-format-string) at path /home/runner/work/_temp/codeql_databases/javascript/results/codeql/javascript-queries/Security/CWE-134/TaintedFormatString.bqrs.
6174:  Interpreted pathproblem query "Uncontrolled command line" (js/command-line-injection) at path /home/runner/work/_temp/codeql_databases/javascript/results/codeql/javascript-queries/Security/CWE-078/CommandInjection.bqrs.
6175:  Interpreted problem query "Unnecessary use of `cat` process" (js/unnecessary-use-of-cat) at path /home/runner/work/_temp/codeql_databases/javascript/results/codeql/javascript-queries/Security/CWE-078/UselessUseOfCat.bqrs.
6176:  Interpreted pathproblem query "Unsafe shell command constructed from library input" (js/shell-command-constructed-from-input) at path /home/runner/work/_temp/codeql_databases/javascript/results/codeql/javascript-queries/Security/CWE-078/UnsafeShellCommandConstruction.bqrs.
6177:  Interpreted pathproblem query "Second order command injection" (js/second-order-command-line-injection) at path /home/runner/work/_temp/codeql_databases/javascript/results/codeql/javascript-queries/Security/CWE-078/SecondOrderCommandInjection.bqrs.
6178:  Interpreted pathproblem query "Shell command built from environment values" (js/shell-command-injection-from-environment) at path /home/runner/work/_temp/codeql_databases/javascript/results/codeql/javascript-queries/Security/CWE-078/ShellCommandInjectionFromEnvironment.bqrs.
6179:  Interpreted pathproblem query "Unvalidated dynamic method call" (js/unvalidated-dynamic-method-call) at path /home/runner/work/_temp/codeql_databases/javascript/results/codeql/javascript-queries/Security/CWE-754/UnvalidatedDynamicMethodCall.bqrs.
6180:  Interpreted diagnostic query "Extraction errors" (js/diagnostics/extraction-errors) at path /home/runner/work/_temp/codeql_databases/javascript/results/codeql/javascript-queries/Diagnostics/ExtractionErrors.bqrs.
...

6203:  Validating /home/runner/work/codetypo/results/javascript.sarif
6204:  Combining SARIF files using the CodeQL CLI
6205:  Adding fingerprints to SARIF file. See https://docs.github.com/en/enterprise-cloud@latest/code-security/code-scanning/integrating-with-code-scanning/sarif-support-for-code-scanning#providing-data-to-track-code-scanning-alerts-across-runs for more information.
6206:  Uploading results
6207:  Successfully uploaded results
6208:  ##[endgroup]
6209:  ##[group]Waiting for processing to finish
6210:  Analysis upload status is pending.
6211:  Analysis upload status is failed.
6212:  ##[endgroup]
6213:  ##[error]Code Scanning could not process the submitted SARIF file:
6214:  CodeQL analyses from advanced configurations cannot be processed when the default setup is enabled
6215:  Post job cleanup.
6216:  ##[group]Uploading combined SARIF debug artifact
6217:  ##[endgroup]
6218:  Post job cleanup.
6219:  [command]/opt/hostedtoolcache/CodeQL/2.20.3/x64/codeql/codeql database export-diagnostics /home/runner/work/_temp/codeql_databases --db-cluster --format=sarif-latest --output=../codeql-failed-run.sarif --sarif-include-diagnostics -vvv
...

6230:  Looking for diagnostics in /home/runner/work/_temp/codeql_databases/javascript/diagnostic/codeql-action...
6231:  Found diagnostics file /home/runner/work/_temp/codeql_databases/javascript/diagnostic/codeql-action/codeql-action-2025-02-05T152154.122Z.json.
6232:  Found diagnostics file /home/runner/work/_temp/codeql_databases/javascript/diagnostic/codeql-action/codeql-action-2025-02-05T152154.121Z.json.
6233:  Looking for diagnostics in /home/runner/work/_temp/codeql_databases/javascript/diagnostic/tracer...
6234:  Won't look for diagnostics in /home/runner/work/_temp/codeql_databases/diagnostic since this directory does not exist.
6235:  Found 2 raw diagnostic messages.
6236:  Processed diagnostic messages (removed 0 due to limits, created 0 summary diagnostics for status page).
6237:  Interpreted diagnostic messages (93ms).
6238:  Uploading failed SARIF file ../codeql-failed-run.sarif
6239:  ##[group]Uploading results
6240:  Processing sarif files: ["../codeql-failed-run.sarif"]
6241:  Validating ../codeql-failed-run.sarif
6242:  Combining SARIF files using the CodeQL CLI
6243:  Adding fingerprints to SARIF file. See https://docs.github.com/en/enterprise-cloud@latest/code-security/code-scanning/integrating-with-code-scanning/sarif-support-for-code-scanning#providing-data-to-track-code-scanning-alerts-across-runs for more information.
6244:  CodeQL job status was configuration error.

@dependabot @github

dependabot Bot commented on behalf of github Feb 5, 2025

Copy link
Copy Markdown
Contributor Author

Dependabot couldn't find a package.json. Because of this, Dependabot cannot update this pull request.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants