From 52a841d567ba39bcba803657371484051fecbc97 Mon Sep 17 00:00:00 2001 From: "Fabien \"egg\" O'Carroll" Date: Mon, 31 Jan 2022 13:11:31 +0200 Subject: [PATCH 1/4] Fixed Complimentary subscriptions refs https://github.com/TryGhost/Ghost/issues/14079 The stripe_prices API whilst not used publicly is still used for handling complimentary subscriptions in the old (pre-tiers) system. This was mistakenly removed, and has been reinstated with this commit. --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 4efa1a5186..99c78af884 100644 --- a/package.json +++ b/package.json @@ -80,7 +80,7 @@ "@tryghost/limit-service": "1.0.9", "@tryghost/logging": "2.0.2", "@tryghost/magic-link": "1.0.17", - "@tryghost/members-api": "4.8.3", + "@tryghost/members-api": "4.8.4", "@tryghost/members-importer": "0.5.0", "@tryghost/members-offers": "0.10.6", "@tryghost/members-ssr": "1.0.19", diff --git a/yarn.lock b/yarn.lock index fd1bd88d1a..405fdd9ccd 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1531,10 +1531,10 @@ "@tryghost/domain-events" "^0.1.6" "@tryghost/member-events" "^0.3.4" -"@tryghost/members-api@4.8.3": - version "4.8.3" - resolved "https://registry.yarnpkg.com/@tryghost/members-api/-/members-api-4.8.3.tgz#b85c095e2ac4477fe554c44607dec26681592aa9" - integrity sha512-7YOF65FWTICfWDuCwlRJmjVhzX4rRM4gjig9Hx9nxuRosOusv45B88RpbWqB4b7i/OfdMUvvVSemlGXjx8fPOA== +"@tryghost/members-api@4.8.4": + version "4.8.4" + resolved "https://registry.yarnpkg.com/@tryghost/members-api/-/members-api-4.8.4.tgz#4d05ec3ea5e602f8a381e7e620549672bf5539c4" + integrity sha512-N8WaMv3t5RkITYOJbpk7T8ImkAJfwSFOcIhFFeamDsKLGK3njsUjxvkWl7/q73wmMBJFpJv6rUy7bIccW8tEgQ== dependencies: "@nexes/nql" "^0.6.0" "@tryghost/debug" "^0.1.2" From a75908bb8a08e0b49a268091550a3811073f3e36 Mon Sep 17 00:00:00 2001 From: "Fabien \"egg\" O'Carroll" Date: Mon, 31 Jan 2022 13:40:33 +0200 Subject: [PATCH 2/4] Added alpha flag for Tier welcome pages refs https://github.com/TryGhost/Team/issues/1168 --- core/shared/labs.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/shared/labs.js b/core/shared/labs.js index 06ce7df309..c9b555e880 100644 --- a/core/shared/labs.js +++ b/core/shared/labs.js @@ -31,7 +31,8 @@ const ALPHA_FEATURES = [ 'urlCache', 'beforeAfterCard', 'tweetGridCard', - 'membersActivityFeed' + 'membersActivityFeed', + 'tierWelcomePages' ]; module.exports.GA_KEYS = [...GA_FEATURES]; From c317b22005f2d32232803407a67745ad6acd679e Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Tue, 1 Feb 2022 08:50:37 +0000 Subject: [PATCH 3/4] Updated Admin to v4.34.1 --- core/client | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/client b/core/client index 799b8d0b7e..15a82cc46c 160000 --- a/core/client +++ b/core/client @@ -1 +1 @@ -Subproject commit 799b8d0b7e66a8a439918a69446ac9a7a0c8ce60 +Subproject commit 15a82cc46cb5aae0cac833cdc42c8a76f20a3f36 From 6e4ec3b213706df67f5e0453bb307dd51ac4fada Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Tue, 1 Feb 2022 08:50:38 +0000 Subject: [PATCH 4/4] v4.34.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 99c78af884..62ae6a3e75 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ghost", - "version": "4.34.0", + "version": "4.34.1", "description": "The professional publishing platform", "author": "Ghost Foundation", "homepage": "https://ghost.org",