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: ehmicky/log-process-errors
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8.0.0
Choose a base ref
...
head repository: ehmicky/log-process-errors
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9.0.0
Choose a head ref

Commits on Feb 13, 2022

  1. Fix typo

    ehmicky committed Feb 13, 2022
    Copy the full SHA
    88d069b View commit details
  2. Copy the full SHA
    309734c View commit details
  3. Copy the full SHA
    135c5b0 View commit details
  4. Copy the full SHA
    1316c11 View commit details
  5. Fix new Jasmine version

    ehmicky committed Feb 13, 2022
    Copy the full SHA
    961478e View commit details
  6. Upgrade mocha 9.2.0 -> 9.2.1

    ehmicky committed Feb 13, 2022
    Copy the full SHA
    1dc60b5 View commit details
  7. Copy the full SHA
    e773418 View commit details
  8. Copy the full SHA
    3c8cff2 View commit details

Commits on Feb 20, 2022

  1. Copy the full SHA
    970e415 View commit details
  2. Upgrade tap 15.0.10 -> 15.1.6

    ehmicky committed Feb 20, 2022
    Copy the full SHA
    b4c5fd7 View commit details
  3. Copy the full SHA
    a8dadde View commit details

Commits on Feb 26, 2022

  1. Upgrade setup-node

    ehmicky committed Feb 26, 2022
    Copy the full SHA
    6f27078 View commit details

Commits on Mar 6, 2022

  1. Copy the full SHA
    6415919 View commit details

Commits on Mar 7, 2022

  1. Upgrade github checkout

    ehmicky committed Mar 7, 2022
    Copy the full SHA
    3247e85 View commit details

Commits on Mar 27, 2022

  1. Copy the full SHA
    3e469cd View commit details
  2. Copy the full SHA
    27c1e2d View commit details
  3. Update lock file

    ehmicky committed Mar 27, 2022
    Copy the full SHA
    9e56c81 View commit details

Commits on Apr 3, 2022

  1. Copy the full SHA
    32fa0e7 View commit details
  2. Upgrade tap 15.2.3 -> 16.0.1

    ehmicky committed Apr 3, 2022
    Copy the full SHA
    0d79851 View commit details
  3. Copy the full SHA
    bf266e8 View commit details
  4. Upgrade tape 5.5.2 -> 5.5.3

    ehmicky committed Apr 3, 2022
    Copy the full SHA
    780f8fc View commit details

Commits on May 1, 2022

  1. Copy the full SHA
    bd93808 View commit details
  2. Remove test coverage

    ehmicky committed May 1, 2022
    Copy the full SHA
    9ce23b6 View commit details
  3. Simplify test helper

    ehmicky committed May 1, 2022
    Copy the full SHA
    cee2cc3 View commit details
  4. Simplify test helpers

    ehmicky committed May 1, 2022
    Copy the full SHA
    dca94aa View commit details

Commits on May 2, 2022

  1. Remove CODECOV_TOKEN

    ehmicky committed May 2, 2022
    Copy the full SHA
    c34fbf1 View commit details

Commits on May 7, 2022

  1. Drop Node 12 support

    ehmicky committed May 7, 2022
    Copy the full SHA
    3721716 View commit details

Commits on May 8, 2022

  1. Simplify test

    ehmicky committed May 8, 2022
    Copy the full SHA
    91c73ed View commit details
  2. Copy the full SHA
    c8fe4d6 View commit details
  3. Copy the full SHA
    9140f4c View commit details
  4. Copy the full SHA
    75b2a56 View commit details
  5. Update changelog

    ehmicky committed May 8, 2022
    Copy the full SHA
    dfb3891 View commit details
  6. Release 9.0.0

    ehmicky committed May 8, 2022
    Copy the full SHA
    eaca852 View commit details
14 changes: 8 additions & 6 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Build
on: [push, pull_request]
env:
# This projects has many layers of nested processes making test coverage not
# work correctly
COVERAGE: 'false'
jobs:
combinations:
# git push --tags does not create any commits so should not trigger a new
@@ -14,16 +18,16 @@ jobs:
node: [16]
include:
- os: ubuntu-latest
node: 12.20.0
node: 14.18.0
fail-fast: false
runs-on: ${{ matrix.os }}
# We do not use @actions/cache because restoring/saving cache currently
# takes more time than the time saved on `npm ci`
steps:
- name: Git checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Node.js ${{ matrix.node }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: npm
@@ -32,7 +36,7 @@ jobs:
# installation
- name: Install latest npm
run: npm install -g npm
if: "${{ matrix.node == '12.20.0' }}"
if: "${{ matrix.node == '14.18.0' }}"
- name: Install dependencies
run: npm ci
- name: Linting
@@ -43,5 +47,3 @@ jobs:
run: npx gulp unit
- name: Upload test coverage
run: npx gulp uploadCoverage
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
# 9.0.0

## Breaking changes

- Minimal supported Node.js version is now `14.18.0`

# 8.0.0

## Breaking changes

- `multipleResolves` has been
[deprecated by Node.js](https://github.com/nodejs/node/pull/41872). Therefore,
support for it as been removed.
support for it has been removed.
- If your code uses the `level` or `exitOn` option with a `multipleResolves`
parameter, you should remove it.
- Otherwise, this release is not a breaking change for you.
Loading