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

Release pa11y-webservice-client-node@4 #24

Merged
merged 5 commits into from
Mar 26, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Changelog

For versions below `4.0.0`, see the project's [tags](https://github.com/pa11y/pa11y-webservice-client-node/tags) on GitHub.

## 4.0.0

### Changes

* **Major:** Require Node.js `18-20`, up from `12-16`
* **Major:** `pa11y-webservice@4` is now unambiguously licensed as `LGPL-3.0-only`
* **Major:** Update support policy
* Improve project verification and publishing

### New contributors

* @danyalaytekin made their first contribution in https://github.com/pa11y/pa11y-webservice-client-node/pull/19

### Full diff

[3.0.0...4.0.0](https://github.com/pa11y/pa11y-webservice-client-node/compare/3.0.0...4.0.0)

6 changes: 3 additions & 3 deletions MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ This package's API and/or supported set of environments changes between major ve

## Migrating to 4 from 3

1. Upgrade to Node.js 18 or above.
1. Upgrade to Node.js 18 or 20.

## Migrating to 3 from 2

1. Upgrade to Node.js 12 or above.
1. Upgrade to Node.js 12, 14, or 16.

## Migrating to 2 from 1

1. Upgrade to Node.js 8 or above.
1. Upgrade to Node.js 8 or 10.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ This is a Node.js client library for [Pa11y Webservice][pa11y-webservice].

[![Latest version published to npm][shield-npm]][info-npm]
[![Node.js version support][shield-node]][info-node]
[![Supports pa11y-webservice@4 API][shield-api]][pa11y-webservice]
[![Build status][shield-build]][info-build]
[![LGPL-3.0 licensed][shield-license]][info-license]

Expand Down Expand Up @@ -184,7 +185,8 @@ The following table lists the major versions available and, for each previous ma

| Major version | Final minor version | Node.js support | Support end date |
| :-------------- | :------------------ | :----------------------- | :--------------- |
| `3` | | `>= 12` | ✅ Current major version |
| `4` | | `18`, `20` | ✅ Current major version |
| `3` | `3.0` | `12`, `14`, `16` | September 2024 |
| `2` | `2.0` | `8`, `10` | 2022-05-26 |
| `1` | `1.2` | `0.10`, `0.12`, `4`, `6` | 2020-01-05 |

Expand All @@ -195,11 +197,14 @@ Copyright © 2013-2024, Team Pa11y

[pa11y-webservice]: https://github.com/pa11y/pa11y-webservice
[wiki-web-service]: https://github.com/pa11y/pa11y-webservice/wiki/Web-Service-Endpoints

[info-build]: https://github.com/pa11y/pa11y-webservice-client-node/actions/workflows/tests.yml
[info-license]: LICENSE
[info-node]: package.json
[info-npm]: https://www.npmjs.com/package/pa11y-webservice-client-node

[shield-build]: https://github.com/pa11y/pa11y-webservice-client-node/actions/workflows/tests.yml/badge.svg
[shield-license]: https://img.shields.io/badge/license-LGPL%203.0-blue.svg
[shield-node]: https://img.shields.io/node/v/pa11y-webservice-client-node.svg
[shield-npm]: https://img.shields.io/npm/v/pa11y-webservice-client-node.svg
[shield-api]: https://img.shields.io/badge/[email protected]
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pa11y-webservice-client-node",
"version": "3.0.0",
"version": "4.0.0",
"engines": {
"node": ">=18"
},
Expand Down
Loading