diff --git a/content/en/continuous-deployment/release-notes/rn-prerelease-armory-spinnaker/armoryspinnaker_v2-32-0-rc4.md b/content/en/continuous-deployment/release-notes/rn-prerelease-armory-spinnaker/armoryspinnaker_v2-32-0-rc4.md new file mode 100644 index 0000000000..cc2ca323b0 --- /dev/null +++ b/content/en/continuous-deployment/release-notes/rn-prerelease-armory-spinnaker/armoryspinnaker_v2-32-0-rc4.md @@ -0,0 +1,255 @@ +--- +title: v2.32.0-rc4 Armory Continuous Deployment Release (Spinnaker™ v1.32.3) +toc_hide: true +date: 2024-02-09 +version: +description: > + Release notes for Armory Continuous Deployment v2.32.0-rc4. A beta release is not meant for installation in production environments. + +--- + +## 2024/02/09 release notes + +## Disclaimer + +This pre-release software is to allow limited access to test or beta versions of the Armory services (“Services”) and to provide feedback and comments to Armory regarding the use of such Services. By using Services, you agree to be bound by the terms and conditions set forth herein. + +Your Feedback is important and we welcome any feedback, analysis, suggestions and comments (including, but not limited to, bug reports and test results) (collectively, “Feedback”) regarding the Services. Any Feedback you provide will become the property of Armory and you agree that Armory may use or otherwise exploit all or part of your feedback or any derivative thereof in any manner without any further remuneration, compensation or credit to you. You represent and warrant that any Feedback which is provided by you hereunder is original work made solely by you and does not infringe any third party intellectual property rights. + +Any Feedback provided to Armory shall be considered Armory Confidential Information and shall be covered by any confidentiality agreements between you and Armory. + +You acknowledge that you are using the Services on a purely voluntary basis, as a means of assisting, and in consideration of the opportunity to assist Armory to use, implement, and understand various facets of the Services. You acknowledge and agree that nothing herein or in your voluntary submission of Feedback creates any employment relationship between you and Armory. + +Armory may, in its sole discretion, at any time, terminate or discontinue all or your access to the Services. You acknowledge and agree that all such decisions by Armory are final and Armory will have no liability with respect to such decisions. + +YOUR USE OF THE SERVICES IS AT YOUR OWN RISK. THE SERVICES, THE ARMORY TOOLS AND THE CONTENT ARE PROVIDED ON AN “AS IS” BASIS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. ARMORY AND ITS LICENSORS MAKE NO REPRESENTATION, WARRANTY, OR GUARANTY AS TO THE RELIABILITY, TIMELINESS, QUALITY, SUITABILITY, TRUTH, AVAILABILITY, ACCURACY OR COMPLETENESS OF THE SERVICES, THE ARMORY TOOLS OR ANY CONTENT. ARMORY EXPRESSLY DISCLAIMS ON ITS OWN BEHALF AND ON BEHALF OF ITS EMPLOYEES, AGENTS, ATTORNEYS, CONSULTANTS, OR CONTRACTORS ANY AND ALL WARRANTIES INCLUDING, WITHOUT LIMITATION (A) THE USE OF THE SERVICES OR THE ARMORY TOOLS WILL BE TIMELY, UNINTERRUPTED OR ERROR-FREE OR OPERATE IN COMBINATION WITH ANY OTHER HARDWARE, SOFTWARE, SYSTEM OR DATA, (B) THE SERVICES AND THE ARMORY TOOLS AND/OR THEIR QUALITY WILL MEET CUSTOMER”S REQUIREMENTS OR EXPECTATIONS, (C) ANY CONTENT WILL BE ACCURATE OR RELIABLE, (D) ERRORS OR DEFECTS WILL BE CORRECTED, OR (E) THE SERVICES, THE ARMORY TOOLS OR THE SERVER(S) THAT MAKE THE SERVICES AVAILABLE ARE FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS. CUSTOMER AGREES THAT ARMORY SHALL NOT BE RESPONSIBLE FOR THE AVAILABILITY OR ACTS OR OMISSIONS OF ANY THIRD PARTY, INCLUDING ANY THIRD-PARTY APPLICATION OR PRODUCT, AND ARMORY HEREBY DISCLAIMS ANY AND ALL LIABILITY IN CONNECTION WITH SUCH THIRD PARTIES. + +IN NO EVENT SHALL ARMORY, ITS EMPLOYEES, AGENTS, ATTORNEYS, CONSULTANTS, OR CONTRACTORS BE LIABLE UNDER THIS AGREEMENT FOR ANY CONSEQUENTIAL, SPECIAL, LOST PROFITS, INDIRECT OR OTHER DAMAGES, INCLUDING BUT NOT LIMITED TO LOST PROFITS, LOSS OF BUSINESS, COST OF COVER WHETHER BASED IN CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE, EVEN IF ARMORY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES AND NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY. IN ANY EVENT, ARMORY, ITS EMPLOYEES’, AGENTS’, ATTORNEYS’, CONSULTANTS’ OR CONTRACTORS’ AGGREGATE LIABILITY UNDER THIS AGREEMENT FOR ANY CLAIM SHALL BE STRICTLY LIMITED TO $100.00. SOME STATES DO NOT ALLOW THE LIMITATION OR EXCLUSION OF LIABILITY FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE ABOVE LIMITATION OR EXCLUSION MAY NOT APPLY TO YOU. + +You acknowledge that Armory has provided the Services in reliance upon the limitations of liability set forth herein and that the same is an essential basis of the bargain between the parties. + + +## Required Armory Operator version + +To install, upgrade, or configure Armory CD 2.32.0-rc4, use Armory Operator 1.7.3 or later. + +## Security + +Armory scans the codebase as we develop and release software. Contact your Armory account representative for information about CVE scans for this release. + +## Breaking changes + + +> Breaking changes are kept in this list for 3 minor versions from when the change is introduced. For example, a breaking change introduced in 2.21.0 appears in the list up to and including the 2.24.x releases. It would not appear on 2.25.x release notes. +### AWS Lambda plugin migrated to OSS +Starting from Armory version 2.32.0 (OSS version 1.32.0), the AWS Lambda plugin has been migrated to OSS codebase. +If you are using the AWS Lambda plugin, you will need to disable/remove it when upgrading to Armory version 2.32.0+ to +avoid compatibility issues. + +Additionally, the AWS Lambda stages are now enabled using the Deck feature flag `feature.lambdaAdditionalStages = true;` +as shown in the configuration block below. +{{< highlight yaml "linenos=table,hl_lines=12" >}} +apiVersion: spinnaker.armory.io/v1alpha2 +kind: SpinnakerService +metadata: + name: spinnaker +spec: + spinnakerConfig: + profiles: + deck: + settings-local.js: | + ... + window.spinnakerSettings.feature.functions = true; + // Enable the AWS Lambda pipeline stages in Deck using the feature flag + window.spinnakerSettings.feature.lambdaAdditionalStages = true; + ... + clouddriver: + aws: + enabled: true + features: + lambda: + enabled: true + ## Remove the AWS Lambda plugin from the Armory CD configuration. + #gate: + # spinnaker: + # extensibility: + # deck-proxy: + # enabled: true + # plugins: + # Aws.LambdaDeploymentPlugin: + # enabled: true + # version: + # repositories: + # awsLambdaDeploymentPluginRepo: + # url: https://raw.githubusercontent.com/spinnaker-plugins/aws-lambda-deployment-plugin-spinnaker/master/plugins.json + #orca: + # spinnaker: + # extensibility: + # plugins: + # Aws.LambdaDeploymentPlugin: + # enabled: true + # version: + # extensions: + # Aws.LambdaDeploymentStage: + # enabled: true + # repositories: + # awsLambdaDeploymentPluginRepo: + # id: awsLambdaDeploymentPluginRepo + # url: https://raw.githubusercontent.com/spinnaker-plugins/aws-lambda-deployment-plugin-spinnaker/master/plugins.json +{{< /highlight >}} + +## Known issues + + +## Highlighted updates + + + + + + +### Spinnaker community contributions + +There have also been numerous enhancements, fixes, and features across all of Spinnaker's other services. See the +[Spinnaker v1.32.3](https://www.spinnaker.io/changelogs/1.32.3-changelog/) changelog for details. + +## Detailed updates + +### Bill Of Materials (BOM) + +
Expand to see the BOM +
+artifactSources:
+  dockerRegistry: docker.io/armory
+dependencies:
+  redis:
+    commit: null
+    version: 2:2.8.4-2
+services:
+  clouddriver:
+    commit: 27d2b5f64b07ae03a49edac6f3e937b06f15d1bf
+    version: 2.32.0-rc4
+  deck:
+    commit: e7c8c0982afe9a49ab6c3d230f3aaa38e874eb30
+    version: 2.32.0-rc4
+  dinghy:
+    commit: a257cbcab26643a18cdfab24bff3a5e1ef651a27
+    version: 2.32.0-rc4
+  echo:
+    commit: b69e483d8f0c99da6ad21dacdc897e17257fe092
+    version: 2.32.0-rc4
+  fiat:
+    commit: 2c0d010ce00d9519b316e15af734a05835df1048
+    version: 2.32.0-rc4
+  front50:
+    commit: c68b97b642a6d9168d361d74dad373e565850f5d
+    version: 2.32.0-rc4
+  gate:
+    commit: 1f96d4f238c63798cf34e818760ffb25b3a4b009
+    version: 2.32.0-rc4
+  igor:
+    commit: fe40091df01e89e9abc4b6b761002397c4022298
+    version: 2.32.0-rc4
+  kayenta:
+    commit: af68e872b806eb49f4f0071187f998f18f04c3c2
+    version: 2.32.0-rc4
+  monitoring-daemon:
+    commit: null
+    version: 2.26.0
+  monitoring-third-party:
+    commit: null
+    version: 2.26.0
+  orca:
+    commit: a575354cf39559e9784baad086e26f55fb2cb6ac
+    version: 2.32.0-rc4
+  rosco:
+    commit: 776c66208dd16ad41defad3d0b6d8bcc3dbba24d
+    version: 2.32.0-rc4
+  terraformer:
+    commit: 58c3386295676fccf44aa9d38c69e1e0482109ca
+    version: 2.32.0-rc4
+timestamp: "2024-02-08 19:30:17"
+version: 2.32.0-rc4
+
+
+
+ +### Armory + + +#### Armory Front50 - 2.32.0-rc3...2.32.0-rc4 + + +#### Armory Fiat - 2.32.0-rc3...2.32.0-rc4 + + +#### Armory Kayenta - 2.32.0-rc3...2.32.0-rc4 + + +#### Armory Rosco - 2.32.0-rc3...2.32.0-rc4 + + +#### Armory Clouddriver - 2.32.0-rc3...2.32.0-rc4 + + +#### Armory Gate - 2.32.0-rc3...2.32.0-rc4 + + +#### Armory Orca - 2.32.0-rc3...2.32.0-rc4 + + - Update RunTerraformTask.java + +#### Armory Igor - 2.32.0-rc3...2.32.0-rc4 + + +#### Dinghy™ - 2.32.0-rc3...2.32.0-rc4 + + +#### Armory Echo - 2.32.0-rc3...2.32.0-rc4 + + +#### Armory Deck - 2.32.0-rc3...2.32.0-rc4 + + +#### Terraformer™ - 2.32.0-rc3...2.32.0-rc4 + + - fixes for planfile (#545) (#546) + + +### Spinnaker + + +#### Spinnaker Front50 - 1.32.3 + + +#### Spinnaker Fiat - 1.32.3 + + +#### Spinnaker Kayenta - 1.32.3 + + +#### Spinnaker Rosco - 1.32.3 + + +#### Spinnaker Clouddriver - 1.32.3 + + +#### Spinnaker Gate - 1.32.3 + + +#### Spinnaker Orca - 1.32.3 + + +#### Spinnaker Igor - 1.32.3 + + +#### Spinnaker Echo - 1.32.3 + + +#### Spinnaker Deck - 1.32.3 + + diff --git a/payload.json b/payload.json index 1e44831ee9..b059b87590 100644 --- a/payload.json +++ b/payload.json @@ -2,170 +2,142 @@ "armoryServices": [ { "commitMessages": [], - "currentVersion": "2.32.0-rc3", - "name": "Armory Clouddriver", - "previousVersion": "2.32.0-rc2" - }, - { - "commitMessages": [ - "chore(cd): update base deck version to 2023.0.0-20231024141913.release-1.32.x (#1395)" - ], - "currentVersion": "2.32.0-rc3", - "name": "Armory Deck", - "previousVersion": "2.32.0-rc2" + "currentVersion": "2.32.0-rc4", + "name": "Armory Front50", + "previousVersion": "2.32.0-rc3" }, { - "commitMessages": [ - "chore(feat): Support ARM with docker buildx - SAAS-1953 (backport #504) (#520)", - "feat(stash): bumped oss dinghy version to introduce upgraded downloaded logic for BitBucket/Stash (#524)" - ], - "currentVersion": "2.32.0-rc3", - "name": "Dinghy™", - "previousVersion": "2.32.0-rc2" + "commitMessages": [], + "currentVersion": "2.32.0-rc4", + "name": "Armory Fiat", + "previousVersion": "2.32.0-rc3" }, { "commitMessages": [], - "currentVersion": "2.32.0-rc3", - "name": "Armory Echo", - "previousVersion": "2.32.0-rc2" + "currentVersion": "2.32.0-rc4", + "name": "Armory Kayenta", + "previousVersion": "2.32.0-rc3" }, { "commitMessages": [], - "currentVersion": "2.32.0-rc3", - "name": "Armory Fiat", - "previousVersion": "2.32.0-rc2" + "currentVersion": "2.32.0-rc4", + "name": "Armory Rosco", + "previousVersion": "2.32.0-rc3" }, { "commitMessages": [], - "currentVersion": "2.32.0-rc3", - "name": "Armory Front50", - "previousVersion": "2.32.0-rc2" + "currentVersion": "2.32.0-rc4", + "name": "Armory Clouddriver", + "previousVersion": "2.32.0-rc3" }, { "commitMessages": [], - "currentVersion": "2.32.0-rc3", + "currentVersion": "2.32.0-rc4", "name": "Armory Gate", - "previousVersion": "2.32.0-rc2" + "previousVersion": "2.32.0-rc3" }, { "commitMessages": [ - "chore: OS Updates (#516) (#566)" + "Update RunTerraformTask.java" ], - "currentVersion": "2.32.0-rc3", + "currentVersion": "2.32.0-rc4", + "name": "Armory Orca", + "previousVersion": "2.32.0-rc3" + }, + { + "commitMessages": [], + "currentVersion": "2.32.0-rc4", "name": "Armory Igor", - "previousVersion": "2.32.0-rc2" + "previousVersion": "2.32.0-rc3" }, { "commitMessages": [], - "currentVersion": "2.32.0-rc3", - "name": "Armory Kayenta", - "previousVersion": "2.32.0-rc2" + "currentVersion": "2.32.0-rc4", + "name": "Dinghy™", + "previousVersion": "2.32.0-rc3" }, { "commitMessages": [], - "currentVersion": "2.32.0-rc3", - "name": "Armory Orca", - "previousVersion": "2.32.0-rc2" + "currentVersion": "2.32.0-rc4", + "name": "Armory Echo", + "previousVersion": "2.32.0-rc3" }, { "commitMessages": [], - "currentVersion": "2.32.0-rc3", - "name": "Armory Rosco", - "previousVersion": "2.32.0-rc2" + "currentVersion": "2.32.0-rc4", + "name": "Armory Deck", + "previousVersion": "2.32.0-rc3" }, { "commitMessages": [ - "fix(remote/artifacts): Adding support to fetch remote artifacts from clouddriver (#543) (#544)" + "fixes for planfile (#545) (#546)" ], - "currentVersion": "2.32.0-rc3", + "currentVersion": "2.32.0-rc4", "name": "Terraformer™", - "previousVersion": "2.32.0-rc2" + "previousVersion": "2.32.0-rc3" } ], - "armoryVersion": "2.32.0-rc3", + "armoryVersion": "2.32.0-rc4", "ossServices": [ { "commitMessages": [], "currentVersion": "1.32.3", - "name": "Spinnaker Clouddriver", - "previousVersion": "1.32.0" + "name": "Spinnaker Front50", + "previousVersion": "1.32.3" }, { - "commitMessages": [ - "Publish packages to NPM (#10029)", - "fix(publish): set access config in deck libraries (#10049)", - "feat(helm/bake): Add additional input fields where we can fill in details of the APIs versions (#10036)", - "chore(deps): bump docker/login-action from 2 to 3 (#10041)", - "chore(deps): bump docker/build-push-action from 4 to 5 (#10040)", - "chore(deps): bump actions/checkout from 3 to 4 (#10042)", - "chore(deps): bump docker/setup-qemu-action from 2 to 3 (#10038)", - "fix(kubernetes): export rollout restart stage so it's actually available for use (#10037)", - "chore(deps): bump docker/setup-buildx-action from 2 to 3 (#10039)", - "chore(deps): bump angular and @types/angular in /packages/cloudrun (#10030)", - "chore(deps): bump luxon from 1.23.0 to 1.28.1 in /packages/cloudrun (#10028)", - "chore(deps-dev): bump vite from 2.4.2 to 2.9.16 in /packages/app (#10027)", - "Publish packages to NPM (#10019)", - "fix: Scaling bounds should parse float not int (#10026)", - "feat(core): Add ability to set Default Tag filters for an application in application config (#10020)", - "Revert \"fix(core): conditionally hide expression evaluation warning messages (#9771)\" (#10021)", - "feat(core): set Cancellation Reason to be expanded by default (#10018)", - "Revert \"fix(core): conditionally hide expression evaluation warning messages (#9771)\" (#10021) (#10022)", - "fix: Scaling bounds should parse float not int (#10026) (#10033)", - "fix(kubernetes): export rollout restart stage so it's actually available for use (#10037) (#10043)", - "feat(helm/bake): Add additional input fields where we can fill in details of the APIs versions (#10036) (#10048)", - "fix(lambda): available Runtimes shared between Deploy stage and Functions tab (#10050) (#10054)" - ], + "commitMessages": [], "currentVersion": "1.32.3", - "name": "Spinnaker Deck", - "previousVersion": "1.32.0" + "name": "Spinnaker Fiat", + "previousVersion": "1.32.3" }, { "commitMessages": [], "currentVersion": "1.32.3", - "name": "Spinnaker Echo", - "previousVersion": "1.32.0" + "name": "Spinnaker Kayenta", + "previousVersion": "1.32.3" }, { "commitMessages": [], "currentVersion": "1.32.3", - "name": "Spinnaker Fiat", - "previousVersion": "1.32.0" + "name": "Spinnaker Rosco", + "previousVersion": "1.32.3" }, { "commitMessages": [], "currentVersion": "1.32.3", - "name": "Spinnaker Front50", - "previousVersion": "1.32.0" + "name": "Spinnaker Clouddriver", + "previousVersion": "1.32.3" }, { "commitMessages": [], "currentVersion": "1.32.3", "name": "Spinnaker Gate", - "previousVersion": "1.32.0" + "previousVersion": "1.32.3" }, { "commitMessages": [], "currentVersion": "1.32.3", - "name": "Spinnaker Igor", - "previousVersion": "1.32.0" + "name": "Spinnaker Orca", + "previousVersion": "1.32.3" }, { "commitMessages": [], "currentVersion": "1.32.3", - "name": "Spinnaker Kayenta", - "previousVersion": "1.32.0" + "name": "Spinnaker Igor", + "previousVersion": "1.32.3" }, { "commitMessages": [], "currentVersion": "1.32.3", - "name": "Spinnaker Orca", - "previousVersion": "1.32.0" + "name": "Spinnaker Echo", + "previousVersion": "1.32.3" }, { "commitMessages": [], "currentVersion": "1.32.3", - "name": "Spinnaker Rosco", - "previousVersion": "1.32.0" + "name": "Spinnaker Deck", + "previousVersion": "1.32.3" } ], "ossVersion": "1.32.3", @@ -183,39 +155,39 @@ "services": { "clouddriver": { "commit": "27d2b5f64b07ae03a49edac6f3e937b06f15d1bf", - "version": "2.32.0-rc3" + "version": "2.32.0-rc4" }, "deck": { "commit": "e7c8c0982afe9a49ab6c3d230f3aaa38e874eb30", - "version": "2.32.0-rc3" + "version": "2.32.0-rc4" }, "dinghy": { "commit": "a257cbcab26643a18cdfab24bff3a5e1ef651a27", - "version": "2.32.0-rc3" + "version": "2.32.0-rc4" }, "echo": { "commit": "b69e483d8f0c99da6ad21dacdc897e17257fe092", - "version": "2.32.0-rc3" + "version": "2.32.0-rc4" }, "fiat": { "commit": "2c0d010ce00d9519b316e15af734a05835df1048", - "version": "2.32.0-rc3" + "version": "2.32.0-rc4" }, "front50": { "commit": "c68b97b642a6d9168d361d74dad373e565850f5d", - "version": "2.32.0-rc3" + "version": "2.32.0-rc4" }, "gate": { "commit": "1f96d4f238c63798cf34e818760ffb25b3a4b009", - "version": "2.32.0-rc3" + "version": "2.32.0-rc4" }, "igor": { "commit": "fe40091df01e89e9abc4b6b761002397c4022298", - "version": "2.32.0-rc3" + "version": "2.32.0-rc4" }, "kayenta": { "commit": "af68e872b806eb49f4f0071187f998f18f04c3c2", - "version": "2.32.0-rc3" + "version": "2.32.0-rc4" }, "monitoring-daemon": { "commit": null, @@ -226,19 +198,19 @@ "version": "2.26.0" }, "orca": { - "commit": "9b0cbcc0d618fb135d7e9551db5b493ad3def9a3", - "version": "2.32.0-rc3" + "commit": "a575354cf39559e9784baad086e26f55fb2cb6ac", + "version": "2.32.0-rc4" }, "rosco": { "commit": "776c66208dd16ad41defad3d0b6d8bcc3dbba24d", - "version": "2.32.0-rc3" + "version": "2.32.0-rc4" }, "terraformer": { - "commit": "d7d8c38ec7d009b6240a17e1225e9933558cdef4", - "version": "2.32.0-rc3" + "commit": "58c3386295676fccf44aa9d38c69e1e0482109ca", + "version": "2.32.0-rc4" } }, - "timestamp": "2024-02-08 14:28:48", - "version": "2.32.0-rc3" + "timestamp": "2024-02-08 19:30:17", + "version": "2.32.0-rc4" } } \ No newline at end of file