@wordpress/dom-ready 4.0.1 → 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 +8 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 4.2.0 (2024-06-26)
|
|
6
|
+
|
|
7
|
+
## 4.1.0 (2024-06-15)
|
|
8
|
+
|
|
5
9
|
## 4.0.0 (2024-05-31)
|
|
6
10
|
|
|
7
11
|
### Breaking Changes
|
|
@@ -135,22 +139,22 @@
|
|
|
135
139
|
|
|
136
140
|
## 2.9.0 (2020-04-15)
|
|
137
141
|
|
|
138
|
-
### New
|
|
142
|
+
### New Features
|
|
139
143
|
|
|
140
144
|
- Include TypeScript type declarations ([#18942](https://github.com/WordPress/gutenberg/pull/18942))
|
|
141
145
|
|
|
142
146
|
## 2.0.0 (2018-09-05)
|
|
143
147
|
|
|
144
|
-
### Breaking
|
|
148
|
+
### Breaking Changes
|
|
145
149
|
|
|
146
150
|
- 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.
|
|
147
151
|
|
|
148
152
|
## 1.1.0 (2018-07-12)
|
|
149
153
|
|
|
150
|
-
### New
|
|
154
|
+
### New Features
|
|
151
155
|
|
|
152
156
|
- Updated build to work with Babel 7 ([#7832](https://github.com/WordPress/gutenberg/pull/7832))
|
|
153
157
|
|
|
154
|
-
###
|
|
158
|
+
### Internal
|
|
155
159
|
|
|
156
160
|
- Moved `@WordPress/packages` repository to `@WordPress/gutenberg` ([#7805](https://github.com/WordPress/gutenberg/pull/7805))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/dom-ready",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"description": "Execute callback after the DOM is loaded.",
|
|
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
|
}
|