eslint-plugin-primer-react 8.6.1-rc.f78127d → 8.6.1

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
@@ -6,6 +6,8 @@
6
6
 
7
7
  - [#548](https://github.com/primer/eslint-plugin-primer-react/pull/548) [`7f5af96`](https://github.com/primer/eslint-plugin-primer-react/commit/7f5af9610d0dde4c0e9941dc485ef1487c8d48ac) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - Fix use-styled-react-import fixer stripping type keyword from import specifiers
8
8
 
9
+ - [#565](https://github.com/primer/eslint-plugin-primer-react/pull/565) [`93f3788`](https://github.com/primer/eslint-plugin-primer-react/commit/93f3788bcc042ec35f4c62eb050431d1f4f439f5) Thanks [@mattcosta7](https://github.com/mattcosta7)! - Add SplitPageLayout.Sidebar to no-system-props exclusions for padding, position, and width.
10
+
9
11
  ## 8.6.0
10
12
 
11
13
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-primer-react",
3
- "version": "8.6.1-rc.f78127d",
3
+ "version": "8.6.1",
4
4
  "description": "ESLint rules for Primer React",
5
5
  "main": "src/index.js",
6
6
  "engines": {
@@ -41,7 +41,7 @@
41
41
  "typescript": "^6.0.3"
42
42
  },
43
43
  "devDependencies": {
44
- "@changesets/changelog-github": "^0.6.0",
44
+ "@changesets/changelog-github": "^0.7.0",
45
45
  "@changesets/cli": "^2.27.9",
46
46
  "@github/markdownlint-github": "^0.6.3",
47
47
  "@github/prettier-config": "0.0.6",
@@ -34,6 +34,7 @@ const excludedComponentProps = new Map([
34
34
  ['SplitPageLayout.Footer', new Set(['padding'])],
35
35
  ['SplitPageLayout.Pane', new Set(['padding', 'position', 'width'])],
36
36
  ['SplitPageLayout.Content', new Set(['padding', 'width'])],
37
+ ['SplitPageLayout.Sidebar', new Set(['padding', 'position', 'width'])],
37
38
  ['StyledOcticon', new Set(['size'])],
38
39
  ['Octicon', new Set(['size', 'color'])],
39
40
  ['PointerBox', new Set(['bg'])],