Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: github/vscode-codeql
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main@{1day}
Choose a base ref
...
head repository: github/vscode-codeql
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 8 commits
  • 6 files changed
  • 5 contributors

Commits on Apr 22, 2025

  1. Avoid unhandled errors in build streams

    The .pipe() method on Node.js streams have a gotcha in that they
    do not propagate errors downstream. In this case this meant that if
    compilation failed with an error, it would not be visible to Gulp
    because Gulp only sees the stream that writes to a file, not the
    intermediate 'esbuild' stream that generated the error.
    
    This changes a few uses of .pipe() to the more modern stream.pipeline(),
    which propagates errors correctly.
    asgerf committed Apr 22, 2025
    Configuration menu
    Copy the full SHA
    59e754e View commit details
    Browse the repository at this point in the history
  2. Bump CLI version from v2.21.0 to v2.21.1 for integration tests

    github-actions[bot] committed Apr 22, 2025
    Configuration menu
    Copy the full SHA
    4e59754 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #4009 from asgerf/asgerf/fix-unhandled-build-error

    Avoid unhandled errors in build streams
    asgerf authored Apr 22, 2025
    Configuration menu
    Copy the full SHA
    1424307 View commit details
    Browse the repository at this point in the history
  4. Update codeql-config.yml

    Add `.github/actions` as a folder to include. The folder doesn't exist at the moment, but it may in the future.
    aeisenberg authored Apr 22, 2025
    Configuration menu
    Copy the full SHA
    3882e93 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #4012 from github/aeisenberg-patch-1

    Update codeql-config.yml
    aeisenberg authored Apr 22, 2025
    Configuration menu
    Copy the full SHA
    5626309 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2025

  1. Merge pull request #4011 from github/github-action/bump-cli

    Bump CLI Version to v2.21.1 for integration tests
    koesie10 authored Apr 23, 2025
    Configuration menu
    Copy the full SHA
    f757e8d View commit details
    Browse the repository at this point in the history
  2. Pin azure/login Action

    koesie10 committed Apr 23, 2025
    Configuration menu
    Copy the full SHA
    3dbe527 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #4013 from github/koesie10/pin-azure-login

    Pin azure/login Action
    koesie10 authored Apr 23, 2025
    Configuration menu
    Copy the full SHA
    9c9b237 View commit details
    Browse the repository at this point in the history
Loading