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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
- 'app/**'
- '.github/workflows/**'
pull_request:
types: [opened, synchronize, reopened, closed]
types: [opened, synchronize, reopened]
branches:
- master
- dev
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to Workout Lens are documented here.

## [1.5.13] — 2026-05-16

### Developer / Infrastructure
- **Remove `closed` from `ci.yml` PR types (issue #258)** — the `closed` event and the `push` event both share the same concurrency group, causing the deploy job to be silently cancelled on every PR merge. Staging cleanup is handled exclusively by `cleanup-staging.yml`.
- **Bump `package.json` version to `1.5.13`** — versions `1.5.11` and `1.5.12` were released without updating `package.json`, so the Settings page was showing a stale `v1.5.10`. Fast-forwarded to `1.5.13` to reflect all changes since `1.5.10`.

## [1.5.12] — 2026-05-16

### Security
Expand Down
15 changes: 15 additions & 0 deletions app/api/__tests__/packageVersion.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { describe, it, expect } from 'vitest';
import { readFileSync } from 'fs';
import { resolve } from 'path';

describe('package.json version sync', () => {
it('matches the latest version in CHANGELOG.md', () => {
const pkg = JSON.parse(readFileSync(resolve(__dirname, '../../package.json'), 'utf8'));
const changelog = readFileSync(resolve(__dirname, '../../../CHANGELOG.md'), 'utf8');

const match = changelog.match(/^## \[(\d+\.\d+\.\d+)\]/m);
expect(match, 'No version heading found in CHANGELOG.md').toBeTruthy();

expect(pkg.version).toBe(match[1]);
});
});
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "workout-lens",
"private": true,
"version": "1.5.10",
"version": "1.5.13",
"author": "Christopher Rotnes",
"license": "MIT",
"repository": {
Expand Down
Loading