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