@wordpress/notices 5.0.2 → 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 +4 -4
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
@@ -56,7 +60,7 @@
56
60
 
57
61
  ## 4.3.0 (2023-06-07)
58
62
 
59
- ### New Feature
63
+ ### New Features
60
64
 
61
65
  - Add a new action `removeNotices` which allows bulk removal of notices by their IDs. ([#39940](https://github.com/WordPress/gutenberg/pull/39940))
62
66
  - Add a new action `removeAllNotices` which removes all notices from a given context. ([#44059](https://github.com/WordPress/gutenberg/pull/44059))
@@ -67,7 +71,7 @@
67
71
 
68
72
  ## 4.0.0 (2023-04-26)
69
73
 
70
- ### Breaking Change
74
+ ### Breaking Changes
71
75
 
72
76
  - Publish Typescript build types to npm. ([#49650](https://github.com/WordPress/gutenberg/pull/49650))
73
77
 
@@ -144,13 +148,13 @@
144
148
 
145
149
  ## 2.12.0 (2020-12-17)
146
150
 
147
- ### New Feature
151
+ ### New Features
148
152
 
149
153
  - Added a store definition `store` for the notices namespace to use with `@wordpress/data` API ([#26655](https://github.com/WordPress/gutenberg/pull/26655)).
150
154
 
151
155
  ## 2.0.0 (2020-02-10)
152
156
 
153
- ### Breaking Change
157
+ ### Breaking Changes
154
158
 
155
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).
156
160
 
@@ -166,7 +170,7 @@
166
170
 
167
171
  ## 1.1.0 (2018-11-20)
168
172
 
169
- ### New Feature
173
+ ### New Features
170
174
 
171
175
  - New option `speak` enables control as to whether the notice content is announced to screen readers (defaults to `true`)
172
176
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/notices",
3
- "version": "5.0.2",
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.0.1",
32
- "@wordpress/data": "^10.0.2"
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": "a68c6b5ef53956cccf4961d53d79b6af7e00ae60"
40
+ "gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
41
41
  }