@plaudit/pnpm-plugin-plaudit-config 1.3.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,10 @@ 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
+
8
12
  ## [1.3.0] - 2026-04-29
9
13
  ### Removed
10
14
  - The temporary pins for WordPress' broken typedefs
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plaudit/pnpm-plugin-plaudit-config",
3
- "version": "1.3.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,11 +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
55
  "@types/wordpress__blocks": "-",
56
- "date-fns": "^4.0.0",
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",
57
65
  ...config.overrides,
58
66
  ...mergeableConfig.projectOverrides
59
67
  },