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

build(deps-dev): bump ybiq from 17.0.0 to 17.2.0 #1293

Merged
merged 1 commit into from
Feb 1, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 1, 2024

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps ybiq from 17.0.0 to 17.2.0.

Release notes

Sourced from ybiq's releases.

v17.2.0

See the changelog for details.

ybiquitous/ybiq@v17.1.0...v17.2.0

v17.1.0

See the changelog for details.

ybiquitous/ybiq@v17.0.0...v17.1.0

Changelog

Sourced from ybiq's changelog.

17.2.0 (2024-01-30)

Features

  • commitlint: loosen body-max-line-length from 100 to 300 (#1690) (fdead22)
  • husky: replace npx --no-install with npm exec --no (#1691) (ec3af44)

17.1.0 (2024-01-29)

Features

Commits
  • 5f5543f chore(release): 17.2.0
  • ec3af44 feat(husky): replace npx --no-install with npm exec --no (#1691)
  • fdead22 feat(commitlint): loosen body-max-line-length from 100 to 300 (#1690)
  • 8266cba chore(release): 17.1.0
  • f6c3e51 feat(deps): bump husky from 8.0.3 to 9.0.6 (#1689)
  • 9be3a06 build(deps-dev): bump the typescript group with 1 update (#1688)
  • 0626b76 build(deps-dev): bump the eslint-dev group with 1 update (#1687)
  • 3eef4b0 build(deps): bump the commitlint group with 2 updates (#1686)
  • e3fed83 build(deps): bump prettier from 3.2.2 to 3.2.4 (#1685)
  • 55b4058 build(deps-dev): bump the eslint-dev group with 1 update (#1684)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 1, 2024
@github-actions github-actions bot enabled auto-merge (squash) February 1, 2024 03:17
Copy link
Contributor

github-actions bot commented Feb 1, 2024

Diff between ybiq 17.0.0 and 17.2.0
diff --git a/.husky/commit-msg b/.husky/commit-msg
old mode 100755
new mode 100644
index v17.0.0..v17.2.0 
--- a/.husky/commit-msg
+++ b/.husky/commit-msg
@@ -1,4 +1,1 @@
-#!/usr/bin/env sh
-. "$(dirname -- "$0")/_/husky.sh"
-
-npx --no-install commitlint --edit "$1"
+npm exec --no -- commitlint --edit "$1"
diff --git a/.husky/post-commit b/.husky/post-commit
old mode 100755
new mode 100644
index v17.0.0..v17.2.0 
--- a/.husky/post-commit
+++ b/.husky/post-commit
@@ -1,4 +1,1 @@
-#!/usr/bin/env sh
-. "$(dirname -- "$0")/_/husky.sh"
-
 npm run release:dry-run
diff --git a/.husky/pre-commit b/.husky/pre-commit
old mode 100755
new mode 100644
index v17.0.0..v17.2.0 
--- a/.husky/pre-commit
+++ b/.husky/pre-commit
@@ -1,4 +1,1 @@
-#!/usr/bin/env sh
-. "$(dirname -- "$0")/_/husky.sh"
-
-npx --no-install lint-staged
+npm exec --no -- lint-staged
diff --git a/lib/init.js b/lib/init.js
index v17.0.0..v17.2.0 100644
--- a/lib/init.js
+++ b/lib/init.js
@@ -110,5 +110,5 @@
         extends: ["@commitlint/config-conventional"],
         rules: {
-          "body-max-line-length": [1, "always", 100],
+          "body-max-line-length": [1, "always", 300],
         },
       };
diff --git a/package.json b/package.json
index v17.0.0..v17.2.0 100644
--- a/package.json
+++ b/package.json
@@ -1,5 +1,5 @@
 {
   "name": "ybiq",
-  "version": "17.0.0",
+  "version": "17.2.0",
   "description": "Useful command-line tools for Node.js project",
   "author": "Masafumi Koba",
@@ -37,11 +37,11 @@
   },
   "dependencies": {
-    "@commitlint/cli": "^18.4.3",
-    "@commitlint/config-conventional": "^18.4.3",
+    "@commitlint/cli": "^18.6.0",
+    "@commitlint/config-conventional": "^18.6.0",
     "eslint": "^8.56.0",
-    "husky": "^8.0.3",
+    "husky": "^9.0.6",
     "lint-staged": "^15.2.0",
     "npm-run-all": "^4.1.5",
-    "prettier": "^3.1.1",
+    "prettier": "^3.2.4",
     "remark-cli": "^12.0.0",
     "standard-version": "^9.5.0",
@@ -50,9 +50,9 @@
   "devDependencies": {
     "@tsconfig/strictest": "^2.0.2",
-    "@types/node": "^20.10.5",
+    "@types/node": "^20.11.10",
     "@types/yargs": "^17.0.32",
-    "@typescript-eslint/eslint-plugin": "^6.15.0",
+    "@typescript-eslint/eslint-plugin": "^6.19.1",
     "eslint-config-ybiquitous": "^19.0.0",
-    "eslint-plugin-jest": "^27.6.0",
+    "eslint-plugin-jest": "^27.6.3",
     "jest": "^29.7.0",
     "remark-preset-ybiquitous": "^0.4.2",
@@ -81,9 +81,9 @@
     "release": "standard-version",
     "release:dry-run": "standard-version --dry-run",
-    "prepare": "husky install"
+    "prepare": "husky"
   },
   "lint-staged": {
     "*.{js,jsx,cjs,mjs,ts,tsx}": "eslint --cache --fix",
-    "!(*.snap)": "prettier --cache --write",
+    "!(**/*.snap|.husky/**)": "prettier --cache --write",
     "!(CHANGELOG).md": "remark --frail"
   },
Size Files
15.4 KB → 15.3 KB (-153 B 🟢) 19 → 19 (±0 🟢)
Command details
npm diff --diff=ybiq@17.0.0 --diff=ybiq@17.2.0 --diff-unified=2

See also the npm diff document.

Reported by ybiquitous/npm-diff-action@v1.5.0 (Node.js 20.11.0 and npm 10.4.0)

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/ybiq-17.2.0 branch from f5cbc26 to 04b7468 Compare February 1, 2024 03:19
Bumps [ybiq](https://github.com/ybiquitous/ybiq) from 17.0.0 to 17.2.0.
- [Release notes](https://github.com/ybiquitous/ybiq/releases)
- [Changelog](https://github.com/ybiquitous/ybiq/blob/main/CHANGELOG.md)
- [Commits](ybiquitous/ybiq@v17.0.0...v17.2.0)

---
updated-dependencies:
- dependency-name: ybiq
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/ybiq-17.2.0 branch from 04b7468 to 84dc27d Compare February 1, 2024 03:47
@github-actions github-actions bot merged commit b250ca6 into main Feb 1, 2024
5 checks passed
@github-actions github-actions bot deleted the dependabot/npm_and_yarn/ybiq-17.2.0 branch February 1, 2024 03:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants