Skip to content

fix: Juice CI errors on v14 #33

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

Closed
wants to merge 4 commits into from
Closed
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
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
test:
strategy:
matrix:
node-version: [14.x]
node-version: [18.x]
os: [ubuntu-latest, windows-latest]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## What's New

**v3.9.0**

- Replaces `inline-css` with `juice` for all HTML methods, and returns the juiced HTML from all methods. [#11](https://github.com/PartMan7/PS-Client/pull/11) by [@singiamtel](https://github.com/singiamtel)

_**Warning**: This bumps up Node requirements from v14 to v16._

**v3.8.2**

- Fixes isTrusted logic and adds an 'activate' event.
Expand Down
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,7 +1,7 @@
{
"name": "ps-client",
"homepage": "https://github.com/PartMan7/PS-Client#readme",
"version": "3.8.2",
"version": "3.9.0",
"description": "Package for connecting to Pokemon Showdown servers.",
"main": "client.js",
"scripts": {
Expand Down
Loading