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: npm/node-semver
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.6.0
Choose a base ref
...
head repository: npm/node-semver
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.6.2
Choose a head ref
  • 14 commits
  • 28 files changed
  • 9 contributors

Commits on Feb 7, 2024

  1. fix: typo in compareBuild debug message (#682)

    Correcting the debug message in `compareBuild`
    mbtools authored Feb 7, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ac9b357 View commit details

Commits on Mar 20, 2024

  1. chore: various improvements to README (#688)

    mbtools authored Mar 20, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    692451b View commit details

Commits on Apr 7, 2024

  1. chore: add benchmarks (#696)

    I had these benchmarks from the last time I did some perf research in
    this repo, so I thought maybe it was a good idea to have them in the
    repo itself, so other people can use them and you guys can verify if the
    perf is still good or you had any regression.
    H4ad authored Apr 7, 2024
    1
    Copy the full SHA
    b236c3d View commit details

Commits on Apr 21, 2024

  1. chore: bump @npmcli/template-oss from 4.21.3 to 4.21.4

    Bumps [@npmcli/template-oss](https://github.com/npm/template-oss) from 4.21.3 to 4.21.4.
    - [Release notes](https://github.com/npm/template-oss/releases)
    - [Changelog](https://github.com/npm/template-oss/blob/main/CHANGELOG.md)
    - [Commits](npm/template-oss@v4.21.3...v4.21.4)
    
    ---
    updated-dependencies:
    - dependency-name: @npmcli/template-oss
      dependency-type: direct:development
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and lukekarrys committed Apr 21, 2024
    Copy the full SHA
    074156f View commit details
  2. chore: chore: chore: postinstall for dependabot template-oss PR

    lukekarrys committed Apr 21, 2024
    Copy the full SHA
    ec49cdc View commit details

Commits on May 2, 2024

  1. deps: remove lru-cache

    mbtools authored and wraithgar committed May 2, 2024
    Copy the full SHA
    3fabe4d View commit details
  2. fix: use internal cache implementation

    This change removes the dependency on the `lru-cache` package. It is
    replaced by a comparable, but much simpler class in this package.
    mbtools authored and wraithgar committed May 2, 2024
    Copy the full SHA
    ad8ff11 View commit details
  3. fix(linting): no-unused-vars

    wraithgar committed May 2, 2024
    1
    Copy the full SHA
    c570a34 View commit details

Commits on May 3, 2024

  1. Copy the full SHA
    dd09b60 View commit details
  2. chore: postinstall for dependabot template-oss PR

    lukekarrys committed May 3, 2024
    1
    Copy the full SHA
    5feeb7f View commit details

Commits on May 4, 2024

  1. deps: uninstall lru-cache (#709)

    #704 removed usage of `lru-cache`, but the dependency wasn't removed
    from `package.json`
    SuperchupuDev authored May 4, 2024
    Copy the full SHA
    988a8de View commit details

Commits on May 7, 2024

  1. chore: release 7.6.1 (#706)

    🤖 I have created a release *beep* *boop*
    ---
    
    
    ## [7.6.1](v7.6.0...v7.6.1)
    (2024-05-04)
    
    ### Bug Fixes
    
    *
    [`c570a34`](c570a34)
    [#704](#704) linting:
    no-unused-vars (@wraithgar)
    *
    [`ad8ff11`](ad8ff11)
    [#704](#704) use internal cache
    implementation (@mbtools)
    *
    [`ac9b357`](ac9b357)
    [#682](#682) typo in compareBuild
    debug message (#682) (@mbtools)
    
    ### Dependencies
    
    *
    [`988a8de`](988a8de)
    [#709](#709) uninstall
    `lru-cache` (#709)
    *
    [`3fabe4d`](3fabe4d)
    [#704](#704) remove lru-cache
    
    ### Chores
    
    *
    [`dd09b60`](dd09b60)
    [#705](#705) bump
    @npmcli/template-oss to 4.22.0 (@lukekarrys)
    *
    [`ec49cdc`](ec49cdc)
    [#701](#701) chore: chore:
    postinstall for dependabot template-oss PR (@lukekarrys)
    *
    [`b236c3d`](b236c3d)
    [#696](#696) add benchmarks
    (#696) (@H4ad)
    *
    [`692451b`](692451b)
    [#688](#688) various improvements
    to README (#688) (@mbtools)
    *
    [`5feeb7f`](5feeb7f)
    [#705](#705) postinstall for
    dependabot template-oss PR (@lukekarrys)
    *
    [`074156f`](074156f)
    [#701](#701) bump
    @npmcli/template-oss from 4.21.3 to 4.21.4 (@dependabot[bot])
    
    ---
    This PR was generated with [Release
    Please](https://github.com/googleapis/release-please). See
    [documentation](https://github.com/googleapis/release-please#release-please).
    
    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    github-actions[bot] authored May 7, 2024
    Copy the full SHA
    d777418 View commit details

Commits on May 9, 2024

  1. fix(lru): use map.delete() directly (#713)

    The default implementation already returns boolean if the value has been
    deleted.
    
    
    https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/delete#return_value
    
    It's also faster since we don't double check the hashmap for a value.
    
    ---------
    
    Co-authored-by: Luke Karrys <[email protected]>
    negezor and lukekarrys authored May 9, 2024
    1
    Copy the full SHA
    6466ba9 View commit details
  2. chore: release 7.6.2 (#714)

    🤖 I have created a release *beep* *boop*
    ---
    
    
    ## [7.6.2](v7.6.1...v7.6.2)
    (2024-05-09)
    
    ### Bug Fixes
    
    *
    [`6466ba9`](6466ba9)
    [#713](#713) lru: use
    map.delete() directly (#713) (@negezor, @lukekarrys)
    
    ---
    This PR was generated with [Release
    Please](https://github.com/googleapis/release-please). See
    [documentation](https://github.com/googleapis/release-please#release-please).
    
    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    github-actions[bot] authored May 9, 2024
    Copy the full SHA
    eb1380b View commit details
Loading