@wordpress/notices 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +7 -5
  2. package/package.json +4 -4
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)
@@ -58,7 +60,7 @@
58
60
 
59
61
  ## 4.3.0 (2023-06-07)
60
62
 
61
- ### New Feature
63
+ ### New Features
62
64
 
63
65
  - Add a new action `removeNotices` which allows bulk removal of notices by their IDs. ([#39940](https://github.com/WordPress/gutenberg/pull/39940))
64
66
  - Add a new action `removeAllNotices` which removes all notices from a given context. ([#44059](https://github.com/WordPress/gutenberg/pull/44059))
@@ -69,7 +71,7 @@
69
71
 
70
72
  ## 4.0.0 (2023-04-26)
71
73
 
72
- ### Breaking Change
74
+ ### Breaking Changes
73
75
 
74
76
  - Publish Typescript build types to npm. ([#49650](https://github.com/WordPress/gutenberg/pull/49650))
75
77
 
@@ -146,13 +148,13 @@
146
148
 
147
149
  ## 2.12.0 (2020-12-17)
148
150
 
149
- ### New Feature
151
+ ### New Features
150
152
 
151
153
  - Added a store definition `store` for the notices namespace to use with `@wordpress/data` API ([#26655](https://github.com/WordPress/gutenberg/pull/26655)).
152
154
 
153
155
  ## 2.0.0 (2020-02-10)
154
156
 
155
- ### Breaking Change
157
+ ### Breaking Changes
156
158
 
157
159
  - A notices message is no longer spoken as a result of notice creation, but rather by its display in the interface by its corresponding [`Notice` component](https://github.com/WordPress/gutenberg/tree/HEAD/packages/components/src/notice).
158
160
 
@@ -168,7 +170,7 @@
168
170
 
169
171
  ## 1.1.0 (2018-11-20)
170
172
 
171
- ### New Feature
173
+ ### New Features
172
174
 
173
175
  - New option `speak` enables control as to whether the notice content is announced to screen readers (defaults to `true`)
174
176
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/notices",
3
- "version": "5.1.0",
3
+ "version": "5.2.0",
4
4
  "description": "State management for notices.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -28,8 +28,8 @@
28
28
  "types": "build-types",
29
29
  "dependencies": {
30
30
  "@babel/runtime": "^7.16.0",
31
- "@wordpress/a11y": "^4.1.0",
32
- "@wordpress/data": "^10.1.0"
31
+ "@wordpress/a11y": "^4.2.0",
32
+ "@wordpress/data": "^10.2.0"
33
33
  },
34
34
  "peerDependencies": {
35
35
  "react": "^18.0.0"
@@ -37,5 +37,5 @@
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "66d3bf12e67d16deddc4b4a9ec42e1d0bed3479a"
40
+ "gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
41
41
  }