social-logos 3.1.16 → 3.1.18
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 -7
- package/package.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,17 +1,20 @@
|
|
|
1
|
+
## [3.1.18] - 2025-02-24
|
|
2
|
+
### Changed
|
|
3
|
+
- Update dependencies.
|
|
4
|
+
|
|
5
|
+
## [3.1.17] - 2025-01-09
|
|
6
|
+
### Fixed
|
|
7
|
+
- Remove `module` in package.json given it's a CommonJS package. [#40867]
|
|
8
|
+
|
|
1
9
|
## [3.1.16] - 2025-01-06
|
|
2
10
|
### Changed
|
|
3
|
-
-
|
|
11
|
+
- Update package dependencies. [#40796] [#40798] [#40831]
|
|
4
12
|
|
|
5
13
|
### Deprecated
|
|
6
14
|
- Default import is now deprecated in favor of named import and will be removed in future.
|
|
7
15
|
|
|
8
|
-
```diff
|
|
9
|
-
- import SocialLogos from 'social-logos';
|
|
10
|
-
+ import { SocialLogo } from 'social-logos';
|
|
11
|
-
``` [#40801]
|
|
12
|
-
|
|
13
16
|
### Fixed
|
|
14
|
-
-
|
|
17
|
+
- Expose built-in types in package.json file. [#40801]
|
|
15
18
|
|
|
16
19
|
## [3.1.15] - 2024-12-16
|
|
17
20
|
### Changed
|
|
@@ -199,6 +202,8 @@
|
|
|
199
202
|
|
|
200
203
|
- Build: Refactored (aligned build system with Gridicons).
|
|
201
204
|
|
|
205
|
+
[3.1.18]: https://github.com/Automattic/social-logos/compare/v3.1.17...v3.1.18
|
|
206
|
+
[3.1.17]: https://github.com/Automattic/social-logos/compare/v3.1.16...v3.1.17
|
|
202
207
|
[3.1.16]: https://github.com/Automattic/social-logos/compare/v3.1.15...v3.1.16
|
|
203
208
|
[3.1.15]: https://github.com/Automattic/social-logos/compare/v3.1.14...v3.1.15
|
|
204
209
|
[3.1.14]: https://github.com/Automattic/social-logos/compare/v3.1.13...v3.1.14
|
package/package.json
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "social-logos",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.18",
|
|
4
4
|
"description": "A repository of all the social logos used on WordPress.com.",
|
|
5
5
|
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/social-logos/",
|
|
6
6
|
"bugs": {
|
|
7
7
|
"url": "https://github.com/Automattic/jetpack/labels/[JS Package] Social Logos"
|
|
8
8
|
},
|
|
9
9
|
"main": "build/react/index.js",
|
|
10
|
-
"module": "build/react/index.js",
|
|
11
10
|
"types": "build/react/index.d.ts",
|
|
12
11
|
"exports": {
|
|
13
12
|
".": "./build/react/index.js",
|
|
14
|
-
"./svg-sprite/*": "./build/svg-sprite
|
|
13
|
+
"./svg-sprite/*": "./build/svg-sprite/social-logos.svg",
|
|
15
14
|
"./font/*": "./build/font/*"
|
|
16
15
|
},
|
|
17
16
|
"peerDependencies": {
|