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: nodejs/node-gyp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v10.0.1
Choose a base ref
...
head repository: nodejs/node-gyp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v10.1.0
Choose a head ref
  • 17 commits
  • 27 files changed
  • 13 contributors

Commits on Nov 2, 2023

  1. Configuration menu
    Copy the full SHA
    b42e796 View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2023

  1. chore: only run release please on push

    And then run release-please tests on release PRs
    lukekarrys committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    cff9ac2 View commit details
    Browse the repository at this point in the history

Commits on Dec 25, 2023

  1. Configuration menu
    Copy the full SHA
    ae8478e View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2024

  1. Configuration menu
    Copy the full SHA
    7f58bc8 View commit details
    Browse the repository at this point in the history
  2. build(deps): bump actions/setup-python from 4 to 5 (#2960)

    Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5.
    - [Release notes](https://github.com/actions/setup-python/releases)
    - [Commits](actions/setup-python@v4...v5)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-python
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jan 17, 2024
    Configuration menu
    Copy the full SHA
    3f0df7e View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2024

  1. build(deps): bump google-github-actions/release-please-action (#2961)

    Bumps [google-github-actions/release-please-action](https://github.com/google-github-actions/release-please-action) from 2 to 4.
    - [Release notes](https://github.com/google-github-actions/release-please-action/releases)
    - [Changelog](https://github.com/google-github-actions/release-please-action/blob/main/CHANGELOG.md)
    - [Commits](google-github-actions/release-please-action@v2...v4)
    
    ---
    updated-dependencies:
    - dependency-name: google-github-actions/release-please-action
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jan 20, 2024
    Configuration menu
    Copy the full SHA
    b1f1808 View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2024

  1. Configuration menu
    Copy the full SHA
    c24cead View commit details
    Browse the repository at this point in the history
  2. refine readme Visual C++ Build Environment text for clarity (#2965)

    * refine readme text for clarity
    
    * refine readme Visual C++ build env for clarity
    Davidthecode authored Jan 25, 2024
    Configuration menu
    Copy the full SHA
    a87d0bf View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2024

  1. Configuration menu
    Copy the full SHA
    7705a22 View commit details
    Browse the repository at this point in the history
  2. src: add support for locally installed headers (#2964)

    Some linux distros allow headers to be installed through
    tools like rpm. If the runtime sets
    process.config.variables.use_prefix_to_find_headers, look
    for matching headers based on the directory set for the
    prefix in process.config.variables.prefix
    
    Signed-off-by: Michael Dawson <midawson@redhat.com>
    Co-authored-by: Luke Karrys <luke@lukekarrys.com>
    mhdawson and lukekarrys authored Jan 29, 2024
    Configuration menu
    Copy the full SHA
    3298731 View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2024

  1. feat: improve visual studio detection (#2957)

    Detect visual studio installation using the VSSetup module and
    Get-VSSetupInstance method. It works even in systems with the
    Constrained language mode of PowerShell.
    jarig authored Feb 9, 2024
    Configuration menu
    Copy the full SHA
    109e3d4 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2024

  1. win: update supported vs versions (#2959)

    Drop VS2017 support for Node.js v22 and above.
    
    Refs: nodejs/build#3603
    Refs: nodejs/node#45427
    StefanStojanovic authored Mar 6, 2024
    Configuration menu
    Copy the full SHA
    391cc5b View commit details
    Browse the repository at this point in the history
  2. chore: upgrade release please action from v2 to v4 (#2982)

    * chore(release-please-action): upgrade from v2 to v4
    
    * chore(ci): remove target branch
    
    * chore(release-please): disable `include-component-in-tag`
    
    Co-authored-by: DeeDeeG <DeeDeeG@users.noreply.github.com>
    
    * chore(release-please): format JSON properties per line
    
    Co-authored-by: DeeDeeG <DeeDeeG@users.noreply.github.com>
    
    * Remove last release sha
    
    ---------
    
    Co-authored-by: DeeDeeG <DeeDeeG@users.noreply.github.com>
    Co-authored-by: Luke Karrys <luke@lukekarrys.com>
    3 people authored Mar 6, 2024
    Configuration menu
    Copy the full SHA
    0035d8e View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2024

  1. Configuration menu
    Copy the full SHA
    fbf3fda View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2024

  1. Configuration menu
    Copy the full SHA
    1205fb0 View commit details
    Browse the repository at this point in the history
  2. lib: print Python executable path using UTF-8 (#2995)

    * lib: print Python executable path using UTF-8
    
    The Python executable path may have non-ASCII characters, which can make
    the print function fail if the environment encoding is different. This fixes
    this issue by using stdout.buffer, which can be used with UTF-8 encoding
    for the output, regardless of the environment encoding.
    
    Fixes: #2829
    
    * fixup! lib: print Python executable path using UTF-8
    huseyinacacak-janea authored Mar 13, 2024
    Configuration menu
    Copy the full SHA
    c472912 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2024

  1. chore(main): release 10.1.0 (#2989)

    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    github-actions[bot] authored Mar 25, 2024
    Configuration menu
    Copy the full SHA
    f90ce12 View commit details
    Browse the repository at this point in the history
Loading