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: JustinBeckwith/linkinator
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.14.0
Choose a base ref
...
head repository: JustinBeckwith/linkinator
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.14.1
Choose a head ref
  • 7 commits
  • 4 files changed
  • 5 contributors

Commits on Jul 7, 2021

  1. chore(deps): update dependency @types/cheerio to v0.22.30 (#318)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Jul 7, 2021
    Copy the full SHA
    395ad5b View commit details

Commits on Aug 12, 2021

  1. Copy the full SHA
    025a263 View commit details

Commits on Sep 18, 2021

  1. chore(deps): update dependency semantic-release to v18 (#331)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Sep 18, 2021
    Copy the full SHA
    295617c View commit details

Commits on Sep 27, 2021

  1. build(deps): bump nth-check from 2.0.0 to 2.0.1 (#332)

    Bumps [nth-check](https://github.com/fb55/nth-check) from 2.0.0 to 2.0.1.
    - [Release notes](https://github.com/fb55/nth-check/releases)
    - [Commits](fb55/nth-check@v2.0.0...v2.0.1)
    
    ---
    updated-dependencies:
    - dependency-name: nth-check
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 27, 2021
    Copy the full SHA
    f906d49 View commit details
  2. chore(deps): update dependency nth-check to 2.0.1 [security] (#333)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Sep 27, 2021
    Copy the full SHA
    a30fe8f View commit details
  3. chore(deps): update dependency ansi-regex to 5.0.1 [security] (#334)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Sep 27, 2021
    Copy the full SHA
    86a52fa View commit details

Commits on Oct 5, 2021

  1. fix(perf): refactor to use htmlparser2 (#335)

    Refactor to use htmlparser2 which performs parsing in a single
    pass. This is the same underlying parser used by cheerio.
    bcoe authored Oct 5, 2021
    Copy the full SHA
    ce88410 View commit details
Showing with 4,225 additions and 4,513 deletions.
  1. +1 −1 .github/workflows/ci.yaml
  2. +4,193 −4,470 package-lock.json
  3. +2 −3 package.json
  4. +29 −39 src/links.ts
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [10, 12, 14, 15]
node: [10, 12, 14, 16]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
Loading