From 182d99bff9491cf67309910a47556facd3979e61 Mon Sep 17 00:00:00 2001 From: YannickMeeus Date: Fri, 25 Aug 2023 09:16:15 +0300 Subject: [PATCH 1/2] Add changelog entry --- changelog.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/changelog.md b/changelog.md index b05a61a..b0155d9 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,9 @@ # Changelog +## 7.1.0 + +- Add support for `Fn::ForEach`. With `Fn::ForEach`, you can replicate parts of your templates with minimal lines of code, as per the [official AWS announcement](https://aws.amazon.com/about-aws/whats-new/2023/07/accelerate-cloudformation-authoring-experience-looping-function/) and [the documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-foreach.html). + ## v7.0.1 - Fixes `hookshot.Passthrough` and `hookshot.Github` shortcuts where inline code lambdas were using AWS SDK v2 while the lambda default runtime is `nodejs18.x`, by switching to AWS SDK v3. From 535e852937bcd58c7de0e8310e57e38b306f9596 Mon Sep 17 00:00:00 2001 From: YannickMeeus Date: Fri, 25 Aug 2023 09:20:57 +0300 Subject: [PATCH 2/2] 7.1.0 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index e629d87..bd5e3b9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@mapbox/cloudfriend", - "version": "7.0.1", + "version": "7.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@mapbox/cloudfriend", - "version": "7.0.1", + "version": "7.1.0", "license": "ISC", "dependencies": { "aws-sdk": "^2.1425.0", diff --git a/package.json b/package.json index 4213ba8..23d3d7a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mapbox/cloudfriend", - "version": "7.0.1", + "version": "7.1.0", "description": "Helper functions for assembling CloudFormation templates in JavaScript", "main": "index.js", "engines": {