@automattic/social-previews 3.2.5 → 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 +12 -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 +244 -163
- package/dist/index.mjs +2844 -2475
- 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 -306
- package/dist/index.js +0 -2519
- package/dist/index.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,12 +5,22 @@ 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
|
+
|
|
8
18
|
## [3.2.5] - 2026-06-15
|
|
9
19
|
### Changed
|
|
10
20
|
- Update package dependencies. [#49273]
|
|
11
21
|
|
|
12
22
|
### Fixed
|
|
13
|
-
- Render
|
|
23
|
+
- Render hyperlinks as clickable links in Bluesky and Tumblr previews. [#49483]
|
|
14
24
|
|
|
15
25
|
## [3.2.4] - 2026-06-08
|
|
16
26
|
### Changed
|
|
@@ -207,6 +217,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
207
217
|
|
|
208
218
|
- Initial release after extracting from Calypso.
|
|
209
219
|
|
|
220
|
+
[3.3.0]: https://github.com/Automattic/social-previews/compare/v3.2.5...v3.3.0
|
|
210
221
|
[3.2.5]: https://github.com/Automattic/social-previews/compare/v3.2.4...v3.2.5
|
|
211
222
|
[3.2.4]: https://github.com/Automattic/social-previews/compare/v3.2.3...v3.2.4
|
|
212
223
|
[3.2.3]: https://github.com/Automattic/social-previews/compare/v3.2.2...v3.2.3
|