astro-opengraph-images 1.14.2 → 1.15.0-dev.891
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/CHANGELOG.md +305 -332
- package/README.md +3 -5
- package/bun.lock +666 -423
- package/dist/extract.d.ts +1 -1
- package/dist/extract.d.ts.map +1 -1
- package/dist/extract.js +33 -35
- package/dist/extract.js.map +1 -1
- package/dist/hook.d.ts +1 -1
- package/dist/hook.d.ts.map +1 -1
- package/dist/hook.js +13 -7
- package/dist/hook.js.map +1 -1
- package/dist/index.d.ts +30 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -3
- package/dist/index.js.map +1 -1
- package/dist/integration.d.ts +2 -2
- package/dist/integration.d.ts.map +1 -1
- package/dist/integration.js +1 -1
- package/dist/integration.js.map +1 -1
- package/dist/presets/background-image.d.ts +3 -0
- package/dist/presets/background-image.d.ts.map +1 -0
- package/dist/presets/background-image.js +11 -0
- package/dist/presets/background-image.js.map +1 -0
- package/dist/presets/black-and-white.d.ts +3 -0
- package/dist/presets/black-and-white.d.ts.map +1 -0
- package/dist/presets/{blackAndWhite.js → black-and-white.js} +3 -3
- package/dist/presets/black-and-white.js.map +1 -0
- package/dist/presets/branded-logo.d.ts +3 -0
- package/dist/presets/branded-logo.d.ts.map +1 -0
- package/dist/presets/{brandedLogo.js → branded-logo.js} +4 -4
- package/dist/presets/branded-logo.js.map +1 -0
- package/dist/presets/custom-property.d.ts +3 -0
- package/dist/presets/custom-property.d.ts.map +1 -0
- package/dist/presets/custom-property.js +12 -0
- package/dist/presets/custom-property.js.map +1 -0
- package/dist/presets/gradients.d.ts +2 -2
- package/dist/presets/gradients.d.ts.map +1 -1
- package/dist/presets/gradients.js +2 -2
- package/dist/presets/gradients.js.map +1 -1
- package/dist/presets/index.d.ts +11 -11
- package/dist/presets/index.d.ts.map +1 -1
- package/dist/presets/index.js +6 -6
- package/dist/presets/index.js.map +1 -1
- package/dist/presets/podcast.d.ts +2 -2
- package/dist/presets/podcast.d.ts.map +1 -1
- package/dist/presets/podcast.js +3 -3
- package/dist/presets/podcast.js.map +1 -1
- package/dist/presets/rauchg.d.ts +2 -2
- package/dist/presets/rauchg.d.ts.map +1 -1
- package/dist/presets/rauchg.js +2 -2
- package/dist/presets/rauchg.js.map +1 -1
- package/dist/presets/render-examples.d.ts +2 -0
- package/dist/presets/render-examples.d.ts.map +1 -0
- package/dist/presets/{renderExamples.js → render-examples.js} +17 -10
- package/dist/presets/render-examples.js.map +1 -0
- package/dist/presets/simple-blog.d.ts +3 -0
- package/dist/presets/simple-blog.d.ts.map +1 -0
- package/dist/presets/simple-blog.js +7 -0
- package/dist/presets/simple-blog.js.map +1 -0
- package/dist/presets/tailwind.d.ts +2 -2
- package/dist/presets/tailwind.d.ts.map +1 -1
- package/dist/presets/tailwind.js +2 -4
- package/dist/presets/tailwind.js.map +1 -1
- package/dist/presets/vercel.d.ts +2 -2
- package/dist/presets/vercel.d.ts.map +1 -1
- package/dist/presets/vercel.js +2 -2
- package/dist/presets/vercel.js.map +1 -1
- package/dist/presets/wave-svg.d.ts +3 -0
- package/dist/presets/wave-svg.d.ts.map +1 -0
- package/dist/presets/wave-svg.js +7 -0
- package/dist/presets/wave-svg.js.map +1 -0
- package/dist/types.d.ts +13 -13
- package/dist/types.d.ts.map +1 -1
- package/dist/util.d.ts +3 -3
- package/dist/util.d.ts.map +1 -1
- package/dist/util.js +16 -12
- package/dist/util.js.map +1 -1
- package/dist/util.test.js +17 -17
- package/dist/util.test.js.map +1 -1
- package/package.json +36 -30
- package/src/extract.ts +58 -57
- package/src/hook.ts +35 -14
- package/src/index.ts +36 -7
- package/src/integration.ts +34 -26
- package/src/presets/background-image.tsx +33 -0
- package/src/presets/{blackAndWhite.tsx → black-and-white.tsx} +37 -34
- package/src/presets/{brandedLogo.tsx → branded-logo.tsx} +86 -78
- package/src/presets/{customProperty.tsx → custom-property.tsx} +31 -22
- package/src/presets/gradients.tsx +45 -40
- package/src/presets/index.ts +25 -25
- package/src/presets/podcast.tsx +48 -41
- package/src/presets/rauchg.tsx +62 -62
- package/src/presets/{renderExamples.ts → render-examples.ts} +66 -57
- package/src/presets/{simpleBlog.tsx → simple-blog.tsx} +25 -16
- package/src/presets/tailwind.tsx +32 -18
- package/src/presets/vercel.tsx +52 -47
- package/src/presets/{waveSvg.tsx → wave-svg.tsx} +32 -26
- package/src/types.ts +29 -17
- package/src/util.test.ts +64 -64
- package/src/util.ts +64 -47
- package/LICENSE +0 -674
- package/dist/presets/backgroundImage.d.ts +0 -3
- package/dist/presets/backgroundImage.d.ts.map +0 -1
- package/dist/presets/backgroundImage.js +0 -8
- package/dist/presets/backgroundImage.js.map +0 -1
- package/dist/presets/blackAndWhite.d.ts +0 -3
- package/dist/presets/blackAndWhite.d.ts.map +0 -1
- package/dist/presets/blackAndWhite.js.map +0 -1
- package/dist/presets/brandedLogo.d.ts +0 -3
- package/dist/presets/brandedLogo.d.ts.map +0 -1
- package/dist/presets/brandedLogo.js.map +0 -1
- package/dist/presets/customProperty.d.ts +0 -3
- package/dist/presets/customProperty.d.ts.map +0 -1
- package/dist/presets/customProperty.js +0 -12
- package/dist/presets/customProperty.js.map +0 -1
- package/dist/presets/renderExamples.d.ts +0 -2
- package/dist/presets/renderExamples.d.ts.map +0 -1
- package/dist/presets/renderExamples.js.map +0 -1
- package/dist/presets/simpleBlog.d.ts +0 -3
- package/dist/presets/simpleBlog.d.ts.map +0 -1
- package/dist/presets/simpleBlog.js +0 -7
- package/dist/presets/simpleBlog.js.map +0 -1
- package/dist/presets/waveSvg.d.ts +0 -3
- package/dist/presets/waveSvg.d.ts.map +0 -1
- package/dist/presets/waveSvg.js +0 -7
- package/dist/presets/waveSvg.js.map +0 -1
- package/src/presets/backgroundImage.tsx +0 -19
package/CHANGELOG.md
CHANGED
|
@@ -1,348 +1,321 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## [1.
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [1.15.0](https://github.com/shepherdjerred/monorepo/compare/astro-opengraph-images-v1.14.3...astro-opengraph-images-v1.15.0) (2026-04-05)
|
|
4
|
+
|
|
5
|
+
Maintenance release with dependency updates and build system improvements.
|
|
4
6
|
|
|
7
|
+
## [1.14.3](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.14.2...v1.14.3) (2026-02-08)
|
|
5
8
|
|
|
6
9
|
### Bug Fixes
|
|
7
10
|
|
|
8
|
-
|
|
11
|
+
- **deps:** update dependency @shepherdjerred/dagger-utils to ^0.8.0 ([c961730](https://github.com/shepherdjerred/astro-opengraph-images/commit/c9617302b044410dc23988a5c41bf68df41cefe6))
|
|
12
|
+
- **deps:** update dependency jsdom to v28 ([8abd356](https://github.com/shepherdjerred/astro-opengraph-images/commit/8abd3568684c520fdb8357b8edaf6b7a5247dd79))
|
|
9
13
|
|
|
10
|
-
## [1.14.
|
|
14
|
+
## [1.14.2](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.14.1...v1.14.2) (2026-01-20)
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
- use bunx for npm publish in Dagger pipeline ([8777819](https://github.com/shepherdjerred/astro-opengraph-images/commit/8777819df948cced2aafc22811496947fc365393))
|
|
11
19
|
|
|
20
|
+
## [1.14.1](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.14.0...v1.14.1) (2026-01-18)
|
|
12
21
|
|
|
13
22
|
### Bug Fixes
|
|
14
23
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
24
|
+
- **ci:** move example tests to GitHub Actions to avoid Dagger symlink loop ([ac92cbb](https://github.com/shepherdjerred/astro-opengraph-images/commit/ac92cbbf440a6fe19c3e9976fbe82447988c3273))
|
|
25
|
+
- **deps:** update dependency @shepherdjerred/dagger-utils to ^0.6.0 ([82b7f14](https://github.com/shepherdjerred/astro-opengraph-images/commit/82b7f14aace728a8706c9ddd1b20e77e527d97be))
|
|
26
|
+
- **deps:** update dependency satori to ^0.19.0 ([715a685](https://github.com/shepherdjerred/astro-opengraph-images/commit/715a68548bdf7b7ee3fd96c1ba80f04d1a7962a5))
|
|
18
27
|
|
|
19
28
|
## [1.14.0](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.13.1...v1.14.0) (2026-01-04)
|
|
20
29
|
|
|
30
|
+
### Features
|
|
31
|
+
|
|
32
|
+
- **ci:** migrate to Dagger with GitHub Actions and release-please integration ([c03a2d3](https://github.com/shepherdjerred/astro-opengraph-images/commit/c03a2d34cbd8afbc368893b49901af076307cb1a))
|
|
33
|
+
- **ci:** migrate to Dagger with GitHub Actions and release-please integration ([b689e51](https://github.com/shepherdjerred/astro-opengraph-images/commit/b689e51bd8b7a058e76b0dc4bcaf771b60137952))
|
|
34
|
+
|
|
35
|
+
### Bug Fixes
|
|
36
|
+
|
|
37
|
+
- add bunfig.toml for JSX configuration ([401faa3](https://github.com/shepherdjerred/astro-opengraph-images/commit/401faa3fd0b3119cf97c398c1f4b804e2d84aa5a))
|
|
38
|
+
- add fs import and configure JSX for bun compatibility ([f6bbb23](https://github.com/shepherdjerred/astro-opengraph-images/commit/f6bbb231bf05fa8681c9d9b473901230827d73a1))
|
|
39
|
+
- **deps:** update dependency @shepherdjerred/dagger-utils to ^0.5.0 ([#185](https://github.com/shepherdjerred/astro-opengraph-images/issues/185)) ([d0e5f13](https://github.com/shepherdjerred/astro-opengraph-images/commit/d0e5f13f096a331c5cc6d7996c357d0ffb1e077a))
|
|
40
|
+
- **deps:** update dependency jsdom to v27 ([ded5e18](https://github.com/shepherdjerred/astro-opengraph-images/commit/ded5e18a866d2a6a22c00efdcaf2e75e7d131776))
|
|
41
|
+
- **deps:** update dependency satori to ^0.18.0 ([337a788](https://github.com/shepherdjerred/astro-opengraph-images/commit/337a7885ed4d020e1cc60a2a6e743983639cec5b))
|
|
42
|
+
- handle URL-encoded paths and add emoji support ([#188](https://github.com/shepherdjerred/astro-opengraph-images/issues/188)) ([08bf28b](https://github.com/shepherdjerred/astro-opengraph-images/commit/08bf28bb422090b58b1815cc7ddad0245ce228df))
|
|
43
|
+
- remove explicit React import for new JSX transform ([b768047](https://github.com/shepherdjerred/astro-opengraph-images/commit/b7680474f9aabc75741c7eb9be0fa1039854684b))
|
|
44
|
+
- Remove fortc.com ([51db246](https://github.com/shepherdjerred/astro-opengraph-images/commit/51db24618dd8676c6922898067b3344e56e1650f))
|
|
45
|
+
- use createElement instead of JSX in custom example ([a9c3b45](https://github.com/shepherdjerred/astro-opengraph-images/commit/a9c3b45fd1fc97a60e0f7a687cc5cfdef052b1e7))
|
|
46
|
+
|
|
47
|
+
## [1.13.1](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.13.0...v1.13.1) (2025-06-15)
|
|
48
|
+
|
|
49
|
+
### Bug Fixes
|
|
50
|
+
|
|
51
|
+
- **deps:** update npm ([b9fcade](https://github.com/shepherdjerred/astro-opengraph-images/commit/b9fcade117d727d0ab2d1f697e06ec29356010bb))
|
|
52
|
+
- **deps:** update npm ([613f9f5](https://github.com/shepherdjerred/astro-opengraph-images/commit/613f9f51c0ec3842e5a19325d6a856812eff87cb))
|
|
53
|
+
|
|
54
|
+
## [1.13.0](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.12.3...v1.13.0) (2025-06-01)
|
|
55
|
+
|
|
56
|
+
### Features
|
|
57
|
+
|
|
58
|
+
- **docs:** add guide for loading local images with base64 encoding in custom renderers ([a48d338](https://github.com/shepherdjerred/astro-opengraph-images/commit/a48d33872ba3b328c8f742beaf09d1a59148f125))
|
|
59
|
+
|
|
60
|
+
### Bug Fixes
|
|
61
|
+
|
|
62
|
+
- **deps:** update npm ([9639719](https://github.com/shepherdjerred/astro-opengraph-images/commit/963971966ecfef257dbd99f3107ef5e1504e4f82))
|
|
63
|
+
|
|
64
|
+
## [1.12.3](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.12.2...v1.12.3) (2025-04-17)
|
|
65
|
+
|
|
66
|
+
### Bug Fixes
|
|
67
|
+
|
|
68
|
+
- use path.relative for og:image check, properly handle ntfs paths & add more comments ([d45c4cd](https://github.com/shepherdjerred/astro-opengraph-images/commit/d45c4cd0d1b9037829f64b806edd0e46e82813d3))
|
|
69
|
+
|
|
70
|
+
## [1.12.2](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.12.1...v1.12.2) (2025-04-16)
|
|
71
|
+
|
|
72
|
+
### Bug Fixes
|
|
73
|
+
|
|
74
|
+
- **deps:** update dependency jsdom to v26.1.0 ([0f3737b](https://github.com/shepherdjerred/astro-opengraph-images/commit/0f3737b2764b38523cfbecc56061c76754fd6042))
|
|
75
|
+
- **deps:** update npm ([20adbbb](https://github.com/shepherdjerred/astro-opengraph-images/commit/20adbbb1f8253a5693e42b3fabfd33f4c4fe415c))
|
|
76
|
+
- **plugin:** correct outDir path handling in buildDoneHook ([0838ede](https://github.com/shepherdjerred/astro-opengraph-images/commit/0838ede01e1a62072726e7aef39053b0cf3018e4))
|
|
77
|
+
|
|
78
|
+
## [1.12.1](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.12.0...v1.12.1) (2025-03-13)
|
|
79
|
+
|
|
80
|
+
### Bug Fixes
|
|
81
|
+
|
|
82
|
+
- update README ([0445a43](https://github.com/shepherdjerred/astro-opengraph-images/commit/0445a4354ade6ef8c70ec88d4c050a0534d5f317))
|
|
83
|
+
|
|
84
|
+
## [1.12.0](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.11.7...v1.12.0) (2025-03-13)
|
|
21
85
|
|
|
22
86
|
### Features
|
|
23
87
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
## [1.
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
## [1.
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
### Bug Fixes
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
###
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
###
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
### Bug Fixes
|
|
260
|
-
|
|
261
|
-
* remove type ([0400a2e](https://github.com/shepherdjerred/astro-opengraph-images/commit/0400a2e71d33dcd3fbc5e595e9f984f14097118b))
|
|
262
|
-
|
|
263
|
-
## [1.6.1](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.6.0...v1.6.1) (2024-07-01)
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
### Bug Fixes
|
|
267
|
-
|
|
268
|
-
* correct preset return types ([21e668a](https://github.com/shepherdjerred/astro-opengraph-images/commit/21e668acc0c426a07435af73e4ccbae351d83d40))
|
|
269
|
-
|
|
270
|
-
## [1.6.0](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.5.0...v1.6.0) (2024-07-01)
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
### Features
|
|
274
|
-
|
|
275
|
-
* polish ([8b46f0b](https://github.com/shepherdjerred/astro-opengraph-images/commit/8b46f0bb710e805c01e4658a4fda02793004e78c))
|
|
276
|
-
|
|
277
|
-
## [1.5.0](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.4.1...v1.5.0) (2024-07-01)
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
### Features
|
|
281
|
-
|
|
282
|
-
* simplify ([6236085](https://github.com/shepherdjerred/astro-opengraph-images/commit/6236085749e19cc93d1df06c494a18e78a9c2b27))
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
### Bug Fixes
|
|
286
|
-
|
|
287
|
-
* correctly determine paths ([adc97a2](https://github.com/shepherdjerred/astro-opengraph-images/commit/adc97a2638b6a9593eea7f61939a8931f6249c08))
|
|
288
|
-
* **deps:** update dependency astro-opengraph-images to v1.4.1 ([9aaeeb1](https://github.com/shepherdjerred/astro-opengraph-images/commit/9aaeeb1d4226d89eac726053fe18edd7de4955f0))
|
|
289
|
-
* require at least one font to be defined ([58eae4c](https://github.com/shepherdjerred/astro-opengraph-images/commit/58eae4ccc400d201e4b6b8c100f9884cc64d7927))
|
|
290
|
-
|
|
291
|
-
## [1.4.1](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.4.0...v1.4.1) (2024-06-30)
|
|
292
|
-
|
|
293
|
-
### Bug Fixes
|
|
294
|
-
|
|
295
|
-
- correct image ([de0a076](https://github.com/shepherdjerred/astro-opengraph-images/commit/de0a07680b2e31fbd3ee2ca615c927e5c1823f49))
|
|
296
|
-
- don't require width and height ([1793584](https://github.com/shepherdjerred/astro-opengraph-images/commit/17935846ec2b29fe45e1612a5bb76de0fecdbc56))
|
|
297
|
-
- use correct image ([d0398fa](https://github.com/shepherdjerred/astro-opengraph-images/commit/d0398fa9c4639374df608901f8ff8c5e47c26b49))
|
|
298
|
-
|
|
299
|
-
## [1.4.0](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.3.1...v1.4.0) (2024-06-30)
|
|
300
|
-
|
|
301
|
-
### Features
|
|
302
|
-
|
|
303
|
-
- add new presets ([8a54687](https://github.com/shepherdjerred/astro-opengraph-images/commit/8a5468741998557dc740ffd5b053787ccfb567b8))
|
|
304
|
-
|
|
305
|
-
## [1.3.1](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.3.0...v1.3.1) (2024-06-29)
|
|
306
|
-
|
|
307
|
-
### Bug Fixes
|
|
308
|
-
|
|
309
|
-
- update import ([585b310](https://github.com/shepherdjerred/astro-opengraph-images/commit/585b3100ec97f3634a67d8b8a9694a56380fd388))
|
|
310
|
-
|
|
311
|
-
## [1.3.0](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.2.1...v1.3.0) (2024-06-29)
|
|
312
|
-
|
|
313
|
-
### Features
|
|
314
|
-
|
|
315
|
-
- use React jsx ([b2e8622](https://github.com/shepherdjerred/astro-opengraph-images/commit/b2e862217788735eacebf20396951193dfdb894d))
|
|
316
|
-
|
|
317
|
-
## [1.2.1](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.2.0...v1.2.1) (2024-06-29)
|
|
318
|
-
|
|
319
|
-
### Bug Fixes
|
|
320
|
-
|
|
321
|
-
- resolve merge conflict ([ba0c596](https://github.com/shepherdjerred/astro-opengraph-images/commit/ba0c596b3f10a95d0cbe67bf9eef51b552fc7afe))
|
|
322
|
-
|
|
323
|
-
## [1.2.0](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.1.0...v1.2.0) (2024-06-29)
|
|
324
|
-
|
|
325
|
-
### Features
|
|
326
|
-
|
|
327
|
-
- simplify ([d82ab03](https://github.com/shepherdjerred/astro-opengraph-images/commit/d82ab031aa971437a9b02999be52c04a8a9e089c))
|
|
328
|
-
- simplify ([0e1e7c6](https://github.com/shepherdjerred/astro-opengraph-images/commit/0e1e7c6b1d4effa4fb0caa5fcf676168d3b03dd2))
|
|
329
|
-
|
|
330
|
-
### Bug Fixes
|
|
331
|
-
|
|
332
|
-
- fix json ([0799f5f](https://github.com/shepherdjerred/astro-opengraph-images/commit/0799f5f055d12a3cabd9cc72dd30c9cef9219b84))
|
|
333
|
-
|
|
334
|
-
## [1.1.0](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.0.0...v1.1.0) (2024-06-29)
|
|
335
|
-
|
|
336
|
-
### Features
|
|
337
|
-
|
|
338
|
-
- simplify setup ([08a922e](https://github.com/shepherdjerred/astro-opengraph-images/commit/08a922e7d096930e3af40865d34ac18c480384fa))
|
|
339
|
-
|
|
340
|
-
## 1.0.0 (2024-06-28)
|
|
341
|
-
|
|
342
|
-
### Features
|
|
343
|
-
|
|
344
|
-
- init ([a7b0623](https://github.com/shepherdjerred/astro-opengraph-images/commit/a7b06237cec0b4c7228f5d91a07c03d168395d52))
|
|
345
|
-
|
|
346
|
-
### Bug Fixes
|
|
347
|
-
|
|
88
|
+
- use Earthly for CI ([72c0d6b](https://github.com/shepherdjerred/astro-opengraph-images/commit/72c0d6bd95293be919b640a2b09c799ca2d8a2ea))
|
|
89
|
+
|
|
90
|
+
### Bug Fixes
|
|
91
|
+
|
|
92
|
+
- **deps:** update dependency jsdom to v26 ([874f2d5](https://github.com/shepherdjerred/astro-opengraph-images/commit/874f2d5a8795b0fd990de3aafa556c03db054d3c))
|
|
93
|
+
- **deps:** update npm ([4e3e51a](https://github.com/shepherdjerred/astro-opengraph-images/commit/4e3e51aad322c6901606c2a652ccbeb513cce16d))
|
|
94
|
+
- lockfile ([8a7de4f](https://github.com/shepherdjerred/astro-opengraph-images/commit/8a7de4f9f681210746f1491ae285d84656e38656))
|
|
95
|
+
- reviewer ([fdb470d](https://github.com/shepherdjerred/astro-opengraph-images/commit/fdb470d9befdea1af56d4d9d59cafe4467933d87))
|
|
96
|
+
- tests ([f89e00c](https://github.com/shepherdjerred/astro-opengraph-images/commit/f89e00c3eda59d16930de5982c99e0aac5448b3f))
|
|
97
|
+
|
|
98
|
+
## [1.11.7](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.11.6...v1.11.7) (2024-11-10)
|
|
99
|
+
|
|
100
|
+
### Bug Fixes
|
|
101
|
+
|
|
102
|
+
- **deps:** update dependency satori to v0.11.3 ([4788d22](https://github.com/shepherdjerred/astro-opengraph-images/commit/4788d22365000761e3849bcd9bc39771421c0937))
|
|
103
|
+
|
|
104
|
+
## [1.11.6](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.11.5...v1.11.6) (2024-10-06)
|
|
105
|
+
|
|
106
|
+
### Bug Fixes
|
|
107
|
+
|
|
108
|
+
- **deps:** update dependency satori to v0.11.2 ([76d8412](https://github.com/shepherdjerred/astro-opengraph-images/commit/76d8412c730319bb17a11e50fa9eb24175c88430))
|
|
109
|
+
|
|
110
|
+
## [1.11.5](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.11.4...v1.11.5) (2024-10-05)
|
|
111
|
+
|
|
112
|
+
### Bug Fixes
|
|
113
|
+
|
|
114
|
+
- update package-lock of example ([5bab5d5](https://github.com/shepherdjerred/astro-opengraph-images/commit/5bab5d5b253931af2ee4e73e3fabbc4ea318cbb2))
|
|
115
|
+
|
|
116
|
+
## [1.11.4](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.11.3...v1.11.4) (2024-10-05)
|
|
117
|
+
|
|
118
|
+
### Bug Fixes
|
|
119
|
+
|
|
120
|
+
- **deps:** update dependency jsdom to v25.0.1 ([4b4f12c](https://github.com/shepherdjerred/astro-opengraph-images/commit/4b4f12cdaf93862038413fdbf20b80241aeeb1d7))
|
|
121
|
+
- fixed test cases on Windows ([9183350](https://github.com/shepherdjerred/astro-opengraph-images/commit/9183350f751f9951620e05050dc3882e28ff1580))
|
|
122
|
+
|
|
123
|
+
## [1.11.3](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.11.2...v1.11.3) (2024-08-25)
|
|
124
|
+
|
|
125
|
+
### Bug Fixes
|
|
126
|
+
|
|
127
|
+
- **deps:** update dependency jsdom to v24.1.2 ([6f3cf83](https://github.com/shepherdjerred/astro-opengraph-images/commit/6f3cf83fdaf77525d7226af61256f94ca6f6f9f9))
|
|
128
|
+
- **deps:** update dependency jsdom to v24.1.3 ([323c9ae](https://github.com/shepherdjerred/astro-opengraph-images/commit/323c9ae91e427defb1e0f5c1810a925796299237))
|
|
129
|
+
- **deps:** update dependency jsdom to v25 ([3e05681](https://github.com/shepherdjerred/astro-opengraph-images/commit/3e0568117ae00e2cf3973886c8ca6e027d4e2daa))
|
|
130
|
+
|
|
131
|
+
## [1.11.2](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.11.1...v1.11.2) (2024-08-11)
|
|
132
|
+
|
|
133
|
+
### Bug Fixes
|
|
134
|
+
|
|
135
|
+
- **deps:** update npm ([51aae20](https://github.com/shepherdjerred/astro-opengraph-images/commit/51aae202981a0613c80b9ab1a75613ccb396116c))
|
|
136
|
+
|
|
137
|
+
## [1.11.1](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.11.0...v1.11.1) (2024-08-04)
|
|
138
|
+
|
|
139
|
+
### Bug Fixes
|
|
140
|
+
|
|
141
|
+
- use correct type for verbose ([8876098](https://github.com/shepherdjerred/astro-opengraph-images/commit/88760989def15079c5ab2aefac7ce8e7fb3ad0ad))
|
|
142
|
+
|
|
143
|
+
## [1.11.0](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.10.0...v1.11.0) (2024-08-04)
|
|
144
|
+
|
|
145
|
+
### Features
|
|
146
|
+
|
|
147
|
+
- add verbose option ([0a640ae](https://github.com/shepherdjerred/astro-opengraph-images/commit/0a640aec1457d275c9de0cefafb7bb8460ee5017))
|
|
148
|
+
|
|
149
|
+
## [1.10.0](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.9.0...v1.10.0) (2024-08-04)
|
|
150
|
+
|
|
151
|
+
### Features
|
|
152
|
+
|
|
153
|
+
- add document to render input ([9b41de8](https://github.com/shepherdjerred/astro-opengraph-images/commit/9b41de85c6bf42bee585c2a52bc2363e75f85763))
|
|
154
|
+
|
|
155
|
+
## [1.9.0](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.8.2...v1.9.0) (2024-08-04)
|
|
156
|
+
|
|
157
|
+
### Features
|
|
158
|
+
|
|
159
|
+
- add custom property preset ([9ebff27](https://github.com/shepherdjerred/astro-opengraph-images/commit/9ebff2708d951b27f125cc7d8a0a44276446765d))
|
|
160
|
+
- update to eslint 9 ([d19f8fc](https://github.com/shepherdjerred/astro-opengraph-images/commit/d19f8fcd5670088a0563af41fd533a3f28af212f))
|
|
161
|
+
|
|
162
|
+
### Bug Fixes
|
|
163
|
+
|
|
164
|
+
- **deps:** update dependency astro-opengraph-images to v1.8.2 ([f20bf7a](https://github.com/shepherdjerred/astro-opengraph-images/commit/f20bf7a6497aae31c8ab1546bdc5aa10c946eef5))
|
|
165
|
+
|
|
166
|
+
## [1.8.2](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.8.1...v1.8.2) (2024-07-28)
|
|
167
|
+
|
|
168
|
+
### Bug Fixes
|
|
169
|
+
|
|
170
|
+
- **deps:** update dependency jsdom to v24.1.1 ([30d1506](https://github.com/shepherdjerred/astro-opengraph-images/commit/30d15061e07bbd0f65d3daa988c1788944fcfda7))
|
|
171
|
+
- **deps:** update npm ([3ab6868](https://github.com/shepherdjerred/astro-opengraph-images/commit/3ab68680992c923443d9eb3aa0bdc37fc4ff67df))
|
|
172
|
+
- **deps:** update npm ([19bd9d6](https://github.com/shepherdjerred/astro-opengraph-images/commit/19bd9d6ed48103d8278ee6e3baaedfcc5e587a4b))
|
|
173
|
+
|
|
174
|
+
## [1.8.1](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.8.0...v1.8.1) (2024-07-16)
|
|
175
|
+
|
|
176
|
+
### Bug Fixes
|
|
177
|
+
|
|
178
|
+
- require react ([e59bb2c](https://github.com/shepherdjerred/astro-opengraph-images/commit/e59bb2cf9600734e8b41e2aaa133ab9fa761206b))
|
|
179
|
+
|
|
180
|
+
## [1.8.0](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.7.2...v1.8.0) (2024-07-16)
|
|
181
|
+
|
|
182
|
+
### Features
|
|
183
|
+
|
|
184
|
+
- don't require react ([b724b15](https://github.com/shepherdjerred/astro-opengraph-images/commit/b724b158f29e88318dc0467b497b78367823fefa))
|
|
185
|
+
|
|
186
|
+
## [1.7.2](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.7.1...v1.7.2) (2024-07-16)
|
|
187
|
+
|
|
188
|
+
### Bug Fixes
|
|
189
|
+
|
|
190
|
+
- **deps:** update dependency @astrojs/check to ^0.8.0 ([9df8d2c](https://github.com/shepherdjerred/astro-opengraph-images/commit/9df8d2c3037c55c15828b953bd6d0cfb2495c12e))
|
|
191
|
+
- **deps:** update dependency satori to v0.10.14 ([cea07df](https://github.com/shepherdjerred/astro-opengraph-images/commit/cea07df65264c1ff3b5099618ed8f2b3cc4ab7ad))
|
|
192
|
+
|
|
193
|
+
## [1.7.1](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.7.0...v1.7.1) (2024-07-04)
|
|
194
|
+
|
|
195
|
+
### Bug Fixes
|
|
196
|
+
|
|
197
|
+
- relative paths being handled as absolute ones ([bfd1174](https://github.com/shepherdjerred/astro-opengraph-images/commit/bfd117431a793e61926aed08e2f9474a87733918))
|
|
198
|
+
|
|
199
|
+
## [1.7.0](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.6.6...v1.7.0) (2024-07-03)
|
|
200
|
+
|
|
201
|
+
### Features
|
|
202
|
+
|
|
203
|
+
- add windows support & proper path handling ([fe6c5f4](https://github.com/shepherdjerred/astro-opengraph-images/commit/fe6c5f4abdf47c354afce4b2513588a759cbd8d7))
|
|
204
|
+
|
|
205
|
+
## [1.6.6](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.6.5...v1.6.6) (2024-07-02)
|
|
206
|
+
|
|
207
|
+
### Bug Fixes
|
|
208
|
+
|
|
209
|
+
- update README steps ([8726aa0](https://github.com/shepherdjerred/astro-opengraph-images/commit/8726aa0b7f76f73b097077d9168cd17a3f0cb805))
|
|
210
|
+
|
|
211
|
+
## [1.6.5](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.6.4...v1.6.5) (2024-07-02)
|
|
212
|
+
|
|
213
|
+
### Bug Fixes
|
|
214
|
+
|
|
215
|
+
- fix logger capitalization ([1405fb8](https://github.com/shepherdjerred/astro-opengraph-images/commit/1405fb8ee98e0d0bb4974e17f10b35d009bcf7f9))
|
|
216
|
+
|
|
217
|
+
## [1.6.4](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.6.3...v1.6.4) (2024-07-02)
|
|
218
|
+
|
|
219
|
+
### Bug Fixes
|
|
220
|
+
|
|
221
|
+
- deps ([134d1d2](https://github.com/shepherdjerred/astro-opengraph-images/commit/134d1d26038bbe1a1c0f66bda0de0cc4c6ef269c))
|
|
222
|
+
|
|
223
|
+
## [1.6.3](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.6.2...v1.6.3) (2024-07-02)
|
|
224
|
+
|
|
225
|
+
### Bug Fixes
|
|
226
|
+
|
|
227
|
+
- add more context to site ([3db768a](https://github.com/shepherdjerred/astro-opengraph-images/commit/3db768aef904a95915696accae28b9aa239a1419))
|
|
228
|
+
- don't set description if it equals the title ([42763b5](https://github.com/shepherdjerred/astro-opengraph-images/commit/42763b523ff25ba8b88a7d4ce463f972974f3ddc))
|
|
229
|
+
- formatting ([94ed9b9](https://github.com/shepherdjerred/astro-opengraph-images/commit/94ed9b99c8db98c284e9ffcc39b050ad3ab8e762))
|
|
230
|
+
- regenerate README ([b8c204e](https://github.com/shepherdjerred/astro-opengraph-images/commit/b8c204e0e9b37868e43692fc1d57e795d8dbb456))
|
|
231
|
+
- regenerate README ([531d5f4](https://github.com/shepherdjerred/astro-opengraph-images/commit/531d5f4780b273e317d608411c64fcba4f3e50db))
|
|
232
|
+
- regenerate README ([4e432c6](https://github.com/shepherdjerred/astro-opengraph-images/commit/4e432c6059b7b6f3f10e54c75307cbbd3e204bf0))
|
|
233
|
+
|
|
234
|
+
## [1.6.2](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.6.1...v1.6.2) (2024-07-01)
|
|
235
|
+
|
|
236
|
+
### Bug Fixes
|
|
237
|
+
|
|
238
|
+
- remove type ([0400a2e](https://github.com/shepherdjerred/astro-opengraph-images/commit/0400a2e71d33dcd3fbc5e595e9f984f14097118b))
|
|
239
|
+
|
|
240
|
+
## [1.6.1](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.6.0...v1.6.1) (2024-07-01)
|
|
241
|
+
|
|
242
|
+
### Bug Fixes
|
|
243
|
+
|
|
244
|
+
- correct preset return types ([21e668a](https://github.com/shepherdjerred/astro-opengraph-images/commit/21e668acc0c426a07435af73e4ccbae351d83d40))
|
|
245
|
+
|
|
246
|
+
## [1.6.0](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.5.0...v1.6.0) (2024-07-01)
|
|
247
|
+
|
|
248
|
+
### Features
|
|
249
|
+
|
|
250
|
+
- polish ([8b46f0b](https://github.com/shepherdjerred/astro-opengraph-images/commit/8b46f0bb710e805c01e4658a4fda02793004e78c))
|
|
251
|
+
|
|
252
|
+
## [1.5.0](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.4.1...v1.5.0) (2024-07-01)
|
|
253
|
+
|
|
254
|
+
### Features
|
|
255
|
+
|
|
256
|
+
- simplify ([6236085](https://github.com/shepherdjerred/astro-opengraph-images/commit/6236085749e19cc93d1df06c494a18e78a9c2b27))
|
|
257
|
+
|
|
258
|
+
### Bug Fixes
|
|
259
|
+
|
|
260
|
+
- correctly determine paths ([adc97a2](https://github.com/shepherdjerred/astro-opengraph-images/commit/adc97a2638b6a9593eea7f61939a8931f6249c08))
|
|
261
|
+
- **deps:** update dependency astro-opengraph-images to v1.4.1 ([9aaeeb1](https://github.com/shepherdjerred/astro-opengraph-images/commit/9aaeeb1d4226d89eac726053fe18edd7de4955f0))
|
|
262
|
+
- require at least one font to be defined ([58eae4c](https://github.com/shepherdjerred/astro-opengraph-images/commit/58eae4ccc400d201e4b6b8c100f9884cc64d7927))
|
|
263
|
+
|
|
264
|
+
## [1.4.1](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.4.0...v1.4.1) (2024-06-30)
|
|
265
|
+
|
|
266
|
+
### Bug Fixes
|
|
267
|
+
|
|
268
|
+
- correct image ([de0a076](https://github.com/shepherdjerred/astro-opengraph-images/commit/de0a07680b2e31fbd3ee2ca615c927e5c1823f49))
|
|
269
|
+
- don't require width and height ([1793584](https://github.com/shepherdjerred/astro-opengraph-images/commit/17935846ec2b29fe45e1612a5bb76de0fecdbc56))
|
|
270
|
+
- use correct image ([d0398fa](https://github.com/shepherdjerred/astro-opengraph-images/commit/d0398fa9c4639374df608901f8ff8c5e47c26b49))
|
|
271
|
+
|
|
272
|
+
## [1.4.0](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.3.1...v1.4.0) (2024-06-30)
|
|
273
|
+
|
|
274
|
+
### Features
|
|
275
|
+
|
|
276
|
+
- add new presets ([8a54687](https://github.com/shepherdjerred/astro-opengraph-images/commit/8a5468741998557dc740ffd5b053787ccfb567b8))
|
|
277
|
+
|
|
278
|
+
## [1.3.1](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.3.0...v1.3.1) (2024-06-29)
|
|
279
|
+
|
|
280
|
+
### Bug Fixes
|
|
281
|
+
|
|
282
|
+
- update import ([585b310](https://github.com/shepherdjerred/astro-opengraph-images/commit/585b3100ec97f3634a67d8b8a9694a56380fd388))
|
|
283
|
+
|
|
284
|
+
## [1.3.0](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.2.1...v1.3.0) (2024-06-29)
|
|
285
|
+
|
|
286
|
+
### Features
|
|
287
|
+
|
|
288
|
+
- use React jsx ([b2e8622](https://github.com/shepherdjerred/astro-opengraph-images/commit/b2e862217788735eacebf20396951193dfdb894d))
|
|
289
|
+
|
|
290
|
+
## [1.2.1](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.2.0...v1.2.1) (2024-06-29)
|
|
291
|
+
|
|
292
|
+
### Bug Fixes
|
|
293
|
+
|
|
294
|
+
- resolve merge conflict ([ba0c596](https://github.com/shepherdjerred/astro-opengraph-images/commit/ba0c596b3f10a95d0cbe67bf9eef51b552fc7afe))
|
|
295
|
+
|
|
296
|
+
## [1.2.0](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.1.0...v1.2.0) (2024-06-29)
|
|
297
|
+
|
|
298
|
+
### Features
|
|
299
|
+
|
|
300
|
+
- simplify ([d82ab03](https://github.com/shepherdjerred/astro-opengraph-images/commit/d82ab031aa971437a9b02999be52c04a8a9e089c))
|
|
301
|
+
- simplify ([0e1e7c6](https://github.com/shepherdjerred/astro-opengraph-images/commit/0e1e7c6b1d4effa4fb0caa5fcf676168d3b03dd2))
|
|
302
|
+
|
|
303
|
+
### Bug Fixes
|
|
304
|
+
|
|
305
|
+
- fix json ([0799f5f](https://github.com/shepherdjerred/astro-opengraph-images/commit/0799f5f055d12a3cabd9cc72dd30c9cef9219b84))
|
|
306
|
+
|
|
307
|
+
## [1.1.0](https://github.com/shepherdjerred/astro-opengraph-images/compare/v1.0.0...v1.1.0) (2024-06-29)
|
|
308
|
+
|
|
309
|
+
### Features
|
|
310
|
+
|
|
311
|
+
- simplify setup ([08a922e](https://github.com/shepherdjerred/astro-opengraph-images/commit/08a922e7d096930e3af40865d34ac18c480384fa))
|
|
312
|
+
|
|
313
|
+
## 1.0.0 (2024-06-28)
|
|
314
|
+
|
|
315
|
+
### Features
|
|
316
|
+
|
|
317
|
+
- init ([a7b0623](https://github.com/shepherdjerred/astro-opengraph-images/commit/a7b06237cec0b4c7228f5d91a07c03d168395d52))
|
|
318
|
+
|
|
319
|
+
### Bug Fixes
|
|
320
|
+
|
|
348
321
|
- remove eslintcache ([1b6d4a2](https://github.com/shepherdjerred/astro-opengraph-images/commit/1b6d4a27080b92ed9189d2cdb45a3f4009b84c08))
|