@wordpress/style-engine 1.41.0 → 2.0.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 +12 -0
  2. package/package.json +4 -3
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 2.0.0 (2024-05-31)
6
+
7
+ ### Breaking Changes
8
+
9
+ - Increase the minimum required Node.js version to v18.12.0 matching long-term support releases ([#31270](https://github.com/WordPress/gutenberg/pull/61930)). Learn more about [Node.js releases](https://nodejs.org/en/about/previous-releases).
10
+
5
11
  ## 1.41.0 (2024-05-16)
6
12
 
7
13
  ## 1.40.0 (2024-05-02)
@@ -43,6 +49,7 @@
43
49
  ## 1.22.0 (2023-08-10)
44
50
 
45
51
  ### Bug Fixes
52
+
46
53
  - Style engine: switch off optimize by default [#53085](https://github.com/WordPress/gutenberg/pull/53085).
47
54
 
48
55
  ## 1.21.0 (2023-07-20)
@@ -84,24 +91,29 @@
84
91
  ## 1.3.0 (2022-10-19)
85
92
 
86
93
  ### Internal
94
+
87
95
  - Style Engine: move PHP unit tests to Gutenberg [#44722](https://github.com/WordPress/gutenberg/pull/44722)
88
96
 
89
97
  ## 1.2.0 (2022-10-05)
90
98
 
91
99
  ### Internal
100
+
92
101
  - Script loader: remove 6.1 wp actions ([#44519](https://github.com/WordPress/gutenberg/pull/44519))
93
102
 
94
103
  ## 1.1.0 (2022-09-21)
95
104
 
96
105
  ### Enhancement
106
+
97
107
  - Allow for prettified output ([#42909](https://github.com/WordPress/gutenberg/pull/42909)).
98
108
  - Enqueue block supports styles in Gutenberg ([#42880](https://github.com/WordPress/gutenberg/pull/42880)).
99
109
 
100
110
  ### Internal
111
+
101
112
  - Move backend scripts to package ([#39736](https://github.com/WordPress/gutenberg/pull/39736)).
102
113
  - Updating docs, formatting, and separating global functions from the main class file ([#43840](https://github.com/WordPress/gutenberg/pull/43840)).
103
114
 
104
115
  ### New Features
116
+
105
117
  - Add a WP_Style_Engine_Processor object ([#42463](https://github.com/WordPress/gutenberg/pull/42463)).
106
118
  - Add a WP_Style_Engine_CSS_Declarations object ([#42043](https://github.com/WordPress/gutenberg/pull/42043)).
107
119
  - Add Rules and Store objects ([#42222](https://github.com/WordPress/gutenberg/pull/42222)).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/style-engine",
3
- "version": "1.41.0",
3
+ "version": "2.0.0",
4
4
  "description": "A suite of parsers and compilers for WordPress styles.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -21,7 +21,8 @@
21
21
  "url": "https://github.com/WordPress/gutenberg/issues"
22
22
  },
23
23
  "engines": {
24
- "node": ">=12"
24
+ "node": ">=18.12.0",
25
+ "npm": ">=8.19.2"
25
26
  },
26
27
  "main": "build/index.js",
27
28
  "module": "build-module/index.js",
@@ -35,5 +36,5 @@
35
36
  "publishConfig": {
36
37
  "access": "public"
37
38
  },
38
- "gitHead": "42f38f287506a6b3ed8ccba839b18ad066821044"
39
+ "gitHead": "2f30cddff15723ac7017fd009fc5913b7b419400"
39
40
  }