Skip to content

Commit

Permalink
Issue v9 release (#1947)
Browse files Browse the repository at this point in the history
* Issue v9 release

* Bumped v8.21.0

Signed-off-by: Matteo Collina <hello@matteocollina.com>

* fixup

Signed-off-by: Matteo Collina <hello@matteocollina.com>

---------

Signed-off-by: Matteo Collina <hello@matteocollina.com>
Co-authored-by: Matteo Collina <hello@matteocollina.com>
  • Loading branch information
jsumners and mcollina committed Apr 24, 2024
1 parent b5fa32c commit 4f8ea32
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 12 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -42,10 +42,8 @@ jobs:
fail-fast: false
matrix:
os: [macOS-latest, windows-latest, ubuntu-latest]
node-version: [14, 16, 18, 19, 20, 21]
exclude:
- os: windows-latest
node-version: 14
node-version: [18, 20, 21]

steps:
- name: Check out repo
uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/package-manager-ci.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest]
node-version: [16]
node-version: [20]
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -39,7 +39,7 @@ jobs:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest]
node-version: [16]
node-version: [20]
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest]
node-version: [16]
node-version: [20]
steps:
- uses: actions/checkout@v4
with:
Expand Down
7 changes: 4 additions & 3 deletions docs/lts.md
Expand Up @@ -43,6 +43,7 @@ A "month" is defined as 30 consecutive days.

| Version | Release Date | End Of LTS Date | Node.js |
| :------ | :----------- | :-------------- | :------------------- |
| 9.x | TBD. | TBD | 18, 20 |
| 8.x | 2022-06-01 | TBD | 14, 16, 18 |
| 7.x | 2021-10-14 | 2023-06-01 | 12, 14, 16 |
| 6.x | 2020-03-07 | 2022-04-14 | 10, 12, 14, 16 |
Expand All @@ -58,6 +59,6 @@ the YAML workflow labels below:

| OS | YAML Workflow Label | Node.js |
|---------|------------------------|--------------|
| Linux | `ubuntu-latest` | 14,16,18 |
| Windows | `windows-latest` | 14,16,18 |
| MacOS | `macos-latest` | 14,16,18 |
| Linux | `ubuntu-latest` | 18, 20, 21 |
| Windows | `windows-latest` | 18, 20, 21 |
| MacOS | `macos-latest` | 18, 20, 21 |
2 changes: 1 addition & 1 deletion lib/meta.js
@@ -1,3 +1,3 @@
'use strict'

module.exports = { version: '8.21.0' }
module.exports = { version: '9.0.0' }
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "pino",
"version": "8.21.0",
"version": "9.0.0",
"description": "super fast, all natural json logger",
"main": "pino.js",
"type": "commonjs",
Expand Down

3 comments on commit 4f8ea32

@kibertoad
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jsumners No changes other than Node version compatibility drop at this point?

@kibertoad
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jsumners Why use 21 and not 22, which has just landed?

@jsumners
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

22 didn't exist when the PR was created. Yes, I forgot about dependencies. Please submit a PR to correct both things.

Please sign in to comment.