@wordpress/server-side-render 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 +7 -5
- package/package.json +11 -11
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)
|
|
@@ -92,7 +94,7 @@
|
|
|
92
94
|
|
|
93
95
|
## 3.18.0 (2022-10-19)
|
|
94
96
|
|
|
95
|
-
###
|
|
97
|
+
### New Features
|
|
96
98
|
|
|
97
99
|
- Add `skipBlockSupportAttributes` props to prevent duplication of styles in the block wrapper and the `ServerSideRender` components. [#44491](https://github.com/WordPress/gutenberg/pull/44491)
|
|
98
100
|
|
|
@@ -132,7 +134,7 @@
|
|
|
132
134
|
|
|
133
135
|
## 3.0.0 (2021-07-29)
|
|
134
136
|
|
|
135
|
-
### Breaking
|
|
137
|
+
### Breaking Changes
|
|
136
138
|
|
|
137
139
|
- Upgraded React components to work with v17.0 ([#29118](https://github.com/WordPress/gutenberg/pull/29118)). There are no new features in React v17.0 as explained in the [blog post](https://reactjs.org/blog/2020/10/20/react-v17.html).
|
|
138
140
|
|
|
@@ -151,19 +153,19 @@
|
|
|
151
153
|
|
|
152
154
|
## 1.17.0 (2020-09-03)
|
|
153
155
|
|
|
154
|
-
###
|
|
156
|
+
### New Features
|
|
155
157
|
|
|
156
158
|
- Add an optional prop `httpMethod`, which can be 'POST' or the default 'GET'. Requires WP 5.5 or later. When 'POST', this sends the attributes in the request body, not in the URL. This can allow a bigger attributes object. [#21068](https://github.com/WordPress/gutenberg/pull/21068)
|
|
157
159
|
|
|
158
160
|
## 1.7.0 (2020-02-04)
|
|
159
161
|
|
|
160
|
-
### Bug
|
|
162
|
+
### Bug Fixes
|
|
161
163
|
|
|
162
164
|
- Fix errant `className` being output on default empty placeholder. [#19555](https://github.com/WordPress/gutenberg/pull/19555)
|
|
163
165
|
|
|
164
166
|
## 1.2.0 (2019-08-29)
|
|
165
167
|
|
|
166
|
-
###
|
|
168
|
+
### New Features
|
|
167
169
|
|
|
168
170
|
- Add `EmptyResponsePlaceholder`, `ErrorResponsePlaceholder` and `LoadingResponsePlaceholder` render props for parent components to swap out alternate placeholders for the various states (see https://github.com/WordPress/gutenberg/pull/16512).
|
|
169
171
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/server-side-render",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.2.0",
|
|
4
4
|
"description": "The component used with WordPress to server-side render a preview of dynamic blocks to display in the editor.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -28,15 +28,15 @@
|
|
|
28
28
|
"react-native": "src/index",
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@babel/runtime": "^7.16.0",
|
|
31
|
-
"@wordpress/api-fetch": "^7.
|
|
32
|
-
"@wordpress/blocks": "^13.
|
|
33
|
-
"@wordpress/components": "^28.
|
|
34
|
-
"@wordpress/compose": "^7.
|
|
35
|
-
"@wordpress/data": "^10.
|
|
36
|
-
"@wordpress/deprecated": "^4.
|
|
37
|
-
"@wordpress/element": "^6.
|
|
38
|
-
"@wordpress/i18n": "^5.
|
|
39
|
-
"@wordpress/url": "^4.
|
|
31
|
+
"@wordpress/api-fetch": "^7.2.0",
|
|
32
|
+
"@wordpress/blocks": "^13.2.0",
|
|
33
|
+
"@wordpress/components": "^28.2.0",
|
|
34
|
+
"@wordpress/compose": "^7.2.0",
|
|
35
|
+
"@wordpress/data": "^10.2.0",
|
|
36
|
+
"@wordpress/deprecated": "^4.2.0",
|
|
37
|
+
"@wordpress/element": "^6.2.0",
|
|
38
|
+
"@wordpress/i18n": "^5.2.0",
|
|
39
|
+
"@wordpress/url": "^4.2.0",
|
|
40
40
|
"fast-deep-equal": "^3.1.3"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
|
|
50
50
|
}
|