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: Codex-/cosmiconfig-typescript-loader
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.1.1
Choose a base ref
...
head repository: Codex-/cosmiconfig-typescript-loader
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3.1.2
Choose a head ref
  • 11 commits
  • 6 files changed
  • 2 contributors

Commits on Jul 31, 2022

  1. Verified

    This commit was signed with the committer’s verified signature.
    renovate-bot Mend Renovate
    Copy the full SHA
    05ee156 View commit details
  2. build(deps): bump actions/checkout from 2 to 3

    Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v2...v3)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Jul 31, 2022
    Copy the full SHA
    d0b38c3 View commit details
  3. build(deps): bump actions/setup-node from 2 to 3

    Bumps [actions/setup-node](https://github.com/actions/setup-node) from 2 to 3.
    - [Release notes](https://github.com/actions/setup-node/releases)
    - [Commits](actions/setup-node@v2...v3)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-node
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Jul 31, 2022
    Copy the full SHA
    2b2a9a2 View commit details
  4. build(deps): bump codecov/codecov-action from 2 to 3

    Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 2 to 3.
    - [Release notes](https://github.com/codecov/codecov-action/releases)
    - [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md)
    - [Commits](codecov/codecov-action@v2...v3)
    
    ---
    updated-dependencies:
    - dependency-name: codecov/codecov-action
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Jul 31, 2022
    Copy the full SHA
    db0d15c View commit details

Commits on Aug 1, 2022

  1. Merge pull request #32 from Codex-/dependabot/github_actions/actions/…

    …checkout-3
    
    build(deps): bump actions/checkout from 2 to 3
    Codex- authored Aug 1, 2022
    Copy the full SHA
    2e510d0 View commit details
  2. Merge pull request #33 from Codex-/dependabot/github_actions/actions/…

    …setup-node-3
    
    build(deps): bump actions/setup-node from 2 to 3
    Codex- authored Aug 1, 2022
    Copy the full SHA
    bf0e5d9 View commit details
  3. Merge pull request #34 from Codex-/dependabot/github_actions/codecov/…

    …codecov-action-3
    
    build(deps): bump codecov/codecov-action from 2 to 3
    Codex- authored Aug 1, 2022
    Copy the full SHA
    b28aacf View commit details
  4. build(deps-dev): bump eslint from 8.20.0 to 8.21.0

    Bumps [eslint](https://github.com/eslint/eslint) from 8.20.0 to 8.21.0.
    - [Release notes](https://github.com/eslint/eslint/releases)
    - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
    - [Commits](eslint/eslint@v8.20.0...v8.21.0)
    
    ---
    updated-dependencies:
    - dependency-name: eslint
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Aug 1, 2022
    Copy the full SHA
    8b44e93 View commit details
  5. Merge pull request #35 from Codex-/dependabot/npm_and_yarn/eslint-8.21.0

    build(deps-dev): bump eslint from 8.20.0 to 8.21.0
    Codex- authored Aug 1, 2022
    Copy the full SHA
    415618e View commit details

Commits on Aug 26, 2022

  1. chore: bump dependencies

    Codex- committed Aug 26, 2022
    Copy the full SHA
    b0f4bc4 View commit details
  2. Release 3.1.2

    Codex- committed Aug 26, 2022
    Copy the full SHA
    9938cb4 View commit details
Showing with 445 additions and 710 deletions.
  1. +8 −3 .github/dependabot.yml
  2. +5 −5 .github/workflows/build.yml
  3. +3 −3 .github/workflows/release.yml
  4. +13 −0 CHANGELOG.md
  5. +408 −691 package-lock.json
  6. +8 −8 package.json
11 changes: 8 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
- package-ecosystem: github-actions
directory: /
schedule:
interval: "monthly"
interval: monthly

- package-ecosystem: npm
directory: /
schedule:
interval: monthly
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -13,9 +13,9 @@ jobs:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
@@ -44,14 +44,14 @@ jobs:
CI: true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js lts
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: lts/*
cache: npm
- run: npm ci
- name: test
run: npm run test -- --coverage
- name: codecov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -20,11 +20,11 @@ jobs:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Need history for changelog generation
- name: Use Node.js lts
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: lts/*
registry-url: https://registry.npmjs.org
@@ -56,4 +56,4 @@ jobs:
--ci
- name: codecov # Perform after version publishing
if: steps.test.outcome == 'success'
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,8 +4,21 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [3.1.2](https://github.com/Codex-/cosmiconfig-typescript-loader/compare/3.1.1...3.1.2)

- build(deps-dev): bump eslint from 8.20.0 to 8.21.0 [`#35`](https://github.com/Codex-/cosmiconfig-typescript-loader/pull/35)
- build(deps): bump codecov/codecov-action from 2 to 3 [`#34`](https://github.com/Codex-/cosmiconfig-typescript-loader/pull/34)
- build(deps): bump actions/setup-node from 2 to 3 [`#33`](https://github.com/Codex-/cosmiconfig-typescript-loader/pull/33)
- build(deps): bump actions/checkout from 2 to 3 [`#32`](https://github.com/Codex-/cosmiconfig-typescript-loader/pull/32)
- chore: bump dependencies [`b0f4bc4`](https://github.com/Codex-/cosmiconfig-typescript-loader/commit/b0f4bc4fd3b67c7af5afdbf42180ece387beb422)
- cicd: add action checking to dependabot. [`05ee156`](https://github.com/Codex-/cosmiconfig-typescript-loader/commit/05ee1566c6ad0f722fd06e53d72b670c0676a8ba)

#### [3.1.1](https://github.com/Codex-/cosmiconfig-typescript-loader/compare/3.1.0...3.1.1)

> 29 July 2022
- Release 3.1.1 [`d16f32a`](https://github.com/Codex-/cosmiconfig-typescript-loader/commit/d16f32ace0eb97a8f6ed99aeb50ce8cb112dc968)

#### [3.1.0](https://github.com/Codex-/cosmiconfig-typescript-loader/compare/3.0.0...3.1.0)

> 29 July 2022
Loading