From 1dd7e3bcdcb5547b157506d77a6ce7a85b1dd184 Mon Sep 17 00:00:00 2001
From: Prospector <6166773+Prospector@users.noreply.github.com>
Date: Thu, 30 Oct 2025 16:05:23 -0700
Subject: [PATCH 01/64] add changelog
---
packages/utils/changelog.ts | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/packages/utils/changelog.ts b/packages/utils/changelog.ts
index 41b3f3ce..1b01dbe1 100644
--- a/packages/utils/changelog.ts
+++ b/packages/utils/changelog.ts
@@ -10,6 +10,19 @@ export type VersionEntry = {
}
const VERSIONS: VersionEntry[] = [
+ {
+ date: `2025-10-30T16:30:00-07:00`,
+ product: 'app',
+ version: '0.10.16',
+ body: `## Security fixes
+- Fixed a security vulnerability with .mrpack import zip parsing.
+
+## Improvements
+- Fixed stacking multiple instance wrapper commands.
+- Fixed instance-provided filters still showing as locked in the filters bar even when the filter is unlocked.
+- Fixed "Friends" title showing up in the sidebar twice when you have no friends.
+- Fixed the "Add friends" button not working properly.`,
+ },
{
date: `2025-10-26T18:30:00-07:00`,
product: 'app',
From 00f9cf0e2c3dd7977c7aade66ee447ababff576b Mon Sep 17 00:00:00 2001
From: thedarkcolour <30441001+thedarkcolour@users.noreply.github.com>
Date: Thu, 30 Oct 2025 16:28:18 -0700
Subject: [PATCH 02/64] Fix inconsistent PAT display order (#4662)
* Fix inconsistent PAT display order
Closes #4661
* Fix side effect in computed property
* Fix lint
---------
Co-authored-by: Calum H.