@wordpress/server-side-render 5.0.3 → 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 +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.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
@@ -90,7 +94,7 @@
90
94
 
91
95
  ## 3.18.0 (2022-10-19)
92
96
 
93
- ### Feature
97
+ ### New Features
94
98
 
95
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)
96
100
 
@@ -130,7 +134,7 @@
130
134
 
131
135
  ## 3.0.0 (2021-07-29)
132
136
 
133
- ### Breaking Change
137
+ ### Breaking Changes
134
138
 
135
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).
136
140
 
@@ -149,19 +153,19 @@
149
153
 
150
154
  ## 1.17.0 (2020-09-03)
151
155
 
152
- ### Feature
156
+ ### New Features
153
157
 
154
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)
155
159
 
156
160
  ## 1.7.0 (2020-02-04)
157
161
 
158
- ### Bug
162
+ ### Bug Fixes
159
163
 
160
164
  - Fix errant `className` being output on default empty placeholder. [#19555](https://github.com/WordPress/gutenberg/pull/19555)
161
165
 
162
166
  ## 1.2.0 (2019-08-29)
163
167
 
164
- ### Feature
168
+ ### New Features
165
169
 
166
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).
167
171
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/server-side-render",
3
- "version": "5.0.3",
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.0.1",
32
- "@wordpress/blocks": "^13.0.3",
33
- "@wordpress/components": "^28.0.3",
34
- "@wordpress/compose": "^7.0.1",
35
- "@wordpress/data": "^10.0.2",
36
- "@wordpress/deprecated": "^4.0.1",
37
- "@wordpress/element": "^6.0.1",
38
- "@wordpress/i18n": "^5.0.1",
39
- "@wordpress/url": "^4.0.1",
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": "9dd5f8dcfa4fc7242e5d48be20ee789ad087b432"
49
+ "gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
50
50
  }