@wordpress/server-side-render 5.1.0 → 5.3.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 +9 -5
  2. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 5.3.0 (2024-07-10)
6
+
7
+ ## 5.2.0 (2024-06-26)
8
+
5
9
  ## 5.1.0 (2024-06-15)
6
10
 
7
11
  ## 5.0.0 (2024-05-31)
@@ -92,7 +96,7 @@
92
96
 
93
97
  ## 3.18.0 (2022-10-19)
94
98
 
95
- ### Feature
99
+ ### New Features
96
100
 
97
101
  - 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
102
 
@@ -132,7 +136,7 @@
132
136
 
133
137
  ## 3.0.0 (2021-07-29)
134
138
 
135
- ### Breaking Change
139
+ ### Breaking Changes
136
140
 
137
141
  - 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
142
 
@@ -151,19 +155,19 @@
151
155
 
152
156
  ## 1.17.0 (2020-09-03)
153
157
 
154
- ### Feature
158
+ ### New Features
155
159
 
156
160
  - 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
161
 
158
162
  ## 1.7.0 (2020-02-04)
159
163
 
160
- ### Bug
164
+ ### Bug Fixes
161
165
 
162
166
  - Fix errant `className` being output on default empty placeholder. [#19555](https://github.com/WordPress/gutenberg/pull/19555)
163
167
 
164
168
  ## 1.2.0 (2019-08-29)
165
169
 
166
- ### Feature
170
+ ### New Features
167
171
 
168
172
  - 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
173
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/server-side-render",
3
- "version": "5.1.0",
3
+ "version": "5.3.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.1.0",
32
- "@wordpress/blocks": "^13.1.0",
33
- "@wordpress/components": "^28.1.0",
34
- "@wordpress/compose": "^7.1.0",
35
- "@wordpress/data": "^10.1.0",
36
- "@wordpress/deprecated": "^4.1.0",
37
- "@wordpress/element": "^6.1.0",
38
- "@wordpress/i18n": "^5.1.0",
39
- "@wordpress/url": "^4.1.0",
31
+ "@wordpress/api-fetch": "^7.3.0",
32
+ "@wordpress/blocks": "^13.3.0",
33
+ "@wordpress/components": "^28.3.0",
34
+ "@wordpress/compose": "^7.3.0",
35
+ "@wordpress/data": "^10.3.0",
36
+ "@wordpress/deprecated": "^4.3.0",
37
+ "@wordpress/element": "^6.3.0",
38
+ "@wordpress/i18n": "^5.3.0",
39
+ "@wordpress/url": "^4.3.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": "66d3bf12e67d16deddc4b4a9ec42e1d0bed3479a"
49
+ "gitHead": "122867d355ca4edc63d3a3bbd9411d3a2e1458df"
50
50
  }