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: 4.0.0
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: 4.1.0
Choose a head ref
  • 12 commits
  • 8 files changed
  • 3 contributors

Commits on Aug 26, 2022

  1. Verified

    This commit was signed with the committer’s verified signature.
    ljharb Jordan Harband
    Copy the full SHA
    b5380f7 View commit details

Commits on Aug 29, 2022

  1. build(deps-dev): bump eslint from 8.22.0 to 8.23.0

    Bumps [eslint](https://github.com/eslint/eslint) from 8.22.0 to 8.23.0.
    - [Release notes](https://github.com/eslint/eslint/releases)
    - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
    - [Commits](eslint/eslint@v8.22.0...v8.23.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 29, 2022

    Verified

    This commit was signed with the committer’s verified signature.
    ljharb Jordan Harband
    Copy the full SHA
    402587c View commit details
  2. Merge pull request #40 from Codex-/dependabot/npm_and_yarn/eslint-8.23.0

    build(deps-dev): bump eslint from 8.22.0 to 8.23.0
    Codex- authored Aug 29, 2022
    Copy the full SHA
    1a31ea3 View commit details

Commits on Sep 1, 2022

  1. Copy the full SHA
    bd7cfa0 View commit details
  2. Merge pull request #44 from Codex-/renovate/configure

    Configure Renovate
    Codex- authored Sep 1, 2022
    Copy the full SHA
    6c7eb0e View commit details
  3. Copy the full SHA
    c7ca9dc View commit details
  4. Copy the full SHA
    890ce7f View commit details
  5. Copy the full SHA
    35df691 View commit details

Commits on Sep 9, 2022

  1. Copy the full SHA
    a8e1d57 View commit details

Commits on Sep 15, 2022

  1. Merge pull request #48 from Codex-/renovate/major-jest-monorepo

    chore(deps): update jest monorepo to v29 (major)
    Codex- authored Sep 15, 2022
    Copy the full SHA
    e0e73b5 View commit details
  2. Copy the full SHA
    b19da1a View commit details
  3. Release 4.1.0

    Codex- committed Sep 15, 2022
    Copy the full SHA
    fd8ef58 View commit details
Showing with 1,739 additions and 1,118 deletions.
  1. +0 −11 .github/dependabot.yml
  2. +11 −0 .github/renovate.json
  3. +12 −1 CHANGELOG.md
  4. +1,699 −1,083 package-lock.json
  5. +9 −9 package.json
  6. +1 −2 smoke-tests/smoke-test-cjs.js
  7. +1 −2 smoke-tests/smoke-test-esm.mjs
  8. +6 −10 smoke-tests/smoke-test.js
11 changes: 0 additions & 11 deletions .github/dependabot.yml

This file was deleted.

11 changes: 11 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base", ":preserveSemverRanges"],
"timezone": "Pacific/Auckland",
"labels": ["dependencies"],
"vulnerabilityAlerts": {
"labels": ["security"],
"automerge": true,
"assignees": ["@codex-"]
}
}
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,7 +4,18 @@ 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).

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

- chore(deps): update jest monorepo to v29 (major) [`#48`](https://github.com/Codex-/cosmiconfig-typescript-loader/pull/48)
- Configure Renovate [`#44`](https://github.com/Codex-/cosmiconfig-typescript-loader/pull/44)
- build(deps-dev): bump eslint from 8.22.0 to 8.23.0 [`#40`](https://github.com/Codex-/cosmiconfig-typescript-loader/pull/40)
- chore(deps): bump dependencies. [`b19da1a`](https://github.com/Codex-/cosmiconfig-typescript-loader/commit/b19da1ad80708cf44d32baa95f8043fb55e12e40)
- chore(deps): update jest monorepo to v29 [`a8e1d57`](https://github.com/Codex-/cosmiconfig-typescript-loader/commit/a8e1d57ccc66a8795a6ee4a0f18f687899ece740)
- cicd: use renovate instead of dependabot. [`c7ca9dc`](https://github.com/Codex-/cosmiconfig-typescript-loader/commit/c7ca9dc7fc9c200fdabf6b8e488219aa2d7d99cd)

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

> 26 August 2022
- replace default export with a named export [`#37`](https://github.com/Codex-/cosmiconfig-typescript-loader/pull/37)
- test: Add simple pass log, handle the unhandled rejection case. [`d855daa`](https://github.com/Codex-/cosmiconfig-typescript-loader/commit/d855daa18591296237d95d635c5a4b79197278d9)
Loading