Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue v9 release #1947

Merged
merged 5 commits into from
Apr 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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 |
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
| 8.x | 2022-06-01 | TBD | 14, 16, 18 |
| 8.x | 2022-06-01 | TBD | 14, 16, 18, 20 |

| 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