@wordpress/blob 4.1.0 → 4.2.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 +6 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 4.2.0 (2024-06-26)
|
|
6
|
+
|
|
5
7
|
## 4.1.0 (2024-06-15)
|
|
6
8
|
|
|
7
9
|
### Internal
|
|
@@ -40,7 +42,7 @@
|
|
|
40
42
|
|
|
41
43
|
## 3.46.0 (2023-11-16)
|
|
42
44
|
|
|
43
|
-
### New
|
|
45
|
+
### New Features
|
|
44
46
|
|
|
45
47
|
- Add `downloadBlob` function and remove `downloadjs` dependency ([#56024](https://github.com/WordPress/gutenberg/pull/56024)).
|
|
46
48
|
|
|
@@ -145,13 +147,13 @@
|
|
|
145
147
|
|
|
146
148
|
## 2.11.0 (2020-10-19)
|
|
147
149
|
|
|
148
|
-
### New
|
|
150
|
+
### New Features
|
|
149
151
|
|
|
150
152
|
- Added a new `getBlobTypeByURL` function. Returns the file type of the blob or undefined if not a blob.
|
|
151
153
|
|
|
152
154
|
## 2.8.0 (2020-04-15)
|
|
153
155
|
|
|
154
|
-
### New
|
|
156
|
+
### New Features
|
|
155
157
|
|
|
156
158
|
- Include TypeScript type declarations ([#18942](https://github.com/WordPress/gutenberg/pull/18942))
|
|
157
159
|
|
|
@@ -165,6 +167,6 @@
|
|
|
165
167
|
|
|
166
168
|
## 2.0.0 (2018-09-05)
|
|
167
169
|
|
|
168
|
-
### Breaking
|
|
170
|
+
### Breaking Changes
|
|
169
171
|
|
|
170
172
|
- Change how required built-ins are polyfilled with Babel 7 ([#9171](https://github.com/WordPress/gutenberg/pull/9171)). If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/blob",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"description": "Blob utilities for WordPress.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"publishConfig": {
|
|
34
34
|
"access": "public"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
|
|
37
37
|
}
|