Skip to content
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
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ name: CI
on:
pull_request:
branches: [main]
workflow_dispatch:

concurrency:
group: ci-${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.23.0"
".": "1.23.1"
}
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ All notable changes to ShelfBridge will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.23.1](https://github.com/rohit-purandare/ShelfBridge/compare/v1.23.0...v1.23.1) (2026-03-25)


### ## 🔧 Bug Fixes

* include subtitle in title/author matching for extractTitle ([74221fe](https://github.com/rohit-purandare/ShelfBridge/commit/74221feefe6f0dbf2f6c7236e24669615654e753))
* include subtitle in title/author matching for extractTitle ([b50e6a7](https://github.com/rohit-purandare/ShelfBridge/commit/b50e6a7943ff9a4a17d5522e5b90831404cea4d3))
* resolve security vulnerabilities via npm audit fix ([d12d11a](https://github.com/rohit-purandare/ShelfBridge/commit/d12d11a946ae90bb4896a6ee6d1dda1461b5774f))

## [1.23.0](https://github.com/rohit-purandare/ShelfBridge/compare/v1.22.5...v1.23.0) (2026-01-19)


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,6 +1,6 @@
{
"name": "shelfbridge",
"version": "1.23.0",
"version": "1.23.1",
"description": "Sync your audiobook listening progress from Audiobookshelf to Hardcover automatically",
"main": "src/main.js",
"type": "module",
Expand Down
3 changes: 2 additions & 1 deletion wiki/technical/GitHub-Workflows.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ ShelfBridge uses **3 streamlined GitHub Actions workflows** following industry s
### Triggers

- Pull requests to `main` (primary validation)
- Manual dispatch via `workflow_dispatch` (useful for release-please PRs where bot-created PRs don't automatically trigger workflows)

### Jobs

Expand Down Expand Up @@ -60,7 +61,7 @@ ShelfBridge uses **3 streamlined GitHub Actions workflows** following industry s

### Performance Optimizations

- **Pull request focused**: Only runs on PRs for branch protection (no redundant push triggers)
- **Pull request focused**: Primarily runs on PRs, with manual dispatch available for bot-created PRs
- Full Git history (`fetch-depth: 0`) for reliable Git operations
- Matrix strategy for parallel testing
- Conditional job execution
Expand Down
Loading