Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate husky to v6 #1934

Merged
merged 4 commits into from
Jun 15, 2021
Merged

Migrate husky to v6 #1934

merged 4 commits into from
Jun 15, 2021

Conversation

DavideViolante
Copy link
Contributor

I migrated husky to v6 and it seems to work for me, but review it please.
What I did:

  • tried the husky migration tool but without success (I think it needed an husky config file not inside package json)
  • installed husky v6 as dev dep
  • run npx husky-init && npm install as docs states
    • the command created .husky folder with gitignore and an example pre-commit file and add to package json the prepare script
  • edited pre-commit file adding npm test, it seems to execute everything to me, but let me know here if the command to execute is different
  • tried a commit to check if pre-commit hook is executed, and it is
  • bumped version
  • to test: prepublishOnly hook? Other hooks?

Copy link
Member

@fb55 fb55 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for looking into this! Looks mostly good, but I'd like to keep lint-staged around.

package.json Outdated Show resolved Hide resolved
package.json Outdated Show resolved Hide resolved
.husky/pre-commit Outdated Show resolved Hide resolved
@fb55 fb55 enabled auto-merge (squash) June 15, 2021 15:07
@fb55
Copy link
Member

fb55 commented Jun 15, 2021

Thanks so much @DavideViolante, great PR!

@fb55 fb55 merged commit ff7a445 into cheeriojs:main Jun 15, 2021
kodiakhq bot pushed a commit to X-oss-byte/Canary-nextjs that referenced this pull request Sep 22, 2023
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [cheerio](https://cheerio.js.org/) ([source](https://github.com/cheeriojs/cheerio)) | [`1.0.0-rc.9` -> `1.0.0-rc.12`](https://renovatebot.com/diffs/npm/cheerio/1.0.0-rc.9/1.0.0-rc.12) | [![age](https://developer.mend.io/api/mc/badges/age/npm/cheerio/1.0.0-rc.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/cheerio/1.0.0-rc.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/cheerio/1.0.0-rc.9/1.0.0-rc.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/cheerio/1.0.0-rc.9/1.0.0-rc.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>cheeriojs/cheerio (cheerio)</summary>

### [`v1.0.0-rc.12`](https://github.com/cheeriojs/cheerio/releases/tag/v1.0.0-rc.12)

[Compare Source](https://github.com/cheeriojs/cheerio/compare/v1.0.0-rc.11...v1.0.0-rc.12)

Bugfix release. Fixed issues:

-   Align `prop` undefined handling with jQuery by [@&#8203;fb55](https://github.com/fb55) in [cheeriojs/cheerio#2557
-   Allow deep imports of `cheerio/lib/utils` by [@&#8203;blixt](https://github.com/blixt) in [cheeriojs/cheerio#2601

#### New Contributors

-   [@&#8203;blixt](https://github.com/blixt) made their first contribution in [cheeriojs/cheerio#2601

**Full Changelog**: cheeriojs/cheerio@v1.0.0-rc.11...v1.0.0-rc.12

### [`v1.0.0-rc.11`](https://github.com/cheeriojs/cheerio/releases/tag/v1.0.0-rc.11)

[Compare Source](https://github.com/cheeriojs/cheerio/compare/v1.0.0-rc.10...v1.0.0-rc.11)

`[email protected]` is hopefully the last RC before the 1.0.0 release of Cheerio. There are two APIs that will be added for the next major release: An `exract` method ([cheeriojs/cheerio#2523) and NodeJS specific loader methods ([cheeriojs/cheerio#2051). These are still in flux and I'd appreciate feedback on the proposals.

A big thank you to everyone that contributed to this release! This includes code contributors, as well as the amazing financial support on [GitHub Sponsors](https://github.com/sponsors/cheeriojs)!

Under the hood, a lot of work for this release went into updating parse5, cheerio's default HTML parser. Have a look at [parse5's release notes](https://github.com/inikulin/parse5/releases/tag/v7.0.0) to see what has changed there.

#### Breaking

-   Cheerio is now a dual CommonJS and ESM module. That means that deep imports will now fail in newer versions of Node. [cheeriojs/cheerio#2508
-   `script` and `style` contents are added again in `.text()` [cheeriojs/cheerio#2509
    -   To keep the old behavior, switch `.text()` to `.prop('innerText')`
-   The TypeScript types inherited from upstream dependencies have changed. [cheeriojs/cheerio#2503
    -   Node types are now using tagged unions, which will make consumption a bit easier.

#### Features

-   Relevant options are now forwarded to `cheerio-select` [cheeriojs/cheerio#2511
    -   Custom pseudo classes can now be specified [using the `pseudos` option](https://cheerio.js.org/interfaces/CheerioOptions.html#pseudos).
-   For the `.prop()` method:
    -   Add `textContent` and `innerText` props [cheeriojs/cheerio#2214
    -   Users can now specify a `baseURI` option, which will lead to `href` and `src` props to be resolved as URLs. [cheeriojs/cheerio#2510
-   Added a `slim` export, which will always use htmlparser2 [cheeriojs/cheerio#1960

#### Fixes

-   Have `text` turn passed values to strings [cheeriojs/cheerio#2047
-   Include `undefined` in the return type of `get` by [@&#8203;glen-84](https://github.com/glen-84) in [cheeriojs/cheerio#2392
-   Recognise comments as HTML [cheeriojs/cheerio#2504
-   Add missing `undefined` return value [cheeriojs/cheerio#2505
-   Export missing static methods [cheeriojs/cheerio#2506
-   Have style parsing add malformed fields to previous field [cheeriojs/cheerio#2521

#### Refactor

-   Use `domutils` module directly [cheeriojs/cheerio#1928
-   Hand-roll `isHTML` [cheeriojs/cheerio#1935
-   Move initialization logic to `load` [cheeriojs/cheerio#1951
-   Only return elements in `closest` [cheeriojs/cheerio#2057
-   Remove unnecessary code, be more explicit [cheeriojs/cheerio#2279
-   Use stricter TS, ESLint configs [cheeriojs/cheerio#2507
-   Update exported values [cheeriojs/cheerio#2512

#### Development Experience

-   Migrate husky to v6 by [@&#8203;DavideViolante](https://github.com/DavideViolante) in [cheeriojs/cheerio#1934
-   Update CI by [@&#8203;XhmikosR](https://github.com/XhmikosR) in [cheeriojs/cheerio#2149
-   Set permissions for GitHub actions by [@&#8203;neilnaveen](https://github.com/neilnaveen) in [cheeriojs/cheerio#2453

#### Docs

-   Update README "is not a web browser" section by [@&#8203;mxschmitt](https://github.com/mxschmitt) in [cheeriojs/cheerio#2127

#### New Contributors

-   [@&#8203;DavideViolante](https://github.com/DavideViolante) made their first contribution in [cheeriojs/cheerio#1934
-   [@&#8203;mxschmitt](https://github.com/mxschmitt) made their first contribution in [cheeriojs/cheerio#2127
-   [@&#8203;glen-84](https://github.com/glen-84) made their first contribution in [cheeriojs/cheerio#2392
-   [@&#8203;neilnaveen](https://github.com/neilnaveen) made their first contribution in [cheeriojs/cheerio#2453

**Full Changelog**: cheeriojs/cheerio@v1.0.0-rc.10...v1.0.0-rc.11

### [`v1.0.0-rc.10`](https://github.com/cheeriojs/cheerio/releases/tag/v1.0.0-rc.10)

[Compare Source](https://github.com/cheeriojs/cheerio/compare/v1.0.0-rc.9...v1.0.0-rc.10)

**Fixes:**

-   `.html(node)` now moves passed nodes ([#&#8203;1923](https://github.com/cheeriojs/cheerio/issues/1923), fixes [#&#8203;940](https://github.com/cheeriojs/cheerio/issues/940))  [`258b26b`](https://github.com/cheeriojs/cheerio/commit/258b26b)
-   Boolean attributes are no longer special in xmlMode ([#&#8203;1903](https://github.com/cheeriojs/cheerio/issues/1903), fixes [#&#8203;1805](https://github.com/cheeriojs/cheerio/issues/1805))  [`b393e4a`](https://github.com/cheeriojs/cheerio/commit/b393e4a)
-   Rename parser adapter files ([#&#8203;1873](https://github.com/cheeriojs/cheerio/issues/1873), fixes [#&#8203;1847](https://github.com/cheeriojs/cheerio/issues/1847))  [`8f55dd8`](https://github.com/cheeriojs/cheerio/commit/8f55dd8)
-   Make `filter` work on all collections ([#&#8203;1870](https://github.com/cheeriojs/cheerio/issues/1870), fixes [#&#8203;1867](https://github.com/cheeriojs/cheerio/issues/1867))  [`fb8d31e`](https://github.com/cheeriojs/cheerio/commit/fb8d31e)
-   Bump cheerio-select ([#&#8203;1922](https://github.com/cheeriojs/cheerio/issues/1922), fixes https://www.npmjs.com/advisories/1754)  [`5cd2b9c`](https://github.com/cheeriojs/cheerio/commit/5cd2b9c)

**Documentation:**

-   Document how to define TS types for Plug-Ins ([#&#8203;1915](https://github.com/cheeriojs/cheerio/issues/1915), fixes [#&#8203;1778](https://github.com/cheeriojs/cheerio/issues/1778))  [`880fd2c`](https://github.com/cheeriojs/cheerio/commit/880fd2c)
-   Remove obsolete Testing section  [`e0c7cbb`](https://github.com/cheeriojs/cheerio/commit/e0c7cbb)
-   Remove now-invalid `require`  [`5dfbd35`](https://github.com/cheeriojs/cheerio/commit/5dfbd35)

**Refactors:**

-   Wrap shared behavior in `traversing` ([#&#8203;1909](https://github.com/cheeriojs/cheerio/issues/1909))  [`58e090a`](https://github.com/cheeriojs/cheerio/commit/58e090a)
-   Move `is` to `traversing`, optimize ([#&#8203;1908](https://github.com/cheeriojs/cheerio/issues/1908))  [`1c6fa3e`](https://github.com/cheeriojs/cheerio/commit/1c6fa3e)
-   Change order of arguments of internal `domEach` ([#&#8203;1892](https://github.com/cheeriojs/cheerio/issues/1892))  [`feda230`](https://github.com/cheeriojs/cheerio/commit/feda230)
-   Have `load` export a function ([#&#8203;1869](https://github.com/cheeriojs/cheerio/issues/1869))  [`c370f4e`](https://github.com/cheeriojs/cheerio/commit/c370f4e)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/sammyfilly/Canary-nextjs).
kodiakhq bot pushed a commit to X-oss-byte/Nextjs that referenced this pull request Sep 25, 2023
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [cheerio](https://cheerio.js.org/) ([source](https://github.com/cheeriojs/cheerio)) | [`1.0.0-rc.9` -> `1.0.0-rc.12`](https://renovatebot.com/diffs/npm/cheerio/1.0.0-rc.9/1.0.0-rc.12) | [![age](https://developer.mend.io/api/mc/badges/age/npm/cheerio/1.0.0-rc.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/cheerio/1.0.0-rc.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/cheerio/1.0.0-rc.9/1.0.0-rc.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/cheerio/1.0.0-rc.9/1.0.0-rc.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>cheeriojs/cheerio (cheerio)</summary>

### [`v1.0.0-rc.12`](https://github.com/cheeriojs/cheerio/releases/tag/v1.0.0-rc.12)

[Compare Source](https://github.com/cheeriojs/cheerio/compare/v1.0.0-rc.11...v1.0.0-rc.12)

Bugfix release. Fixed issues:

-   Align `prop` undefined handling with jQuery by [@&#8203;fb55](https://github.com/fb55) in [cheeriojs/cheerio#2557
-   Allow deep imports of `cheerio/lib/utils` by [@&#8203;blixt](https://github.com/blixt) in [cheeriojs/cheerio#2601

#### New Contributors

-   [@&#8203;blixt](https://github.com/blixt) made their first contribution in [cheeriojs/cheerio#2601

**Full Changelog**: cheeriojs/cheerio@v1.0.0-rc.11...v1.0.0-rc.12

### [`v1.0.0-rc.11`](https://github.com/cheeriojs/cheerio/releases/tag/v1.0.0-rc.11)

[Compare Source](https://github.com/cheeriojs/cheerio/compare/v1.0.0-rc.10...v1.0.0-rc.11)

`[email protected]` is hopefully the last RC before the 1.0.0 release of Cheerio. There are two APIs that will be added for the next major release: An `exract` method ([cheeriojs/cheerio#2523) and NodeJS specific loader methods ([cheeriojs/cheerio#2051). These are still in flux and I'd appreciate feedback on the proposals.

A big thank you to everyone that contributed to this release! This includes code contributors, as well as the amazing financial support on [GitHub Sponsors](https://github.com/sponsors/cheeriojs)!

Under the hood, a lot of work for this release went into updating parse5, cheerio's default HTML parser. Have a look at [parse5's release notes](https://github.com/inikulin/parse5/releases/tag/v7.0.0) to see what has changed there.

#### Breaking

-   Cheerio is now a dual CommonJS and ESM module. That means that deep imports will now fail in newer versions of Node. [cheeriojs/cheerio#2508
-   `script` and `style` contents are added again in `.text()` [cheeriojs/cheerio#2509
    -   To keep the old behavior, switch `.text()` to `.prop('innerText')`
-   The TypeScript types inherited from upstream dependencies have changed. [cheeriojs/cheerio#2503
    -   Node types are now using tagged unions, which will make consumption a bit easier.

#### Features

-   Relevant options are now forwarded to `cheerio-select` [cheeriojs/cheerio#2511
    -   Custom pseudo classes can now be specified [using the `pseudos` option](https://cheerio.js.org/interfaces/CheerioOptions.html#pseudos).
-   For the `.prop()` method:
    -   Add `textContent` and `innerText` props [cheeriojs/cheerio#2214
    -   Users can now specify a `baseURI` option, which will lead to `href` and `src` props to be resolved as URLs. [cheeriojs/cheerio#2510
-   Added a `slim` export, which will always use htmlparser2 [cheeriojs/cheerio#1960

#### Fixes

-   Have `text` turn passed values to strings [cheeriojs/cheerio#2047
-   Include `undefined` in the return type of `get` by [@&#8203;glen-84](https://github.com/glen-84) in [cheeriojs/cheerio#2392
-   Recognise comments as HTML [cheeriojs/cheerio#2504
-   Add missing `undefined` return value [cheeriojs/cheerio#2505
-   Export missing static methods [cheeriojs/cheerio#2506
-   Have style parsing add malformed fields to previous field [cheeriojs/cheerio#2521

#### Refactor

-   Use `domutils` module directly [cheeriojs/cheerio#1928
-   Hand-roll `isHTML` [cheeriojs/cheerio#1935
-   Move initialization logic to `load` [cheeriojs/cheerio#1951
-   Only return elements in `closest` [cheeriojs/cheerio#2057
-   Remove unnecessary code, be more explicit [cheeriojs/cheerio#2279
-   Use stricter TS, ESLint configs [cheeriojs/cheerio#2507
-   Update exported values [cheeriojs/cheerio#2512

#### Development Experience

-   Migrate husky to v6 by [@&#8203;DavideViolante](https://github.com/DavideViolante) in [cheeriojs/cheerio#1934
-   Update CI by [@&#8203;XhmikosR](https://github.com/XhmikosR) in [cheeriojs/cheerio#2149
-   Set permissions for GitHub actions by [@&#8203;neilnaveen](https://github.com/neilnaveen) in [cheeriojs/cheerio#2453

#### Docs

-   Update README "is not a web browser" section by [@&#8203;mxschmitt](https://github.com/mxschmitt) in [cheeriojs/cheerio#2127

#### New Contributors

-   [@&#8203;DavideViolante](https://github.com/DavideViolante) made their first contribution in [cheeriojs/cheerio#1934
-   [@&#8203;mxschmitt](https://github.com/mxschmitt) made their first contribution in [cheeriojs/cheerio#2127
-   [@&#8203;glen-84](https://github.com/glen-84) made their first contribution in [cheeriojs/cheerio#2392
-   [@&#8203;neilnaveen](https://github.com/neilnaveen) made their first contribution in [cheeriojs/cheerio#2453

**Full Changelog**: cheeriojs/cheerio@v1.0.0-rc.10...v1.0.0-rc.11

### [`v1.0.0-rc.10`](https://github.com/cheeriojs/cheerio/releases/tag/v1.0.0-rc.10)

[Compare Source](https://github.com/cheeriojs/cheerio/compare/v1.0.0-rc.9...v1.0.0-rc.10)

**Fixes:**

-   `.html(node)` now moves passed nodes ([#&#8203;1923](https://github.com/cheeriojs/cheerio/issues/1923), fixes [#&#8203;940](https://github.com/cheeriojs/cheerio/issues/940))  [`258b26b`](https://github.com/cheeriojs/cheerio/commit/258b26b)
-   Boolean attributes are no longer special in xmlMode ([#&#8203;1903](https://github.com/cheeriojs/cheerio/issues/1903), fixes [#&#8203;1805](https://github.com/cheeriojs/cheerio/issues/1805))  [`b393e4a`](https://github.com/cheeriojs/cheerio/commit/b393e4a)
-   Rename parser adapter files ([#&#8203;1873](https://github.com/cheeriojs/cheerio/issues/1873), fixes [#&#8203;1847](https://github.com/cheeriojs/cheerio/issues/1847))  [`8f55dd8`](https://github.com/cheeriojs/cheerio/commit/8f55dd8)
-   Make `filter` work on all collections ([#&#8203;1870](https://github.com/cheeriojs/cheerio/issues/1870), fixes [#&#8203;1867](https://github.com/cheeriojs/cheerio/issues/1867))  [`fb8d31e`](https://github.com/cheeriojs/cheerio/commit/fb8d31e)
-   Bump cheerio-select ([#&#8203;1922](https://github.com/cheeriojs/cheerio/issues/1922), fixes https://www.npmjs.com/advisories/1754)  [`5cd2b9c`](https://github.com/cheeriojs/cheerio/commit/5cd2b9c)

**Documentation:**

-   Document how to define TS types for Plug-Ins ([#&#8203;1915](https://github.com/cheeriojs/cheerio/issues/1915), fixes [#&#8203;1778](https://github.com/cheeriojs/cheerio/issues/1778))  [`880fd2c`](https://github.com/cheeriojs/cheerio/commit/880fd2c)
-   Remove obsolete Testing section  [`e0c7cbb`](https://github.com/cheeriojs/cheerio/commit/e0c7cbb)
-   Remove now-invalid `require`  [`5dfbd35`](https://github.com/cheeriojs/cheerio/commit/5dfbd35)

**Refactors:**

-   Wrap shared behavior in `traversing` ([#&#8203;1909](https://github.com/cheeriojs/cheerio/issues/1909))  [`58e090a`](https://github.com/cheeriojs/cheerio/commit/58e090a)
-   Move `is` to `traversing`, optimize ([#&#8203;1908](https://github.com/cheeriojs/cheerio/issues/1908))  [`1c6fa3e`](https://github.com/cheeriojs/cheerio/commit/1c6fa3e)
-   Change order of arguments of internal `domEach` ([#&#8203;1892](https://github.com/cheeriojs/cheerio/issues/1892))  [`feda230`](https://github.com/cheeriojs/cheerio/commit/feda230)
-   Have `load` export a function ([#&#8203;1869](https://github.com/cheeriojs/cheerio/issues/1869))  [`c370f4e`](https://github.com/cheeriojs/cheerio/commit/c370f4e)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/X-oss-byte/Nextjs).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants