Releases: library-pals/read-action
v9.2.1
What's Changed
- Update dependencies + fix tests by @katydecorah in #181
- Add an input identifier for apple books to properly update books by @katydecorah in #180
Full Changelog: v9.2.0...v9.2.1
v9.2.0
What's Changed
- Add support for Apple Books by @katydecorah in #178
- Update dependencies by @katydecorah in #179
Full Changelog: v9.1.0...v9.2.0
v9.1.0
What's Changed
- Restructure files by provider by @katydecorah in #171
- Update eslint and all other configs by @katydecorah in #172
- Update to library-pals/[email protected] by @katydecorah in #173
- Only get first author from Libby by @katydecorah in #175
- Bump braces from 3.0.2 to 3.0.3 by @dependabot in #176
- [email protected] by @katydecorah in #177
Full Changelog: v9.0.0...v9.1.0
v9.0.0
What's Changed
- Switch to @library-pals/isbn by @katydecorah in #159
- Rebrand under Library Pals by @katydecorah in #160
- Replace removeWrappedQuotes to also remove extra space by @katydecorah in #163
- Remove adding summary to run by @katydecorah in #164
- Rename
printType
toformat
; make value lowercase by @katydecorah in #165 - Rename
isbn
input toidentifier
by @katydecorah in #166 - Replace "isbn" with "identifier" by @katydecorah in #167
- Add support for Libby by @katydecorah in #162
- Remove HTML and common award phrases from descriptions by @katydecorah in #170
- Add support for Libro.fm by @katydecorah in #169
Breaking changes!
Renamed input and support for audiobooks
The workflow dispatch input isbn
is now identifier
. Please update this in your workflow files:
on:
workflow_dispatch:
inputs:
+ identifier:
- isbn:
In the identifier
input you can continue to submit ISBN or you can submit a Libby share URL or Libro.fm page!
Examples of identifier
values, all of these are now valid and will generated metadata:
Renamed action
This action has moved from katydecorah/read-action
to library-pals/read-action
. You might want to update the reference in your workflow file, but it appears to redirect properly even with new version:
- name: Add Book
+ uses: library-pals/[email protected]
- uses: katydecorah/[email protected]
Output changes
printType
is now renamed toformat
- you will now see values like "audiobook" or "ebook" from our new data providers Libro.fm and Libby!
Full Changelog: v8.1.0...v9.0.0
v8.1.0
What's Changed
- Add
image
property set by theset-image: {bool}
action input by @katydecorah in #156
Full Changelog: v8.0.0...v8.1.0
v8.0.0
What's Changed
🚨 Breaking change: Consolidate date inputs, introduce book status input with new "abandoned" option by @katydecorah in #150
How to upgrade
Previously, the date-started
, date-finished
or absence of these values set the book's status. Now you must set a book-status
workflow dispatch input. The date files have been consolidated into a single date
input. The date field is still optional. If you do not set it, it will default to today's date.
Update your workflow file with the following:
- Remove
date-started
anddate-finished
fromworkflow_dispatch.inputs
, these fields are no longer available. - Add
book-status
anddate
asworkflow_dispatch.inputs
:
workflow_dispatch:
inputs:
book-status:
description: What is the status of the book? Required.
required: true
type: choice
default: "want to read"
options:
- "want to read"
- "started"
- "finished"
- "abandoned"
date:
description: Date to record the status of the book (YYYY-MM-DD). Leave blank for today. Optional.
type: string
- If using the API to trigger the workflow, update your payload with the new shape.
Full Changelog: v7.4.1...v8.0.0
v7.4.1
What's Changed
- Include authors in nowReading output by @katydecorah in #147
Full Changelog: v7.4.0...v7.4.1
v7.4.0
What's Changed
- Set
nowReading
output by @katydecorah in #144 - Simplify nowReading output object by @katydecorah in #145
Full Changelog: v7.3.0...v7.4.0
v7.3.0
What's Changed
- Add
thumbnail
to required metadata; only export thumb variables if thumbnail exists by @katydecorah in #138
Full Changelog: v7.2.0...v7.3.0