@automattic/social-previews 3.2.4 → 3.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -1
- package/dist/index.cjs +2946 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +387 -0
- package/dist/index.d.mts +259 -150
- package/dist/index.mjs +2846 -2404
- package/dist/index.mjs.map +1 -1
- package/dist/{index.css → style.css} +134 -95
- package/package.json +11 -13
- package/dist/index.css.map +0 -1
- package/dist/index.d.ts +0 -278
- package/dist/index.js +0 -2446
- package/dist/index.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,12 +5,29 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [3.3.0] - 2026-06-22
|
|
9
|
+
### Added
|
|
10
|
+
- Render an image focal point in the link previews via object-position. [#49687]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Update package dependencies. [#49594] [#49631] [#49691] [#49757]
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
- Use the caption/custom text as the source of truth for Bluesky, Facebook, Instagram, Mastodon and Nextdoor previews instead of appending the post URL. [#49745]
|
|
17
|
+
|
|
18
|
+
## [3.2.5] - 2026-06-15
|
|
19
|
+
### Changed
|
|
20
|
+
- Update package dependencies. [#49273]
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
- Render hyperlinks as clickable links in Bluesky and Tumblr previews. [#49483]
|
|
24
|
+
|
|
8
25
|
## [3.2.4] - 2026-06-08
|
|
9
26
|
### Changed
|
|
10
27
|
- Update dependencies. [#49354]
|
|
11
28
|
|
|
12
29
|
### Fixed
|
|
13
|
-
-
|
|
30
|
+
- Avoid having the Mastodon share preview show post URL twice when the custom message already includes it. [#49338]
|
|
14
31
|
|
|
15
32
|
## [3.2.3] - 2026-05-25
|
|
16
33
|
### Changed
|
|
@@ -200,6 +217,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
200
217
|
|
|
201
218
|
- Initial release after extracting from Calypso.
|
|
202
219
|
|
|
220
|
+
[3.3.0]: https://github.com/Automattic/social-previews/compare/v3.2.5...v3.3.0
|
|
221
|
+
[3.2.5]: https://github.com/Automattic/social-previews/compare/v3.2.4...v3.2.5
|
|
203
222
|
[3.2.4]: https://github.com/Automattic/social-previews/compare/v3.2.3...v3.2.4
|
|
204
223
|
[3.2.3]: https://github.com/Automattic/social-previews/compare/v3.2.2...v3.2.3
|
|
205
224
|
[3.2.2]: https://github.com/Automattic/social-previews/compare/v3.2.1...v3.2.2
|