ghost 5.8.3 → 5.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/tryghost-adapter-manager-0.0.0.tgz +0 -0
- package/components/tryghost-api-framework-0.0.0.tgz +0 -0
- package/components/tryghost-bootstrap-socket-0.0.0.tgz +0 -0
- package/components/tryghost-custom-theme-settings-service-0.0.0.tgz +0 -0
- package/components/tryghost-email-analytics-provider-mailgun-0.0.0.tgz +0 -0
- package/components/tryghost-email-analytics-service-0.0.0.tgz +0 -0
- package/components/tryghost-job-manager-0.0.0.tgz +0 -0
- package/components/tryghost-mailgun-client-0.0.0.tgz +0 -0
- package/components/tryghost-member-analytics-service-0.0.0.tgz +0 -0
- package/components/tryghost-members-api-0.0.0.tgz +0 -0
- package/components/tryghost-members-importer-0.0.0.tgz +0 -0
- package/components/tryghost-members-offers-0.0.0.tgz +0 -0
- package/components/tryghost-members-payments-0.0.0.tgz +0 -0
- package/components/tryghost-members-ssr-0.0.0.tgz +0 -0
- package/components/tryghost-members-stripe-service-0.0.0.tgz +0 -0
- package/components/tryghost-minifier-0.0.0.tgz +0 -0
- package/components/tryghost-mw-cache-control-0.0.0.tgz +0 -0
- package/components/tryghost-mw-error-handler-0.0.0.tgz +0 -0
- package/components/tryghost-package-json-0.0.0.tgz +0 -0
- package/components/tryghost-session-service-0.0.0.tgz +0 -0
- package/components/tryghost-settings-path-manager-0.0.0.tgz +0 -0
- package/components/tryghost-update-check-service-0.0.0.tgz +0 -0
- package/content/themes/casper/README.md +1 -1
- package/content/themes/casper/assets/built/portal.min.js +3 -0
- package/content/themes/casper/assets/built/screen.css +1 -1
- package/content/themes/casper/assets/built/screen.css.map +1 -1
- package/content/themes/casper/assets/css/screen.css +119 -37
- package/content/themes/casper/package.json +3 -3
- package/content/themes/casper/partials/post-card.hbs +3 -1
- package/content/themes/casper/post.hbs +7 -7
- package/content/themes/casper/yarn.lock +69 -68
- package/core/boot.js +2 -0
- package/core/built/admin/assets/{chunk.143.cf66fd97f99af03c697f.js → chunk.143.e35fdb482bc822313f0c.js} +5 -5
- package/core/built/admin/assets/{chunk.178.e95388dfcc564cdb1ecc.js → chunk.178.1d381d687652f2597fe2.js} +4 -4
- package/core/built/admin/assets/{chunk.351.cbc224ca65c14ef5322d.js → chunk.351.73f27952f867334a8228.js} +3 -3
- package/core/built/admin/assets/{chunk.351.cbc224ca65c14ef5322d.js.LICENSE.txt → chunk.351.73f27952f867334a8228.js.LICENSE.txt} +0 -0
- package/core/built/admin/assets/{ghost-b469423d0fbe5e40af17b560f7e3cead.css → ghost-686c383caa6a3469cefb939ab10e21b6.css} +1 -1
- package/core/built/admin/assets/{ghost-dark-bcb6f4517a2dfe23a0a280632bfca00c.css → ghost-dark-6814c399ff5b3d9c8efe2d92bc7ec779.css} +1 -1
- package/core/built/admin/assets/{ghost-f1d63ad9698b7d38261df6384513c952.js → ghost-eca1a709a74b1af277e48aad4e16c9db.js} +89 -88
- package/core/built/admin/index.html +5 -5
- package/core/frontend/helpers/comment_count.js +1 -15
- package/core/frontend/helpers/comments.js +4 -16
- package/core/frontend/helpers/ghost_head.js +1 -1
- package/core/server/api/endpoints/comments-members.js +23 -1
- package/core/server/api/endpoints/index.js +52 -52
- package/core/server/api/endpoints/utils/serializers/input/comments.js +18 -0
- package/core/server/api/endpoints/utils/serializers/input/db.js +1 -1
- package/core/server/api/endpoints/utils/serializers/input/index.js +4 -0
- package/core/server/api/endpoints/utils/serializers/input/integrations.js +2 -2
- package/core/server/api/{shared → endpoints/utils}/serializers/input/utils/settings-filter-type-group-mapper.js +0 -0
- package/core/server/api/{shared → endpoints/utils}/serializers/input/utils/settings-key-group-mapper.js +0 -0
- package/core/server/api/{shared → endpoints/utils}/serializers/input/utils/settings-key-type-mapper.js +0 -0
- package/core/server/api/endpoints/utils/serializers/output/mappers/comments.js +12 -12
- package/core/server/api/endpoints/utils/serializers/output/tiers.js +1 -1
- package/core/server/api/index.js +0 -2
- package/core/server/data/importer/importers/data/settings.js +2 -2
- package/core/server/data/migrations/versions/5.9/2022-08-09-08-32-added-new-integration-type.js +24 -0
- package/core/server/data/schema/clients/mysql.js +0 -15
- package/core/server/data/schema/commands.js +0 -9
- package/core/server/data/schema/fixtures/fixtures.json +1 -1
- package/core/server/data/schema/schema.js +3 -3
- package/core/server/models/base/plugins/user-type.js +1 -9
- package/core/server/models/comment.js +96 -15
- package/core/server/models/label.js +14 -0
- package/core/server/models/newsletter.js +21 -0
- package/core/server/models/tag.js +20 -0
- package/core/server/models/user.js +20 -0
- package/core/server/services/auth/api-key/admin.js +1 -5
- package/core/server/services/auth/api-key/content.js +1 -5
- package/core/server/services/bulk-email/bulk-email-processor.js +18 -11
- package/core/server/services/bulk-email/index.js +1 -17
- package/core/server/services/comments/controller.js +9 -0
- package/core/server/services/comments/email-templates/new-comment-reply.hbs +2 -2
- package/core/server/services/comments/email-templates/new-comment.hbs +2 -2
- package/core/server/services/comments/email-templates/report.hbs +2 -2
- package/core/server/services/comments/service.js +16 -3
- package/core/server/services/mega/post-email-serializer.js +2 -2
- package/core/server/services/permissions/can-this.js +154 -161
- package/core/server/services/permissions/parse-context.js +1 -8
- package/core/server/services/webhooks/serialize.js +3 -3
- package/core/server/web/api/endpoints/admin/routes.js +1 -1
- package/core/server/web/api/endpoints/content/routes.js +1 -1
- package/core/server/web/comments/routes.js +2 -1
- package/core/server/web/shared/middleware/index.js +1 -1
- package/core/shared/config/defaults.json +2 -2
- package/core/shared/labs.js +0 -1
- package/package.json +28 -24
- package/yarn.lock +250 -223
- package/core/server/api/README.md +0 -130
- package/core/server/api/shared/frame.js +0 -95
- package/core/server/api/shared/headers.js +0 -152
- package/core/server/api/shared/http.js +0 -127
- package/core/server/api/shared/index.js +0 -25
- package/core/server/api/shared/pipeline.js +0 -259
- package/core/server/api/shared/serializers/handle.js +0 -140
- package/core/server/api/shared/serializers/index.js +0 -13
- package/core/server/api/shared/serializers/input/all.js +0 -41
- package/core/server/api/shared/serializers/input/index.js +0 -5
- package/core/server/api/shared/serializers/output/index.js +0 -1
- package/core/server/api/shared/utils/index.js +0 -5
- package/core/server/api/shared/utils/options.js +0 -23
- package/core/server/api/shared/validators/handle.js +0 -68
- package/core/server/api/shared/validators/index.js +0 -9
- package/core/server/api/shared/validators/input/all.js +0 -213
- package/core/server/api/shared/validators/input/index.js +0 -5
- package/core/server/services/bulk-email/mailgun.js +0 -122
- package/core/server/web/shared/middleware/cache-control.js +0 -43
package/yarn.lock
CHANGED
|
@@ -2815,13 +2815,13 @@
|
|
|
2815
2815
|
resolved "https://registry.yarnpkg.com/@panva/asn1.js/-/asn1.js-1.0.0.tgz#dd55ae7b8129e02049f009408b97c61ccf9032f6"
|
|
2816
2816
|
integrity sha512-UdkG3mLEqXgnlKsWanWcgb6dOjUzJ+XC5f+aWw30qrtjxeNUSfKX1cd5FBzOaXQumoe9nIqeZUvrRJS03HCCtw==
|
|
2817
2817
|
|
|
2818
|
-
"@playwright/test@1.
|
|
2819
|
-
version "1.
|
|
2820
|
-
resolved "https://registry.yarnpkg.com/@playwright/test/-/test-1.
|
|
2821
|
-
integrity sha512-
|
|
2818
|
+
"@playwright/test@1.25.0":
|
|
2819
|
+
version "1.25.0"
|
|
2820
|
+
resolved "https://registry.yarnpkg.com/@playwright/test/-/test-1.25.0.tgz#e0de134651e78e45e986c5f16578188dd5937331"
|
|
2821
|
+
integrity sha512-j4EZhTTQI3dBeWblE21EV//swwmBtOpIrLdOIJIRv4uqsLdHgBg1z+JtTg+AeC5o2bAXIE26kDNW5A0TimG8Bg==
|
|
2822
2822
|
dependencies:
|
|
2823
2823
|
"@types/node" "*"
|
|
2824
|
-
playwright-core "1.
|
|
2824
|
+
playwright-core "1.25.0"
|
|
2825
2825
|
|
|
2826
2826
|
"@popperjs/core@^2.4.0":
|
|
2827
2827
|
version "2.11.5"
|
|
@@ -2844,14 +2844,24 @@
|
|
|
2844
2844
|
domhandler "^4.2.0"
|
|
2845
2845
|
selderee "^0.6.0"
|
|
2846
2846
|
|
|
2847
|
-
"@sentry/browser@7.
|
|
2848
|
-
version "7.
|
|
2849
|
-
resolved "https://registry.yarnpkg.com/@sentry/browser/-/browser-7.
|
|
2850
|
-
integrity sha512-
|
|
2847
|
+
"@sentry/browser@7.10.0":
|
|
2848
|
+
version "7.10.0"
|
|
2849
|
+
resolved "https://registry.yarnpkg.com/@sentry/browser/-/browser-7.10.0.tgz#54a831811b65e3b9e01785f5a96f2441167d01b3"
|
|
2850
|
+
integrity sha512-RNOKCRonqzUOqyM/JcjxjCOMosfS0MRmzkBKWewfyXse9AqfqC9+y8BI5J7wFmpYCypQP72JROKPBaxi7rvOFw==
|
|
2851
|
+
dependencies:
|
|
2852
|
+
"@sentry/core" "7.10.0"
|
|
2853
|
+
"@sentry/types" "7.10.0"
|
|
2854
|
+
"@sentry/utils" "7.10.0"
|
|
2855
|
+
tslib "^1.9.3"
|
|
2856
|
+
|
|
2857
|
+
"@sentry/core@7.10.0":
|
|
2858
|
+
version "7.10.0"
|
|
2859
|
+
resolved "https://registry.yarnpkg.com/@sentry/core/-/core-7.10.0.tgz#ebe1f7158954d3d29ba319bdfe745a06d3a43d08"
|
|
2860
|
+
integrity sha512-uq6oUXPH+6cjsEL5/j/xSW91mVrJo7knTqax7E5MDiA5j98BPK4budGiBiPO7GEB856QhA7N+pOO0lccii5QYQ==
|
|
2851
2861
|
dependencies:
|
|
2852
|
-
"@sentry/
|
|
2853
|
-
"@sentry/types" "7.
|
|
2854
|
-
"@sentry/utils" "7.
|
|
2862
|
+
"@sentry/hub" "7.10.0"
|
|
2863
|
+
"@sentry/types" "7.10.0"
|
|
2864
|
+
"@sentry/utils" "7.10.0"
|
|
2855
2865
|
tslib "^1.9.3"
|
|
2856
2866
|
|
|
2857
2867
|
"@sentry/core@7.8.1":
|
|
@@ -2864,31 +2874,30 @@
|
|
|
2864
2874
|
"@sentry/utils" "7.8.1"
|
|
2865
2875
|
tslib "^1.9.3"
|
|
2866
2876
|
|
|
2867
|
-
"@sentry/
|
|
2868
|
-
version "7.
|
|
2869
|
-
resolved "https://registry.yarnpkg.com/@sentry/
|
|
2870
|
-
integrity sha512-
|
|
2871
|
-
dependencies:
|
|
2872
|
-
"@sentry/hub" "7.9.0"
|
|
2873
|
-
"@sentry/types" "7.9.0"
|
|
2874
|
-
"@sentry/utils" "7.9.0"
|
|
2875
|
-
tslib "^1.9.3"
|
|
2876
|
-
|
|
2877
|
-
"@sentry/ember@7.9.0":
|
|
2878
|
-
version "7.9.0"
|
|
2879
|
-
resolved "https://registry.yarnpkg.com/@sentry/ember/-/ember-7.9.0.tgz#bf15de0c31dc4825dcf523102ec5a5414a9c3890"
|
|
2880
|
-
integrity sha512-G6dxmwLF3VL/xP3HRdmYLdMDpIPbjESRCLH+fCpGnHseczvnLHxRlhT30Z7i6aLwY36ReBmcoqmGIWfveOZ/bQ==
|
|
2877
|
+
"@sentry/ember@7.10.0":
|
|
2878
|
+
version "7.10.0"
|
|
2879
|
+
resolved "https://registry.yarnpkg.com/@sentry/ember/-/ember-7.10.0.tgz#c0941e2b9ed511154d93659afcf45d1963468508"
|
|
2880
|
+
integrity sha512-rTt1tOuFUSIPwQJWHS3h12vEAjwUvI9udcRnR50sHmetlOdsj+rz1g5PAtKILZS6Y2oSnDaRVStvULe6Pmeu+g==
|
|
2881
2881
|
dependencies:
|
|
2882
2882
|
"@embroider/macros" "~0.47.2"
|
|
2883
|
-
"@sentry/browser" "7.
|
|
2884
|
-
"@sentry/tracing" "7.
|
|
2885
|
-
"@sentry/types" "7.
|
|
2886
|
-
"@sentry/utils" "7.
|
|
2883
|
+
"@sentry/browser" "7.10.0"
|
|
2884
|
+
"@sentry/tracing" "7.10.0"
|
|
2885
|
+
"@sentry/types" "7.10.0"
|
|
2886
|
+
"@sentry/utils" "7.10.0"
|
|
2887
2887
|
ember-auto-import "~1.12.1 || ~2.2.0"
|
|
2888
2888
|
ember-cli-babel "~7.26.6"
|
|
2889
2889
|
ember-cli-htmlbars "^6.0.1"
|
|
2890
2890
|
ember-cli-typescript "^4.2.1"
|
|
2891
2891
|
|
|
2892
|
+
"@sentry/hub@7.10.0":
|
|
2893
|
+
version "7.10.0"
|
|
2894
|
+
resolved "https://registry.yarnpkg.com/@sentry/hub/-/hub-7.10.0.tgz#41a32c1e68efaedaebc1dca10b8e22d12937715f"
|
|
2895
|
+
integrity sha512-9Appy7J87EU7Xu2BDY1cLK79nsuE72geeYmG71lgdttTD3XOMcQBOxET4/2sAI+d/ansurXnURx+DAQ9FOKT+w==
|
|
2896
|
+
dependencies:
|
|
2897
|
+
"@sentry/types" "7.10.0"
|
|
2898
|
+
"@sentry/utils" "7.10.0"
|
|
2899
|
+
tslib "^1.9.3"
|
|
2900
|
+
|
|
2892
2901
|
"@sentry/hub@7.8.1":
|
|
2893
2902
|
version "7.8.1"
|
|
2894
2903
|
resolved "https://registry.yarnpkg.com/@sentry/hub/-/hub-7.8.1.tgz#bc255c6b8e99a3333e737f189c984c715df504aa"
|
|
@@ -2898,13 +2907,18 @@
|
|
|
2898
2907
|
"@sentry/utils" "7.8.1"
|
|
2899
2908
|
tslib "^1.9.3"
|
|
2900
2909
|
|
|
2901
|
-
"@sentry/
|
|
2902
|
-
version "7.
|
|
2903
|
-
resolved "https://registry.yarnpkg.com/@sentry/
|
|
2904
|
-
integrity sha512-
|
|
2910
|
+
"@sentry/node@7.10.0":
|
|
2911
|
+
version "7.10.0"
|
|
2912
|
+
resolved "https://registry.yarnpkg.com/@sentry/node/-/node-7.10.0.tgz#977141ff554c26a43739575d1fee9d3819fba998"
|
|
2913
|
+
integrity sha512-L/DSEJ7Biy8ovvlCyfu5MpCYG108FIGVbJ1h0NBGr5+uLxTNg2WJWojJoiQNiRcWl4s0dcIXrRdi0HR2Sx+DUw==
|
|
2905
2914
|
dependencies:
|
|
2906
|
-
"@sentry/
|
|
2907
|
-
"@sentry/
|
|
2915
|
+
"@sentry/core" "7.10.0"
|
|
2916
|
+
"@sentry/hub" "7.10.0"
|
|
2917
|
+
"@sentry/types" "7.10.0"
|
|
2918
|
+
"@sentry/utils" "7.10.0"
|
|
2919
|
+
cookie "^0.4.1"
|
|
2920
|
+
https-proxy-agent "^5.0.0"
|
|
2921
|
+
lru_map "^0.3.3"
|
|
2908
2922
|
tslib "^1.9.3"
|
|
2909
2923
|
|
|
2910
2924
|
"@sentry/node@7.8.1":
|
|
@@ -2921,39 +2935,33 @@
|
|
|
2921
2935
|
lru_map "^0.3.3"
|
|
2922
2936
|
tslib "^1.9.3"
|
|
2923
2937
|
|
|
2924
|
-
"@sentry/
|
|
2925
|
-
version "7.
|
|
2926
|
-
resolved "https://registry.yarnpkg.com/@sentry/
|
|
2927
|
-
integrity sha512-
|
|
2938
|
+
"@sentry/tracing@7.10.0":
|
|
2939
|
+
version "7.10.0"
|
|
2940
|
+
resolved "https://registry.yarnpkg.com/@sentry/tracing/-/tracing-7.10.0.tgz#084019c6ab841dff1722ed5eb397ee80fb36af51"
|
|
2941
|
+
integrity sha512-ojuBYS1bL/IGWKt/ItY4HmC8NElJrYtTUvm73VbhylhIO4zcn5ICHmgMFj1lqL9gQ1nCnAlifKiWIjL9qUatTA==
|
|
2928
2942
|
dependencies:
|
|
2929
|
-
"@sentry/
|
|
2930
|
-
"@sentry/
|
|
2931
|
-
"@sentry/
|
|
2932
|
-
"@sentry/utils" "7.9.0"
|
|
2933
|
-
cookie "^0.4.1"
|
|
2934
|
-
https-proxy-agent "^5.0.0"
|
|
2935
|
-
lru_map "^0.3.3"
|
|
2943
|
+
"@sentry/hub" "7.10.0"
|
|
2944
|
+
"@sentry/types" "7.10.0"
|
|
2945
|
+
"@sentry/utils" "7.10.0"
|
|
2936
2946
|
tslib "^1.9.3"
|
|
2937
2947
|
|
|
2938
|
-
"@sentry/
|
|
2939
|
-
version "7.
|
|
2940
|
-
resolved "https://registry.yarnpkg.com/@sentry/
|
|
2941
|
-
integrity sha512-
|
|
2942
|
-
dependencies:
|
|
2943
|
-
"@sentry/hub" "7.9.0"
|
|
2944
|
-
"@sentry/types" "7.9.0"
|
|
2945
|
-
"@sentry/utils" "7.9.0"
|
|
2946
|
-
tslib "^1.9.3"
|
|
2948
|
+
"@sentry/types@7.10.0":
|
|
2949
|
+
version "7.10.0"
|
|
2950
|
+
resolved "https://registry.yarnpkg.com/@sentry/types/-/types-7.10.0.tgz#c91d634768336238ac30ed750fa918326c384cbb"
|
|
2951
|
+
integrity sha512-1UBwdbS0xXzANzp63g4eNQly/qKIXp0swP5OTKWoADvKBtL4anroLUA/l8ADMtuwFZYtVANc8WRGxM2+YmaXtg==
|
|
2947
2952
|
|
|
2948
2953
|
"@sentry/types@7.8.1":
|
|
2949
2954
|
version "7.8.1"
|
|
2950
2955
|
resolved "https://registry.yarnpkg.com/@sentry/types/-/types-7.8.1.tgz#c00a1ed02ad8f69d3b94fcda91e2d24e0bb3492a"
|
|
2951
2956
|
integrity sha512-LOoaeBXVI23Kh5SpIbxSRiJ6+eYZXVOFyPFH1T1mGBj95LPwRMqOdg0lUTmFJGBKbDGDB/YNjNnu1kQ7GrXBXw==
|
|
2952
2957
|
|
|
2953
|
-
"@sentry/
|
|
2954
|
-
version "7.
|
|
2955
|
-
resolved "https://registry.yarnpkg.com/@sentry/
|
|
2956
|
-
integrity sha512
|
|
2958
|
+
"@sentry/utils@7.10.0":
|
|
2959
|
+
version "7.10.0"
|
|
2960
|
+
resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-7.10.0.tgz#237cfcfa300f65fad45ec703d4acb4f02f22093b"
|
|
2961
|
+
integrity sha512-/aD2DnfyOhV0Wdbb6VF78vu4fQIZJyuReDpBI7MV/EqcEB6FxUKq2YjinfKZF/exHEPig6Ag/Yt+CRFgvtVFuw==
|
|
2962
|
+
dependencies:
|
|
2963
|
+
"@sentry/types" "7.10.0"
|
|
2964
|
+
tslib "^1.9.3"
|
|
2957
2965
|
|
|
2958
2966
|
"@sentry/utils@7.8.1":
|
|
2959
2967
|
version "7.8.1"
|
|
@@ -2963,14 +2971,6 @@
|
|
|
2963
2971
|
"@sentry/types" "7.8.1"
|
|
2964
2972
|
tslib "^1.9.3"
|
|
2965
2973
|
|
|
2966
|
-
"@sentry/utils@7.9.0":
|
|
2967
|
-
version "7.9.0"
|
|
2968
|
-
resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-7.9.0.tgz#497c41efe1b32974208ca68570e42c853b874f77"
|
|
2969
|
-
integrity sha512-4f9TZvAVopgG7Lp1TcPSekSX1Ashk68Et4T8Y+60EVX5se19i0hpytbHWWwrXSrb3w0KpGANk0byoZkdaTgkYA==
|
|
2970
|
-
dependencies:
|
|
2971
|
-
"@sentry/types" "7.9.0"
|
|
2972
|
-
tslib "^1.9.3"
|
|
2973
|
-
|
|
2974
2974
|
"@simple-dom/document@^1.4.0":
|
|
2975
2975
|
version "1.4.0"
|
|
2976
2976
|
resolved "https://registry.yarnpkg.com/@simple-dom/document/-/document-1.4.0.tgz#af60855f957f284d436983798ef1006cca1a1678"
|
|
@@ -3094,12 +3094,12 @@
|
|
|
3094
3094
|
ajv "^6.12.6"
|
|
3095
3095
|
lodash "^4.17.11"
|
|
3096
3096
|
|
|
3097
|
-
"@tryghost/bookshelf-collision@^0.1.
|
|
3098
|
-
version "0.1.
|
|
3099
|
-
resolved "https://registry.yarnpkg.com/@tryghost/bookshelf-collision/-/bookshelf-collision-0.1.
|
|
3100
|
-
integrity sha512-
|
|
3097
|
+
"@tryghost/bookshelf-collision@^0.1.25":
|
|
3098
|
+
version "0.1.25"
|
|
3099
|
+
resolved "https://registry.yarnpkg.com/@tryghost/bookshelf-collision/-/bookshelf-collision-0.1.25.tgz#27ebb1eb617bcc018a84a9025c77928b124e9b6e"
|
|
3100
|
+
integrity sha512-P3AJpL3WCEif2QHBysLiIP7CAcpc5KwIqiZ07ogQrhBs/qLlBsbjQsYey63vO7LrhmI79mXlidni3N7GMFBO8A==
|
|
3101
3101
|
dependencies:
|
|
3102
|
-
"@tryghost/errors" "^1.2.
|
|
3102
|
+
"@tryghost/errors" "^1.2.15"
|
|
3103
3103
|
lodash "^4.17.21"
|
|
3104
3104
|
moment-timezone "^0.5.33"
|
|
3105
3105
|
|
|
@@ -3108,38 +3108,38 @@
|
|
|
3108
3108
|
resolved "https://registry.yarnpkg.com/@tryghost/bookshelf-custom-query/-/bookshelf-custom-query-0.1.14.tgz#789d113c0fd6b157307c2b58210b1c43a33cf062"
|
|
3109
3109
|
integrity sha512-/+H8BaOrfSstY4BFCXyJt1g/Mv8A21A4rGnr7lzpyXBiKueS1dkHq8mDlopggLgSlCqbXLmndD/x0mFLvZISUA==
|
|
3110
3110
|
|
|
3111
|
-
"@tryghost/bookshelf-eager-load@^0.1.
|
|
3112
|
-
version "0.1.
|
|
3113
|
-
resolved "https://registry.yarnpkg.com/@tryghost/bookshelf-eager-load/-/bookshelf-eager-load-0.1.
|
|
3114
|
-
integrity sha512-
|
|
3111
|
+
"@tryghost/bookshelf-eager-load@^0.1.17":
|
|
3112
|
+
version "0.1.17"
|
|
3113
|
+
resolved "https://registry.yarnpkg.com/@tryghost/bookshelf-eager-load/-/bookshelf-eager-load-0.1.17.tgz#abf64fbcc8a0b41db21402db16a448461f51a675"
|
|
3114
|
+
integrity sha512-477M1a/yycl4sh3bIMiHIeTpqcvohM/AA2HG1RSNbZfu3L12YpTRyki786Rc9aMW5+sSmb+Zv5OUlXPrWyN3Xg==
|
|
3115
3115
|
dependencies:
|
|
3116
|
-
"@tryghost/debug" "^0.1.
|
|
3116
|
+
"@tryghost/debug" "^0.1.18"
|
|
3117
3117
|
lodash "^4.17.21"
|
|
3118
3118
|
|
|
3119
|
-
"@tryghost/bookshelf-filter@^0.4.
|
|
3120
|
-
version "0.4.
|
|
3121
|
-
resolved "https://registry.yarnpkg.com/@tryghost/bookshelf-filter/-/bookshelf-filter-0.4.
|
|
3122
|
-
integrity sha512-
|
|
3119
|
+
"@tryghost/bookshelf-filter@^0.4.12":
|
|
3120
|
+
version "0.4.12"
|
|
3121
|
+
resolved "https://registry.yarnpkg.com/@tryghost/bookshelf-filter/-/bookshelf-filter-0.4.12.tgz#a2323df684fd06501c7a17a9dc71d1ff7e171841"
|
|
3122
|
+
integrity sha512-dY8d5C3WEamGp+s+e4au0IkTm/Nj8FYtobmB1npDkzsbOa7HvIpYJQKQHD6k/OOtv5uCh3eCJpLB5G1ULgN21w==
|
|
3123
3123
|
dependencies:
|
|
3124
|
-
"@tryghost/debug" "^0.1.
|
|
3125
|
-
"@tryghost/errors" "^1.2.
|
|
3124
|
+
"@tryghost/debug" "^0.1.18"
|
|
3125
|
+
"@tryghost/errors" "^1.2.15"
|
|
3126
3126
|
"@tryghost/nql" "^0.9.0"
|
|
3127
|
-
"@tryghost/tpl" "^0.1.
|
|
3127
|
+
"@tryghost/tpl" "^0.1.18"
|
|
3128
3128
|
|
|
3129
|
-
"@tryghost/bookshelf-has-posts@^0.1.
|
|
3130
|
-
version "0.1.
|
|
3131
|
-
resolved "https://registry.yarnpkg.com/@tryghost/bookshelf-has-posts/-/bookshelf-has-posts-0.1.
|
|
3132
|
-
integrity sha512-
|
|
3129
|
+
"@tryghost/bookshelf-has-posts@^0.1.18":
|
|
3130
|
+
version "0.1.18"
|
|
3131
|
+
resolved "https://registry.yarnpkg.com/@tryghost/bookshelf-has-posts/-/bookshelf-has-posts-0.1.18.tgz#d5350e1ddd7db3b596ca263aa137c2c72646d1da"
|
|
3132
|
+
integrity sha512-hc7Dj21MP+zAwzePCKJokDbqTGtvYeR15kvhf8XacGE53qL6PSVgpni3QmU/d0FWGUtADa9O6/LHTHyos8yMDg==
|
|
3133
3133
|
dependencies:
|
|
3134
|
-
"@tryghost/debug" "^0.1.
|
|
3134
|
+
"@tryghost/debug" "^0.1.18"
|
|
3135
3135
|
lodash "^4.17.21"
|
|
3136
3136
|
|
|
3137
|
-
"@tryghost/bookshelf-include-count@^0.
|
|
3138
|
-
version "0.
|
|
3139
|
-
resolved "https://registry.yarnpkg.com/@tryghost/bookshelf-include-count/-/bookshelf-include-count-0.
|
|
3140
|
-
integrity sha512-
|
|
3137
|
+
"@tryghost/bookshelf-include-count@^0.3.0":
|
|
3138
|
+
version "0.3.0"
|
|
3139
|
+
resolved "https://registry.yarnpkg.com/@tryghost/bookshelf-include-count/-/bookshelf-include-count-0.3.0.tgz#182fd7810e1cadb666cf27d60b1fb925b1db7e98"
|
|
3140
|
+
integrity sha512-sa1kPxFmHqUcgBSGo0Zvrl4o6KOdm8lNsfwCOWrFRi6Ez0HDafKjO4r15NkhGzBJcSTNdOP+lD7l0mBSz6Rs5A==
|
|
3141
3141
|
dependencies:
|
|
3142
|
-
"@tryghost/debug" "^0.1.
|
|
3142
|
+
"@tryghost/debug" "^0.1.18"
|
|
3143
3143
|
lodash "^4.17.21"
|
|
3144
3144
|
|
|
3145
3145
|
"@tryghost/bookshelf-order@^0.1.14":
|
|
@@ -3149,28 +3149,28 @@
|
|
|
3149
3149
|
dependencies:
|
|
3150
3150
|
lodash "^4.17.21"
|
|
3151
3151
|
|
|
3152
|
-
"@tryghost/bookshelf-pagination@^0.1.
|
|
3153
|
-
version "0.1.
|
|
3154
|
-
resolved "https://registry.yarnpkg.com/@tryghost/bookshelf-pagination/-/bookshelf-pagination-0.1.
|
|
3155
|
-
integrity sha512-
|
|
3152
|
+
"@tryghost/bookshelf-pagination@^0.1.27":
|
|
3153
|
+
version "0.1.27"
|
|
3154
|
+
resolved "https://registry.yarnpkg.com/@tryghost/bookshelf-pagination/-/bookshelf-pagination-0.1.27.tgz#f21c34e2c9837c333f3b1df791a8d74b496f762b"
|
|
3155
|
+
integrity sha512-oH447PdKm8zNWwzCQX23fIPS/g/MXOVXcknWHMTpk4ATvhjTmxnykX5Ms4lmBzd7ZxzneRk5XjD+9Qo0MkTjlQ==
|
|
3156
3156
|
dependencies:
|
|
3157
|
-
"@tryghost/errors" "^1.2.
|
|
3158
|
-
"@tryghost/tpl" "^0.1.
|
|
3157
|
+
"@tryghost/errors" "^1.2.15"
|
|
3158
|
+
"@tryghost/tpl" "^0.1.18"
|
|
3159
3159
|
lodash "^4.17.21"
|
|
3160
3160
|
|
|
3161
|
-
"@tryghost/bookshelf-plugins@0.
|
|
3162
|
-
version "0.
|
|
3163
|
-
resolved "https://registry.yarnpkg.com/@tryghost/bookshelf-plugins/-/bookshelf-plugins-0.
|
|
3164
|
-
integrity sha512-
|
|
3161
|
+
"@tryghost/bookshelf-plugins@0.5.0":
|
|
3162
|
+
version "0.5.0"
|
|
3163
|
+
resolved "https://registry.yarnpkg.com/@tryghost/bookshelf-plugins/-/bookshelf-plugins-0.5.0.tgz#494107183b86ed31061b9125936db6e3ed3f3258"
|
|
3164
|
+
integrity sha512-6cQkDYgxOnsjGJ9BPQ9KycHjmx7mxiWkykcAEKAKDDqUCspdQhl7II0VmdhGOr9dJjzyAd+nTWtbkLS5LBjoZw==
|
|
3165
3165
|
dependencies:
|
|
3166
|
-
"@tryghost/bookshelf-collision" "^0.1.
|
|
3166
|
+
"@tryghost/bookshelf-collision" "^0.1.25"
|
|
3167
3167
|
"@tryghost/bookshelf-custom-query" "^0.1.14"
|
|
3168
|
-
"@tryghost/bookshelf-eager-load" "^0.1.
|
|
3169
|
-
"@tryghost/bookshelf-filter" "^0.4.
|
|
3170
|
-
"@tryghost/bookshelf-has-posts" "^0.1.
|
|
3171
|
-
"@tryghost/bookshelf-include-count" "^0.
|
|
3168
|
+
"@tryghost/bookshelf-eager-load" "^0.1.17"
|
|
3169
|
+
"@tryghost/bookshelf-filter" "^0.4.12"
|
|
3170
|
+
"@tryghost/bookshelf-has-posts" "^0.1.18"
|
|
3171
|
+
"@tryghost/bookshelf-include-count" "^0.3.0"
|
|
3172
3172
|
"@tryghost/bookshelf-order" "^0.1.14"
|
|
3173
|
-
"@tryghost/bookshelf-pagination" "^0.1.
|
|
3173
|
+
"@tryghost/bookshelf-pagination" "^0.1.27"
|
|
3174
3174
|
"@tryghost/bookshelf-search" "^0.1.14"
|
|
3175
3175
|
"@tryghost/bookshelf-transaction-events" "^0.1.14"
|
|
3176
3176
|
|
|
@@ -3216,7 +3216,12 @@
|
|
|
3216
3216
|
resolved "https://registry.yarnpkg.com/@tryghost/database-info/-/database-info-0.3.8.tgz#77af1a8a930986d3b3cef14e4dd5928be4c4bdcc"
|
|
3217
3217
|
integrity sha512-fs034LgcOlyvVwQtaaRPuZW1AF1ac6/UMb5UxdO0/sreMiO30Y5mVuOBqET6CbWKLKOK6WVvVgmGIgyddH0Qrg==
|
|
3218
3218
|
|
|
3219
|
-
"@tryghost/
|
|
3219
|
+
"@tryghost/database-info@0.3.9":
|
|
3220
|
+
version "0.3.9"
|
|
3221
|
+
resolved "https://registry.yarnpkg.com/@tryghost/database-info/-/database-info-0.3.9.tgz#76a995a5ec489e0adf55699223cd91e372584552"
|
|
3222
|
+
integrity sha512-aWeWk1bJVpBBZ5sX3+66z/pEyYG3nselSSua3VOxC3Ii8pbppDkcJJlm2Z6TSLNEEHtrhHtXJJH4+eBfLA24kQ==
|
|
3223
|
+
|
|
3224
|
+
"@tryghost/debug@0.1.17":
|
|
3220
3225
|
version "0.1.17"
|
|
3221
3226
|
resolved "https://registry.yarnpkg.com/@tryghost/debug/-/debug-0.1.17.tgz#2655fa1c71b2608e71de7f166f5f7b1a1c086915"
|
|
3222
3227
|
integrity sha512-Sz7O4+uCV2CLDb4daEP8/lLkSf0ttTGMpF3RzhwyQKXNCIeutAeaW8nqhr+BIq1e3LeMV/sVRzh4LeyKKDEkrw==
|
|
@@ -3224,13 +3229,21 @@
|
|
|
3224
3229
|
"@tryghost/root-utils" "^0.3.15"
|
|
3225
3230
|
debug "^4.3.1"
|
|
3226
3231
|
|
|
3227
|
-
"@tryghost/
|
|
3228
|
-
version "
|
|
3229
|
-
resolved "https://registry.yarnpkg.com/@tryghost/
|
|
3230
|
-
integrity sha512-
|
|
3232
|
+
"@tryghost/debug@0.1.18", "@tryghost/debug@^0.1.13", "@tryghost/debug@^0.1.17", "@tryghost/debug@^0.1.18":
|
|
3233
|
+
version "0.1.18"
|
|
3234
|
+
resolved "https://registry.yarnpkg.com/@tryghost/debug/-/debug-0.1.18.tgz#b126fedb8f409f44c3082a2c469171940cd6986e"
|
|
3235
|
+
integrity sha512-vG9dHuvYn8LlRrWyFUbt4zmsWmPLlZZJn1Qv9ko8uML36nILrpFehTnfda5663cMlwQQWPJ+DL6SCylIbtLWDg==
|
|
3236
|
+
dependencies:
|
|
3237
|
+
"@tryghost/root-utils" "^0.3.16"
|
|
3238
|
+
debug "^4.3.1"
|
|
3239
|
+
|
|
3240
|
+
"@tryghost/elasticsearch@^3.0.3":
|
|
3241
|
+
version "3.0.3"
|
|
3242
|
+
resolved "https://registry.yarnpkg.com/@tryghost/elasticsearch/-/elasticsearch-3.0.3.tgz#6651298989f38bbe30777ab122d56a43f719d2c2"
|
|
3243
|
+
integrity sha512-P5uH0xfpjNh0aanGjc3yXDy0oJ0rEiCmYpgAzCBBDihLbf6IU1krD3MazrpB9n360Dhgli23aNbebYPUnvAKTg==
|
|
3231
3244
|
dependencies:
|
|
3232
3245
|
"@elastic/elasticsearch" "8.2.1"
|
|
3233
|
-
"@tryghost/debug" "^0.1.
|
|
3246
|
+
"@tryghost/debug" "^0.1.18"
|
|
3234
3247
|
split2 "4.1.0"
|
|
3235
3248
|
|
|
3236
3249
|
"@tryghost/ember-promise-modals@2.0.1":
|
|
@@ -3249,7 +3262,7 @@
|
|
|
3249
3262
|
focus-trap "^6.7.2"
|
|
3250
3263
|
postcss-preset-env "^7.3.1"
|
|
3251
3264
|
|
|
3252
|
-
"@tryghost/errors@1.2.14"
|
|
3265
|
+
"@tryghost/errors@1.2.14":
|
|
3253
3266
|
version "1.2.14"
|
|
3254
3267
|
resolved "https://registry.yarnpkg.com/@tryghost/errors/-/errors-1.2.14.tgz#af5e0ea1450b6fac7bde94585177943f85f0e41f"
|
|
3255
3268
|
integrity sha512-ycXhblMBlbwXo+PfmVJZtT26/B1wu6Ae/8SBjXlzHAp6qlkho/Z5hZPKMRo0frfBt6CDGyX/abKTeVQzSkTPYA==
|
|
@@ -3258,12 +3271,21 @@
|
|
|
3258
3271
|
utils-copy-error "^1.0.1"
|
|
3259
3272
|
uuid "^8.3.2"
|
|
3260
3273
|
|
|
3261
|
-
"@tryghost/
|
|
3262
|
-
version "
|
|
3263
|
-
resolved "https://registry.yarnpkg.com/@tryghost/
|
|
3264
|
-
integrity sha512-
|
|
3274
|
+
"@tryghost/errors@1.2.15", "@tryghost/errors@^1.0.0", "@tryghost/errors@^1.2.1", "@tryghost/errors@^1.2.15", "@tryghost/errors@^1.2.3":
|
|
3275
|
+
version "1.2.15"
|
|
3276
|
+
resolved "https://registry.yarnpkg.com/@tryghost/errors/-/errors-1.2.15.tgz#0f9e63f3c8d1024fe53fd5e6eb600657f366a46f"
|
|
3277
|
+
integrity sha512-3T0KA5qpxM3JU2ZI3s5w2qUztA2CG3h+G86zKxbZc9ZnOP+nzsJ2fn9nkkqVwFUvxOr76mjWMgVETdH6yXiu1g==
|
|
3265
3278
|
dependencies:
|
|
3266
|
-
|
|
3279
|
+
lodash "^4.17.21"
|
|
3280
|
+
utils-copy-error "^1.0.1"
|
|
3281
|
+
uuid "^8.3.2"
|
|
3282
|
+
|
|
3283
|
+
"@tryghost/express-test@0.11.2":
|
|
3284
|
+
version "0.11.2"
|
|
3285
|
+
resolved "https://registry.yarnpkg.com/@tryghost/express-test/-/express-test-0.11.2.tgz#4e4c83879dce176a066966d3714a2ce526dccd66"
|
|
3286
|
+
integrity sha512-m4pmDbiwIUAvdPJEvaWWFiH4xItYyRrugXgFjvMSG5j7Q/aZxtNk2JcpJzpMWHJVSwjUorzV6uq22tLaIfTq0A==
|
|
3287
|
+
dependencies:
|
|
3288
|
+
"@tryghost/jest-snapshot" "^0.4.2"
|
|
3267
3289
|
cookiejar "^2.1.3"
|
|
3268
3290
|
reqresnext "^1.7.0"
|
|
3269
3291
|
|
|
@@ -3283,13 +3305,13 @@
|
|
|
3283
3305
|
"@tryghost/mobiledoc-kit" "^0.12.4-ghost.1"
|
|
3284
3306
|
jsdom "^18.0.0"
|
|
3285
3307
|
|
|
3286
|
-
"@tryghost/http-stream@^0.1.
|
|
3287
|
-
version "0.1.
|
|
3288
|
-
resolved "https://registry.yarnpkg.com/@tryghost/http-stream/-/http-stream-0.1.
|
|
3289
|
-
integrity sha512-
|
|
3308
|
+
"@tryghost/http-stream@^0.1.11":
|
|
3309
|
+
version "0.1.11"
|
|
3310
|
+
resolved "https://registry.yarnpkg.com/@tryghost/http-stream/-/http-stream-0.1.11.tgz#ca658c3e09b0584cb013b4a56c2eb18884d5c801"
|
|
3311
|
+
integrity sha512-R/cz7ojry7GqfMwe4EYwK/6LInqaiFfi7VWoFz8REimbNR1qYDwTaZORvlfzvuNVbhwv/I5Gvhee52Xdod4vBA==
|
|
3290
3312
|
dependencies:
|
|
3291
|
-
"@tryghost/errors" "^1.2.
|
|
3292
|
-
"@tryghost/request" "^0.1.
|
|
3313
|
+
"@tryghost/errors" "^1.2.15"
|
|
3314
|
+
"@tryghost/request" "^0.1.29"
|
|
3293
3315
|
|
|
3294
3316
|
"@tryghost/image-transform@1.2.2":
|
|
3295
3317
|
version "1.2.2"
|
|
@@ -3302,14 +3324,14 @@
|
|
|
3302
3324
|
optionalDependencies:
|
|
3303
3325
|
sharp "^0.30.0"
|
|
3304
3326
|
|
|
3305
|
-
"@tryghost/jest-snapshot@^0.4.
|
|
3306
|
-
version "0.4.
|
|
3307
|
-
resolved "https://registry.yarnpkg.com/@tryghost/jest-snapshot/-/jest-snapshot-0.4.
|
|
3308
|
-
integrity sha512
|
|
3327
|
+
"@tryghost/jest-snapshot@^0.4.2":
|
|
3328
|
+
version "0.4.2"
|
|
3329
|
+
resolved "https://registry.yarnpkg.com/@tryghost/jest-snapshot/-/jest-snapshot-0.4.2.tgz#3f4a4119cb91e7f8cb7322ec4cc8e97acb21978c"
|
|
3330
|
+
integrity sha512-7CFksY5fDb3yup04K5Vk/uDY9sQZjFKARXLkbTwRgLm9IAQeI8xTFBCpP/Ok2VWTzxWjzMEXmS2Yj72YUB8/Fw==
|
|
3309
3331
|
dependencies:
|
|
3310
3332
|
"@jest/expect" "^28.0.1"
|
|
3311
3333
|
"@jest/expect-utils" "^28.0.1"
|
|
3312
|
-
"@tryghost/errors" "^1.2.
|
|
3334
|
+
"@tryghost/errors" "^1.2.15"
|
|
3313
3335
|
jest-snapshot "^28.0.0"
|
|
3314
3336
|
|
|
3315
3337
|
"@tryghost/kg-card-factory@3.1.4":
|
|
@@ -3384,16 +3406,16 @@
|
|
|
3384
3406
|
lodash "^4.17.21"
|
|
3385
3407
|
luxon "^1.26.0"
|
|
3386
3408
|
|
|
3387
|
-
"@tryghost/logging@2.2.3", "@tryghost/logging@^2.2.3":
|
|
3388
|
-
version "2.2.
|
|
3389
|
-
resolved "https://registry.yarnpkg.com/@tryghost/logging/-/logging-2.2.
|
|
3390
|
-
integrity sha512-
|
|
3409
|
+
"@tryghost/logging@2.2.3", "@tryghost/logging@2.2.4", "@tryghost/logging@^2.2.3":
|
|
3410
|
+
version "2.2.4"
|
|
3411
|
+
resolved "https://registry.yarnpkg.com/@tryghost/logging/-/logging-2.2.4.tgz#3e2ad6745fdc4d98ad80c632ef69e8ea8177e41c"
|
|
3412
|
+
integrity sha512-r0WhWkmEScr/jL5wF9W/tMZI8hF8EOq8eVzDlDbk7qPczRyIHQcLTOxb/iWgkqeGEOP4RwCrqtMmKSlqIO8ZVQ==
|
|
3391
3413
|
dependencies:
|
|
3392
3414
|
"@tryghost/bunyan-rotating-filestream" "^0.0.7"
|
|
3393
|
-
"@tryghost/elasticsearch" "^3.0.
|
|
3394
|
-
"@tryghost/http-stream" "^0.1.
|
|
3395
|
-
"@tryghost/pretty-stream" "^0.1.
|
|
3396
|
-
"@tryghost/root-utils" "^0.3.
|
|
3415
|
+
"@tryghost/elasticsearch" "^3.0.3"
|
|
3416
|
+
"@tryghost/http-stream" "^0.1.11"
|
|
3417
|
+
"@tryghost/pretty-stream" "^0.1.12"
|
|
3418
|
+
"@tryghost/root-utils" "^0.3.16"
|
|
3397
3419
|
bunyan "^1.8.15"
|
|
3398
3420
|
bunyan-loggly "^1.4.2"
|
|
3399
3421
|
fs-extra "^10.0.0"
|
|
@@ -3412,14 +3434,14 @@
|
|
|
3412
3434
|
papaparse "^5.3.2"
|
|
3413
3435
|
pump "^3.0.0"
|
|
3414
3436
|
|
|
3415
|
-
"@tryghost/metrics@1.0.
|
|
3416
|
-
version "1.0.
|
|
3417
|
-
resolved "https://registry.yarnpkg.com/@tryghost/metrics/-/metrics-1.0.
|
|
3418
|
-
integrity sha512-
|
|
3437
|
+
"@tryghost/metrics@1.0.15":
|
|
3438
|
+
version "1.0.15"
|
|
3439
|
+
resolved "https://registry.yarnpkg.com/@tryghost/metrics/-/metrics-1.0.15.tgz#d65fc570a9deb9cc0f3821b66975be258b58a37f"
|
|
3440
|
+
integrity sha512-XK5A70z9J7IU5hi4mSaGOvfmTKEOWdKKBeso4mmOa/rehkyfO3rRb4a0dl+KC3KDWD3J1sRrKduDZd/vqZK2qw==
|
|
3419
3441
|
dependencies:
|
|
3420
|
-
"@tryghost/elasticsearch" "^3.0.
|
|
3421
|
-
"@tryghost/pretty-stream" "^0.1.
|
|
3422
|
-
"@tryghost/root-utils" "^0.3.
|
|
3442
|
+
"@tryghost/elasticsearch" "^3.0.3"
|
|
3443
|
+
"@tryghost/pretty-stream" "^0.1.12"
|
|
3444
|
+
"@tryghost/root-utils" "^0.3.16"
|
|
3423
3445
|
json-stringify-safe "^5.0.1"
|
|
3424
3446
|
optionalDependencies:
|
|
3425
3447
|
promise.allsettled "^1.0.5"
|
|
@@ -3455,13 +3477,13 @@
|
|
|
3455
3477
|
dependencies:
|
|
3456
3478
|
lodash "^4.17.11"
|
|
3457
3479
|
|
|
3458
|
-
"@tryghost/nodemailer@0.3.
|
|
3459
|
-
version "0.3.
|
|
3460
|
-
resolved "https://registry.yarnpkg.com/@tryghost/nodemailer/-/nodemailer-0.3.
|
|
3461
|
-
integrity sha512-
|
|
3480
|
+
"@tryghost/nodemailer@0.3.25":
|
|
3481
|
+
version "0.3.25"
|
|
3482
|
+
resolved "https://registry.yarnpkg.com/@tryghost/nodemailer/-/nodemailer-0.3.25.tgz#4766dfe8dfa37cb38f3211e9f7bc3c7ff7d084f2"
|
|
3483
|
+
integrity sha512-H2AzPAE9g4Kzy7/dsih83nnOvhHj3iZI2NwuvJvgHnUWXdPrZw94YyCj2Mof4CASsYvudEh7lnQ32niBjbD9Aw==
|
|
3462
3484
|
dependencies:
|
|
3463
3485
|
"@aws-sdk/client-ses" "^3.31.0"
|
|
3464
|
-
"@tryghost/errors" "^1.2.
|
|
3486
|
+
"@tryghost/errors" "^1.2.15"
|
|
3465
3487
|
nodemailer "^6.6.3"
|
|
3466
3488
|
nodemailer-direct-transport "^3.3.2"
|
|
3467
3489
|
nodemailer-stub-transport "^1.1.0"
|
|
@@ -3491,37 +3513,45 @@
|
|
|
3491
3513
|
chalk "^4.1.0"
|
|
3492
3514
|
sywac "^1.3.0"
|
|
3493
3515
|
|
|
3494
|
-
"@tryghost/pretty-
|
|
3495
|
-
version "
|
|
3496
|
-
resolved "https://registry.yarnpkg.com/@tryghost/pretty-
|
|
3497
|
-
integrity sha512-
|
|
3516
|
+
"@tryghost/pretty-cli@1.2.30":
|
|
3517
|
+
version "1.2.30"
|
|
3518
|
+
resolved "https://registry.yarnpkg.com/@tryghost/pretty-cli/-/pretty-cli-1.2.30.tgz#1e14ba29cc30bf40fedd3ec6ce6e80a2f99c8abb"
|
|
3519
|
+
integrity sha512-mREyW+u2U4HVihGUvrlr1U+K2WctImm9trhqi3IxvHaLFODvFuIaC3d10X64quD3vX76SVaWu4XLoJ1z0WbOIA==
|
|
3520
|
+
dependencies:
|
|
3521
|
+
chalk "^4.1.0"
|
|
3522
|
+
sywac "^1.3.0"
|
|
3523
|
+
|
|
3524
|
+
"@tryghost/pretty-stream@^0.1.12":
|
|
3525
|
+
version "0.1.12"
|
|
3526
|
+
resolved "https://registry.yarnpkg.com/@tryghost/pretty-stream/-/pretty-stream-0.1.12.tgz#e1991415610142d9895d3e5cb84ac838c58d8c8b"
|
|
3527
|
+
integrity sha512-0FZxJG5K6Nz9nK347jkMwb0x+Gr988z1IRAY/Fi9OIebBxq8ZLnFDZvFIW1zlALoBwX2QW6X6K/tABzlI7ofoA==
|
|
3498
3528
|
dependencies:
|
|
3499
3529
|
lodash "^4.17.21"
|
|
3500
3530
|
moment "^2.29.1"
|
|
3501
3531
|
prettyjson "^1.2.5"
|
|
3502
3532
|
|
|
3503
|
-
"@tryghost/promise@0.1.
|
|
3504
|
-
version "0.1.
|
|
3505
|
-
resolved "https://registry.yarnpkg.com/@tryghost/promise/-/promise-0.1.
|
|
3506
|
-
integrity sha512-
|
|
3533
|
+
"@tryghost/promise@0.1.21":
|
|
3534
|
+
version "0.1.21"
|
|
3535
|
+
resolved "https://registry.yarnpkg.com/@tryghost/promise/-/promise-0.1.21.tgz#117b09ec5bfd21919a643ea933e2e5d707cef329"
|
|
3536
|
+
integrity sha512-PVyRL+AP0VgO0rUxscibUbZkZkAAmej2O/pQOOOj2fyklNTGflukrTyfZGbpbRTqO1LCOqKCgCuUGAKKN+5w8A==
|
|
3507
3537
|
dependencies:
|
|
3508
3538
|
bluebird "^3.7.2"
|
|
3509
3539
|
|
|
3510
|
-
"@tryghost/request@0.1.
|
|
3511
|
-
version "0.1.
|
|
3512
|
-
resolved "https://registry.yarnpkg.com/@tryghost/request/-/request-0.1.
|
|
3513
|
-
integrity sha512-
|
|
3540
|
+
"@tryghost/request@0.1.29", "@tryghost/request@^0.1.29":
|
|
3541
|
+
version "0.1.29"
|
|
3542
|
+
resolved "https://registry.yarnpkg.com/@tryghost/request/-/request-0.1.29.tgz#1d12c21e25bfcf227bc39f0e3b0e76ba7caf822a"
|
|
3543
|
+
integrity sha512-lt/7vif/fdQPeIc32PDOmxH/gs5/AqlmsY8zjLRaZMTqzVC0B7VazUKKYFFpXjt3FcqeKbgbqrQjbJ5jx6dABw==
|
|
3514
3544
|
dependencies:
|
|
3515
|
-
"@tryghost/errors" "^1.2.
|
|
3516
|
-
"@tryghost/validator" "^0.1.
|
|
3517
|
-
"@tryghost/version" "^0.1.
|
|
3545
|
+
"@tryghost/errors" "^1.2.15"
|
|
3546
|
+
"@tryghost/validator" "^0.1.27"
|
|
3547
|
+
"@tryghost/version" "^0.1.16"
|
|
3518
3548
|
got "9.6.0"
|
|
3519
3549
|
lodash "^4.17.21"
|
|
3520
3550
|
|
|
3521
|
-
"@tryghost/root-utils@0.3.
|
|
3522
|
-
version "0.3.
|
|
3523
|
-
resolved "https://registry.yarnpkg.com/@tryghost/root-utils/-/root-utils-0.3.
|
|
3524
|
-
integrity sha512
|
|
3551
|
+
"@tryghost/root-utils@0.3.16", "@tryghost/root-utils@^0.3.15", "@tryghost/root-utils@^0.3.16":
|
|
3552
|
+
version "0.3.16"
|
|
3553
|
+
resolved "https://registry.yarnpkg.com/@tryghost/root-utils/-/root-utils-0.3.16.tgz#a3dca3c9edccab494ca5968e460af2d49da4ce2b"
|
|
3554
|
+
integrity sha512-+X79NBxHwJW9tiO/B+uJbCmcgv/MotY+g3p/+bwIWjGfuC7VUXBDHNswERtJrx6b374b1N1zXXl1iWJNtSavdg==
|
|
3525
3555
|
dependencies:
|
|
3526
3556
|
caller "^1.0.1"
|
|
3527
3557
|
find-root "^1.1.0"
|
|
@@ -3558,10 +3588,10 @@
|
|
|
3558
3588
|
resolved "https://registry.yarnpkg.com/@tryghost/timezone-data/-/timezone-data-0.2.71.tgz#0ac10c3c16ca8153bce8ecf0d166e194efed6225"
|
|
3559
3589
|
integrity sha512-2WiXgunY97uyRw0hQ9qu57L6152th09OtfMzIlw/N7Ycf+W9lbHJIMUhVeanqgZ3o3wMzpSfkm9eoxOngdVCqw==
|
|
3560
3590
|
|
|
3561
|
-
"@tryghost/tpl@0.1.
|
|
3562
|
-
version "0.1.
|
|
3563
|
-
resolved "https://registry.yarnpkg.com/@tryghost/tpl/-/tpl-0.1.
|
|
3564
|
-
integrity sha512-
|
|
3591
|
+
"@tryghost/tpl@0.1.18", "@tryghost/tpl@^0.1.18":
|
|
3592
|
+
version "0.1.18"
|
|
3593
|
+
resolved "https://registry.yarnpkg.com/@tryghost/tpl/-/tpl-0.1.18.tgz#a4c87e3a82cd75aba72b2325c91d87677cc615f2"
|
|
3594
|
+
integrity sha512-frhPu9ScllYof5Xrhn4FrOluBSOEQiAQP67EOiFV6XE8UKJtAYTB48Xf9XtAWm9IfznpOGuy/2w84nK1SN7lvg==
|
|
3565
3595
|
dependencies:
|
|
3566
3596
|
lodash.template "^4.5.0"
|
|
3567
3597
|
|
|
@@ -3589,29 +3619,29 @@
|
|
|
3589
3619
|
remark-footnotes "^1.0.0"
|
|
3590
3620
|
unist-util-visit "^2.0.0"
|
|
3591
3621
|
|
|
3592
|
-
"@tryghost/validator@0.1.
|
|
3593
|
-
version "0.1.
|
|
3594
|
-
resolved "https://registry.yarnpkg.com/@tryghost/validator/-/validator-0.1.
|
|
3595
|
-
integrity sha512-
|
|
3622
|
+
"@tryghost/validator@0.1.27", "@tryghost/validator@^0.1.27":
|
|
3623
|
+
version "0.1.27"
|
|
3624
|
+
resolved "https://registry.yarnpkg.com/@tryghost/validator/-/validator-0.1.27.tgz#35cc29e66eb861b03460f1e801d894efbabd6e36"
|
|
3625
|
+
integrity sha512-0GFCSt4S5DmL1U1InSP9M5egqsqHh7Y1+GP62nLP9ZK9UhZoksAcYUv/VpvBh3slx4tIvp8k+0395B1OLnUhHg==
|
|
3596
3626
|
dependencies:
|
|
3597
|
-
"@tryghost/errors" "^1.2.
|
|
3598
|
-
"@tryghost/tpl" "^0.1.
|
|
3627
|
+
"@tryghost/errors" "^1.2.15"
|
|
3628
|
+
"@tryghost/tpl" "^0.1.18"
|
|
3599
3629
|
lodash "^4.17.21"
|
|
3600
3630
|
moment-timezone "^0.5.23"
|
|
3601
3631
|
validator "7.2.0"
|
|
3602
3632
|
|
|
3603
|
-
"@tryghost/version@0.1.
|
|
3604
|
-
version "0.1.
|
|
3605
|
-
resolved "https://registry.yarnpkg.com/@tryghost/version/-/version-0.1.
|
|
3606
|
-
integrity sha512-
|
|
3633
|
+
"@tryghost/version@0.1.16", "@tryghost/version@^0.1.16":
|
|
3634
|
+
version "0.1.16"
|
|
3635
|
+
resolved "https://registry.yarnpkg.com/@tryghost/version/-/version-0.1.16.tgz#0d28acd180bcc1461bfaf6b45fbdbb66318d518f"
|
|
3636
|
+
integrity sha512-17CTizTr7zYY0zwkf7v0wiJ6XqlDFT1yNrrIDvC15WEQD8NTADX1y/cjMLS77+loCFq19P7CeMq68xPRPtkPqg==
|
|
3607
3637
|
dependencies:
|
|
3608
|
-
"@tryghost/root-utils" "^0.3.
|
|
3638
|
+
"@tryghost/root-utils" "^0.3.16"
|
|
3609
3639
|
semver "^7.3.5"
|
|
3610
3640
|
|
|
3611
|
-
"@tryghost/webhook-mock-receiver@0.1.
|
|
3612
|
-
version "0.1.
|
|
3613
|
-
resolved "https://registry.yarnpkg.com/@tryghost/webhook-mock-receiver/-/webhook-mock-receiver-0.1.
|
|
3614
|
-
integrity sha512-
|
|
3641
|
+
"@tryghost/webhook-mock-receiver@0.1.2":
|
|
3642
|
+
version "0.1.2"
|
|
3643
|
+
resolved "https://registry.yarnpkg.com/@tryghost/webhook-mock-receiver/-/webhook-mock-receiver-0.1.2.tgz#feeaad6298cbcda16447804e0b7829f2aa32584c"
|
|
3644
|
+
integrity sha512-urg+UERP6CPUaCYoZBg1ANe1DCu1+QbJL8V2hDrkJlRCAjokJpXwy9Wwc/VdHXbVSTeH6JVAK1LNH3gjJVGhVw==
|
|
3615
3645
|
|
|
3616
3646
|
"@tryghost/zip@1.1.27":
|
|
3617
3647
|
version "1.1.27"
|
|
@@ -3623,6 +3653,16 @@
|
|
|
3623
3653
|
extract-zip "^2.0.1"
|
|
3624
3654
|
fs-extra "^10.0.0"
|
|
3625
3655
|
|
|
3656
|
+
"@tryghost/zip@1.1.28":
|
|
3657
|
+
version "1.1.28"
|
|
3658
|
+
resolved "https://registry.yarnpkg.com/@tryghost/zip/-/zip-1.1.28.tgz#2274498721b0b46ce5f96bbab8927f3c3bc0f8b5"
|
|
3659
|
+
integrity sha512-2to9/P7yaSYd0HF525MAnYJsScegV7SENK9sqSw3uzXwmSnpJEgwt39rCVXNhh6JGp7fl8Z0sWhOI9ZQJ1eNlg==
|
|
3660
|
+
dependencies:
|
|
3661
|
+
archiver "^5.0.0"
|
|
3662
|
+
bluebird "^3.7.2"
|
|
3663
|
+
extract-zip "^2.0.1"
|
|
3664
|
+
fs-extra "^10.0.0"
|
|
3665
|
+
|
|
3626
3666
|
"@trysound/sax@0.2.0":
|
|
3627
3667
|
version "0.2.0"
|
|
3628
3668
|
resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad"
|
|
@@ -8287,20 +8327,12 @@ css-tree@^1.1.2, css-tree@^1.1.3:
|
|
|
8287
8327
|
mdn-data "2.0.14"
|
|
8288
8328
|
source-map "^0.6.1"
|
|
8289
8329
|
|
|
8290
|
-
css-tree@^2.0.4:
|
|
8291
|
-
version "2.
|
|
8292
|
-
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-2.
|
|
8293
|
-
integrity sha512-
|
|
8294
|
-
dependencies:
|
|
8295
|
-
mdn-data "2.0.27"
|
|
8296
|
-
source-map-js "^1.0.1"
|
|
8297
|
-
|
|
8298
|
-
css-tree@~2.0.4:
|
|
8299
|
-
version "2.0.4"
|
|
8300
|
-
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-2.0.4.tgz#be44314f17e9ac85fe894a5888941782e1123c29"
|
|
8301
|
-
integrity sha512-b4IS9ZUMtGBiNjzYbcj9JhYbyei99R3ai2CSxlu8GQDnoPA/P+NU85hAm0eKDc/Zp660rpK6tFJQ2OSdacMHVg==
|
|
8330
|
+
css-tree@^2.0.4, css-tree@~2.2.0:
|
|
8331
|
+
version "2.2.0"
|
|
8332
|
+
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-2.2.0.tgz#2fd0b2548029e8fbdb70803ebe80fe0feb94318d"
|
|
8333
|
+
integrity sha512-7y32czN0VBL8WkevhC/mrHnoHOmQaJ1Wvp8sjRuTz6/n9cjL83jQaUru2MvP7kzjpGVwrSy5CE4XyQObWGIHQQ==
|
|
8302
8334
|
dependencies:
|
|
8303
|
-
mdn-data "2.0.
|
|
8335
|
+
mdn-data "2.0.28"
|
|
8304
8336
|
source-map-js "^1.0.1"
|
|
8305
8337
|
|
|
8306
8338
|
css-what@2.1:
|
|
@@ -8445,12 +8477,12 @@ cssnano@5.1.12:
|
|
|
8445
8477
|
lilconfig "^2.0.3"
|
|
8446
8478
|
yaml "^1.10.2"
|
|
8447
8479
|
|
|
8448
|
-
csso@5.0.
|
|
8449
|
-
version "5.0.
|
|
8450
|
-
resolved "https://registry.yarnpkg.com/csso/-/csso-5.0.
|
|
8451
|
-
integrity sha512-
|
|
8480
|
+
csso@5.0.5:
|
|
8481
|
+
version "5.0.5"
|
|
8482
|
+
resolved "https://registry.yarnpkg.com/csso/-/csso-5.0.5.tgz#f9b7fe6cc6ac0b7d90781bb16d5e9874303e2ca6"
|
|
8483
|
+
integrity sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==
|
|
8452
8484
|
dependencies:
|
|
8453
|
-
css-tree "~2.0
|
|
8485
|
+
css-tree "~2.2.0"
|
|
8454
8486
|
|
|
8455
8487
|
csso@^3.5.1:
|
|
8456
8488
|
version "3.5.1"
|
|
@@ -15985,15 +16017,10 @@ mdn-data@2.0.14:
|
|
|
15985
16017
|
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50"
|
|
15986
16018
|
integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==
|
|
15987
16019
|
|
|
15988
|
-
mdn-data@2.0.
|
|
15989
|
-
version "2.0.
|
|
15990
|
-
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.
|
|
15991
|
-
integrity sha512-
|
|
15992
|
-
|
|
15993
|
-
mdn-data@2.0.27:
|
|
15994
|
-
version "2.0.27"
|
|
15995
|
-
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.27.tgz#1710baa7b0db8176d3b3d565ccb7915fc69525ab"
|
|
15996
|
-
integrity sha512-kwqO0I0jtWr25KcfLm9pia8vLZ8qoAKhWZuZMbneJq3jjBD3gl5nZs8l8Tu3ZBlBAHVQtDur9rdDGyvtfVraHQ==
|
|
16020
|
+
mdn-data@2.0.28:
|
|
16021
|
+
version "2.0.28"
|
|
16022
|
+
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.28.tgz#5ec48e7bef120654539069e1ae4ddc81ca490eba"
|
|
16023
|
+
integrity sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==
|
|
15997
16024
|
|
|
15998
16025
|
mdn-data@2.0.4:
|
|
15999
16026
|
version "2.0.4"
|
|
@@ -18007,10 +18034,10 @@ pkg-up@^3.1.0:
|
|
|
18007
18034
|
dependencies:
|
|
18008
18035
|
find-up "^3.0.0"
|
|
18009
18036
|
|
|
18010
|
-
playwright-core@1.
|
|
18011
|
-
version "1.
|
|
18012
|
-
resolved "https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.
|
|
18013
|
-
integrity sha512-
|
|
18037
|
+
playwright-core@1.25.0:
|
|
18038
|
+
version "1.25.0"
|
|
18039
|
+
resolved "https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.25.0.tgz#54dc867c6c2cc5e4233905e249206a02914d14f1"
|
|
18040
|
+
integrity sha512-kZ3Jwaf3wlu0GgU0nB8UMQ+mXFTqBIFz9h1svTlNduNKjnbPXFxw7mJanLVjqxHJRn62uBfmgBj93YHidk2N5Q==
|
|
18014
18041
|
|
|
18015
18042
|
pluralize@8.0.0, pluralize@^8.0.0:
|
|
18016
18043
|
version "8.0.0"
|