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
22 changes: 21 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
# [0.29.0](https://github.com/prefabs-tech/saas/compare/v0.28.0...v0.29.0) (2026-03-17)


### Bug Fixes

* **fastify/migrations:** increase accounts table database column from VARCHAR(10) to VARCHAR(24)
* **fastify/migrations:** increase accounts table database column to VARCHAR(24) ([a496ce3](https://github.com/prefabs-tech/saas/commit/a496ce3e3ab3b4269493f4332a266e08e3b5d81c))
* **fastify:** zod type assertions in sqlFactory and format useGlobalAccountError ([23b800b](https://github.com/prefabs-tech/saas/commit/23b800baa1064979dcfc750629b18093131912f9))
* **react/accounts-provider:** fix missing hook dependencies and use queueMicrotask for account fetch ([4b7b81e](https://github.com/prefabs-tech/saas/commit/4b7b81e9252dd24ddcd75ad775d30cf99f1dcde7))
* **react/invitations-table:** fix missing dependencies in useCallback and useMemo ([4b7b81e](https://github.com/prefabs-tech/saas/commit/4b7b81e9252dd24ddcd75ad775d30cf99f1dcde7))
* **react/signup-form-actions:** fix conditional useWatch hook violation ([4b7b81e](https://github.com/prefabs-tech/saas/commit/4b7b81e9252dd24ddcd75ad775d30cf99f1dcde7))
* **vue/users:** fix user display name for users with partial names ([4b7b81e](https://github.com/prefabs-tech/saas/commit/4b7b81e9252dd24ddcd75ad775d30cf99f1dcde7))


### Features

* **react:** export GetSaasAppRoutes as a named React component ([4b7b81e](https://github.com/prefabs-tech/saas/commit/4b7b81e9252dd24ddcd75ad775d30cf99f1dcde7))
* **vue:** rewrite MyAccounts store using Pinia composition API ([4b7b81e](https://github.com/prefabs-tech/saas/commit/4b7b81e9252dd24ddcd75ad775d30cf99f1dcde7))


### Refactors

* **react:** rename files and folders to PascalCase ([4b7b81e](https://github.com/prefabs-tech/saas/commit/4b7b81e9252dd24ddcd75ad775d30cf99f1dcde7))
* **fastify/react/vue:** remove ESLint dev dependencies ([bbc73d5](https://github.com/prefabs-tech/saas/commit/bbc73d5aae76964d239a3bf2f38fdf410767e6ae))

# [0.28.0](https://github.com/prefabs-tech/saas/compare/v0.27.2...v0.28.0) (2025-12-23)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prefabs.tech/saas",
"version": "0.28.0",
"version": "0.29.0",
"private": true,
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/fastify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prefabs.tech/saas-fastify",
"version": "0.28.0",
"version": "0.29.0",
"description": "saas plugin for fastify",
"homepage": "https://github.com/prefabs-tech/saas/tree/main/packages/fastify#readme",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prefabs.tech/saas-react",
"version": "0.28.0",
"version": "0.29.0",
"description": "Saas plugin for react",
"type": "module",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prefabs.tech/saas-vue",
"version": "0.28.0",
"version": "0.29.0",
"description": "Saas plugin for vue",
"type": "module",
"exports": {
Expand Down
Loading