@wordpress/is-shallow-equal 5.1.0 → 5.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 -8
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 5.3.0 (2024-07-10)
|
|
6
|
+
|
|
7
|
+
## 5.2.0 (2024-06-26)
|
|
8
|
+
|
|
5
9
|
## 5.1.0 (2024-06-15)
|
|
6
10
|
|
|
7
11
|
## 5.0.0 (2024-05-31)
|
|
@@ -137,19 +141,19 @@
|
|
|
137
141
|
|
|
138
142
|
## 3.0.0 (2020-12-17)
|
|
139
143
|
|
|
140
|
-
### Breaking
|
|
144
|
+
### Breaking Changes
|
|
141
145
|
|
|
142
146
|
- Re-write using ES Modules causing CJS default import to change from `require('@wordpress/is-shallow-equal)` to `require('@wordpress/is-shallow-equal).default`. ([#26833](https://github.com/WordPress/gutenberg/pull/26833))
|
|
143
147
|
|
|
144
148
|
## 2.0.0 (2020-04-15)
|
|
145
149
|
|
|
146
|
-
### Breaking
|
|
150
|
+
### Breaking Changes
|
|
147
151
|
|
|
148
152
|
- Restructure package moving source files into `lib` directory. Direct imports of
|
|
149
153
|
`@wordpress/is-shallow-equal/arrays` and `@wordpress/is-shallow-equal/objects` were never
|
|
150
154
|
officially supported and have been removed. ([#18942](https://github.com/WordPress/gutenberg/pull/18942))
|
|
151
155
|
|
|
152
|
-
### New
|
|
156
|
+
### New Features
|
|
153
157
|
|
|
154
158
|
- Include TypeScript type declarations ([#18942](https://github.com/WordPress/gutenberg/pull/18942))
|
|
155
159
|
|
|
@@ -161,7 +165,7 @@
|
|
|
161
165
|
|
|
162
166
|
## 1.2.0 (2019-03-06)
|
|
163
167
|
|
|
164
|
-
### New
|
|
168
|
+
### New Features
|
|
165
169
|
|
|
166
170
|
- Type-specific variants are now exposed from the module root. In a WordPress context, this has the effect of making them available as `wp.isShallowEqual.isShallowEqualObjects` and `wp.isShallowEqual.isShallowEqualArrays`.
|
|
167
171
|
|
|
@@ -171,7 +175,7 @@
|
|
|
171
175
|
|
|
172
176
|
## 1.1.0 (2018-07-12)
|
|
173
177
|
|
|
174
|
-
### New
|
|
178
|
+
### New Features
|
|
175
179
|
|
|
176
180
|
- Updated build to work with Babel 7 ([#7832](https://github.com/WordPress/gutenberg/pull/7832))
|
|
177
181
|
|
|
@@ -181,18 +185,18 @@
|
|
|
181
185
|
|
|
182
186
|
## 1.0.2 (2018-05-08)
|
|
183
187
|
|
|
184
|
-
### Bug
|
|
188
|
+
### Bug Fixes
|
|
185
189
|
|
|
186
190
|
- Fix: Use implicit `index.js` for main entry ([#124](https://github.com/WordPress/packages/pull/124))
|
|
187
191
|
|
|
188
192
|
## 1.0.1 (2018-05-01)
|
|
189
193
|
|
|
190
|
-
### Bug
|
|
194
|
+
### Bug Fixes
|
|
191
195
|
|
|
192
196
|
- Fix: Passing a null-ish value as one of the arguments now correctly falls back to a strict equality comparison. ([#116](https://github.com/WordPress/packages/pull/116))
|
|
193
197
|
|
|
194
198
|
## 1.0.0 (2018-04-25)
|
|
195
199
|
|
|
196
|
-
### New
|
|
200
|
+
### New Features
|
|
197
201
|
|
|
198
202
|
- Initial release
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/is-shallow-equal",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.3.0",
|
|
4
4
|
"description": "Test for shallow equality between two objects or arrays.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "122867d355ca4edc63d3a3bbd9411d3a2e1458df"
|
|
46
46
|
}
|