From 808d98f558888726ffb4684ee4725c371282d920 Mon Sep 17 00:00:00 2001 From: Gabriel Garcia Date: Fri, 17 Apr 2026 17:13:09 +0200 Subject: [PATCH 1/3] chore: prepare release v1.26.0 --- CHANGELOG.md | 17 +++++++++++++++++ package-lock.json | 22 ++-------------------- package.json | 2 +- 3 files changed, 20 insertions(+), 21 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fca03c5..0ad2b038 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # @remoteoss/remote-flows +## 1.26.0 + +### Minor Changes + +- paralelize jobs (#923) [#923](https://github.com/remoteoss/remote-flows/pull/923) +- add dynamic steps (#922) [#922](https://github.com/remoteoss/remote-flows/pull/922) +- paralelize deploy (#926) [#926](https://github.com/remoteoss/remote-flows/pull/926) +- update dependency vite to ^8.0.8 (#929) [#929](https://github.com/remoteoss/remote-flows/pull/929) +- update dependency dompurify to v3.4.0 [security] (#928) [#928](https://github.com/remoteoss/remote-flows/pull/928) +- nested fields are parsed now (#930) [#930](https://github.com/remoteoss/remote-flows/pull/930) +- add help center article (#921) [#921](https://github.com/remoteoss/remote-flows/pull/921) +- update vitest monorepo to ^4.1.4 (#931) [#931](https://github.com/remoteoss/remote-flows/pull/931) +- update actions/cache action to v5 (#933) [#933](https://github.com/remoteoss/remote-flows/pull/933) +- update actions/upload-artifact action to v7 (#934) [#934](https://github.com/remoteoss/remote-flows/pull/934) +- update actions/github-script action to v9 (#935) [#935](https://github.com/remoteoss/remote-flows/pull/935) +- fix submission contract-details (#932) [#932](https://github.com/remoteoss/remote-flows/pull/932) + ## 1.25.0 ### Minor Changes diff --git a/package-lock.json b/package-lock.json index 213c77f0..b1901d36 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@remoteoss/remote-flows", - "version": "1.25.0", + "version": "1.26.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@remoteoss/remote-flows", - "version": "1.25.0", + "version": "1.26.0", "dependencies": { "@hookform/resolvers": "^5.2.2", "@radix-ui/react-checkbox": "^1.3.3", @@ -3583,9 +3583,6 @@ "arm64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -3603,9 +3600,6 @@ "arm64" ], "dev": true, - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ @@ -3623,9 +3617,6 @@ "ppc64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -3643,9 +3634,6 @@ "s390x" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -3663,9 +3651,6 @@ "x64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -3683,9 +3668,6 @@ "x64" ], "dev": true, - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ diff --git a/package.json b/package.json index 5912e619..f93d78ed 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@remoteoss/remote-flows", - "version": "1.25.0", + "version": "1.26.0", "repository": { "type": "git", "url": "https://github.com/remoteoss/remote-flows.git" From 6f26af27ba6a9534b2a551e57ac1cf1112aaf857 Mon Sep 17 00:00:00 2001 From: Gabriel Garcia Date: Fri, 17 Apr 2026 17:20:39 +0200 Subject: [PATCH 2/3] update changelog --- CHANGELOG.md | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ad2b038..a58b857e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,18 +4,24 @@ ### Minor Changes -- paralelize jobs (#923) [#923](https://github.com/remoteoss/remote-flows/pull/923) +#### Features - add dynamic steps (#922) [#922](https://github.com/remoteoss/remote-flows/pull/922) -- paralelize deploy (#926) [#926](https://github.com/remoteoss/remote-flows/pull/926) -- update dependency vite to ^8.0.8 (#929) [#929](https://github.com/remoteoss/remote-flows/pull/929) - update dependency dompurify to v3.4.0 [security] (#928) [#928](https://github.com/remoteoss/remote-flows/pull/928) -- nested fields are parsed now (#930) [#930](https://github.com/remoteoss/remote-flows/pull/930) -- add help center article (#921) [#921](https://github.com/remoteoss/remote-flows/pull/921) +- add help center article in textarea (#921) [#921](https://github.com/remoteoss/remote-flows/pull/921) +- fix submission contract-details in contractor-onboarding as switcher component wasn't working correctly (#932) [#932](https://github.com/remoteoss/remote-flows/pull/932) + + +#### Fixes +- nested fields are parsed in the error messages (#930) [#930](https://github.com/remoteoss/remote-flows/pull/930) + + +#### Chores +- paralelize jobs and improve CI (#923) [#923](https://github.com/remoteoss/remote-flows/pull/923) +- update dependency vite to ^8.0.8 (#929) [#929](https://github.com/remoteoss/remote-flows/pull/929) - update vitest monorepo to ^4.1.4 (#931) [#931](https://github.com/remoteoss/remote-flows/pull/931) - update actions/cache action to v5 (#933) [#933](https://github.com/remoteoss/remote-flows/pull/933) - update actions/upload-artifact action to v7 (#934) [#934](https://github.com/remoteoss/remote-flows/pull/934) - update actions/github-script action to v9 (#935) [#935](https://github.com/remoteoss/remote-flows/pull/935) -- fix submission contract-details (#932) [#932](https://github.com/remoteoss/remote-flows/pull/932) ## 1.25.0 From 8e3b8921026339f50de55973d6e0b0439bae873b Mon Sep 17 00:00:00 2001 From: Gabriel Garcia Date: Fri, 17 Apr 2026 17:23:26 +0200 Subject: [PATCH 3/3] format --- CHANGELOG.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a58b857e..337f8f2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,17 +5,18 @@ ### Minor Changes #### Features + - add dynamic steps (#922) [#922](https://github.com/remoteoss/remote-flows/pull/922) - update dependency dompurify to v3.4.0 [security] (#928) [#928](https://github.com/remoteoss/remote-flows/pull/928) - add help center article in textarea (#921) [#921](https://github.com/remoteoss/remote-flows/pull/921) - fix submission contract-details in contractor-onboarding as switcher component wasn't working correctly (#932) [#932](https://github.com/remoteoss/remote-flows/pull/932) - #### Fixes -- nested fields are parsed in the error messages (#930) [#930](https://github.com/remoteoss/remote-flows/pull/930) +- nested fields are parsed in the error messages (#930) [#930](https://github.com/remoteoss/remote-flows/pull/930) #### Chores + - paralelize jobs and improve CI (#923) [#923](https://github.com/remoteoss/remote-flows/pull/923) - update dependency vite to ^8.0.8 (#929) [#929](https://github.com/remoteoss/remote-flows/pull/929) - update vitest monorepo to ^4.1.4 (#931) [#931](https://github.com/remoteoss/remote-flows/pull/931)