Ghost CI
8971128046
v5.87.2
2024-07-12 16:04:42 +00:00
Steve Larson
9d15aef243
Updated timezone dependency ( #20570 )
...
ref https://linear.app/tryghost/issue/ENG-1266
- Mexico changed tz to not participate in DST
- our package was a couple years behind, so we likely have fixes for
other countries/regions, too
2024-07-09 16:31:36 -05:00
Sag
6e884b1a95
🐛 Fixed selection bugs in editor ( #20557 )
...
ref https://ghost.slack.com/archives/CTH5NDJMS/p1720422460943619
- bumping 'lexical' from 0.13.1 to 0.14.2 created a few selection bugs
in the editor
- this commit reverts 'lexical' back to 0.13.1 and any related changes
in the editor codebase
2024-07-08 13:34:51 +01:00
Ghost CI
bd15ce5c03
v5.87.1
2024-07-05 16:04:15 +00:00
Kevin Ansfield
3b87c9be53
Cleaned up websockets experiment ( #20547 )
...
no issue
- we're no longer making use of the websockets experiment so it's just bloat
- this is the whole feature in a single commit in case we need to revive it at some point
2024-07-04 16:08:06 +00:00
Daniel Lockyer
98d171cfc6
Bumped @tryghost/metrics package
...
- this change contains the removal of the `promise.allsettled` package,
as this is not needed on Node 12+, which removes 75 further dependencies
in production mode
2024-07-04 11:40:56 +02:00
renovate[bot]
6fadf45f4a
Update dependency ws to v8.18.0
2024-07-03 17:36:56 +00:00
renovate[bot]
8d33c9d64f
Update dependency lib0 to v0.2.94
2024-07-02 18:27:02 +02:00
Michael Barrett
b36c2356fc
Added custom redirects ReDoS validation ( #20515 )
...
refs
[ENG-709](https://linear.app/tryghost/issue/ENG-709/%F0%9F%90%9B-bad-redirects-causing-container-tear-down )
Added validation to prevent RegEx's susceptible to ReDoS from being used
with custom redirects. Also moved error details out of `context` and
into `errorDetails` to be consistent with error logging elsewhere as
well as fix issue in admin-x where blank screen would be shown when an
error occurred during redirects upload (due to logic not accounting for
`context` being an object)
2024-07-02 16:00:19 +01:00
renovate[bot]
90033eff2d
Update dependency @tryghost/kg-html-to-lexical to v1.1.6
2024-07-02 08:26:16 +02:00
Kevin Ansfield
2fd9116499
🐛 Fixed unwanted extra blank paragraphs when copy/pasting from Google Docs ( #20505 )
...
closes https://linear.app/tryghost/issue/ENG-1255
- updated Koenig packages including:
- addition of `/preview` for public preview card
- fix for HTML import from Google Docs
- fix for embed thumbnails being cut off in email
- fix for wide image card width on medium screens
- multiple fixes for unhandled (but non user-visible) errors causing noise in console and error logging
2024-07-01 21:14:07 +01:00
Daniel Lockyer
a146709c16
Cleaned up unused core dependencies
...
- analytics-node usage was removed a while back
- juice is used by a different package now
2024-07-01 13:56:31 +02:00
renovate[bot]
f561f362f4
Update dependency postcss to v8.4.39
2024-07-01 07:28:24 +02:00
renovate[bot]
41d8240d50
Update dependency mysql2 to v3.10.2
2024-07-01 02:07:18 +00:00
Ghost CI
0d60c74957
v5.87.0
2024-06-28 16:27:27 +00:00
Princi Vershwal
7bffe5b79a
Added option param to skip distinct from count query for members API
...
ref https://linear.app/tryghost/issue/SLO-173/removed-distinct-from-member-count-query
Performance of GET /members API can be improved by dropping the distinct from the total members count query.
select count(distinct members.id) as aggregate from `members`; // 275ms
select count(*) as aggregate from `members`; // 30ms
In this case we know that the result set will always be unique.
2024-06-27 17:35:19 +05:30
renovate[bot]
dfc27b02c8
Update Koenig packages ( #20453 )
...
closes https://linear.app/tryghost/issue/MOM-247
- includes a few fixes for errors we've seen in our reporting
2024-06-26 14:48:17 +01:00
Ghost CI
bfd7a26370
v5.86.2
2024-06-23 20:39:22 +00:00
Ghost CI
7dcc82b951
v5.86.1
2024-06-21 21:27:33 +00:00
Ghost CI
a837cf0247
v5.86.0
2024-06-21 16:04:16 +00:00
renovate[bot]
ccf2d22f4b
Update sentry-javascript monorepo to v7.118.0
2024-06-21 13:07:47 +01:00
renovate[bot]
bec000567d
Update dependency @opentelemetry/auto-instrumentations-node to v0.47.1
2024-06-21 11:23:14 +01:00
renovate[bot]
4609b43ad7
Update dependency @opentelemetry/instrumentation-runtime-node to v0.5.0
2024-06-21 11:22:50 +01:00
renovate[bot]
478ac0460b
Update opentelemetry-js monorepo
2024-06-21 10:55:03 +01:00
renovate[bot]
360088603f
Update dependency @opentelemetry/instrumentation-knex to v0.37.0
2024-06-21 10:00:10 +01:00
renovate[bot]
4fd28d4947
Update dependency cssnano to v7.0.3
2024-06-21 09:43:36 +01:00
renovate[bot]
4c8a780e2e
Pin dependencies
2024-06-21 09:35:29 +01:00
Ghost CI
be79f385f2
Merged v5.85.2 into main
2024-06-19 23:16:28 +00:00
Ghost CI
0c61e0cf59
v5.85.2
2024-06-19 23:16:27 +00:00
Chris Raible
417c9c49ea
Added OpenTelemetry instrumentation to Ghost backend ( #20144 )
...
This commit adds OpenTelemetry instrumentation to Ghost's backend, which
allows us to view traces similar to what we see in Sentry Performance
locally.
OpenTelemetry is enabled if `NODE_ENV === 'development'` or if it is
explicitly enabled via config with `opentelemetry:enabled`.
It also adds a [Jaeger](https://www.jaegertracing.io/ ) container to
Ghost's docker-compose file for viewing the traces. There's no setup
required (beyond running `yarn docker:reset` to pickup the changes in
the docker-compose file the first time — but this will also reset your
DB so be careful). This will launch the Jaeger container, and you can
view the UI to see the traces at `http://localhost:16686/search `.
2024-06-19 13:56:51 -07:00
renovate[bot]
ace8a2fb65
Update Koenig packages ( #20415 )
...
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg )](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@tryghost/kg-default-cards](https://togithub.com/TryGhost/Koenig/tree/master#readme )
([source](https://togithub.com/TryGhost/Koenig )) | [`10.0.5` ->
`10.0.6`](https://renovatebot.com/diffs/npm/@tryghost%2fkg-default-cards/10.0.5/10.0.6 )
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@tryghost%2fkg-default-cards/10.0.6?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@tryghost%2fkg-default-cards/10.0.6?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@tryghost%2fkg-default-cards/10.0.5/10.0.6?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tryghost%2fkg-default-cards/10.0.5/10.0.6?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
|
[@tryghost/kg-default-nodes](https://togithub.com/TryGhost/Koenig/tree/main#readme )
([source](https://togithub.com/TryGhost/Koenig )) | [`1.1.2` ->
`1.1.3`](https://renovatebot.com/diffs/npm/@tryghost%2fkg-default-nodes/1.1.2/1.1.3 )
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@tryghost%2fkg-default-nodes/1.1.3?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@tryghost%2fkg-default-nodes/1.1.3?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@tryghost%2fkg-default-nodes/1.1.2/1.1.3?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tryghost%2fkg-default-nodes/1.1.2/1.1.3?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
|
[@tryghost/kg-html-to-lexical](https://togithub.com/TryGhost/Koenig/tree/main#readme )
([source](https://togithub.com/TryGhost/Koenig )) | [`1.1.3` ->
`1.1.4`](https://renovatebot.com/diffs/npm/@tryghost%2fkg-html-to-lexical/1.1.3/1.1.4 )
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@tryghost%2fkg-html-to-lexical/1.1.4?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@tryghost%2fkg-html-to-lexical/1.1.4?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@tryghost%2fkg-html-to-lexical/1.1.3/1.1.4?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tryghost%2fkg-html-to-lexical/1.1.3/1.1.4?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
|
[@tryghost/kg-lexical-html-renderer](https://togithub.com/TryGhost/Koenig/tree/main#readme )
([source](https://togithub.com/TryGhost/Koenig )) | [`1.1.3` ->
`1.1.4`](https://renovatebot.com/diffs/npm/@tryghost%2fkg-lexical-html-renderer/1.1.3/1.1.4 )
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@tryghost%2fkg-lexical-html-renderer/1.1.4?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@tryghost%2fkg-lexical-html-renderer/1.1.4?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@tryghost%2fkg-lexical-html-renderer/1.1.3/1.1.4?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tryghost%2fkg-lexical-html-renderer/1.1.3/1.1.4?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
|
[@tryghost/koenig-lexical](https://togithub.com/TryGhost/Koenig/tree/master#readme )
([source](https://togithub.com/TryGhost/Koenig )) | [`1.2.6` ->
`1.2.7`](https://renovatebot.com/diffs/npm/@tryghost%2fkoenig-lexical/1.2.6/1.2.7 )
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@tryghost%2fkoenig-lexical/1.2.7?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@tryghost%2fkoenig-lexical/1.2.7?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@tryghost%2fkoenig-lexical/1.2.6/1.2.7?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tryghost%2fkoenig-lexical/1.2.6/1.2.7?slim=true )](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>TryGhost/Koenig (@​tryghost/kg-default-cards)</summary>
###
[`v10.0.6`](https://togithub.com/TryGhost/Koenig/compare/@tryghost/kg-default-cards@10.0.5...@tryghost/kg-default-cards@10.0.6 )
[Compare
Source](https://togithub.com/TryGhost/Koenig/compare/@tryghost/kg-default-cards@10.0.5...@tryghost/kg-default-cards@10.0.6 )
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "every weekday" (UTC), Automerge - At
any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Never, or you tick the rebase/retry checkbox.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions ) if
that's undesired.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View
repository job log
[here](https://developer.mend.io/github/TryGhost/Ghost ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MTAuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQxMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-19 12:00:21 +00:00
renovate[bot]
dbd4aa61d0
Update dependency yjs to v13.6.18
2024-06-18 17:04:29 +00:00
renovate[bot]
f6367621d2
Update dependency yjs to v13.6.17
2024-06-17 14:36:26 +00:00
renovate[bot]
cc9a0eeb97
Update dependency ws to v8.17.1
2024-06-17 00:33:52 +00:00
Ghost CI
158c1ae570
v5.85.1
2024-06-14 16:04:19 +00:00
renovate[bot]
710488ef82
Update dependency mysql2 to v3.10.1
2024-06-14 00:48:34 +00:00
renovate[bot]
238588cfa3
🐛 Fixed internal link search sometimes showing latest posts after pasting URL ( #20374 )
...
no issue
- bumps `@tryghost/koenig-lexical` to include a fix related to debounced searches overwriting our "Insert URL" state of the results popup
2024-06-12 13:01:21 +00:00
renovate[bot]
e93bdba689
Update sentry-javascript monorepo to v7.117.0
2024-06-11 09:35:31 +02:00
Ghost CI
2ce8351c4b
v5.85.0
2024-06-10 17:14:15 +00:00
renovate[bot]
67d7aadcbe
Update dependency cssnano to v7.0.2
2024-06-10 15:18:42 +02:00
renovate[bot]
c641174f94
Update dependency yjs to v13.6.16
2024-06-10 12:14:26 +00:00
Ghost CI
fefb9ec395
v5.84.2
2024-06-07 16:04:25 +00:00
Ghost CI
bf1852a913
v5.84.1
2024-06-06 16:54:25 +00:00
Ghost CI
3b6d3b1a02
v5.84.0
2024-06-06 08:34:57 +00:00
renovate[bot]
d40ef32ca8
🐛 Fixed mailto:
not being recognised in internal-linking search ( #20331 )
...
closes https://linear.app/tryghost/issue/MOM-195
- bumped Koenig packages with updated URL-matching
2024-06-05 14:30:24 +01:00
Ghost CI
46cb819feb
v5.83.0
2024-05-31 16:04:36 +00:00
renovate[bot]
418316959c
Update dependency mysql2 to v3.10.0
2024-05-30 19:28:02 +00:00
renovate[bot]
d507c5c6c2
Update Koenig packages
2024-05-29 22:28:20 +01:00
Kevin Ansfield
55015ccbcc
Added '@' internal link shortcut to editor ( #20272 )
...
closes https://linear.app/tryghost/issue/MOM-83
- added additional labs flag to allow internal testing prior to private beta release
- bumped Koenig packages containing support for @-link feature
2024-05-29 18:13:52 +01:00
renovate[bot]
4ef1dd2146
Update dependency mysql2 to v3.9.9
2024-05-29 15:14:00 +00:00
renovate[bot]
3ebe206ea7
Update TryGhost packages
2024-05-27 16:58:32 +02:00
renovate[bot]
6ff08c5c14
Update dependency mysql2 to v3.9.8
2024-05-27 08:04:34 +00:00
Daniel Lockyer
ecc6053e5d
Cleaned up jsdom dependency usage
...
- we don't need this in `ghost/core` as it's not used in there
- we need to declare this dependency for the apps, as they use it for
running tests
- this doesn't change the lockfile but it means we're declaring the
dependency in the right places now
2024-05-27 09:49:43 +02:00
renovate[bot]
3e3bcb81fd
Update dependency jsdom to v24
2024-05-27 09:07:18 +02:00
Ghost CI
43e25f44dc
v5.82.12
2024-05-27 06:39:20 +00:00
renovate[bot]
d302d4049c
Update Koenig packages
2024-05-23 19:13:38 +01:00
renovate[bot]
ad48d8eb25
Update sentry-javascript monorepo to v7.116.0
2024-05-21 14:24:23 +01:00
Ghost CI
589793f0c5
v5.82.11
2024-05-17 16:04:53 +00:00
renovate[bot]
239b5b6369
🐛 Fixed certain snippets not inserting correctly ( #20129 )
...
ref https://linear.app/tryghost/issue/ONC-26/support-escalation-template-bug
ref https://github.com/TryGhost/Ghost/issues/18948
- bumps `@tryghost/koenig-lexical` to version that doesn't crash during snippet insertion when last node doesn't match expectations for inserting a trailing paragraph
- bumps all Koenig packages to ensure internal dependencies are pinned to prevent potential issues from mixed versions caused by yarn resolution
2024-05-16 11:39:03 +00:00
Ghost CI
b7efe4ff8e
Merged v5.82.10 into main
2024-05-16 02:19:02 +00:00
Ghost CI
f6f04792ea
v5.82.10
2024-05-16 02:19:00 +00:00
Laurent Goderre
d67fc8c353
Added jackspeak resolution to core to fix ESM + CJS compat issue ( #20199 )
...
refs #20197
- adds a jackspeak resolution to Ghost core so we can try and ensure the compatible version of jackspeak/string-width is used when the lockfile is regenerated
2024-05-15 08:47:04 +02:00
Kevin Ansfield
d2da9d3c17
Updated metadata shown on hover in internal link lists ( #20204 )
...
closes https://linear.app/tryghost/issue/MOM-80
- updated internal linking search results items
- removed visibility text from meta data
- added additional icon for paid/specific tier visibility
- added titles to icons
- bumped `@tryghost/koenig-lexical` to include support for meta icon titles
- bumped other Koenig packages due to sub-dependency updates
2024-05-14 16:07:04 +00:00
Steve Larson
842290cbef
Improved performance for filter strings with multiple neq statements ( #20198 )
...
ref https://linear.app/tryghost/issue/CFR-27
- updated packages to include performance improvement for NQL filter
strings including multiple neq filters for the same resource
- bumped `bookshelf-plugins`
- bumped NQL versions
We identified a performance fix that allows us to combine not equal
(neq) filters for the same resource in a logically-equivalent way that
also has far more performant resulting SQL.
We're effectively automatically combining strings like
'tag:-tag1+tag:-tag2` into 'tag:-[tag1,tag2]'.
2024-05-13 10:35:27 -05:00
Ghost CI
b1c5a2985c
v5.82.9
2024-05-13 07:01:15 +00:00
renovate[bot]
fc41947738
Update dependency semver to v7.6.2
2024-05-10 08:30:32 +02:00
renovate[bot]
512c3e1413
Update CSS preprocessors
2024-05-09 10:36:59 +02:00
renovate[bot]
4c1ecabfc7
Update sentry-javascript monorepo to v7.114.0
2024-05-09 10:16:37 +02:00
Ghost CI
88ad62558a
Merged v5.82.8 into main
2024-05-08 19:30:39 +00:00
Ghost CI
f303432ba9
v5.82.8
2024-05-08 19:30:37 +00:00
renovate[bot]
1fea2fc616
Update dependency semver to v7.6.1
2024-05-08 09:04:44 +02:00
Ghost CI
000616ac02
v5.82.7
2024-05-07 18:13:34 +00:00
Ghost CI
f34c33f330
v5.82.6
2024-05-03 16:04:14 +00:00
renovate[bot]
a33dccf8cd
Update TryGhost packages
2024-05-01 17:01:41 +02:00
Ghost CI
6b32548e5c
Merged v5.82.5 into main
2024-05-01 13:22:28 +00:00
Ghost CI
a4c478958b
v5.82.5
2024-05-01 13:22:26 +00:00
renovate[bot]
746df63307
Update dependency gscan to v4.43.1 ( #20109 )
...
ref https://linear.app/tryghost/issue/ENG-842/gluster-file-name-length-limit
- gscan v4.43.1 contains a bug fix to throw an large filenames
2024-05-01 11:26:21 +00:00
renovate[bot]
60a3b5a913
Update TryGhost packages
2024-05-01 08:49:04 +02:00
Michael Barrett
4cd85ab8b7
Added timeout when resizing an image ( #20087 )
...
refs
[ENG-827](https://linear.app/tryghost/issue/ENG-827/🐛 -crash-on-resizing-animated-gif )
Added a timeout to the image resizing middleware to prevent crashes when
an image is taking too long to resize. When the timeout is reached and
the image has not been resized, the middleware will return the original
image
2024-04-30 08:39:30 +01:00
renovate[bot]
305029bc38
Update dependency ws to v8.17.0
2024-04-29 01:23:51 +00:00
renovate[bot]
f18f08928f
Update dependency yjs to v13.6.15
2024-04-29 01:22:59 +00:00
Ghost CI
cf9ba60524
v5.82.4
2024-04-26 16:04:30 +00:00
renovate[bot]
25657b6a99
Update sentry-javascript monorepo to v7.112.1
2024-04-23 16:39:50 +02:00
renovate[bot]
3960e8caa1
Update sentry-javascript monorepo to v7.112.0
2024-04-23 14:11:30 +02:00
renovate[bot]
d69a0aa1e6
Update dependency knex-migrator to v5.2.1
2024-04-22 12:29:48 +02:00
renovate[bot]
e4ffc7b8c0
Update dependency mysql2 to v3.9.7
2024-04-22 01:37:24 +00:00
renovate[bot]
69372d9018
Update dependency @sentry/profiling-node to v7.111.0
2024-04-19 16:56:32 +00:00
renovate[bot]
7fea4151d8
Update dependency @sentry/profiling-node to v7
2024-04-19 18:43:59 +02:00
Ghost CI
cb838c4bb6
v5.82.3
2024-04-19 16:04:16 +00:00
renovate[bot]
80fe672525
Update sentry-javascript monorepo to v7.111.0
2024-04-19 08:54:26 +02:00
Daniel Lockyer
f31814c804
Updated mysql2 dependency
...
refs #20050
- Renovate seems to be unable to bump the package past the security
release, but unfortunately this release contains a breaking bug
- this commit manually bumps the package so we can get things flowing
again
- the security release doesn't really affect us, but we should still try
and keep on the latest
2024-04-19 08:48:24 +02:00
Kevin Ansfield
182fa62759
Bumped Koenig packages ( #20047 )
...
closes https://linear.app/tryghost/issue/MOM-39/
- fixes clicking on search results in internal linking PoC
- adds support for Node 20
2024-04-18 14:58:01 +00:00
Daniel Lockyer
10e81aeed8
ℹ️ Added support for Node 20
...
ref https://linear.app/tryghost/issue/ENG-765/add-support-for-node-20
- this adds support for Node 20 to Ghost and CI, as Node 20 is an LTS
version and we should pick it up
2024-04-18 13:17:21 +02:00
renovate[bot]
ef6f79c272
Update dependency gscan to v4.43.0
2024-04-18 12:48:42 +02:00
renovate[bot]
96d0883928
🐛 Fixed file card button not being linked in emails ( #20023 )
...
ref https://linear.app/tryghost/issue/DES-202/
- bumped Koenig packages to include fix for incorrectly wrapped download image link in email rendering of file card
2024-04-16 10:37:28 +00:00
renovate[bot]
2af9c04477
Update CSS preprocessors
2024-04-16 09:44:36 +02:00
renovate[bot]
0802b9533c
Update dependency semver to v7.6.0
2024-04-16 09:41:01 +02:00
renovate[bot]
39a9a9bfd8
Update sentry-javascript monorepo to v7.110.1
2024-04-16 09:09:22 +02:00
renovate[bot]
b008c00feb
Update sentry-javascript monorepo to v7.110.0
2024-04-15 09:47:44 +02:00
Ghost CI
ff03b2eedb
v5.82.2
2024-04-15 01:06:07 +00:00