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