From 698419ab4b95173f1497e9d2b5da5ae2d13d4a05 Mon Sep 17 00:00:00 2001 From: Patrick Dawkins Date: Wed, 28 Jan 2026 14:21:11 +0000 Subject: [PATCH 1/2] feat(mockapi): add ApplicationScope field to Variable struct Support for the application_scope field on variables, which restricts a variable to specific applications within a deployment. Co-Authored-By: Claude Code --- pkg/mockapi/model.go | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkg/mockapi/model.go b/pkg/mockapi/model.go index 1f103243..766257e3 100644 --- a/pkg/mockapi/model.go +++ b/pkg/mockapi/model.go @@ -293,11 +293,12 @@ type Activity struct { } type Variable struct { - Name string `json:"name"` - Value string `json:"value,omitempty"` - IsSensitive bool `json:"is_sensitive"` - VisibleBuild bool `json:"visible_build"` - VisibleRuntime bool `json:"visible_runtime"` + Name string `json:"name"` + Value string `json:"value,omitempty"` + IsSensitive bool `json:"is_sensitive"` + VisibleBuild bool `json:"visible_build"` + VisibleRuntime bool `json:"visible_runtime"` + ApplicationScope []string `json:"application_scope,omitempty"` CreatedAt time.Time `json:"created_at"` UpdatedAt time.Time `json:"updated_at"` From 069df8ab8692fdda067b65fb78a5f8f1ab13aca3 Mon Sep 17 00:00:00 2001 From: Patrick Dawkins Date: Wed, 28 Jan 2026 15:38:40 +0000 Subject: [PATCH 2/2] Bump legacy CLI to 4.30.0 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 01a5b8ba..0339e91e 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ PHP_VERSION = 8.2.30 -LEGACY_CLI_VERSION = 4.29.0 +LEGACY_CLI_VERSION = 4.30.0 GORELEASER_ID ?= upsun