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
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,28 @@ on people who run and use Custotal, not the internal commit history.

## [Unreleased]

## [1.0.1] - 2026-09-15

### Security

- **Email validation hardening** — an email address is now checked with a linear-time validator that
caps the field at the RFC 5321 maximum (254 characters) before any matching, instead of a pattern
that backtracked.

### Documentation

- docs: update changelog

### Maintenance

- chore: update release workflow
- chore: add github pages
- chore: fix codeql reported issues
- chore(deps-dev): bump the root-dev-dependencies group across 1 directory with 4 updates
- chore: update readme
- chore(deps): bump the github-actions group across 1 directory with 4 updates
- chore(deps): bump nodemailer from 10.0.3 to 10.0.8

## [1.0.0] - 2026-09-13

Initial public release — Custotal is a self-hosted CRM that keeps your customer data in your
Expand Down Expand Up @@ -70,5 +86,6 @@ control.
attestation, and the dependency-review workflow blocks newly introduced high-severity advisories
and copyleft licenses.

[Unreleased]: https://github.com/orbivort/custotal/compare/v1.0.0...HEAD
[Unreleased]: https://github.com/orbivort/custotal/compare/v1.0.1...HEAD
[1.0.1]: https://github.com/orbivort/custotal/releases/tag/v1.0.1
[1.0.0]: https://github.com/orbivort/custotal/releases/tag/v1.0.0
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "custotal",
"private": true,
"version": "1.0.0",
"version": "1.0.1",
"description": "Self-hosted CRM for small sales teams — your customer data stays in your own PostgreSQL database.",
"license": "Apache-2.0",
"author": "Orbivort",
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@custotal/backend",
"private": true,
"version": "1.0.0",
"version": "1.0.1",
"description": "Custotal backend — Express 5 + Prisma 7 + PostgreSQL REST API for the self-hosted CRM.",
"license": "Apache-2.0",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@custotal/frontend",
"private": true,
"version": "1.0.0",
"version": "1.0.1",
"description": "Custotal frontend — React 19 + Vite 8 single-page application for the self-hosted CRM.",
"license": "Apache-2.0",
"repository": {
Expand Down
Loading