From 48cd87749ead196e0e86841dd852e66b412e3ff8 Mon Sep 17 00:00:00 2001 From: Corban-Lee Jones Date: Sat, 26 Apr 2025 16:23:10 +0100 Subject: [PATCH] chore(release): 0.1.3 --- CHANGELOG.md | 19 +++++++++++++++++++ package.json | 5 +++-- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af74946..57f8f30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,25 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [0.1.3](https://gitea.cor.bz/corbz/relay/compare/v0.1.2...v0.1.3) (2025-04-26) + + +### Features + +* add API controller new Feed models ([d03dc8e](https://gitea.cor.bz/corbz/relay/commit/d03dc8ed9024424c9b92d957a86b2f93dd7c7724)) +* added footer with pagination to feed table ([87da782](https://gitea.cor.bz/corbz/relay/commit/87da78286c951105626092415bec0714839ca335)) +* exposed api routes for Feed objects ([95124ec](https://gitea.cor.bz/corbz/relay/commit/95124ec6e5f5c4fabbe2f7facb71f81f426aff56)) +* page size selector for feed table ([07b163a](https://gitea.cor.bz/corbz/relay/commit/07b163a67440f41fe92a2badcb0b84bff9f972ff)) +* preline select box for table pagination ([6cdef67](https://gitea.cor.bz/corbz/relay/commit/6cdef67850fce24b9d75013161c262e50e176e77)) + + +### Bug Fixes + +* **api:** include channels in datatable response for feeds ([10d55be](https://gitea.cor.bz/corbz/relay/commit/10d55be62d36189ab0f191aa8f1a6561c0f1374e)) +* errors with feed datatables api endpoint ([130fa63](https://gitea.cor.bz/corbz/relay/commit/130fa63f69af73279c8489491a1829b6e79f0b0b)) +* missing preline dependencies ([6f820fd](https://gitea.cor.bz/corbz/relay/commit/6f820fdcfc4713c6768b9d85c04477e2fa05cc39)) +* new feed api endpoints using bad regex ([98b9bb1](https://gitea.cor.bz/corbz/relay/commit/98b9bb1fba8a00a8f2d23b70ee422018a5cbf281)) + ### [0.1.2](https://gitea.cor.bz/corbz/relay/compare/v0.1.1...v0.1.2) (2025-04-22) diff --git a/package.json b/package.json index 22d0953..4f309cc 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,11 @@ { "name": "relay", - "version": "0.1.2", + "version": "0.1.3", "main": "index.js", "scripts": { "start": "node ./dist/app.js", - "dev": "npx ts-node -r tsconfig-paths/register ./src/app.ts", + "dryrun": "npx ts-node -r tsconfig-paths/register ./src/app.ts", + "dev": "npm run build:tailwind && npm run build:client && npm run dryrun", "build": "sh ./scripts/build.sh", "build:client": "node esbuild.mjs", "build:server": "npx tsc -p ./tsconfig.json && npx tsc-alias -p ./tsconfig.json",