From d4217bd3216569afd359cf2d0f3cf886ba36d85a Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Mon, 4 Sep 2023 09:50:40 +0200 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=90=9B=20Fixed=20missing=20Admin=20as?= =?UTF-8?q?sets=20in=20published=20tarball?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit refs https://github.com/TryGhost/Ghost/issues/17932 - we were missing `chunk.208.dbf172ad32f72f21a5dc.js` from our published tarball - turns out this is due to the lines in the `.npmignore` file to remove .db files, which also matched this file - we can make the regex more specific to avoid these cases --- ghost/core/.npmignore | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ghost/core/.npmignore b/ghost/core/.npmignore index 0782c872e7..5138c4ce85 100644 --- a/ghost/core/.npmignore +++ b/ghost/core/.npmignore @@ -34,8 +34,10 @@ content/themes/** content/themes/casper/yarn.lock node_modules/** core/server/lib/members/static/auth/node_modules/** -**/*.db* -*.db* +**/*.db +**/*.db-journal +*.db +*.db-journal .af* .git* .groc* From be3905b8224ef371d9f621049c6da0b25ab863ca Mon Sep 17 00:00:00 2001 From: Ghost CI <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 08:11:30 +0000 Subject: [PATCH 2/2] v5.61.1 --- ghost/admin/package.json | 2 +- ghost/core/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/admin/package.json b/ghost/admin/package.json index c7edb5b46b..f81e6a69ee 100644 --- a/ghost/admin/package.json +++ b/ghost/admin/package.json @@ -1,6 +1,6 @@ { "name": "ghost-admin", - "version": "5.61.0", + "version": "5.61.1", "description": "Ember.js admin client for Ghost", "author": "Ghost Foundation", "homepage": "http://ghost.org", diff --git a/ghost/core/package.json b/ghost/core/package.json index 210c153efd..dfa1e13497 100644 --- a/ghost/core/package.json +++ b/ghost/core/package.json @@ -1,6 +1,6 @@ { "name": "ghost", - "version": "5.61.0", + "version": "5.61.1", "description": "The professional publishing platform", "author": "Ghost Foundation", "homepage": "https://ghost.org",