From 574c44468827dff4c1161d10328e1e0c22ad0110 Mon Sep 17 00:00:00 2001 From: Segun Adebayo Date: Tue, 23 Jul 2024 16:59:33 +0100 Subject: [PATCH] chore: update husky --- .github/workflows/release.yml | 1 + .husky/.gitignore | 1 - .husky/commit-msg | 3 --- .husky/pre-commit | 3 --- CHANGELOG.md | 20 ++++++++++++++++++++ package.json | 2 +- 6 files changed, 22 insertions(+), 8 deletions(-) delete mode 100644 .husky/.gitignore mode change 100755 => 100644 .husky/commit-msg mode change 100755 => 100644 .husky/pre-commit diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bdde32000a..a0c0567366 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,6 +15,7 @@ env: FORCE_COLOR: 2 TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} TURBO_TEAM: ${{ secrets.TURBO_TEAM }} + HUSKY: 0 jobs: release: diff --git a/.husky/.gitignore b/.husky/.gitignore deleted file mode 100644 index 31354ec138..0000000000 --- a/.husky/.gitignore +++ /dev/null @@ -1 +0,0 @@ -_ diff --git a/.husky/commit-msg b/.husky/commit-msg old mode 100755 new mode 100644 index b67d77e06d..c77294fb63 --- a/.husky/commit-msg +++ b/.husky/commit-msg @@ -1,4 +1 @@ -#!/bin/sh -. "$(dirname "$0")/_/husky.sh" - npx commitlint --edit "${1}" diff --git a/.husky/pre-commit b/.husky/pre-commit old mode 100755 new mode 100644 index 36af219892..2312dc587f --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,4 +1 @@ -#!/bin/sh -. "$(dirname "$0")/_/husky.sh" - npx lint-staged diff --git a/CHANGELOG.md b/CHANGELOG.md index cce9e76ade..dac3397f8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,26 @@ All notable changes to this project will be documented in this file. See the [Changesets](./.changeset) for the latest changes. +## [0.62.0](./#0.62.0) - 2024-07-23 + +### Fixed + +- **Combobox** + + - Improve accessibility by removing `aria-selected` and `aria-disabled` when `false` + - Prefer `click` over `pointerup` for consistent experience between screen readers and pointers. + +- **React** + + - Improve HMR behavior in React with components like Dialog, Select, and Menu + +### Changed + +- **Steps** + + - Rename `skippable` to `linear` prop to better communicate its intent + - Set default `orientation` to `horizontal` + ## [0.61.1](./#0.62.0) - 2024-07-15 ### Fixed diff --git a/package.json b/package.json index 774a92715d..d7c0cbd9a9 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "packages": "pnpm --filter=./packages/** -r", "build": "pnpm packages -- build", "postbuild": "pnpm document:types && pnpm document:data-attr", - "prepare": "husky install", + "prepare": "husky", "sync-pkgs": "tsx scripts/sync-packages.ts", "clean-pkgs": "pnpm -r exec rm -rf dist .swc *.log", "clean": "pnpm clean-pkgs && rm -rf node_modules",