@wordpress/api-fetch 6.55.0 → 7.0.1

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 +7 -1
  2. package/package.json +6 -5
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 7.0.0 (2024-05-31)
6
+
7
+ ### Breaking Changes
8
+
9
+ - Increase the minimum required Node.js version to v18.12.0 matching long-term support releases ([#31270](https://github.com/WordPress/gutenberg/pull/61930)). Learn more about [Node.js releases](https://nodejs.org/en/about/previous-releases).
10
+
5
11
  ## 6.55.0 (2024-05-16)
6
12
 
7
13
  ## 6.54.0 (2024-05-02)
@@ -116,7 +122,7 @@
116
122
 
117
123
  ### Breaking changes
118
124
 
119
- `OPTIONS` requests handled by the preloading middleware are now resolved as `window.Response` objects if you explicitly set `parse: false` (for consistency with how GET requests are resolved). They used to be resolved as `Plain Old JavaScript Objects`.
125
+ `OPTIONS` requests handled by the preloading middleware are now resolved as `window.Response` objects if you explicitly set `parse: false` (for consistency with how GET requests are resolved). They used to be resolved as `Plain Old JavaScript Objects`.
120
126
 
121
127
  ## 5.2.5 (2021-11-07)
122
128
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/api-fetch",
3
- "version": "6.55.0",
3
+ "version": "7.0.1",
4
4
  "description": "Utility to make WordPress REST API requests.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -20,7 +20,8 @@
20
20
  "url": "https://github.com/WordPress/gutenberg/issues"
21
21
  },
22
22
  "engines": {
23
- "node": ">=12"
23
+ "node": ">=18.12.0",
24
+ "npm": ">=8.19.2"
24
25
  },
25
26
  "main": "build/index.js",
26
27
  "module": "build-module/index.js",
@@ -28,11 +29,11 @@
28
29
  "types": "build-types",
29
30
  "dependencies": {
30
31
  "@babel/runtime": "^7.16.0",
31
- "@wordpress/i18n": "^4.58.0",
32
- "@wordpress/url": "^3.59.0"
32
+ "@wordpress/i18n": "^5.0.1",
33
+ "@wordpress/url": "^4.0.1"
33
34
  },
34
35
  "publishConfig": {
35
36
  "access": "public"
36
37
  },
37
- "gitHead": "42f38f287506a6b3ed8ccba839b18ad066821044"
38
+ "gitHead": "0e973525f7787401b5a544e0727774d52a78639f"
38
39
  }