From ab6b88f6afd254d26d22686659f2852ada1cf059 Mon Sep 17 00:00:00 2001 From: Spike Curtis Date: Mon, 5 Dec 2022 22:14:21 +0000 Subject: [PATCH 1/2] 1.36.2 changelog Signed-off-by: Spike Curtis --- changelog/1.36.2.md | 21 +++++++++++++++++++++ manifest.json | 3 +++ 2 files changed, 24 insertions(+) create mode 100644 changelog/1.36.2.md diff --git a/changelog/1.36.2.md b/changelog/1.36.2.md new file mode 100644 index 000000000..9a3ee2dbf --- /dev/null +++ b/changelog/1.36.2.md @@ -0,0 +1,21 @@ +--- +title: "1.36.2" +description: "Released on 12/05/2022" +--- + +### Breaking changes ❗ + +There are no breaking changes in 1.36.2. + +### Features ✨ + +There are no new features in 1.36.2. + +### Bug fixes 🐛 + +- Fixed an issue where operations on API keys were not audit-logged. + +### Security updates 🔐 + +- Fixed an issue where an attacker could craft a malicious DevURL redirect link + to exfiltrate a token that allows accessing that user's devURLs. diff --git a/manifest.json b/manifest.json index ebddf467b..237117d29 100644 --- a/manifest.json +++ b/manifest.json @@ -589,6 +589,9 @@ "children": [ { "path": "./changelog/1.36.1.md" + }, + { + "path": "./changelog/1.36.2.md" } ] }, From 10bf110a213907188788ab10cccb23c3e77d8234 Mon Sep 17 00:00:00 2001 From: Spike Curtis Date: Mon, 5 Dec 2022 22:20:53 +0000 Subject: [PATCH 2/2] Use consistent ordering of patch changelogs Signed-off-by: Spike Curtis --- manifest.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 237117d29..fa7a36f9b 100644 --- a/manifest.json +++ b/manifest.json @@ -588,10 +588,10 @@ "path": "./changelog/1.36.0.md", "children": [ { - "path": "./changelog/1.36.1.md" + "path": "./changelog/1.36.2.md" }, { - "path": "./changelog/1.36.2.md" + "path": "./changelog/1.36.1.md" } ] },