@plaudit/pnpm-plugin-plaudit-config 1.2.0 → 1.4.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.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.4.0] - 2026-04-30
9
+ ### Added
10
+ - Overrides for some other outdated WordPress dependencies that don't prevent builds
11
+
12
+ ## [1.3.0] - 2026-04-29
13
+ ### Removed
14
+ - The temporary pins for WordPress' broken typedefs
15
+ - They finally got around to deploying the fix
16
+
8
17
  ## [1.2.0] - 2026-04-27
9
18
  ### Added
10
19
  - Code to mute ESLint peer dependency errors when the maximum supported version is 9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plaudit/pnpm-plugin-plaudit-config",
3
- "version": "1.2.0",
3
+ "version": "1.4.0",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "files": [
6
6
  "./patches",
package/pnpmfile.cjs CHANGED
@@ -49,24 +49,19 @@ module.exports = {
49
49
  ...mergeableConfig.projectAllowBuilds,
50
50
  },
51
51
  overrides: {
52
- "micromatch": "^4",
52
+ "micromatch@<4": "^4",
53
53
  "react-autosize-textarea>react": "*",
54
54
  "react-autosize-textarea>react-dom": "*",
55
- //Temporary pinnings because WordPress bricked their typedefs
56
- "@types/wordpress__block-editor": "15.0.5",
57
- "@types/wordpress__blocks": "15.10.2",
58
- "@wordpress/block-editor": "15.16.0",
59
- "@wordpress/blocks": "15.16.0",
60
- "@wordpress/components": "32.6.0",
61
- "@wordpress/compose": "7.43.0",
62
- "@wordpress/core-data": "7.43.0",
63
- "@wordpress/data": "10.43.0",
64
- "@wordpress/editor": "14.43.0",
65
- "@wordpress/element": "6.43.0",
66
- "@wordpress/hooks": "4.43.0",
67
- "@wordpress/i18n": "6.16.0",
68
- "@wordpress/icons": "12.1.0",
69
- "date-fns": "^4.0.0",
55
+ "@types/wordpress__blocks": "-",
56
+ "@floating-ui/react-dom@<2.1.8": "^2.1.8",
57
+ "@radix-ui/react-slot@<1.2.4": "^1.2.4",
58
+ "@radix-ui/react-primitive@<2.1.4": "^2.1.4",
59
+ "@wordpress/components@<33.0.0": "^33.0.0",
60
+ "date-fns<4.0.0": "^4.0.0",
61
+ "diff@<8.0.4": "^8.0.4",
62
+ "framer-motion@<12.38.0": "^12.38.0",
63
+ "react-is@<18.3.1": "^18.3.1",
64
+ "uuid@<11.1.1": "^11.1.1",
70
65
  ...config.overrides,
71
66
  ...mergeableConfig.projectOverrides
72
67
  },