Skip to content
Open
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/ci-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [14, 16, 18, 20, 22, 24, 25]
node: [14, 16, 18, 20, 22, 24, 25, 26]
os: [ubuntu-latest, macOS-latest, windows-latest]
exclude:
- node: 14
Expand All @@ -32,7 +32,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [14, 16, 18, 20, 22, 24, 25]
node: [14, 16, 18, 20, 22, 24, 25, 26]
os: [ubuntu-latest, macOS-latest, windows-latest]
exclude:
- node: 14
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.8.3
* add JXL to supported image formats
* add node 26 as test target

## 1.8.2
* Removed the `GET` with body HTTP call that was being made when obtaining the results of a compression and transforming at the same time. Replaced with `POST` in order to prepare for deprecation of `GET` with body interface from API.
* Updated dependencies.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tinify",
"version": "1.8.2",
"version": "1.8.3",
"description": "Node.js client for the Tinify API. Tinify compresses your images intelligently. Read more at https://tinify.com.",
"keywords": [
"tinify",
Expand Down Expand Up @@ -54,4 +54,4 @@
"tslint": "^5.10.0",
"typescript": "^5.7.3"
}
}
}
1 change: 1 addition & 0 deletions src/tinify/Source.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export type SupportedImageTypes = "image/webp"
| "image/png"
| "image/jpg"
| "image/jpeg"
| "image/jxl"
| "image/avif";

export type WildcardOrSupportedImageTypes = SupportedImageTypes
Expand Down
Loading