@wordpress/is-shallow-equal 5.1.0 → 5.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 +10 -8
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 5.2.0 (2024-06-26)
|
|
6
|
+
|
|
5
7
|
## 5.1.0 (2024-06-15)
|
|
6
8
|
|
|
7
9
|
## 5.0.0 (2024-05-31)
|
|
@@ -137,19 +139,19 @@
|
|
|
137
139
|
|
|
138
140
|
## 3.0.0 (2020-12-17)
|
|
139
141
|
|
|
140
|
-
### Breaking
|
|
142
|
+
### Breaking Changes
|
|
141
143
|
|
|
142
144
|
- 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
145
|
|
|
144
146
|
## 2.0.0 (2020-04-15)
|
|
145
147
|
|
|
146
|
-
### Breaking
|
|
148
|
+
### Breaking Changes
|
|
147
149
|
|
|
148
150
|
- Restructure package moving source files into `lib` directory. Direct imports of
|
|
149
151
|
`@wordpress/is-shallow-equal/arrays` and `@wordpress/is-shallow-equal/objects` were never
|
|
150
152
|
officially supported and have been removed. ([#18942](https://github.com/WordPress/gutenberg/pull/18942))
|
|
151
153
|
|
|
152
|
-
### New
|
|
154
|
+
### New Features
|
|
153
155
|
|
|
154
156
|
- Include TypeScript type declarations ([#18942](https://github.com/WordPress/gutenberg/pull/18942))
|
|
155
157
|
|
|
@@ -161,7 +163,7 @@
|
|
|
161
163
|
|
|
162
164
|
## 1.2.0 (2019-03-06)
|
|
163
165
|
|
|
164
|
-
### New
|
|
166
|
+
### New Features
|
|
165
167
|
|
|
166
168
|
- 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
169
|
|
|
@@ -171,7 +173,7 @@
|
|
|
171
173
|
|
|
172
174
|
## 1.1.0 (2018-07-12)
|
|
173
175
|
|
|
174
|
-
### New
|
|
176
|
+
### New Features
|
|
175
177
|
|
|
176
178
|
- Updated build to work with Babel 7 ([#7832](https://github.com/WordPress/gutenberg/pull/7832))
|
|
177
179
|
|
|
@@ -181,18 +183,18 @@
|
|
|
181
183
|
|
|
182
184
|
## 1.0.2 (2018-05-08)
|
|
183
185
|
|
|
184
|
-
### Bug
|
|
186
|
+
### Bug Fixes
|
|
185
187
|
|
|
186
188
|
- Fix: Use implicit `index.js` for main entry ([#124](https://github.com/WordPress/packages/pull/124))
|
|
187
189
|
|
|
188
190
|
## 1.0.1 (2018-05-01)
|
|
189
191
|
|
|
190
|
-
### Bug
|
|
192
|
+
### Bug Fixes
|
|
191
193
|
|
|
192
194
|
- 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
195
|
|
|
194
196
|
## 1.0.0 (2018-04-25)
|
|
195
197
|
|
|
196
|
-
### New
|
|
198
|
+
### New Features
|
|
197
199
|
|
|
198
200
|
- 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.2.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": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
|
|
46
46
|
}
|