From 2edf2fab8932a5360fbcb7d6a4a76ebd8f646d9c Mon Sep 17 00:00:00 2001 From: Linus Rath Date: Thu, 19 Mar 2026 10:16:47 +0100 Subject: [PATCH] chore: bump version to 1.4.3 --- CHANGELOG.md | 16 ++++++++++++++++ README.md | 2 +- VERSION | 2 +- app/[locale]/login/page.tsx | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 6 files changed, 22 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index facf803b..15f82fc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## 1.4.3 (2026-03-19) + +### Features + +- **Auth**: Implement multi-account support with up to 5 simultaneous accounts and instant switching +- **Auth**: Add account switcher component with connection status, default account selection, and per-account logout +- **Auth**: Support multi-account OAuth and basic auth with per-account session persistence +- **Contacts**: Enhance contacts sidebar with collapsible sections, bulk operations, and address book grouping +- **Contacts**: Add contact import functionality and keyword filtering +- **Settings**: Add per-account encrypted settings storage with server-side sync support + +### Fixes + +- **UI**: Adjust popover alignment in sub-address helper component +- **Settings**: Improve error logging in settings sync functionality + ## 1.4.2 (2026-03-19) ### Features diff --git a/README.md b/README.md index a622c10a..c5c8f64b 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ A modern, self-hosted webmail client for [Stalwart Mail Server](https://stalw.ar Built with Next.js and the JMAP protocol. [![License: AGPL v3](https://img.shields.io/badge/license-AGPL%20v3-blue.svg)](LICENSE) -[![Version](https://img.shields.io/badge/version-1.4.2-green.svg)](CHANGELOG.md) +[![Version](https://img.shields.io/badge/version-1.4.3-green.svg)](CHANGELOG.md) [![Docker](https://img.shields.io/badge/docker-ghcr.io%2Fbulwarkmail%2Fwebmail-blue)](https://ghcr.io/bulwarkmail/webmail) diff --git a/VERSION b/VERSION index 9df886c4..428b770e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.4.2 +1.4.3 diff --git a/app/[locale]/login/page.tsx b/app/[locale]/login/page.tsx index 6b07e17c..c527bbbf 100644 --- a/app/[locale]/login/page.tsx +++ b/app/[locale]/login/page.tsx @@ -16,7 +16,7 @@ import { discoverOAuth, type OAuthMetadata } from "@/lib/oauth/discovery"; import { generateCodeVerifier, generateCodeChallenge, generateState } from "@/lib/oauth/pkce"; import { OAUTH_SCOPES } from "@/lib/oauth/tokens"; -const APP_VERSION = "1.4.2"; +const APP_VERSION = "1.4.3"; const THEME_OPTIONS = [ { value: "light" as const, icon: Sun, label: "Light" }, diff --git a/package-lock.json b/package-lock.json index 86bddba9..fc179b89 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "bulwark-webmail", - "version": "1.4.2", + "version": "1.4.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "bulwark-webmail", - "version": "1.4.2", + "version": "1.4.3", "license": "AGPL-3.0-only", "dependencies": { "@tanstack/react-virtual": "^3.13.18", diff --git a/package.json b/package.json index 193f1662..b98d05d8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bulwark-webmail", - "version": "1.4.2", + "version": "1.4.3", "description": "Bulwark Webmail — a modern webmail client built for Stalwart Mail Server", "author": "Bulwark Webmail ", "license": "AGPL-3.0-only",