@wordpress/url 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +12 -10
  2. 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
  ## 4.0.0 (2024-05-31)
@@ -124,13 +126,13 @@
124
126
 
125
127
  ## 3.3.0 (2021-11-07)
126
128
 
127
- ### New Feature
129
+ ### New Features
128
130
 
129
131
  - Added new `normalizePath` function ([#35992](https://github.com/WordPress/gutenberg/pull/35992)).
130
132
 
131
133
  ## 3.2.3 (2021-10-12)
132
134
 
133
- ### Bug Fix
135
+ ### Bug Fixes
134
136
 
135
137
  - Removed unused `react-native-url-polyfill` dependency ([#34687](https://github.com/WordPress/gutenberg/pull/34687)).
136
138
 
@@ -149,25 +151,25 @@
149
151
 
150
152
  ## 2.21.0 (2021-01-05)
151
153
 
152
- ### New Feature
154
+ ### New Features
153
155
 
154
156
  - Add optional argument `maxLength` for truncating URL in `filterURLForDisplay`
155
157
 
156
158
  ## 2.16.0 (2020-06-15)
157
159
 
158
- ### New Feature
160
+ ### New Features
159
161
 
160
162
  - Added `getPathAndQueryString`.
161
163
 
162
164
  ## 2.14.0 (2020-04-30)
163
165
 
164
- ### Bug fix
166
+ ### Bug Fixes
165
167
 
166
168
  - `addQueryArgs` arguments are optional ([#21926](https://github.com/WordPress/gutenberg/pull/21926))
167
169
 
168
170
  ## 2.13.0 (2020-04-15)
169
171
 
170
- ### New feature
172
+ ### New Features
171
173
 
172
174
  - Include TypeScript type declarations ([#18942](https://github.com/WordPress/gutenberg/pull/18942))
173
175
 
@@ -194,7 +196,7 @@
194
196
 
195
197
  ## 2.3.1 (2018-11-20)
196
198
 
197
- ### Bug fixes
199
+ ### Bug Fixes
198
200
 
199
201
  - The `isValidProtocol` function now correctly considers the protocol of the URL as only incoporating characters up to and including the colon (':').
200
202
  - `getFragment` is now greedier and matches fragments from the first occurrence of the '#' symbol instead of the last.
@@ -224,18 +226,18 @@
224
226
 
225
227
  ## 2.1.0 (2018-10-16)
226
228
 
227
- ### New Feature
229
+ ### New Features
228
230
 
229
231
  - Added `safeDecodeURI`.
230
232
 
231
233
  ## 2.0.1 (2018-09-30)
232
234
 
233
- ### Bug Fix
235
+ ### Bug Fixes
234
236
 
235
237
  - Fix typo in the `qs` dependency definition in the `package.json`
236
238
 
237
239
  ## 2.0.0 (2018-09-05)
238
240
 
239
- ### Breaking Change
241
+ ### Breaking Changes
240
242
 
241
243
  - 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/url",
3
- "version": "4.1.0",
3
+ "version": "4.2.0",
4
4
  "description": "WordPress URL utilities.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -34,5 +34,5 @@
34
34
  "publishConfig": {
35
35
  "access": "public"
36
36
  },
37
- "gitHead": "66d3bf12e67d16deddc4b4a9ec42e1d0bed3479a"
37
+ "gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
38
38
  }