Daniel Sutton
73f86c7af1
fix(webapp): stop saving global flags from unsetting the locked ones ( #4751 )
...
## Summary
On a self-hosted instance, saving anything on the global admin feature
flags page also deleted the two read-only flags,
`defaultWorkerInstanceGroupId` and `taskEventRepository`. Losing the
first one leaves deployed runs with no default worker group. Neither
deletion showed up in the confirm dialog, so the flags disappeared
silently.
## Root cause
The page submits only the flags its UI is managing, and strips the
read-only ones from the payload unless "Unlock read-only flags" is
ticked. The action treated every catalog key absent from that payload as
"the admin unset this", and protected the locked keys only when the
instance was managed cloud. Anywhere else, both locked rows fell
straight into the delete sweep.
The protection now keys off what the client says it was editing rather
than off the deployment:
```ts
const canDeleteLocked = params.unlockLockedFlags && !params.isManagedCloud;
...
} else if (canDeleteLocked || !GLOBAL_LOCKED_FLAGS.includes(key)) {
keysToDelete.push(key);
}
```
Exactly one case changes: a locked flag, on a non managed-cloud
instance, with the flags not unlocked, is now kept instead of deleted.
Managed cloud behaviour is bit for bit identical, and ticking the unlock
box still gives a self-hosted instance full control. The write moves
into `replaceGlobalFeatureFlags` so it can be driven directly in tests
against a real Postgres.
2026-08-24 12:22:17 +01:00
..
2026-08-12 09:51:40 +02:00
2026-08-21 11:53:16 +01:00
2026-08-16 14:33:42 +01:00
2026-08-20 07:08:22 +01:00
2026-07-11 13:38:12 +01:00
2026-08-20 07:08:22 +01:00
2026-07-03 20:37:59 +01:00
2026-07-26 19:43:41 +01:00
2026-05-01 16:15:51 +01:00
2026-05-12 17:16:20 +01:00
2026-08-11 18:56:14 +02:00
2026-08-18 11:35:51 +01:00
2026-08-14 17:32:43 +01:00
2026-06-28 17:26:43 +01:00
2026-08-06 15:27:10 +01:00
2026-08-24 12:22:17 +01:00
2026-07-09 11:58:33 +00:00
2026-07-13 11:32:06 +01:00
2026-07-03 21:10:42 +01:00
2026-07-05 10:05:54 +01:00
2026-08-11 18:56:14 +02:00
2026-08-12 10:11:31 +01:00
2026-07-13 10:17:12 +01:00
2026-07-05 10:05:54 +01:00
2026-07-05 10:05:54 +01:00
2026-07-13 10:17:12 +01:00
2026-08-03 14:00:29 +01:00
2026-08-06 15:27:10 +01:00
2026-08-11 18:56:14 +02:00
2026-07-13 13:54:54 +01:00
2026-08-03 14:00:29 +01:00
2026-08-20 07:08:22 +01:00
2026-08-20 07:08:22 +01:00
2026-07-13 13:54:54 +01:00
2026-07-13 13:54:54 +01:00
2026-07-13 13:54:54 +01:00
2026-08-19 16:45:47 -04:00
2026-08-03 14:00:29 +01:00
2026-05-12 17:16:20 +01:00
2026-08-07 12:25:40 +01:00
2026-08-03 14:00:29 +01:00
2026-07-21 12:00:58 +01:00
2026-08-06 16:05:27 +01:00
2026-07-31 11:55:25 +01:00
2025-06-30 16:32:02 +01:00
2026-07-17 16:26:56 +01:00
2026-07-13 13:54:54 +01:00
2026-07-07 14:17:23 +01:00
2026-07-09 11:58:33 +00:00
2026-07-19 17:06:45 +00:00
2026-07-31 11:55:25 +01:00
2026-07-04 07:02:28 +01:00
2026-07-05 10:05:54 +01:00
2026-07-05 10:05:54 +01:00
2026-07-22 21:23:52 +02:00
2026-07-22 21:23:52 +02:00
2026-06-26 17:12:53 +02:00
2026-06-26 17:12:53 +02:00
2026-06-26 17:12:53 +02:00
2026-06-26 17:12:53 +02:00
2026-06-26 17:12:53 +02:00
2026-06-26 17:12:53 +02:00
2026-06-26 17:12:53 +02:00
2026-06-26 17:12:53 +02:00
2026-08-12 20:40:38 +01:00
2026-06-26 17:12:53 +02:00
2026-08-12 14:03:44 +01:00
2026-06-26 17:12:53 +02:00
2026-07-22 21:23:52 +02:00
2026-06-26 17:12:53 +02:00
2026-06-26 09:01:37 +01:00
2026-06-26 13:02:53 +01:00
2026-07-07 15:43:30 +01:00
2026-07-19 17:06:45 +00:00
2026-07-05 10:05:54 +01:00
2026-07-02 11:37:05 +01:00
2026-07-19 17:06:45 +00:00
2026-08-19 17:43:51 +02:00
2026-06-28 17:26:43 +01:00
2026-06-28 17:26:43 +01:00
2026-06-28 17:26:43 +01:00
2026-06-26 13:02:53 +01:00
2026-06-18 12:54:46 +01:00
2026-08-13 07:36:07 +01:00
2026-07-19 17:06:45 +00:00
2026-08-01 09:17:20 +01:00
2026-06-26 13:02:53 +01:00
2026-06-17 08:28:15 +01:00
2026-06-26 13:02:53 +01:00
2026-07-29 16:45:24 +01:00
2026-01-13 12:18:30 +00:00
2026-08-11 18:56:14 +02:00
2026-07-02 11:37:05 +01:00
2026-08-06 15:27:10 +01:00
2026-07-05 10:05:54 +01:00
2026-08-12 09:51:40 +02:00
2026-08-12 09:51:40 +02:00
2026-08-13 13:13:02 +02:00
2026-08-20 15:27:27 +01:00
2026-08-20 15:27:27 +01:00
2026-08-13 13:13:02 +02:00
2026-08-11 18:56:14 +02:00
2026-08-20 15:27:27 +01:00
2026-08-11 18:56:14 +02:00
2026-08-13 15:18:05 +02:00
2026-08-20 15:27:27 +01:00
2026-08-13 13:13:02 +02:00
2026-08-12 08:38:59 +02:00
2026-08-12 09:51:40 +02:00
2026-08-11 18:56:14 +02:00
2026-08-12 08:38:59 +02:00
2026-08-13 13:13:02 +02:00
2026-08-13 13:13:02 +02:00
2026-08-13 13:13:02 +02:00
2026-08-11 18:56:14 +02:00
2026-08-13 13:13:02 +02:00
2026-08-13 13:13:02 +02:00
2026-08-12 09:51:40 +02:00
2026-08-13 13:13:02 +02:00
2026-08-13 13:13:02 +02:00
2026-08-13 13:13:02 +02:00
2026-08-13 13:13:02 +02:00
2026-08-12 09:51:40 +02:00
2026-08-12 09:51:40 +02:00
2026-08-13 13:13:02 +02:00
2026-08-13 13:13:02 +02:00
2026-08-13 13:13:02 +02:00
2026-08-13 13:13:02 +02:00
2026-08-13 13:13:02 +02:00
2026-08-12 09:51:40 +02:00
2026-08-12 09:51:40 +02:00
2026-08-13 13:13:02 +02:00
2026-08-20 07:08:22 +01:00
2026-08-20 07:08:22 +01:00
2026-08-20 07:08:22 +01:00
2026-08-20 15:27:27 +01:00
2026-08-13 13:13:02 +02:00
2026-08-13 13:13:02 +02:00
2026-08-12 09:51:40 +02:00
2026-08-13 17:26:46 +01:00
2026-08-13 13:13:02 +02:00
2026-08-13 13:13:02 +02:00
2026-08-13 13:13:02 +02:00
2026-08-12 09:51:40 +02:00
2026-08-12 09:51:40 +02:00
2026-07-21 12:00:58 +01:00
2026-08-16 14:33:42 +01:00
2026-07-09 11:58:33 +00:00
2026-08-11 17:51:31 +02:00
2026-07-02 11:37:05 +01:00
2026-08-11 18:56:14 +02:00
2026-07-22 08:20:43 +01:00
2026-06-26 13:02:53 +01:00
2026-07-30 21:50:15 +02:00
2026-07-04 07:02:28 +01:00
2026-06-26 13:02:53 +01:00
2026-07-11 13:38:12 +01:00
2026-07-09 11:58:33 +00:00
2026-07-19 17:06:45 +00:00
2026-07-21 12:00:58 +01:00
2026-08-20 07:08:22 +01:00
2026-08-20 07:08:22 +01:00
2026-08-20 07:08:22 +01:00
2026-06-26 13:02:53 +01:00
2026-08-12 10:11:31 +01:00
2025-05-28 11:02:56 +01:00
2026-08-21 18:09:27 +02:00
2026-06-26 13:02:53 +01:00
2026-06-26 13:02:53 +01:00
2026-08-10 17:45:57 +01:00
2026-07-21 12:00:58 +01:00
2026-08-11 18:56:14 +02:00
2026-07-31 09:44:16 +01:00
2026-07-10 18:30:02 +01:00
2026-03-31 19:06:54 +01:00
2026-08-19 17:43:53 +02:00
2026-08-11 18:56:14 +02:00
2026-08-06 16:05:27 +01:00
2026-07-03 18:02:22 +01:00
2026-07-19 17:06:45 +00:00
2026-07-02 11:37:05 +01:00
2025-03-05 14:40:14 +00:00
2025-09-04 09:37:22 +01:00
2026-06-30 13:35:31 +02:00
2026-08-24 12:22:17 +01:00
2026-07-09 11:58:33 +00:00
2026-06-26 13:02:53 +01:00
2026-05-20 09:46:44 +01:00
2026-07-05 10:05:54 +01:00
2026-07-19 17:06:45 +00:00
2026-07-19 17:06:45 +00:00
2026-07-05 10:05:54 +01:00
2026-07-19 17:06:45 +00:00
2026-07-30 21:28:44 +01:00
2026-07-28 11:28:09 +02:00
2026-07-09 11:58:33 +00:00
2026-07-29 17:59:47 +01:00
2026-08-18 14:59:46 +01:00
2026-08-18 14:59:46 +01:00
2026-08-18 14:59:46 +01:00
2026-07-30 21:50:15 +02:00
2026-07-30 21:50:15 +02:00
2026-08-21 19:27:52 +01:00
2026-07-21 15:57:13 +02:00
2026-07-20 19:17:44 +01:00
2026-07-09 11:58:33 +00:00
2026-06-26 13:02:53 +01:00
2026-07-19 17:06:45 +00:00
2026-06-26 13:02:53 +01:00
2026-06-26 13:02:53 +01:00
2026-06-26 13:02:53 +01:00
2026-06-02 14:21:37 +01:00
2026-06-26 13:02:53 +01:00
2026-07-19 17:57:41 +01:00
2026-06-26 13:02:53 +01:00
2026-07-02 11:37:05 +01:00
2026-06-26 13:02:53 +01:00
2026-06-26 13:02:53 +01:00
2026-06-26 13:02:53 +01:00
2026-08-03 14:00:29 +01:00
2026-06-26 13:02:53 +01:00
2026-06-26 13:02:53 +01:00
2026-06-26 13:02:53 +01:00
2026-06-26 13:02:53 +01:00
2026-06-01 16:50:31 +01:00
2026-06-01 16:50:31 +01:00
2026-06-01 14:53:58 +01:00
2026-06-26 13:02:53 +01:00
2026-06-26 13:02:53 +01:00
2026-07-09 15:24:31 +01:00
2026-06-26 13:02:53 +01:00
2026-06-26 13:02:53 +01:00
2026-06-26 17:12:53 +02:00
2026-07-30 21:50:15 +02:00
2026-07-02 11:37:05 +01:00
2026-08-18 11:35:51 +01:00
2026-05-18 17:42:31 +02:00
2026-07-11 13:38:12 +01:00
2026-07-02 22:47:03 +01:00
2026-08-19 17:43:53 +02:00
2026-08-20 22:16:32 +01:00
2026-07-19 17:06:45 +00:00
2026-06-10 08:53:57 +01:00
2026-06-26 13:02:53 +01:00
2026-08-18 07:23:52 +01:00
2026-08-11 18:56:14 +02:00
2026-08-13 12:17:48 +01:00
2026-07-09 11:58:33 +00:00
2026-08-03 14:00:29 +01:00
2026-08-06 15:27:10 +01:00
2026-07-19 17:06:45 +00:00
2026-06-28 17:26:43 +01:00
2026-08-12 13:59:35 +02:00
2026-08-12 09:51:40 +02:00
2026-08-11 18:56:14 +02:00
2026-06-14 00:19:19 +02:00
2026-07-29 16:45:24 +01:00
2026-08-12 09:51:40 +02:00
2026-07-29 16:45:24 +01:00
2026-08-12 10:11:31 +01:00
2026-08-07 12:25:40 +01:00
2026-07-19 17:06:45 +00:00
2026-08-16 14:33:42 +01:00
2026-05-12 17:16:20 +01:00
2026-07-19 17:06:45 +00:00
2026-07-02 11:37:05 +01:00
2026-08-12 11:01:59 +01:00
2026-07-19 17:06:45 +00:00
2026-07-19 17:06:45 +00:00
2026-08-12 11:01:59 +01:00
2026-07-02 11:37:05 +01:00
2026-07-21 12:00:58 +01:00
2026-06-17 08:28:15 +01:00
2026-07-15 10:20:08 +01:00
2026-06-26 13:02:53 +01:00
2026-07-19 17:06:45 +00:00
2026-07-09 11:58:33 +00:00
2026-08-11 18:56:14 +02:00
2026-08-12 09:51:40 +02:00
2026-08-11 18:56:14 +02:00
2026-08-11 18:56:14 +02:00
2026-08-11 18:56:14 +02:00
2026-08-12 08:38:59 +02:00
2026-08-11 18:56:14 +02:00
2026-08-11 18:56:14 +02:00
2026-07-05 10:05:54 +01:00
2026-07-19 17:06:45 +00:00
2026-08-19 17:43:51 +02:00
2026-08-07 12:25:40 +01:00
2026-07-21 12:00:58 +01:00
2026-08-11 18:56:14 +02:00
2026-07-06 10:55:02 +00:00
2026-08-11 18:56:14 +02:00
2026-07-03 18:02:22 +01:00
2026-08-21 11:53:16 +01:00
2026-07-19 17:06:45 +00:00
2026-08-11 18:56:14 +02:00
2026-07-05 10:05:54 +01:00
2026-07-07 14:17:23 +01:00
2026-07-03 18:52:08 +01:00
2026-07-03 18:02:22 +01:00
2026-08-18 14:59:46 +01:00
2026-07-05 10:05:54 +01:00
2026-07-14 11:20:21 +01:00
2026-07-05 10:05:54 +01:00
2026-07-13 10:17:12 +01:00
2026-07-03 18:02:22 +01:00
2026-07-13 13:54:54 +01:00
2026-07-07 14:17:23 +01:00
2026-07-05 10:05:54 +01:00
2026-07-19 17:06:45 +00:00
2026-07-02 11:37:05 +01:00
2026-08-01 09:17:20 +01:00
2026-03-05 11:05:45 +00:00
2026-07-02 11:37:05 +01:00
2026-07-13 13:54:54 +01:00
2026-08-01 09:17:20 +01:00
2026-08-12 12:24:32 +01:00
2026-07-07 16:15:15 +01:00
2026-07-07 16:15:15 +01:00
2026-07-07 16:15:15 +01:00
2026-07-07 16:15:15 +01:00
2026-07-07 16:15:15 +01:00
2026-07-07 16:15:15 +01:00
2026-07-07 16:15:15 +01:00
2026-07-13 13:54:54 +01:00
2026-08-01 09:17:20 +01:00
2026-08-19 17:43:53 +02:00
2026-07-02 11:37:05 +01:00
2026-07-02 11:37:05 +01:00
2026-07-02 11:37:05 +01:00
2026-06-08 12:57:47 +01:00
2026-07-05 10:05:54 +01:00
2026-07-19 17:06:45 +00:00
2026-07-03 18:52:08 +01:00
2026-06-26 13:02:53 +01:00
2026-08-14 10:07:14 +01:00
2026-07-09 11:58:33 +00:00
2026-07-09 11:58:33 +00:00
2026-07-09 11:58:33 +00:00
2026-07-09 11:58:33 +00:00
2026-08-07 12:25:40 +01:00
2026-07-09 11:58:33 +00:00
2026-08-01 09:17:20 +01:00
2026-08-16 14:33:42 +01:00
2026-07-09 11:58:33 +00:00
2026-07-09 11:58:33 +00:00
2026-08-14 10:07:14 +01:00
2026-07-21 12:00:58 +01:00
2026-08-19 14:01:15 +01:00
2026-08-19 14:01:15 +01:00
2026-08-14 10:07:14 +01:00
2026-07-30 21:50:15 +02:00
2026-07-30 09:04:15 +01:00
2026-05-22 15:10:41 +01:00
2026-05-08 11:47:24 +01:00
2026-07-03 18:02:22 +01:00
2026-08-01 11:33:34 +01:00
2026-08-01 11:33:34 +01:00
2026-08-01 11:33:34 +01:00
2026-06-26 13:02:53 +01:00
2026-08-12 11:01:59 +01:00
2026-08-12 11:01:59 +01:00
2026-07-05 10:05:54 +01:00
2026-06-22 15:30:34 +01:00
2026-07-19 17:06:45 +00:00
2026-07-21 12:00:58 +01:00
2026-08-12 09:51:40 +02:00
2026-06-26 13:02:53 +01:00
2026-07-02 11:37:05 +01:00
2026-08-20 12:34:33 +01:00
2026-07-09 11:58:33 +00:00
2026-08-20 12:34:33 +01:00
2026-07-05 10:05:54 +01:00
2026-07-03 20:37:59 +01:00
2026-07-28 09:00:48 +01:00
2026-08-21 19:27:52 +01:00
2026-08-03 14:00:29 +01:00
2026-07-03 18:52:08 +01:00
2026-08-12 12:24:32 +01:00
2026-08-16 14:33:42 +01:00
2026-08-12 08:38:59 +02:00
2026-05-22 15:10:41 +01:00
2026-08-11 18:56:14 +02:00
2026-05-22 15:10:41 +01:00
2026-08-21 19:27:52 +01:00
2026-03-05 11:05:45 +00:00
2026-07-02 11:37:05 +01:00
2026-06-26 13:02:53 +01:00
2026-08-11 18:56:14 +02:00
2026-06-19 13:57:53 +01:00
2026-08-19 17:43:53 +02:00
2026-08-11 18:56:14 +02:00
2026-08-11 18:56:14 +02:00
2026-08-11 18:56:14 +02:00
2026-08-12 08:38:59 +02:00
2026-08-11 18:56:14 +02:00
2026-07-29 16:45:24 +01:00
2026-06-26 09:01:37 +01:00
2026-02-10 10:37:09 +01:00
2026-07-07 17:20:07 +01:00
2026-07-30 21:28:44 +01:00
2026-07-13 13:54:54 +01:00
2026-07-19 17:06:45 +00:00
2026-08-20 12:34:33 +01:00
2026-08-20 12:34:33 +01:00
2026-07-13 13:54:54 +01:00
2026-07-22 23:03:24 +01:00
2026-07-13 10:17:12 +01:00
2026-07-22 23:03:24 +01:00
2026-07-22 23:03:24 +01:00
2026-07-13 13:54:54 +01:00
2026-07-22 23:03:24 +01:00
2026-07-19 17:06:45 +00:00
2026-07-13 13:54:54 +01:00
2026-03-31 19:06:54 +01:00
2026-07-09 11:58:33 +00:00
2026-07-21 12:00:58 +01:00
2026-06-24 19:07:43 +01:00
2026-06-09 11:46:44 +01:00
2026-06-26 13:02:53 +01:00
2026-07-21 12:00:58 +01:00
2026-07-21 12:00:58 +01:00
2026-07-21 12:00:58 +01:00