@scratch/scratch-svg-renderer 11.0.0-beta.1

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.
Files changed (54) hide show
  1. package/.editorconfig +15 -0
  2. package/.eslintignore +3 -0
  3. package/.eslintrc.js +10 -0
  4. package/.gitattributes +38 -0
  5. package/.nvmrc +1 -0
  6. package/CHANGELOG.md +1300 -0
  7. package/LICENSE +12 -0
  8. package/README.md +89 -0
  9. package/TRADEMARK +1 -0
  10. package/commitlint.config.js +4 -0
  11. package/package.json +76 -0
  12. package/playground/index.html +132 -0
  13. package/playground/scratch-svg-renderer.js +17830 -0
  14. package/playground/scratch-svg-renderer.js.map +1 -0
  15. package/release.config.js +14 -0
  16. package/src/bitmap-adapter.js +156 -0
  17. package/src/fixup-svg-string.js +61 -0
  18. package/src/font-converter.js +38 -0
  19. package/src/font-inliner.js +50 -0
  20. package/src/index.js +22 -0
  21. package/src/load-svg-string.js +334 -0
  22. package/src/playground/index.html +132 -0
  23. package/src/sanitize-svg.js +104 -0
  24. package/src/serialize-svg-to-string.js +19 -0
  25. package/src/svg-element.js +71 -0
  26. package/src/svg-renderer.js +169 -0
  27. package/src/transform-applier.js +628 -0
  28. package/src/util/log.js +4 -0
  29. package/test/bitmapAdapter_getResized.js +102 -0
  30. package/test/fixtures/css-import.sanitized.svg +5 -0
  31. package/test/fixtures/css-import.svg +11 -0
  32. package/test/fixtures/embedded-cat-foo.sanitized.svg +3 -0
  33. package/test/fixtures/embedded-cat-foo.svg +3 -0
  34. package/test/fixtures/embedded-cat-xlink.svg +3 -0
  35. package/test/fixtures/hearts.svg +31 -0
  36. package/test/fixtures/invalid-cloud.svg +1 -0
  37. package/test/fixtures/metadata-body.svg +6 -0
  38. package/test/fixtures/metadata-onload.sanitized.svg +3 -0
  39. package/test/fixtures/metadata-onload.svg +7 -0
  40. package/test/fixtures/onload-script.svg +7 -0
  41. package/test/fixtures/red-and-white-carousel-pound-in-href.sanitized.svg +74 -0
  42. package/test/fixtures/red-and-white-carousel-pound-in-href.svg +74 -0
  43. package/test/fixtures/reserved-namespace.sanitized.svg +3 -0
  44. package/test/fixtures/reserved-namespace.svg +4 -0
  45. package/test/fixtures/scratch_cat_bitmap_within_svg.sanitized.svg +1 -0
  46. package/test/fixtures/scratch_cat_bitmap_within_svg.svg +1 -0
  47. package/test/fixtures/script.sanitized.svg +4 -0
  48. package/test/fixtures/script.svg +8 -0
  49. package/test/fixtures/svg-tag-prefixes.svg +37 -0
  50. package/test/fixup-svg-string.js +144 -0
  51. package/test/sanitize-svg.js +34 -0
  52. package/test/test-output/transform-applier-test.html +373 -0
  53. package/test/transform-applier.js +796 -0
  54. package/webpack.config.js +72 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1300 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file. See
4
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [2.3.126](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.125...v2.3.126) (2024-08-31)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **deps:** lock file maintenance ([974a4fa](https://github.com/scratchfoundation/scratch-svg-renderer/commit/974a4fae464afa73d9e6b5a7f15259f4dd7cb6a6))
12
+
13
+ ## [2.3.125](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.124...v2.3.125) (2024-08-29)
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * **deps:** lock file maintenance ([44b55d3](https://github.com/scratchfoundation/scratch-svg-renderer/commit/44b55d380f6101082c31e9fba3e587e716b5a273))
19
+
20
+ ## [2.3.124](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.123...v2.3.124) (2024-08-28)
21
+
22
+
23
+ ### Bug Fixes
24
+
25
+ * **deps:** update dependency scratch-render-fonts to v1.0.92 ([da5ac7f](https://github.com/scratchfoundation/scratch-svg-renderer/commit/da5ac7f452845497b917ba3b000287cc96c5671b))
26
+
27
+ ## [2.3.123](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.122...v2.3.123) (2024-08-26)
28
+
29
+
30
+ ### Bug Fixes
31
+
32
+ * **deps:** lock file maintenance ([fa9f08d](https://github.com/scratchfoundation/scratch-svg-renderer/commit/fa9f08d6a9f7fbc7307aea6a070bbddbef767545))
33
+ * **deps:** update dependency scratch-render-fonts to v1.0.91 ([4f57ef4](https://github.com/scratchfoundation/scratch-svg-renderer/commit/4f57ef4906c572a38c2777a1861d8fe546dae438))
34
+
35
+ ## [2.3.122](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.121...v2.3.122) (2024-08-24)
36
+
37
+
38
+ ### Bug Fixes
39
+
40
+ * **deps:** update dependency scratch-render-fonts to v1.0.90 ([7188214](https://github.com/scratchfoundation/scratch-svg-renderer/commit/7188214c60bae5db063a6ed2fd502d3c018eee61))
41
+
42
+ ## [2.3.121](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.120...v2.3.121) (2024-08-24)
43
+
44
+
45
+ ### Bug Fixes
46
+
47
+ * **deps:** lock file maintenance ([b7fc988](https://github.com/scratchfoundation/scratch-svg-renderer/commit/b7fc98893d5c892cc3c61b0e79f4140a935d3287))
48
+
49
+ ## [2.3.120](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.119...v2.3.120) (2024-08-23)
50
+
51
+
52
+ ### Bug Fixes
53
+
54
+ * **deps:** update dependency scratch-render-fonts to v1.0.89 ([adf0e2f](https://github.com/scratchfoundation/scratch-svg-renderer/commit/adf0e2f568bc9313f7c96457ea6f75c2724990e9))
55
+
56
+ ## [2.3.119](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.118...v2.3.119) (2024-08-21)
57
+
58
+
59
+ ### Bug Fixes
60
+
61
+ * **deps:** lock file maintenance ([d6f6206](https://github.com/scratchfoundation/scratch-svg-renderer/commit/d6f620665e0098f7343a703b76617023f860b251))
62
+
63
+ ## [2.3.118](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.117...v2.3.118) (2024-08-20)
64
+
65
+
66
+ ### Bug Fixes
67
+
68
+ * **deps:** update dependency scratch-render-fonts to v1.0.88 ([ea636f8](https://github.com/scratchfoundation/scratch-svg-renderer/commit/ea636f8884acc87f9bb8639d0f35fef354da5ea0))
69
+
70
+ ## [2.3.117](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.116...v2.3.117) (2024-08-19)
71
+
72
+
73
+ ### Bug Fixes
74
+
75
+ * **deps:** lock file maintenance ([06bdaf8](https://github.com/scratchfoundation/scratch-svg-renderer/commit/06bdaf8c41c5b908f8600b827d9be12081e81ac9))
76
+
77
+ ## [2.3.116](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.115...v2.3.116) (2024-08-17)
78
+
79
+
80
+ ### Bug Fixes
81
+
82
+ * **deps:** update dependency scratch-render-fonts to v1.0.87 ([5745f89](https://github.com/scratchfoundation/scratch-svg-renderer/commit/5745f89ca4486c0f4e756a3f8a3a6c95087f996d))
83
+
84
+ ## [2.3.115](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.114...v2.3.115) (2024-08-16)
85
+
86
+
87
+ ### Bug Fixes
88
+
89
+ * **deps:** lock file maintenance ([32760bb](https://github.com/scratchfoundation/scratch-svg-renderer/commit/32760bbbb90b84a55b42dc00fba182686cc5ce9f))
90
+
91
+ ## [2.3.114](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.113...v2.3.114) (2024-08-14)
92
+
93
+
94
+ ### Bug Fixes
95
+
96
+ * **deps:** update dependency scratch-render-fonts to v1.0.86 ([91433c4](https://github.com/scratchfoundation/scratch-svg-renderer/commit/91433c41138de2ed1fde63ad2d1b16d5297d014a))
97
+
98
+ ## [2.3.113](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.112...v2.3.113) (2024-08-14)
99
+
100
+
101
+ ### Bug Fixes
102
+
103
+ * **deps:** lock file maintenance ([d0c727e](https://github.com/scratchfoundation/scratch-svg-renderer/commit/d0c727e5af6c843b60a2ac744f7335a4fc13bdcf))
104
+
105
+ ## [2.3.112](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.111...v2.3.112) (2024-08-11)
106
+
107
+
108
+ ### Bug Fixes
109
+
110
+ * **deps:** update dependency scratch-render-fonts to v1.0.85 ([3737b1a](https://github.com/scratchfoundation/scratch-svg-renderer/commit/3737b1ab6e30f2460cc33f4f01a694b3dec13045))
111
+
112
+ ## [2.3.111](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.110...v2.3.111) (2024-08-11)
113
+
114
+
115
+ ### Bug Fixes
116
+
117
+ * **deps:** lock file maintenance ([55e8980](https://github.com/scratchfoundation/scratch-svg-renderer/commit/55e8980d87ab9409d628c87ca8500f5c47410bee))
118
+ * **deps:** update dependency scratch-render-fonts to v1.0.84 ([0224e19](https://github.com/scratchfoundation/scratch-svg-renderer/commit/0224e1941a869650c19fd6b3cb46f1bce99d7c1c))
119
+
120
+ ## [2.3.110](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.109...v2.3.110) (2024-08-09)
121
+
122
+
123
+ ### Bug Fixes
124
+
125
+ * **deps:** lock file maintenance ([8c576dd](https://github.com/scratchfoundation/scratch-svg-renderer/commit/8c576ddc9c2422c6dfe6bd702b77eed3a9878755))
126
+
127
+ ## [2.3.109](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.108...v2.3.109) (2024-08-07)
128
+
129
+
130
+ ### Bug Fixes
131
+
132
+ * **deps:** update dependency scratch-render-fonts to v1.0.83 ([be64233](https://github.com/scratchfoundation/scratch-svg-renderer/commit/be642335a97511391a14e8b095a6e7802e35105f))
133
+
134
+ ## [2.3.108](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.107...v2.3.108) (2024-08-06)
135
+
136
+
137
+ ### Bug Fixes
138
+
139
+ * **deps:** lock file maintenance ([64d3391](https://github.com/scratchfoundation/scratch-svg-renderer/commit/64d33918acb3985fa824ecc0bc0a34f978b983e2))
140
+
141
+ ## [2.3.107](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.106...v2.3.107) (2024-08-05)
142
+
143
+
144
+ ### Bug Fixes
145
+
146
+ * **deps:** update dependency scratch-render-fonts to v1.0.82 ([189de0e](https://github.com/scratchfoundation/scratch-svg-renderer/commit/189de0e09080b3897d8bd255d5fa3de4699f445e))
147
+
148
+ ## [2.3.106](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.105...v2.3.106) (2024-08-03)
149
+
150
+
151
+ ### Bug Fixes
152
+
153
+ * **deps:** update dependency scratch-render-fonts to v1.0.81 ([98dc0e9](https://github.com/scratchfoundation/scratch-svg-renderer/commit/98dc0e9121b2fbde80ba24ae0e3c348f357579c3))
154
+
155
+ ## [2.3.105](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.104...v2.3.105) (2024-08-03)
156
+
157
+
158
+ ### Bug Fixes
159
+
160
+ * **deps:** lock file maintenance ([f7f747d](https://github.com/scratchfoundation/scratch-svg-renderer/commit/f7f747d739d3a9e56fe0555d2c489f7cd93d147b))
161
+
162
+ ## [2.3.104](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.103...v2.3.104) (2024-08-01)
163
+
164
+
165
+ ### Bug Fixes
166
+
167
+ * **deps:** update dependency scratch-render-fonts to v1.0.80 ([728d03d](https://github.com/scratchfoundation/scratch-svg-renderer/commit/728d03d0bf28a5696e509289d30b9664e7a90208))
168
+
169
+ ## [2.3.103](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.102...v2.3.103) (2024-08-01)
170
+
171
+
172
+ ### Bug Fixes
173
+
174
+ * **deps:** lock file maintenance ([edb96d2](https://github.com/scratchfoundation/scratch-svg-renderer/commit/edb96d2207b22e1a0cb1d60cee2063948b0dd584))
175
+
176
+ ## [2.3.102](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.101...v2.3.102) (2024-07-29)
177
+
178
+
179
+ ### Bug Fixes
180
+
181
+ * **deps:** update dependency scratch-render-fonts to v1.0.79 ([c2ff017](https://github.com/scratchfoundation/scratch-svg-renderer/commit/c2ff0179cd23d2625dac5795318490172f97b676))
182
+
183
+ ## [2.3.101](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.100...v2.3.101) (2024-07-28)
184
+
185
+
186
+ ### Bug Fixes
187
+
188
+ * **deps:** lock file maintenance ([472d9fe](https://github.com/scratchfoundation/scratch-svg-renderer/commit/472d9fe159e444916c5b744dd0303fc66f6093f7))
189
+
190
+ ## [2.3.100](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.99...v2.3.100) (2024-07-27)
191
+
192
+
193
+ ### Bug Fixes
194
+
195
+ * **deps:** update dependency scratch-render-fonts to v1.0.78 ([1f662f6](https://github.com/scratchfoundation/scratch-svg-renderer/commit/1f662f6b39d0da0ebfc11aba46d5d00deb448653))
196
+
197
+ ## [2.3.99](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.98...v2.3.99) (2024-07-26)
198
+
199
+
200
+ ### Bug Fixes
201
+
202
+ * **deps:** lock file maintenance ([14f1a9b](https://github.com/scratchfoundation/scratch-svg-renderer/commit/14f1a9bc73878dc5e3f4e0087b7f62278a71a641))
203
+
204
+ ## [2.3.98](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.97...v2.3.98) (2024-07-24)
205
+
206
+
207
+ ### Bug Fixes
208
+
209
+ * **deps:** update dependency scratch-render-fonts to v1.0.77 ([8d96222](https://github.com/scratchfoundation/scratch-svg-renderer/commit/8d96222fd41b3192eb7bdcf47a7006488f54e76f))
210
+
211
+ ## [2.3.97](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.96...v2.3.97) (2024-07-23)
212
+
213
+
214
+ ### Bug Fixes
215
+
216
+ * **deps:** update dependency scratch-render-fonts to v1.0.76 ([96278e4](https://github.com/scratchfoundation/scratch-svg-renderer/commit/96278e4baa3b4b26e0319cb9ed5b8a30f2e62a5c))
217
+
218
+ ## [2.3.96](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.95...v2.3.96) (2024-07-23)
219
+
220
+
221
+ ### Bug Fixes
222
+
223
+ * **deps:** lock file maintenance ([22fced9](https://github.com/scratchfoundation/scratch-svg-renderer/commit/22fced9c2f4c23aac65493cb545bf3bb5e860c95))
224
+
225
+ ## [2.3.95](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.94...v2.3.95) (2024-07-21)
226
+
227
+
228
+ ### Bug Fixes
229
+
230
+ * **deps:** update dependency scratch-render-fonts to v1.0.75 ([11bfdc7](https://github.com/scratchfoundation/scratch-svg-renderer/commit/11bfdc765966e956e013244449cce36159199689))
231
+
232
+ ## [2.3.94](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.93...v2.3.94) (2024-07-21)
233
+
234
+
235
+ ### Bug Fixes
236
+
237
+ * **deps:** lock file maintenance ([4804c17](https://github.com/scratchfoundation/scratch-svg-renderer/commit/4804c171b32a5af8c3de4d7d64455a02809db602))
238
+
239
+ ## [2.3.93](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.92...v2.3.93) (2024-07-19)
240
+
241
+
242
+ ### Bug Fixes
243
+
244
+ * **deps:** lock file maintenance ([d475fcb](https://github.com/scratchfoundation/scratch-svg-renderer/commit/d475fcb9ecc99a380d3e97f17a2ee15b7a79a882))
245
+
246
+ ## [2.3.92](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.91...v2.3.92) (2024-07-18)
247
+
248
+
249
+ ### Bug Fixes
250
+
251
+ * **deps:** update dependency scratch-render-fonts to v1.0.74 ([fc8ec60](https://github.com/scratchfoundation/scratch-svg-renderer/commit/fc8ec60e9b495316e328d7f2a010a33ec84bbb1e))
252
+
253
+ ## [2.3.91](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.90...v2.3.91) (2024-07-17)
254
+
255
+
256
+ ### Bug Fixes
257
+
258
+ * **deps:** lock file maintenance ([45b4d69](https://github.com/scratchfoundation/scratch-svg-renderer/commit/45b4d69a2322c7d479fa47862345967f08afe27b))
259
+
260
+ ## [2.3.90](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.89...v2.3.90) (2024-07-16)
261
+
262
+
263
+ ### Bug Fixes
264
+
265
+ * **deps:** update dependency scratch-render-fonts to v1.0.73 ([478fb06](https://github.com/scratchfoundation/scratch-svg-renderer/commit/478fb06263d58a2af8cd4ec521b30fd1e5d22e82))
266
+
267
+ ## [2.3.89](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.88...v2.3.89) (2024-07-15)
268
+
269
+
270
+ ### Bug Fixes
271
+
272
+ * **deps:** lock file maintenance ([070e42b](https://github.com/scratchfoundation/scratch-svg-renderer/commit/070e42b7af3dd50fb94c21e916870049a6ef4484))
273
+
274
+ ## [2.3.88](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.87...v2.3.88) (2024-07-14)
275
+
276
+
277
+ ### Bug Fixes
278
+
279
+ * **deps:** update dependency scratch-render-fonts to v1.0.72 ([0fb3f70](https://github.com/scratchfoundation/scratch-svg-renderer/commit/0fb3f7002f2b429b19c1110fe24f4de1e540c625))
280
+
281
+ ## [2.3.87](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.86...v2.3.87) (2024-07-13)
282
+
283
+
284
+ ### Bug Fixes
285
+
286
+ * **deps:** lock file maintenance ([722a36d](https://github.com/scratchfoundation/scratch-svg-renderer/commit/722a36d712bdc2df4086ad9368eb41eac3f2a3eb))
287
+
288
+ ## [2.3.86](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.85...v2.3.86) (2024-07-11)
289
+
290
+
291
+ ### Bug Fixes
292
+
293
+ * **deps:** update dependency scratch-render-fonts to v1.0.71 ([2e7285e](https://github.com/scratchfoundation/scratch-svg-renderer/commit/2e7285e89b8ec0f429c5dc1b31c3408837c6feb1))
294
+
295
+ ## [2.3.85](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.84...v2.3.85) (2024-07-11)
296
+
297
+
298
+ ### Bug Fixes
299
+
300
+ * **deps:** lock file maintenance ([e9c7980](https://github.com/scratchfoundation/scratch-svg-renderer/commit/e9c7980b37c8d8c6c7c6ee8cb1af6a87333a233b))
301
+
302
+ ## [2.3.84](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.83...v2.3.84) (2024-07-09)
303
+
304
+
305
+ ### Bug Fixes
306
+
307
+ * **deps:** update dependency scratch-render-fonts to v1.0.70 ([9e8f395](https://github.com/scratchfoundation/scratch-svg-renderer/commit/9e8f39522870e8b429f1f06b3a039ebc74ff4611))
308
+
309
+ ## [2.3.83](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.82...v2.3.83) (2024-06-29)
310
+
311
+
312
+ ### Bug Fixes
313
+
314
+ * **deps:** lock file maintenance ([e847a7e](https://github.com/scratchfoundation/scratch-svg-renderer/commit/e847a7ead559261aac038c5c51ec26c1a7312a25))
315
+ * **deps:** update dependency scratch-render-fonts to v1.0.66 ([7563a2d](https://github.com/scratchfoundation/scratch-svg-renderer/commit/7563a2d7f406851d5b7ee83498c06f9c0ce7c1cd))
316
+
317
+ ## [2.3.82](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.81...v2.3.82) (2024-06-28)
318
+
319
+
320
+ ### Bug Fixes
321
+
322
+ * **deps:** lock file maintenance ([f399888](https://github.com/scratchfoundation/scratch-svg-renderer/commit/f399888be95c0becfb4163bb13bd0340124075fe))
323
+
324
+ ## [2.3.81](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.80...v2.3.81) (2024-06-27)
325
+
326
+
327
+ ### Bug Fixes
328
+
329
+ * **deps:** update dependency scratch-render-fonts to v1.0.65 ([3ec3270](https://github.com/scratchfoundation/scratch-svg-renderer/commit/3ec327009e4ac7715a5ff56f0c0ef420906af252))
330
+
331
+ ## [2.3.80](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.79...v2.3.80) (2024-06-25)
332
+
333
+
334
+ ### Bug Fixes
335
+
336
+ * **deps:** update dependency scratch-render-fonts to v1.0.64 ([b07cfef](https://github.com/scratchfoundation/scratch-svg-renderer/commit/b07cfef9d13bf125afe33b1c5fb6303971ed821b))
337
+
338
+ ## [2.3.79](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.78...v2.3.79) (2024-06-25)
339
+
340
+
341
+ ### Bug Fixes
342
+
343
+ * **deps:** lock file maintenance ([5a36a67](https://github.com/scratchfoundation/scratch-svg-renderer/commit/5a36a67b246669a77bd395dbc964894a0de70864))
344
+
345
+ ## [2.3.78](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.77...v2.3.78) (2024-06-23)
346
+
347
+
348
+ ### Bug Fixes
349
+
350
+ * **deps:** lock file maintenance ([9052879](https://github.com/scratchfoundation/scratch-svg-renderer/commit/905287985ed11efb92261472de9b7c891708e055))
351
+
352
+ ## [2.3.77](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.76...v2.3.77) (2024-06-22)
353
+
354
+
355
+ ### Bug Fixes
356
+
357
+ * **deps:** update dependency scratch-render-fonts to v1.0.63 ([5a08fea](https://github.com/scratchfoundation/scratch-svg-renderer/commit/5a08fea33c24d76fc8e8fa755381dc43f815aca3))
358
+
359
+ ## [2.3.76](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.75...v2.3.76) (2024-06-20)
360
+
361
+
362
+ ### Bug Fixes
363
+
364
+ * **deps:** update dependency scratch-render-fonts to v1.0.62 ([e6747b4](https://github.com/scratchfoundation/scratch-svg-renderer/commit/e6747b408531ad4da32f606ecb0c67f8f9958703))
365
+
366
+ ## [2.3.75](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.74...v2.3.75) (2024-06-20)
367
+
368
+
369
+ ### Bug Fixes
370
+
371
+ * **deps:** lock file maintenance ([3c07ee3](https://github.com/scratchfoundation/scratch-svg-renderer/commit/3c07ee367be726643f3c15da88742d8af6c1ed3f))
372
+
373
+ ## [2.3.74](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.73...v2.3.74) (2024-06-18)
374
+
375
+
376
+ ### Bug Fixes
377
+
378
+ * **deps:** update dependency scratch-render-fonts to v1.0.61 ([3015750](https://github.com/scratchfoundation/scratch-svg-renderer/commit/3015750a471c64194f7da4f6e69e5ca1f3aa56c8))
379
+
380
+ ## [2.3.73](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.72...v2.3.73) (2024-06-18)
381
+
382
+
383
+ ### Bug Fixes
384
+
385
+ * **deps:** lock file maintenance ([448d83c](https://github.com/scratchfoundation/scratch-svg-renderer/commit/448d83c10843a9f2fd77f3071ec729600bac53e4))
386
+
387
+ ## [2.3.72](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.71...v2.3.72) (2024-06-16)
388
+
389
+
390
+ ### Bug Fixes
391
+
392
+ * **deps:** update dependency scratch-render-fonts to v1.0.60 ([d8f0682](https://github.com/scratchfoundation/scratch-svg-renderer/commit/d8f0682bbeffd46790176e3ab945e48cbd4df897))
393
+
394
+ ## [2.3.71](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.70...v2.3.71) (2024-06-15)
395
+
396
+
397
+ ### Bug Fixes
398
+
399
+ * **deps:** lock file maintenance ([ed759b0](https://github.com/scratchfoundation/scratch-svg-renderer/commit/ed759b00cf3b8ef93d20ceb6ea05afe0e21ecd00))
400
+
401
+ ## [2.3.70](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.69...v2.3.70) (2024-06-14)
402
+
403
+
404
+ ### Bug Fixes
405
+
406
+ * **deps:** lock file maintenance ([467ce98](https://github.com/scratchfoundation/scratch-svg-renderer/commit/467ce98f1f1ab93f0cdf5fa846177e7b08266361))
407
+
408
+ ## [2.3.69](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.68...v2.3.69) (2024-06-13)
409
+
410
+
411
+ ### Bug Fixes
412
+
413
+ * **deps:** update dependency scratch-render-fonts to v1.0.59 ([bd32962](https://github.com/scratchfoundation/scratch-svg-renderer/commit/bd32962198c82f63a94b3704a77df9058afd4937))
414
+
415
+ ## [2.3.68](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.67...v2.3.68) (2024-06-12)
416
+
417
+
418
+ ### Bug Fixes
419
+
420
+ * **deps:** lock file maintenance ([92cef2d](https://github.com/scratchfoundation/scratch-svg-renderer/commit/92cef2d2747fd43b74eaa4c6a90ed164be077124))
421
+
422
+ ## [2.3.67](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.66...v2.3.67) (2024-06-11)
423
+
424
+
425
+ ### Bug Fixes
426
+
427
+ * **deps:** update dependency scratch-render-fonts to v1.0.58 ([351e051](https://github.com/scratchfoundation/scratch-svg-renderer/commit/351e051e95993675aea1822e933bf1f9d2ad6b0c))
428
+
429
+ ## [2.3.66](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.65...v2.3.66) (2024-06-09)
430
+
431
+
432
+ ### Bug Fixes
433
+
434
+ * **deps:** lock file maintenance ([313d463](https://github.com/scratchfoundation/scratch-svg-renderer/commit/313d463d4eaf52ab2a5a6eeb3806ccb2265c7613))
435
+
436
+ ## [2.3.65](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.64...v2.3.65) (2024-06-08)
437
+
438
+
439
+ ### Bug Fixes
440
+
441
+ * **deps:** update dependency scratch-render-fonts to v1.0.57 ([8af7cad](https://github.com/scratchfoundation/scratch-svg-renderer/commit/8af7cad4202c2781733423b43bcbbf0e74f50f99))
442
+
443
+ ## [2.3.64](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.63...v2.3.64) (2024-06-07)
444
+
445
+
446
+ ### Bug Fixes
447
+
448
+ * **deps:** lock file maintenance ([e4ec7fa](https://github.com/scratchfoundation/scratch-svg-renderer/commit/e4ec7fa9f8a19901a3d4bf9f7bde48e9fdd137f0))
449
+
450
+ ## [2.3.63](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.62...v2.3.63) (2024-06-05)
451
+
452
+
453
+ ### Bug Fixes
454
+
455
+ * **deps:** update dependency scratch-render-fonts to v1.0.56 ([7b34948](https://github.com/scratchfoundation/scratch-svg-renderer/commit/7b349483fbb60fd3707c89fa34ccfd66913e5bd3))
456
+
457
+ ## [2.3.62](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.61...v2.3.62) (2024-06-05)
458
+
459
+
460
+ ### Bug Fixes
461
+
462
+ * **deps:** lock file maintenance ([4aa09af](https://github.com/scratchfoundation/scratch-svg-renderer/commit/4aa09af2a16c26551085c2fef6cb15cbc2eab49c))
463
+
464
+ ## [2.3.61](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.60...v2.3.61) (2024-06-03)
465
+
466
+
467
+ ### Bug Fixes
468
+
469
+ * **deps:** update dependency scratch-render-fonts to v1.0.55 ([260913e](https://github.com/scratchfoundation/scratch-svg-renderer/commit/260913ea4fd61a91acef27ef51d51b03f69ce65a))
470
+
471
+ ## [2.3.60](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.59...v2.3.60) (2024-06-02)
472
+
473
+
474
+ ### Bug Fixes
475
+
476
+ * **deps:** lock file maintenance ([859277d](https://github.com/scratchfoundation/scratch-svg-renderer/commit/859277d23c5323d3c3e34ab9b27c207d45c86c16))
477
+
478
+ ## [2.3.59](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.58...v2.3.59) (2024-06-01)
479
+
480
+
481
+ ### Bug Fixes
482
+
483
+ * **deps:** update dependency scratch-render-fonts to v1.0.54 ([12644ad](https://github.com/scratchfoundation/scratch-svg-renderer/commit/12644ada40b1393a430ca8cbbb82da8d8952f1d6))
484
+
485
+ ## [2.3.58](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.57...v2.3.58) (2024-05-30)
486
+
487
+
488
+ ### Bug Fixes
489
+
490
+ * **deps:** lock file maintenance ([498b204](https://github.com/scratchfoundation/scratch-svg-renderer/commit/498b2046c747a6dbc13caee76fe48977ee0b409e))
491
+
492
+ ## [2.3.57](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.56...v2.3.57) (2024-05-29)
493
+
494
+
495
+ ### Bug Fixes
496
+
497
+ * **deps:** update dependency scratch-render-fonts to v1.0.53 ([2b9e26b](https://github.com/scratchfoundation/scratch-svg-renderer/commit/2b9e26b09caf4dff5660054ef692c1e880aff186))
498
+
499
+ ## [2.3.56](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.55...v2.3.56) (2024-05-28)
500
+
501
+
502
+ ### Bug Fixes
503
+
504
+ * **deps:** lock file maintenance ([af2ad07](https://github.com/scratchfoundation/scratch-svg-renderer/commit/af2ad074fca835b9bf7c99be81f45d2e04698009))
505
+
506
+ ## [2.3.55](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.54...v2.3.55) (2024-05-27)
507
+
508
+
509
+ ### Bug Fixes
510
+
511
+ * **deps:** update dependency scratch-render-fonts to v1.0.52 ([ff59f50](https://github.com/scratchfoundation/scratch-svg-renderer/commit/ff59f509f671487ca0e0902cbe9c09e8d2c29a7e))
512
+
513
+ ## [2.3.54](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.53...v2.3.54) (2024-05-25)
514
+
515
+
516
+ ### Bug Fixes
517
+
518
+ * **deps:** update dependency scratch-render-fonts to v1.0.51 ([d26e1b2](https://github.com/scratchfoundation/scratch-svg-renderer/commit/d26e1b2114f862dc75f9b6244b7ac4d48f66e94f))
519
+
520
+ ## [2.3.53](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.52...v2.3.53) (2024-05-25)
521
+
522
+
523
+ ### Bug Fixes
524
+
525
+ * **deps:** lock file maintenance ([b00d4e7](https://github.com/scratchfoundation/scratch-svg-renderer/commit/b00d4e7ad0548c62ba89f9bb6d5188a5ef118ab0))
526
+
527
+ ## [2.3.52](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.51...v2.3.52) (2024-05-23)
528
+
529
+
530
+ ### Bug Fixes
531
+
532
+ * **deps:** update dependency scratch-render-fonts to v1.0.50 ([5fade8f](https://github.com/scratchfoundation/scratch-svg-renderer/commit/5fade8fe925553874bb00085e68d2c50edf55279))
533
+
534
+ ## [2.3.51](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.50...v2.3.51) (2024-05-23)
535
+
536
+
537
+ ### Bug Fixes
538
+
539
+ * **deps:** lock file maintenance ([cd7058d](https://github.com/scratchfoundation/scratch-svg-renderer/commit/cd7058d1e06814c3bb7a4c539a839ce9b069ac81))
540
+
541
+ ## [2.3.50](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.49...v2.3.50) (2024-05-18)
542
+
543
+
544
+ ### Bug Fixes
545
+
546
+ * **deps:** lock file maintenance ([817b744](https://github.com/scratchfoundation/scratch-svg-renderer/commit/817b7444006db37143b16672cdbd2e4ad7627a4f))
547
+
548
+ ## [2.3.49](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.48...v2.3.49) (2024-05-18)
549
+
550
+
551
+ ### Bug Fixes
552
+
553
+ * **deps:** update dependency scratch-render-fonts to v1.0.49 ([5fa4183](https://github.com/scratchfoundation/scratch-svg-renderer/commit/5fa4183f52130224d3cdfc7b7a3ba22dd4d4585d))
554
+
555
+ ## [2.3.48](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.47...v2.3.48) (2024-05-16)
556
+
557
+
558
+ ### Bug Fixes
559
+
560
+ * **deps:** lock file maintenance ([526e16a](https://github.com/scratchfoundation/scratch-svg-renderer/commit/526e16aedade063363990ad1e73553e3b2fe5139))
561
+
562
+ ## [2.3.47](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.46...v2.3.47) (2024-05-13)
563
+
564
+
565
+ ### Bug Fixes
566
+
567
+ * **deps:** update dependency scratch-render-fonts to v1.0.48 ([d54de2a](https://github.com/scratchfoundation/scratch-svg-renderer/commit/d54de2a2413c623c44b3082553913dc45987dc64))
568
+
569
+ ## [2.3.46](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.45...v2.3.46) (2024-05-13)
570
+
571
+
572
+ ### Bug Fixes
573
+
574
+ * **deps:** lock file maintenance ([f013390](https://github.com/scratchfoundation/scratch-svg-renderer/commit/f013390a7dbb72f4e749e9afcd441e78d481a024))
575
+
576
+ ## [2.3.45](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.44...v2.3.45) (2024-05-11)
577
+
578
+
579
+ ### Bug Fixes
580
+
581
+ * **deps:** lock file maintenance ([680d06c](https://github.com/scratchfoundation/scratch-svg-renderer/commit/680d06c466abd6389822c79dc78cf94ac8470aa7))
582
+
583
+ ## [2.3.44](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.43...v2.3.44) (2024-05-10)
584
+
585
+
586
+ ### Bug Fixes
587
+
588
+ * **deps:** update dependency scratch-render-fonts to v1.0.47 ([2d8af02](https://github.com/scratchfoundation/scratch-svg-renderer/commit/2d8af02a4c5a278f93ad8769845dab77afc93fcc))
589
+
590
+ ## [2.3.43](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.42...v2.3.43) (2024-05-08)
591
+
592
+
593
+ ### Bug Fixes
594
+
595
+ * **deps:** update dependency scratch-render-fonts to v1.0.46 ([9709863](https://github.com/scratchfoundation/scratch-svg-renderer/commit/9709863b6f8f66a489709237b4d015418761ddf0))
596
+
597
+ ## [2.3.42](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.41...v2.3.42) (2024-05-08)
598
+
599
+
600
+ ### Bug Fixes
601
+
602
+ * **deps:** lock file maintenance ([6ef8cdd](https://github.com/scratchfoundation/scratch-svg-renderer/commit/6ef8cdd6df706a87e5fb1b65c63fc7182e86c693))
603
+
604
+ ## [2.3.41](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.40...v2.3.41) (2024-05-06)
605
+
606
+
607
+ ### Bug Fixes
608
+
609
+ * **deps:** update dependency scratch-render-fonts to v1.0.45 ([b31d625](https://github.com/scratchfoundation/scratch-svg-renderer/commit/b31d625e2320ff9b101d9171ea8e5dff9da07aaa))
610
+
611
+ ## [2.3.40](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.39...v2.3.40) (2024-05-06)
612
+
613
+
614
+ ### Bug Fixes
615
+
616
+ * **deps:** lock file maintenance ([05ca007](https://github.com/scratchfoundation/scratch-svg-renderer/commit/05ca00721d74ff15c23123a3c7df249e0e7162af))
617
+
618
+ ## [2.3.39](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.38...v2.3.39) (2024-05-04)
619
+
620
+
621
+ ### Bug Fixes
622
+
623
+ * **deps:** update dependency scratch-render-fonts to v1.0.44 ([09318f5](https://github.com/scratchfoundation/scratch-svg-renderer/commit/09318f57957cbea5802ddc5a629d361e543a2c2f))
624
+
625
+ ## [2.3.38](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.37...v2.3.38) (2024-05-03)
626
+
627
+
628
+ ### Bug Fixes
629
+
630
+ * **deps:** lock file maintenance ([e13d206](https://github.com/scratchfoundation/scratch-svg-renderer/commit/e13d2067d5aedb4c5e1c8b39c4de14dbc2e4bbb6))
631
+
632
+ ## [2.3.37](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.36...v2.3.37) (2024-05-02)
633
+
634
+
635
+ ### Bug Fixes
636
+
637
+ * **deps:** update dependency scratch-render-fonts to v1.0.43 ([d4f7686](https://github.com/scratchfoundation/scratch-svg-renderer/commit/d4f76868cf1768f471e79ed12e99553d5d85f53e))
638
+
639
+ ## [2.3.36](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.35...v2.3.36) (2024-04-30)
640
+
641
+
642
+ ### Bug Fixes
643
+
644
+ * **deps:** lock file maintenance ([e73fdab](https://github.com/scratchfoundation/scratch-svg-renderer/commit/e73fdabfde7f5b36226ef9f1b94b5dcedb21a92b))
645
+
646
+ ## [2.3.35](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.34...v2.3.35) (2024-04-29)
647
+
648
+
649
+ ### Bug Fixes
650
+
651
+ * **deps:** update dependency scratch-render-fonts to v1.0.42 ([4dd1dd4](https://github.com/scratchfoundation/scratch-svg-renderer/commit/4dd1dd4838b0eb8b4e9236ffcb0348ebe5f79c65))
652
+
653
+ ## [2.3.34](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.33...v2.3.34) (2024-04-27)
654
+
655
+
656
+ ### Bug Fixes
657
+
658
+ * **deps:** update dependency scratch-render-fonts to v1.0.41 ([e8dfb7b](https://github.com/scratchfoundation/scratch-svg-renderer/commit/e8dfb7b85a488c53298c3707fb85adf70798cfe3))
659
+
660
+ ## [2.3.33](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.32...v2.3.33) (2024-04-27)
661
+
662
+
663
+ ### Bug Fixes
664
+
665
+ * **deps:** lock file maintenance ([7e3c32c](https://github.com/scratchfoundation/scratch-svg-renderer/commit/7e3c32c6ffc20b431fd05ca9a25815286049770b))
666
+
667
+ ## [2.3.32](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.31...v2.3.32) (2024-04-25)
668
+
669
+
670
+ ### Bug Fixes
671
+
672
+ * **deps:** update dependency scratch-render-fonts to v1.0.40 ([2fba9ad](https://github.com/scratchfoundation/scratch-svg-renderer/commit/2fba9ad6357b75ed2e2603f4f57f50138469b16f))
673
+
674
+ ## [2.3.31](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.30...v2.3.31) (2024-04-25)
675
+
676
+
677
+ ### Bug Fixes
678
+
679
+ * **deps:** lock file maintenance ([e45ab90](https://github.com/scratchfoundation/scratch-svg-renderer/commit/e45ab909fbd0321cebc11088ce271acb3de96b09))
680
+
681
+ ## [2.3.30](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.29...v2.3.30) (2024-04-22)
682
+
683
+
684
+ ### Bug Fixes
685
+
686
+ * **deps:** update dependency scratch-render-fonts to v1.0.39 ([7881cf0](https://github.com/scratchfoundation/scratch-svg-renderer/commit/7881cf0d626429a0d5b79734f839b94f5fc18fe5))
687
+
688
+ ## [2.3.29](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.28...v2.3.29) (2024-04-22)
689
+
690
+
691
+ ### Bug Fixes
692
+
693
+ * **deps:** lock file maintenance ([db525f5](https://github.com/scratchfoundation/scratch-svg-renderer/commit/db525f5520a32c837877523ad25e33c7cdc0ca56))
694
+
695
+ ## [2.3.28](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.27...v2.3.28) (2024-04-21)
696
+
697
+
698
+ ### Bug Fixes
699
+
700
+ * **deps:** lock file maintenance ([a3a928e](https://github.com/scratchfoundation/scratch-svg-renderer/commit/a3a928ecd2427e665ee70d845699e23c0c5c2b64))
701
+
702
+ ## [2.3.27](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.26...v2.3.27) (2024-04-20)
703
+
704
+
705
+ ### Bug Fixes
706
+
707
+ * **deps:** update dependency scratch-render-fonts to v1.0.38 ([725e43a](https://github.com/scratchfoundation/scratch-svg-renderer/commit/725e43acbfb7fcd10fa0d33267303ef72bc20ca9))
708
+
709
+ ## [2.3.26](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.25...v2.3.26) (2024-04-19)
710
+
711
+
712
+ ### Bug Fixes
713
+
714
+ * **deps:** lock file maintenance ([39a83cc](https://github.com/scratchfoundation/scratch-svg-renderer/commit/39a83cc8d23134051dfb9c9cf8a0c9edf565c4fb))
715
+
716
+ ## [2.3.25](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.24...v2.3.25) (2024-04-18)
717
+
718
+
719
+ ### Bug Fixes
720
+
721
+ * **deps:** update dependency scratch-render-fonts to v1.0.37 ([e0fe6ec](https://github.com/scratchfoundation/scratch-svg-renderer/commit/e0fe6ec6b87daaf983accc94554e6d2efadd3441))
722
+
723
+ ## [2.3.24](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.23...v2.3.24) (2024-04-17)
724
+
725
+
726
+ ### Bug Fixes
727
+
728
+ * **deps:** lock file maintenance ([324e9f4](https://github.com/scratchfoundation/scratch-svg-renderer/commit/324e9f47677ecac7ba2ae915cb0d740d2575b872))
729
+
730
+ ## [2.3.23](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.22...v2.3.23) (2024-04-16)
731
+
732
+
733
+ ### Bug Fixes
734
+
735
+ * **deps:** update dependency scratch-render-fonts to v1.0.36 ([7f47677](https://github.com/scratchfoundation/scratch-svg-renderer/commit/7f47677285079af7238b634bcae6dfa0a56dbcff))
736
+
737
+ ## [2.3.22](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.21...v2.3.22) (2024-04-15)
738
+
739
+
740
+ ### Bug Fixes
741
+
742
+ * **deps:** lock file maintenance ([be7f219](https://github.com/scratchfoundation/scratch-svg-renderer/commit/be7f219bc6efc92d154f4e68d1d682653a08f454))
743
+
744
+ ## [2.3.21](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.20...v2.3.21) (2024-04-14)
745
+
746
+
747
+ ### Bug Fixes
748
+
749
+ * **deps:** update dependency scratch-render-fonts to v1.0.35 ([8a18c72](https://github.com/scratchfoundation/scratch-svg-renderer/commit/8a18c7281063f32eebc1d2d7314a65f7788ddaa2))
750
+
751
+ ## [2.3.20](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.19...v2.3.20) (2024-04-12)
752
+
753
+
754
+ ### Bug Fixes
755
+
756
+ * **deps:** lock file maintenance ([1108886](https://github.com/scratchfoundation/scratch-svg-renderer/commit/11088864c1014652a37cd1f2b7568528564cbdcf))
757
+
758
+ ## [2.3.19](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.18...v2.3.19) (2024-04-11)
759
+
760
+
761
+ ### Bug Fixes
762
+
763
+ * **deps:** update dependency scratch-render-fonts to v1.0.34 ([62c9f3d](https://github.com/scratchfoundation/scratch-svg-renderer/commit/62c9f3d74093a3f13de7c2b8c5abdfc1a11671f9))
764
+
765
+ ## [2.3.18](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.17...v2.3.18) (2024-04-10)
766
+
767
+
768
+ ### Bug Fixes
769
+
770
+ * **deps:** lock file maintenance ([44e69aa](https://github.com/scratchfoundation/scratch-svg-renderer/commit/44e69aa2318d016d6a27606f11d7209f03ea2485))
771
+
772
+ ## [2.3.17](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.16...v2.3.17) (2024-04-09)
773
+
774
+
775
+ ### Bug Fixes
776
+
777
+ * **deps:** update dependency scratch-render-fonts to v1.0.33 ([91344b1](https://github.com/scratchfoundation/scratch-svg-renderer/commit/91344b11780db37a7ba8dca2e90eea9c4749ac78))
778
+
779
+ ## [2.3.16](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.15...v2.3.16) (2024-04-07)
780
+
781
+
782
+ ### Bug Fixes
783
+
784
+ * **deps:** update dependency scratch-render-fonts to v1.0.32 ([06eb970](https://github.com/scratchfoundation/scratch-svg-renderer/commit/06eb970119ea0baed81c93f6a5545a73d928e741))
785
+
786
+ ## [2.3.15](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.14...v2.3.15) (2024-04-07)
787
+
788
+
789
+ ### Bug Fixes
790
+
791
+ * **deps:** lock file maintenance ([e7d8aea](https://github.com/scratchfoundation/scratch-svg-renderer/commit/e7d8aea1ef2d07c243563ae6c3035dc457a55e14))
792
+
793
+ ## [2.3.14](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.13...v2.3.14) (2024-04-05)
794
+
795
+
796
+ ### Bug Fixes
797
+
798
+ * **deps:** lock file maintenance ([1f5474c](https://github.com/scratchfoundation/scratch-svg-renderer/commit/1f5474c77853096aa8fc37a28c85727176445b1d))
799
+
800
+ ## [2.3.13](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.12...v2.3.13) (2024-04-03)
801
+
802
+
803
+ ### Bug Fixes
804
+
805
+ * **deps:** update dependency scratch-render-fonts to v1.0.31 ([e19fa6c](https://github.com/scratchfoundation/scratch-svg-renderer/commit/e19fa6c568df9b6163b61492c4588f2e8e7b0aff))
806
+
807
+ ## [2.3.12](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.11...v2.3.12) (2024-04-03)
808
+
809
+
810
+ ### Bug Fixes
811
+
812
+ * **deps:** lock file maintenance ([a9a5de6](https://github.com/scratchfoundation/scratch-svg-renderer/commit/a9a5de604469e69ab2bff4645292ea30eb61de0d))
813
+
814
+ ## [2.3.11](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.10...v2.3.11) (2024-04-01)
815
+
816
+
817
+ ### Bug Fixes
818
+
819
+ * **deps:** update dependency scratch-render-fonts to v1.0.30 ([2440fd5](https://github.com/scratchfoundation/scratch-svg-renderer/commit/2440fd59562e32d1347b71c8da9a16b246bab8fa))
820
+
821
+ ## [2.3.10](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.9...v2.3.10) (2024-03-31)
822
+
823
+
824
+ ### Bug Fixes
825
+
826
+ * **deps:** lock file maintenance ([a022f58](https://github.com/scratchfoundation/scratch-svg-renderer/commit/a022f58ad3624d66b45b7aed66c329069b9579fa))
827
+
828
+ ## [2.3.9](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.8...v2.3.9) (2024-03-30)
829
+
830
+
831
+ ### Bug Fixes
832
+
833
+ * **deps:** update dependency scratch-render-fonts to v1.0.29 ([5b7fce1](https://github.com/scratchfoundation/scratch-svg-renderer/commit/5b7fce1904c550ab7d5b2c1c0bf2dc56d508af30))
834
+
835
+ ## [2.3.8](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.7...v2.3.8) (2024-03-29)
836
+
837
+
838
+ ### Bug Fixes
839
+
840
+ * **deps:** lock file maintenance ([8876d27](https://github.com/scratchfoundation/scratch-svg-renderer/commit/8876d27ec940d3be94a221c2a5be717acb3e1c41))
841
+
842
+ ## [2.3.7](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.6...v2.3.7) (2024-03-28)
843
+
844
+
845
+ ### Bug Fixes
846
+
847
+ * **deps:** update dependency scratch-render-fonts to v1.0.28 ([e6ff745](https://github.com/scratchfoundation/scratch-svg-renderer/commit/e6ff7458845daafe239ea16716eb40e8b1f0735b))
848
+
849
+ ## [2.3.6](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.5...v2.3.6) (2024-03-27)
850
+
851
+
852
+ ### Bug Fixes
853
+
854
+ * **deps:** lock file maintenance ([7066ba9](https://github.com/scratchfoundation/scratch-svg-renderer/commit/7066ba955846a7acd0eeb38480883c7d6b7c53dc))
855
+
856
+ ## [2.3.5](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.4...v2.3.5) (2024-03-25)
857
+
858
+
859
+ ### Bug Fixes
860
+
861
+ * **deps:** update dependency scratch-render-fonts to v1.0.27 ([b0c69ce](https://github.com/scratchfoundation/scratch-svg-renderer/commit/b0c69ce2e7bd1dff3ff8ef357d96879ec9a2c305))
862
+
863
+ ## [2.3.4](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.3...v2.3.4) (2024-03-25)
864
+
865
+
866
+ ### Bug Fixes
867
+
868
+ * **deps:** lock file maintenance ([97f2805](https://github.com/scratchfoundation/scratch-svg-renderer/commit/97f280594c5ba6e690e4ddd0429f97f196f049dd))
869
+
870
+ ## [2.3.3](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.2...v2.3.3) (2024-03-22)
871
+
872
+
873
+ ### Bug Fixes
874
+
875
+ * **deps:** lock file maintenance ([611919d](https://github.com/scratchfoundation/scratch-svg-renderer/commit/611919df5c2b85a4a4d28afb10c563531ea8946a))
876
+ * **deps:** update dependency scratch-render-fonts to v1.0.26 ([57fec40](https://github.com/scratchfoundation/scratch-svg-renderer/commit/57fec402402b517e58e6e615538356b2e07ca309))
877
+
878
+ ## [2.3.2](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.1...v2.3.2) (2024-03-21)
879
+
880
+
881
+ ### Bug Fixes
882
+
883
+ * **deps:** lock file maintenance ([bebf9eb](https://github.com/scratchfoundation/scratch-svg-renderer/commit/bebf9eb60ec9e0580f70c63aadec88c47cc5e31a))
884
+
885
+ ## [2.3.1](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.3.0...v2.3.1) (2024-03-20)
886
+
887
+
888
+ ### Bug Fixes
889
+
890
+ * **deps:** update dependency scratch-render-fonts to v1.0.25 ([9ab00e7](https://github.com/scratchfoundation/scratch-svg-renderer/commit/9ab00e78a331c14a23988c4a42d72c93bf0ebb57))
891
+
892
+ # [2.3.0](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.2.4...v2.3.0) (2024-03-18)
893
+
894
+
895
+ ### Features
896
+
897
+ * **deps:** update dependency scratch-webpack-configuration to v1.3.0 ([4d849f7](https://github.com/scratchfoundation/scratch-svg-renderer/commit/4d849f72338bb0c8618b06eef1036a56b76ed0d7))
898
+
899
+ ## [2.2.4](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.2.3...v2.2.4) (2024-03-18)
900
+
901
+
902
+ ### Bug Fixes
903
+
904
+ * **deps:** update dependency scratch-render-fonts to v1.0.24 ([00bef4f](https://github.com/scratchfoundation/scratch-svg-renderer/commit/00bef4f804775e1a0ad264a13a99b29aa330c794))
905
+
906
+ ## [2.2.3](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.2.2...v2.2.3) (2024-03-18)
907
+
908
+
909
+ ### Bug Fixes
910
+
911
+ * **deps:** lock file maintenance ([cc3c32c](https://github.com/scratchfoundation/scratch-svg-renderer/commit/cc3c32c788df64e1fcf0b9f5f9beeada77ad08ed))
912
+
913
+ ## [2.2.2](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.2.1...v2.2.2) (2024-03-16)
914
+
915
+
916
+ ### Bug Fixes
917
+
918
+ * **deps:** lock file maintenance ([cf14b28](https://github.com/scratchfoundation/scratch-svg-renderer/commit/cf14b283016a85611f36b49d598d1e9079070f0f))
919
+
920
+ ## [2.2.1](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.2.0...v2.2.1) (2024-03-15)
921
+
922
+
923
+ ### Bug Fixes
924
+
925
+ * **deps:** update dependency scratch-render-fonts to v1.0.23 ([4ff2c73](https://github.com/scratchfoundation/scratch-svg-renderer/commit/4ff2c73bfbda747b183f2edce6987cb516987b0d))
926
+
927
+ # [2.2.0](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.1.6...v2.2.0) (2024-03-14)
928
+
929
+
930
+ ### Features
931
+
932
+ * **deps:** update dependency scratch-webpack-configuration to v1.2.0 ([1950541](https://github.com/scratchfoundation/scratch-svg-renderer/commit/1950541797418d73e3eb73dbd613e82b63fb208f))
933
+
934
+ ## [2.1.6](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.1.5...v2.1.6) (2024-03-14)
935
+
936
+
937
+ ### Bug Fixes
938
+
939
+ * **build:** add main & browser back for compatibility ([4886c76](https://github.com/scratchfoundation/scratch-svg-renderer/commit/4886c765bd4260850cb1f3fc7e782318f2b80b36))
940
+
941
+ ## [2.1.5](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.1.4...v2.1.5) (2024-03-13)
942
+
943
+
944
+ ### Bug Fixes
945
+
946
+ * add a default export for tool compatibility ([ae69174](https://github.com/scratchfoundation/scratch-svg-renderer/commit/ae6917423d7f56c89fc96a1ba8097f439458446c))
947
+
948
+ ## [2.1.4](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.1.3...v2.1.4) (2024-03-13)
949
+
950
+
951
+ ### Bug Fixes
952
+
953
+ * **deps:** update dependency scratch-render-fonts to v1.0.22 ([ff64b55](https://github.com/scratchfoundation/scratch-svg-renderer/commit/ff64b5524205e30146ea934f19cb38ffd782675d))
954
+
955
+ ## [2.1.3](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.1.2...v2.1.3) (2024-03-13)
956
+
957
+
958
+ ### Bug Fixes
959
+
960
+ * **deps:** lock file maintenance ([a8bd42a](https://github.com/scratchfoundation/scratch-svg-renderer/commit/a8bd42a49abd983b27dc5d70ebd02ff6e0b47e7f))
961
+
962
+ ## [2.1.2](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.1.1...v2.1.2) (2024-03-10)
963
+
964
+
965
+ ### Bug Fixes
966
+
967
+ * **deps:** update dependency scratch-render-fonts to v1.0.21 ([f6a10cb](https://github.com/scratchfoundation/scratch-svg-renderer/commit/f6a10cb7e635e451320ec0f2e147bb7dbdb59935))
968
+
969
+ ## [2.1.1](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.1.0...v2.1.1) (2024-03-10)
970
+
971
+
972
+ ### Bug Fixes
973
+
974
+ * **deps:** lock file maintenance ([3d6e1b4](https://github.com/scratchfoundation/scratch-svg-renderer/commit/3d6e1b4663c92fa00856e45e50a974e8b80f51da))
975
+
976
+ # [2.1.0](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.0.20...v2.1.0) (2024-03-09)
977
+
978
+
979
+ ### Features
980
+
981
+ * **deps:** update dependency scratch-webpack-configuration to v1.1.0 ([19ae276](https://github.com/scratchfoundation/scratch-svg-renderer/commit/19ae276346541f45af2b5226cb0dd4835e9b60ce))
982
+
983
+ ## [2.0.20](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.0.19...v2.0.20) (2024-03-09)
984
+
985
+
986
+ ### Bug Fixes
987
+
988
+ * **build:** separate node, browser, and webpack exports ([6904a2a](https://github.com/scratchfoundation/scratch-svg-renderer/commit/6904a2a9e12091aa7fe4a0ac928a0190b33a44e5))
989
+
990
+ ## [2.0.19](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.0.18...v2.0.19) (2024-03-09)
991
+
992
+
993
+ ### Bug Fixes
994
+
995
+ * **docs:** reformat README, fix build badge, trigger release ([5677dd0](https://github.com/scratchfoundation/scratch-svg-renderer/commit/5677dd0a878636b7e41dac1c95d9f5e44bace7f2))
996
+
997
+ ## [2.0.18](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.0.17...v2.0.18) (2024-03-08)
998
+
999
+
1000
+ ### Bug Fixes
1001
+
1002
+ * **deps:** update dependency scratch-render-fonts to v1.0.20 ([3e8f3f3](https://github.com/scratchfoundation/scratch-svg-renderer/commit/3e8f3f3df430cce29a121f854aa422d0f672f7ca))
1003
+
1004
+ ## [2.0.17](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.0.16...v2.0.17) (2024-03-08)
1005
+
1006
+
1007
+ ### Bug Fixes
1008
+
1009
+ * **deps:** lock file maintenance ([e347543](https://github.com/scratchfoundation/scratch-svg-renderer/commit/e34754354a0db064d963819a79617df83989d7c0))
1010
+
1011
+ ## [2.0.16](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.0.15...v2.0.16) (2024-03-06)
1012
+
1013
+
1014
+ ### Bug Fixes
1015
+
1016
+ * **deps:** update dependency scratch-render-fonts to v1.0.19 ([13da36b](https://github.com/scratchfoundation/scratch-svg-renderer/commit/13da36b93f476ba68ed2fea4fe60ad4386ccbc29))
1017
+
1018
+ ## [2.0.15](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.0.14...v2.0.15) (2024-03-06)
1019
+
1020
+
1021
+ ### Bug Fixes
1022
+
1023
+ * **deps:** lock file maintenance ([de5d994](https://github.com/scratchfoundation/scratch-svg-renderer/commit/de5d9947693604a1124a642ba5028352e5037906))
1024
+
1025
+ ## [2.0.14](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.0.13...v2.0.14) (2024-03-05)
1026
+
1027
+
1028
+ ### Bug Fixes
1029
+
1030
+ * **deps:** update dependency scratch-render-fonts to v1.0.18 ([4170fca](https://github.com/scratchfoundation/scratch-svg-renderer/commit/4170fca98b86bc57db1a595c30929e6edf0ab8fb))
1031
+
1032
+ ## [2.0.13](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.0.12...v2.0.13) (2024-03-04)
1033
+
1034
+
1035
+ ### Bug Fixes
1036
+
1037
+ * **deps:** lock file maintenance ([619dff6](https://github.com/scratchfoundation/scratch-svg-renderer/commit/619dff6223ad02d2f7afcf4884e9a58385131774))
1038
+
1039
+ ## [2.0.12](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.0.11...v2.0.12) (2024-03-04)
1040
+
1041
+
1042
+ ### Bug Fixes
1043
+
1044
+ * **deps:** update dependency scratch-render-fonts to v1.0.17 ([6c70f01](https://github.com/scratchfoundation/scratch-svg-renderer/commit/6c70f018341c83c0792cdf355eb6cf6fbc367db0))
1045
+
1046
+ ## [2.0.11](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.0.10...v2.0.11) (2024-03-03)
1047
+
1048
+
1049
+ ### Bug Fixes
1050
+
1051
+ * **deps:** lock file maintenance ([a43035a](https://github.com/scratchfoundation/scratch-svg-renderer/commit/a43035af5aa55e270a59797042a2b1ec91225c59))
1052
+
1053
+ ## [2.0.10](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.0.9...v2.0.10) (2024-03-03)
1054
+
1055
+
1056
+ ### Bug Fixes
1057
+
1058
+ * **deps:** update dependency scratch-render-fonts to v1.0.16 ([b7d719d](https://github.com/scratchfoundation/scratch-svg-renderer/commit/b7d719db05c96d1edb1c9fa6e237fd71ff77a72a))
1059
+
1060
+ ## [2.0.9](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.0.8...v2.0.9) (2024-03-02)
1061
+
1062
+
1063
+ ### Bug Fixes
1064
+
1065
+ * **deps:** lock file maintenance ([08a687e](https://github.com/scratchfoundation/scratch-svg-renderer/commit/08a687ebf7fa5fabeb3f2335717333f786b1fcc7))
1066
+
1067
+ ## [2.0.8](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.0.7...v2.0.8) (2024-03-01)
1068
+
1069
+
1070
+ ### Bug Fixes
1071
+
1072
+ * **deps:** update dependency scratch-render-fonts to v1.0.15 ([00d2f78](https://github.com/scratchfoundation/scratch-svg-renderer/commit/00d2f785021df723535c5eb6dbaf0d976ea7e897))
1073
+
1074
+ ## [2.0.7](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.0.6...v2.0.7) (2024-03-01)
1075
+
1076
+
1077
+ ### Bug Fixes
1078
+
1079
+ * **deps:** lock file maintenance ([a81d874](https://github.com/scratchfoundation/scratch-svg-renderer/commit/a81d87432b63dd68e886408621eebe67f49b4aa1))
1080
+
1081
+ ## [2.0.6](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.0.5...v2.0.6) (2024-02-28)
1082
+
1083
+
1084
+ ### Bug Fixes
1085
+
1086
+ * **deps:** update dependency scratch-render-fonts to v1.0.14 ([038fd3a](https://github.com/scratchfoundation/scratch-svg-renderer/commit/038fd3a6e99f7276c278e845e25b5f02e08e0b0b))
1087
+
1088
+ ## [2.0.5](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.0.4...v2.0.5) (2024-02-28)
1089
+
1090
+
1091
+ ### Bug Fixes
1092
+
1093
+ * **deps:** lock file maintenance ([99ffa48](https://github.com/scratchfoundation/scratch-svg-renderer/commit/99ffa484cd3d7cb87189b24923dc78af81f1ce87))
1094
+
1095
+ ## [2.0.4](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.0.3...v2.0.4) (2024-02-28)
1096
+
1097
+
1098
+ ### Bug Fixes
1099
+
1100
+ * **deps:** update dependency scratch-render-fonts to v1.0.13 ([06c526b](https://github.com/scratchfoundation/scratch-svg-renderer/commit/06c526b5fc53a7c76b8c31b01d4406e2753e6234))
1101
+
1102
+ ## [2.0.3](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.0.2...v2.0.3) (2024-02-28)
1103
+
1104
+
1105
+ ### Bug Fixes
1106
+
1107
+ * **deps:** lock file maintenance ([e287891](https://github.com/scratchfoundation/scratch-svg-renderer/commit/e287891964e0398bcd7554d55cdcb070a62b4892))
1108
+
1109
+ ## [2.0.2](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.0.1...v2.0.2) (2024-02-28)
1110
+
1111
+
1112
+ ### Bug Fixes
1113
+
1114
+ * **deps:** lock file maintenance ([06cd700](https://github.com/scratchfoundation/scratch-svg-renderer/commit/06cd70045a7d2ccc7720a70c529a3c106673b93e))
1115
+ * **deps:** update dependency scratch-render-fonts to v1.0.12 ([5b6f04a](https://github.com/scratchfoundation/scratch-svg-renderer/commit/5b6f04a8f5bf15d17071897828dee23a8f33c62b))
1116
+
1117
+ ## [2.0.1](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v2.0.0...v2.0.1) (2024-02-28)
1118
+
1119
+
1120
+ ### Bug Fixes
1121
+
1122
+ * **deps:** lock file maintenance ([363911e](https://github.com/scratchfoundation/scratch-svg-renderer/commit/363911e783dedb6b356a93578ea7840d894ebada))
1123
+
1124
+ # [2.0.0](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v1.0.20...v2.0.0) (2024-02-27)
1125
+
1126
+
1127
+ ### Bug Fixes
1128
+
1129
+ * **deps:** lock file maintenance ([3fcb12c](https://github.com/scratchfoundation/scratch-svg-renderer/commit/3fcb12ce5226b2d31c02a2e2330325a32819dff3))
1130
+
1131
+
1132
+ ### Features
1133
+
1134
+ * use isomorphic wrapper for dompurify ([079607a](https://github.com/scratchfoundation/scratch-svg-renderer/commit/079607a4af9fc006885145afd1105bdd07db73c6))
1135
+
1136
+
1137
+ ### BREAKING CHANGES
1138
+
1139
+ * may affect compatibility
1140
+
1141
+ ## [1.0.20](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v1.0.19...v1.0.20) (2024-02-27)
1142
+
1143
+
1144
+ ### Bug Fixes
1145
+
1146
+ * **deps:** update dependency scratch-render-fonts to v1.0.10 ([eb984ff](https://github.com/scratchfoundation/scratch-svg-renderer/commit/eb984ff931ccfe0ccbe5be80ddf0b80819b0612a))
1147
+
1148
+ ## [1.0.19](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v1.0.18...v1.0.19) (2024-02-27)
1149
+
1150
+
1151
+ ### Bug Fixes
1152
+
1153
+ * **deps:** lock file maintenance ([9c63c5c](https://github.com/scratchfoundation/scratch-svg-renderer/commit/9c63c5cf49f9dffeb1c72db35b3165e8c64456a2))
1154
+
1155
+ ## [1.0.18](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v1.0.17...v1.0.18) (2024-02-27)
1156
+
1157
+
1158
+ ### Bug Fixes
1159
+
1160
+ * **deps:** lock file maintenance ([4b05f92](https://github.com/scratchfoundation/scratch-svg-renderer/commit/4b05f928905c18e5ba5294b90cde9334cc06129b))
1161
+
1162
+ ## [1.0.17](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v1.0.16...v1.0.17) (2024-02-27)
1163
+
1164
+
1165
+ ### Bug Fixes
1166
+
1167
+ * **deps:** update dependency scratch-render-fonts to v1.0.9 ([7e33905](https://github.com/scratchfoundation/scratch-svg-renderer/commit/7e33905da9576d18850b6426a0934545ae4275be))
1168
+
1169
+ ## [1.0.16](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v1.0.15...v1.0.16) (2024-02-26)
1170
+
1171
+
1172
+ ### Bug Fixes
1173
+
1174
+ * **deps:** lock file maintenance ([d7a57f9](https://github.com/scratchfoundation/scratch-svg-renderer/commit/d7a57f9bc4bfbe89e798dc0d8a6e6d5f834151ca))
1175
+
1176
+ ## [1.0.15](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v1.0.14...v1.0.15) (2024-02-26)
1177
+
1178
+
1179
+ ### Bug Fixes
1180
+
1181
+ * **deps:** lock file maintenance ([3e07937](https://github.com/scratchfoundation/scratch-svg-renderer/commit/3e079375d97237b245b1b98d3c70c19c878c8c3a))
1182
+
1183
+ ## [1.0.14](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v1.0.13...v1.0.14) (2024-02-24)
1184
+
1185
+
1186
+ ### Bug Fixes
1187
+
1188
+ * **deps:** update dependency scratch-render-fonts to v1.0.7 ([31fd1d8](https://github.com/scratchfoundation/scratch-svg-renderer/commit/31fd1d8ba7751ab81a4fb185c964619a256e8d93))
1189
+
1190
+ ## [1.0.13](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v1.0.12...v1.0.13) (2024-02-24)
1191
+
1192
+
1193
+ ### Bug Fixes
1194
+
1195
+ * **deps:** update dependency scratch-semantic-release-config to v1.0.14 ([fde0e93](https://github.com/scratchfoundation/scratch-svg-renderer/commit/fde0e93ea051b5553d3e2101adea718b0a664ac9))
1196
+
1197
+ ## [1.0.12](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v1.0.11...v1.0.12) (2024-02-23)
1198
+
1199
+
1200
+ ### Bug Fixes
1201
+
1202
+ * **deps:** update dependency scratch-render-fonts to v1.0.6 ([7563d41](https://github.com/scratchfoundation/scratch-svg-renderer/commit/7563d41edef9fb8b8ae4f3c1e1687f1845e7831f))
1203
+
1204
+ ## [1.0.11](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v1.0.10...v1.0.11) (2024-02-22)
1205
+
1206
+
1207
+ ### Bug Fixes
1208
+
1209
+ * **deps:** update dependency scratch-semantic-release-config to v1.0.13 ([8cec2fb](https://github.com/scratchfoundation/scratch-svg-renderer/commit/8cec2fbe2dc5ae45cc9bd159ae93608ac79abcc8))
1210
+
1211
+ ## [1.0.10](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v1.0.9...v1.0.10) (2024-02-22)
1212
+
1213
+
1214
+ ### Bug Fixes
1215
+
1216
+ * **deps:** update dependency scratch-render-fonts to v1.0.5 ([5007abd](https://github.com/scratchfoundation/scratch-svg-renderer/commit/5007abddd12fdade1ee1a74687ff2a98394fd894))
1217
+
1218
+ ## [1.0.9](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v1.0.8...v1.0.9) (2024-02-22)
1219
+
1220
+
1221
+ ### Bug Fixes
1222
+
1223
+ * **deps:** update dependency eslint-config-scratch to v9.0.6 ([ec5f5be](https://github.com/scratchfoundation/scratch-svg-renderer/commit/ec5f5be23c341c9cf1c21fb3912af9f691dad65d))
1224
+
1225
+ ## [1.0.8](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v1.0.7...v1.0.8) (2024-02-22)
1226
+
1227
+
1228
+ ### Bug Fixes
1229
+
1230
+ * **deps:** update dependency scratch-semantic-release-config to v1.0.12 ([4bc5204](https://github.com/scratchfoundation/scratch-svg-renderer/commit/4bc52046575ec8eb99b21c578384a276af2346da))
1231
+
1232
+ ## [1.0.7](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v1.0.6...v1.0.7) (2024-02-22)
1233
+
1234
+
1235
+ ### Bug Fixes
1236
+
1237
+ * **deps:** update dependency eslint-config-scratch to v9.0.5 ([c42c376](https://github.com/scratchfoundation/scratch-svg-renderer/commit/c42c37619835fe07b963d0163871ff3b2d84ed76))
1238
+
1239
+ ## [1.0.6](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v1.0.5...v1.0.6) (2024-02-22)
1240
+
1241
+
1242
+ ### Bug Fixes
1243
+
1244
+ * **deps:** update dependency scratch-semantic-release-config to v1.0.11 ([7da1695](https://github.com/scratchfoundation/scratch-svg-renderer/commit/7da1695d43f6dfcf7bcbbcb1b1b72a4301fe8838))
1245
+
1246
+ ## [1.0.5](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v1.0.4...v1.0.5) (2024-02-21)
1247
+
1248
+
1249
+ ### Bug Fixes
1250
+
1251
+ * **deps:** update dependency scratch-render-fonts to v1.0.2 ([b216f0f](https://github.com/scratchfoundation/scratch-svg-renderer/commit/b216f0f1add66090a8d631f44311180439d51ccd))
1252
+
1253
+ ## [1.0.4](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v1.0.3...v1.0.4) (2024-02-21)
1254
+
1255
+
1256
+ ### Bug Fixes
1257
+
1258
+ * **deps:** fix scratch-render-fonts peer dep ([dc05bab](https://github.com/scratchfoundation/scratch-svg-renderer/commit/dc05bab9920e0b48d18adab297a9c04be918d5c2))
1259
+
1260
+ ## [1.0.3](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v1.0.2...v1.0.3) (2024-02-21)
1261
+
1262
+
1263
+ ### Bug Fixes
1264
+
1265
+ * **deps:** update dependency eslint-config-scratch to v9.0.4 ([476d022](https://github.com/scratchfoundation/scratch-svg-renderer/commit/476d0223d0e43fe9e4dc2f321115005bcf16ac0e))
1266
+
1267
+ ## [1.0.2](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v1.0.1...v1.0.2) (2024-02-21)
1268
+
1269
+
1270
+ ### Bug Fixes
1271
+
1272
+ * **deps:** lock file maintenance ([9dce884](https://github.com/scratchfoundation/scratch-svg-renderer/commit/9dce884e3ebc6f3ea03f33bf48e3ad85e65fef1e))
1273
+
1274
+ ## [1.0.1](https://github.com/scratchfoundation/scratch-svg-renderer/compare/v1.0.0...v1.0.1) (2024-02-16)
1275
+
1276
+
1277
+ ### Bug Fixes
1278
+
1279
+ * **deps:** unpin non-dev dependencies ([fca6a63](https://github.com/scratchfoundation/scratch-svg-renderer/commit/fca6a631112f2b7097f65c8049531ccbead130e6))
1280
+
1281
+ # 1.0.0 (2023-12-20)
1282
+
1283
+
1284
+ ### Bug Fixes
1285
+
1286
+ * **deps:** update dependency scratch-render-fonts to v1.0.0-prerelease.20221102164332 ([e49c89f](https://github.com/scratchfoundation/scratch-svg-renderer/commit/e49c89f45a7e61464d7d60a847b93cb092d09f4f))
1287
+ * **deps:** update dependency scratch-render-fonts to v1.0.0-prerelease.20231017225105 ([2765caf](https://github.com/scratchfoundation/scratch-svg-renderer/commit/2765cafdf6c0d4e8780097a1c885f2bb08c5ccff))
1288
+ * **package:** update scratch-render-fonts to version 1.0.0-prerelease.20180605131737 ([3941d1c](https://github.com/scratchfoundation/scratch-svg-renderer/commit/3941d1ccf3a6a60f7ba6f05478c51436de37d0e5))
1289
+ * **package:** update scratch-render-fonts to version 1.0.0-prerelease.20180906193204 ([#47](https://github.com/scratchfoundation/scratch-svg-renderer/issues/47)) ([3c96b40](https://github.com/scratchfoundation/scratch-svg-renderer/commit/3c96b40543117133cfc8b866d0f97fc5a8e1d6c3))
1290
+ * **package:** update transformation-matrix to version 1.15.0 ([af225a0](https://github.com/scratchfoundation/scratch-svg-renderer/commit/af225a066ba99d431975e9441e1283befe647967))
1291
+
1292
+
1293
+ ### Features
1294
+
1295
+ * sanitize css [@import](https://github.com/import) rules ([a3ba9eb](https://github.com/scratchfoundation/scratch-svg-renderer/commit/a3ba9eb15036b6983a6b7713d0f1d5114e00329f))
1296
+
1297
+
1298
+ ### Reverts
1299
+
1300
+ * Revert "Update to latest in scratch-render" ([b3b6d25](https://github.com/scratchfoundation/scratch-svg-renderer/commit/b3b6d25c3d6636b81df0e05d4484389a555f56c0))