From 6a9feba98f36de1980bab313f6b0a861f5009d71 Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 3 Jun 2024 11:22:41 +0300 Subject: [PATCH 1/6] chore(example): allow using github template without github variables (#672) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix(659) fix default template * chore: fix spacing issues * chore: add space --------- Co-authored-by: Orhun ParmaksΔ±z --- examples/github.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/github.toml b/examples/github.toml index e71507fd7a..c25af7e63a 100644 --- a/examples/github.toml +++ b/examples/github.toml @@ -26,6 +26,7 @@ body = """ {%- endif %} {%- endfor -%} +{%- if github -%} {% if github.contributors | filter(attribute="is_first_time", value=true) | length != 0 %} {% raw %}\n{% endraw -%} ## New Contributors @@ -36,6 +37,7 @@ body = """ [#{{ contributor.pr_number }}]({{ self::remote_url() }}/pull/{{ contributor.pr_number }}) \ {%- endif %} {%- endfor -%} +{%- endif -%} {% if version %} {% if previous.version %} From 1338703a2aedb4116dcae849ada4941432f57e74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Mon, 3 Jun 2024 14:12:40 +0300 Subject: [PATCH 2/6] docs(website): add highlights for 2.3.0 (#670) * docs(website): add highlights for 2.3.0 * docs(website): update other section in highlights * docs(website): update highlights --- website/blog/git-cliff-2.2.0.md | 2 +- website/blog/git-cliff-2.3.0.md | 123 ++++++++++++++++++++++++++ website/docs/integration/bitbucket.md | 2 +- website/docs/integration/github.md | 2 +- website/docs/integration/gitlab.md | 2 +- website/docs/integration/python.md | 2 +- website/docs/integration/rust.md | 2 +- 7 files changed, 129 insertions(+), 6 deletions(-) create mode 100644 website/blog/git-cliff-2.3.0.md diff --git a/website/blog/git-cliff-2.2.0.md b/website/blog/git-cliff-2.2.0.md index 114e4e179b..d3a37b27ed 100644 --- a/website/blog/git-cliff-2.2.0.md +++ b/website/blog/git-cliff-2.2.0.md @@ -1,6 +1,6 @@ --- slug: 2.2.0 -title: "What's new in 2.2.0? \U0001F195" +title: What's new in 2.2.0? date: 2024-03-30T00:00:00.000Z authors: orhun tags: diff --git a/website/blog/git-cliff-2.3.0.md b/website/blog/git-cliff-2.3.0.md new file mode 100644 index 0000000000..ba850647ca --- /dev/null +++ b/website/blog/git-cliff-2.3.0.md @@ -0,0 +1,123 @@ +--- +slug: 2.3.0 +title: "What's new in 2.3.0? \U0001F195" +date: 2024-06-03T00:00:00.000Z +authors: orhun +tags: + - release +--- + +
+ + + + + +
+ +> [**git-cliff**](https://github.com/orhun/git-cliff) is a command-line tool (written in [Rust](https://www.rust-lang.org/)) that provides a highly customizable way to generate changelogs from git history. +> +> It supports using [custom regular expressions](/docs/configuration/git#commit_parsers) to alter changelogs which are mostly based on [conventional commits](/docs/configuration/git#conventional_commits). With a single [configuration file](/docs/configuration), a wide variety of formats can be applied for a changelog, thanks to the Jinja2/Django-inspired [template engine](/docs/category/templating). +> +> More information and examples can be found in the [GitHub repository](https://github.com/orhun/git-cliff). + +## What's new? ⛰️ + +The full changelog can be found [here](https://github.com/orhun/git-cliff/blob/main/CHANGELOG.md). + +--- + +### 🦊 GitLab Integration + +`git-cliff` now supports integrating with repositories hosted on GitLab (gitlab.com or your own instance)! + +This means that you can now use the following variables in your changelog: + +- GitLab usernames (`${{ commit.gitlab.username }}` or `${{ contributor.username }}`) +- Contributors list (`${{ gitlab.contributors }}`) +- Pull requests (`${{ commit.gitlab.pr_number }}` or `${{ contributor.pr_number }}`) + +Which means you can generate a changelog entries like the following: + +```md +## What's Changed + +- feat(commit): add merge_commit flag to the context by @orhun in !389 +- test(fixture): add test fixture for bumping version by @orhun in !360 + +## New Contributors + +- @someone made their first contribution in !360 +- @cliffjumper made their first contribution in !389 + + +``` + +To set up `git-cliff` for your project, simply: + +1. Check out the [quickstart guide](https://git-cliff.org/docs/) for installation / initialization. +1. Set up the [Git remote](https://git-cliff.org/docs/configuration/remote/) for your GitLab project. +1. Update the changelog configuration to use the [template variables](https://git-cliff.org/docs/integration/gitlab/). + +:::tip + +See the [GitLab integration](https://git-cliff.org/docs/integration/gitlab) for detailed documentation and usage examples. It works very similar to the [GitHub integration](https://git-cliff.org/docs/integration/github). + +::: + +Big thanks to [dark0dave](https://github.com/dark0dave) for the [contribution](https://github.com/orhun/git-cliff/issues/654)! + +--- + +### πŸ“˜ Bitbucket Integration + +`git-cliff` now supports integrating with repositories hosted on Bitbucket! + +It works similarly with GitHub and GitLab integrations. See the [documentation](https://git-cliff.org/docs/integration/bitbucket) for details and usage examples. + +Big thanks to [dark0dave](https://github.com/dark0dave) for the [contribution](https://github.com/orhun/git-cliff/issues/654)! + +--- + +### πŸ“€ Output to stdout + +Using `-` for `stdout` is common among CLI tools and `git-cliff` now supports this! + +``` +$ git-cliff -o - +``` + +You can simply use `-` instead instead of `-o /dev/stdout`. It can also be used in conjunction with `-p` argument as mentioned in [this issue](https://github.com/orhun/git-cliff/issues/643). + +--- + +### 🧰 Other + +- _(nix)_ Add installation instructions for Nix ([#669](https://github.com/orhun/git-cliff/issues/669)) - ([63c8ad4](https://github.com/orhun/git-cliff/commit/63c8ad43e9ecaa825ef1f0a67164265497f3a1dd)) +- _(website)_ Add more git range examples ([#655](https://github.com/orhun/git-cliff/issues/655)) - ([d451252](https://github.com/orhun/git-cliff/commit/d4512521fbcfb971c94aa7794d78bced1ddec7a1)) +- _(args)_ Allow -o and -p together if they point to different files ([#653](https://github.com/orhun/git-cliff/issues/653)) - ([076f859](https://github.com/orhun/git-cliff/commit/076f85915386c4769c838ca9a359d216249d2a97)) +- _(example)_ Allow using github template without github variables ([#672](https://github.com/orhun/git-cliff/issues/672)) - ([6a9feba](https://github.com/orhun/git-cliff/commit/6a9feba98f36de1980bab313f6b0a861f5009d71)) + +--- + +## Contributions πŸ‘₯ + +- @R11baka made their first contribution in [#672](https://github.com/orhun/git-cliff/pull/672) +- @0x61nas made their first contribution in [#669](https://github.com/orhun/git-cliff/pull/669) +- @dark0dave made their first contribution in [#663](https://github.com/orhun/git-cliff/pull/663) +- @antonengelhardt made their first contribution in [#653](https://github.com/orhun/git-cliff/pull/653) + +Any contribution is highly appreciated! See the [contribution guidelines](https://github.com/orhun/git-cliff/blob/main/CONTRIBUTING.md) for getting started. + +Feel free to [submit issues](https://github.com/orhun/git-cliff/issues/new/choose) and join our [Discord](https://discord.gg/W3mAwMDWH4) / [Matrix](https://matrix.to/#/#git-cliff:matrix.org) for discussion! + +Follow `git-cliff` on [Twitter](https://twitter.com/git_cliff) & [Mastodon](https://fosstodon.org/@git_cliff) to not miss any news! + +## Support 🌟 + +If you liked `git-cliff` and/or my other projects [on GitHub](https://github.com/orhun), consider [donating](https://donate.orhun.dev) to support my open source endeavors. + +- πŸ’– GitHub Sponsors: [@orhun](https://github.com/sponsors/orhun) +- β˜• Buy Me A Coffee: [https://www.buymeacoffee.com/orhun](https://www.buymeacoffee.com/orhun) + +Have a fantastic day! ⛰️ diff --git a/website/docs/integration/bitbucket.md b/website/docs/integration/bitbucket.md index 2cb8ecbb3a..459dd5d5e3 100644 --- a/website/docs/integration/bitbucket.md +++ b/website/docs/integration/bitbucket.md @@ -2,7 +2,7 @@ sidebar_position: 3 --- -# Bitbucket Integration πŸ†• +# Bitbucket Integration πŸ“˜ :::warning diff --git a/website/docs/integration/github.md b/website/docs/integration/github.md index 1db251ce15..cc3a918b8d 100644 --- a/website/docs/integration/github.md +++ b/website/docs/integration/github.md @@ -2,7 +2,7 @@ sidebar_position: 1 --- -# GitHub Integration πŸ†• +# GitHub Integration πŸ™ :::warning diff --git a/website/docs/integration/gitlab.md b/website/docs/integration/gitlab.md index e615992073..77bc3052ba 100644 --- a/website/docs/integration/gitlab.md +++ b/website/docs/integration/gitlab.md @@ -2,7 +2,7 @@ sidebar_position: 2 --- -# GitLab Integration πŸ†• +# GitLab Integration 🦊 :::warning diff --git a/website/docs/integration/python.md b/website/docs/integration/python.md index 9fe787db9a..623ec8500a 100644 --- a/website/docs/integration/python.md +++ b/website/docs/integration/python.md @@ -2,7 +2,7 @@ sidebar_position: 5 --- -# Python +# Python 🐍 For Python projects, **git-cliff** can be configured in `pyproject.toml` via the [tool table](https://peps.python.org/pep-0518/#tool-table). To do this, simply replace the available configuration sections with `[tool.git-cliff.
]` and place them inside `pyproject.toml`. For example: diff --git a/website/docs/integration/rust.md b/website/docs/integration/rust.md index c7af1f981a..be3c150181 100644 --- a/website/docs/integration/rust.md +++ b/website/docs/integration/rust.md @@ -2,7 +2,7 @@ sidebar_position: 4 --- -# Rust/Cargo +# Rust/Cargo πŸ¦€ For Rust projects, **git-cliff** can be configured in `Cargo.toml` via [metadata table](https://doc.rust-lang.org/cargo/reference/manifest.html#the-metadata-table). To do this, simply replace the available configuration sections with `[package.metadata.git-cliff.
]` and place them inside `Cargo.toml`. For example: From fafca7dfe592cd10e303f1f0bf2023502a2c0853 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Mon, 3 Jun 2024 14:14:35 +0300 Subject: [PATCH 3/6] chore(release): prepare for v2.3.0 --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ Cargo.lock | 4 ++-- git-cliff-core/Cargo.toml | 2 +- git-cliff/Cargo.toml | 4 ++-- npm/git-cliff/package.json | 14 +++++++------- 5 files changed, 38 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e90515c299..5e68b487a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,31 @@ [![animation](https://raw.githubusercontent.com/orhun/git-cliff/main/website/static/img/git-cliff-anim.gif)](https://git-cliff.org) +## [2.3.0](https://github.com/orhun/git-cliff/compare/v2.2.2..v2.3.0) - 2024-06-03 + +### ⛰️ Features + +- *(bitbucket)* Add Bitbucket support ([#663](https://github.com/orhun/git-cliff/issues/663)) - ([8ffc054](https://github.com/orhun/git-cliff/commit/8ffc0548fe0fd8930627412fecb9bc08a7879504)) +- *(gitlab)* [**breaking**] Add GitLab support ([#654](https://github.com/orhun/git-cliff/issues/654)) - ([b490f2a](https://github.com/orhun/git-cliff/commit/b490f2a24e3ebeb6ee54382ce9aa642ecff17b01)) +- *(output)* Support using stdout via dash (`-o -`) ([#644](https://github.com/orhun/git-cliff/issues/644)) - ([df81f63](https://github.com/orhun/git-cliff/commit/df81f636f53e63d305d06944ff014a21612cb666)) + +### πŸ› Bug Fixes + +- *(args)* Allow -o and -p together if they point to different files ([#653](https://github.com/orhun/git-cliff/issues/653)) - ([076f859](https://github.com/orhun/git-cliff/commit/076f85915386c4769c838ca9a359d216249d2a97)) + +### πŸ“š Documentation + +- *(nix)* Add installation instructions for Nix ([#669](https://github.com/orhun/git-cliff/issues/669)) - ([63c8ad4](https://github.com/orhun/git-cliff/commit/63c8ad43e9ecaa825ef1f0a67164265497f3a1dd)) +- *(website)* Add highlights for 2.3.0 ([#670](https://github.com/orhun/git-cliff/issues/670)) - ([1338703](https://github.com/orhun/git-cliff/commit/1338703a2aedb4116dcae849ada4941432f57e74)) +- *(website)* Clean up Nix docs - ([2c2a300](https://github.com/orhun/git-cliff/commit/2c2a300616fa151b91858a2a7d88bdc9b9dae497)) +- *(website)* Add more git range examples ([#655](https://github.com/orhun/git-cliff/issues/655)) - ([d451252](https://github.com/orhun/git-cliff/commit/d4512521fbcfb971c94aa7794d78bced1ddec7a1)) + +### βš™οΈ Miscellaneous Tasks + +- *(cd)* Use macos-14 runner - ([22c94ed](https://github.com/orhun/git-cliff/commit/22c94ed8355d71a5fe99d8c1e9c8a3824338debf)) +- *(example)* Allow using github template without github variables ([#672](https://github.com/orhun/git-cliff/issues/672)) - ([6a9feba](https://github.com/orhun/git-cliff/commit/6a9feba98f36de1980bab313f6b0a861f5009d71)) +- *(links)* Ignore patreon links - ([bfe2774](https://github.com/orhun/git-cliff/commit/bfe27744701296185d2f1d37dba7cfb48bd70519)) +- *(npm)* Update yarn.lock - ([1c2b4ac](https://github.com/orhun/git-cliff/commit/1c2b4ac85b49f62ae6f19660e7e47b3bc24a5cae)) + ## [2.2.2](https://github.com/orhun/git-cliff/compare/v2.2.1..v2.2.2) - 2024-05-11 ### ⛰️ Features diff --git a/Cargo.lock b/Cargo.lock index 2be27d2788..a23f16a963 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -759,7 +759,7 @@ checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" [[package]] name = "git-cliff" -version = "2.2.2" +version = "2.3.0" dependencies = [ "clap", "clap_complete", @@ -780,7 +780,7 @@ dependencies = [ [[package]] name = "git-cliff-core" -version = "2.2.2" +version = "2.3.0" dependencies = [ "config", "dirs", diff --git a/git-cliff-core/Cargo.toml b/git-cliff-core/Cargo.toml index 58e8bc1f36..5d6dbb4b3f 100644 --- a/git-cliff-core/Cargo.toml +++ b/git-cliff-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-cliff-core" -version = "2.2.2" # managed by release.sh +version = "2.3.0" # managed by release.sh description = "Core library of git-cliff" authors = ["git-cliff contributors "] license = "MIT OR Apache-2.0" diff --git a/git-cliff/Cargo.toml b/git-cliff/Cargo.toml index 6d361169ee..a398b80211 100644 --- a/git-cliff/Cargo.toml +++ b/git-cliff/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-cliff" -version = "2.2.2" # managed by release.sh +version = "2.3.0" # managed by release.sh description = "A highly customizable changelog generator ⛰️" authors = ["git-cliff contributors "] license = "MIT OR Apache-2.0" @@ -49,7 +49,7 @@ indicatif = { version = "0.17.8", optional = true } env_logger = "0.10.2" [dependencies.git-cliff-core] -version = "2.2.2" # managed by release.sh +version = "2.3.0" # managed by release.sh path = "../git-cliff-core" [dev-dependencies] diff --git a/npm/git-cliff/package.json b/npm/git-cliff/package.json index 3be04fe8d6..acadb0722e 100644 --- a/npm/git-cliff/package.json +++ b/npm/git-cliff/package.json @@ -1,6 +1,6 @@ { "name": "git-cliff", - "version": "2.2.2", + "version": "2.3.0", "description": "A highly customizable Changelog Generator that follows Conventional Commit specifications ⛰️", "type": "module", "main": "lib/cjs/index.d.cts", @@ -88,12 +88,12 @@ "typescript": "^5.3.3" }, "optionalDependencies": { - "git-cliff-darwin-arm64": "2.2.2", - "git-cliff-darwin-x64": "2.2.2", - "git-cliff-linux-arm64": "2.2.2", - "git-cliff-linux-x64": "2.2.2", - "git-cliff-windows-arm64": "2.2.2", - "git-cliff-windows-x64": "2.2.2" + "git-cliff-darwin-arm64": "2.3.0", + "git-cliff-darwin-x64": "2.3.0", + "git-cliff-linux-arm64": "2.3.0", + "git-cliff-linux-x64": "2.3.0", + "git-cliff-windows-arm64": "2.3.0", + "git-cliff-windows-x64": "2.3.0" }, "eslintConfig": { "extends": [ From 17e3821a3336cdcff0e7a79b05c55392a46c89ad Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Jun 2024 10:02:54 +0300 Subject: [PATCH 4/6] chore(deps): bump toml from 0.8.13 to 0.8.14 (#673) Bumps [toml](https://github.com/toml-rs/toml) from 0.8.13 to 0.8.14. - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.13...toml-v0.8.14) --- updated-dependencies: - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 8 ++++---- git-cliff-core/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a23f16a963..ab539ff60c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2558,9 +2558,9 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.13" +version = "0.8.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4e43f8cc456c9704c851ae29c67e17ef65d2c30017c17a9765b89c382dc8bba" +checksum = "6f49eb2ab21d2f26bd6db7bf383edc527a7ebaee412d17af4d40fdccd442f335" dependencies = [ "serde", "serde_spanned", @@ -2579,9 +2579,9 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.22.13" +version = "0.22.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c127785850e8c20836d49732ae6abfa47616e60bf9d9f57c43c250361a9db96c" +checksum = "f21c7aaf97f1bd9ca9d4f9e73b0a6c74bd5afef56f2bc931943a6e1c37e04e38" dependencies = [ "indexmap", "serde", diff --git a/git-cliff-core/Cargo.toml b/git-cliff-core/Cargo.toml index 5d6dbb4b3f..5b2f8f121d 100644 --- a/git-cliff-core/Cargo.toml +++ b/git-cliff-core/Cargo.toml @@ -61,7 +61,7 @@ serde_json = "1.0.117" serde_regex = "1.1.0" tera = "1.20.0" indexmap = { version = "2.2.6", optional = true } -toml = "0.8.13" +toml = "0.8.14" lazy-regex = "3.1.0" next_version = "0.2.17" semver = "1.0.23" From 62d3d9e9fc70fe6ffe74e9bba348c4dd330857bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Jun 2024 19:35:46 +0300 Subject: [PATCH 5/6] chore(deps): bump @easyops-cn/docusaurus-search-local from 0.41.0 to 0.42.0 in /website in the minor group (#676) Bumps the minor group in /website with 1 update: [@easyops-cn/docusaurus-search-local](https://github.com/easyops-cn/docusaurus-search-local). Updates `@easyops-cn/docusaurus-search-local` from 0.41.0 to 0.42.0 - [Release notes](https://github.com/easyops-cn/docusaurus-search-local/releases) - [Changelog](https://github.com/easyops-cn/docusaurus-search-local/blob/master/docusaurus-search-local/CHANGELOG.md) - [Commits](https://github.com/easyops-cn/docusaurus-search-local/compare/v0.41.0...v0.42.0) --- updated-dependencies: - dependency-name: "@easyops-cn/docusaurus-search-local" dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- website/package-lock.json | 14 +++++++------- website/package.json | 2 +- website/yarn.lock | 18 +++++------------- 3 files changed, 13 insertions(+), 21 deletions(-) diff --git a/website/package-lock.json b/website/package-lock.json index cdd117270c..2d9989cab7 100644 --- a/website/package-lock.json +++ b/website/package-lock.json @@ -11,7 +11,7 @@ "dependencies": { "@docusaurus/core": "^3.4.0", "@docusaurus/preset-classic": "^3.4.0", - "@easyops-cn/docusaurus-search-local": "^0.41.0", + "@easyops-cn/docusaurus-search-local": "^0.42.0", "@mdx-js/react": "^3.0.1", "clsx": "^2.1.1", "prism-react-renderer": "^2.3.0", @@ -2779,9 +2779,9 @@ } }, "node_modules/@easyops-cn/docusaurus-search-local": { - "version": "0.41.0", - "resolved": "https://registry.npmjs.org/@easyops-cn/docusaurus-search-local/-/docusaurus-search-local-0.41.0.tgz", - "integrity": "sha512-8Dj2QzoqjhOK1CCoNFk+F/ST5mjUHLgnX55W2YdQ0M+qL/GrFNxNVUpPhWMcCCBoLQk6CkhkYHUFRnv+sC9Ieg==", + "version": "0.42.0", + "resolved": "https://registry.npmjs.org/@easyops-cn/docusaurus-search-local/-/docusaurus-search-local-0.42.0.tgz", + "integrity": "sha512-05G151YgZrNmV3GkO6/B+nYb8fwdyBMhJTSzZViifTJQ1b0IgCmugUval4udkBlGeUL8LN/otORiMhwUMSos5A==", "dependencies": { "@docusaurus/plugin-content-docs": "^2 || ^3", "@docusaurus/theme-translations": "^2 || ^3", @@ -16738,9 +16738,9 @@ } }, "@easyops-cn/docusaurus-search-local": { - "version": "0.41.0", - "resolved": "https://registry.npmjs.org/@easyops-cn/docusaurus-search-local/-/docusaurus-search-local-0.41.0.tgz", - "integrity": "sha512-8Dj2QzoqjhOK1CCoNFk+F/ST5mjUHLgnX55W2YdQ0M+qL/GrFNxNVUpPhWMcCCBoLQk6CkhkYHUFRnv+sC9Ieg==", + "version": "0.42.0", + "resolved": "https://registry.npmjs.org/@easyops-cn/docusaurus-search-local/-/docusaurus-search-local-0.42.0.tgz", + "integrity": "sha512-05G151YgZrNmV3GkO6/B+nYb8fwdyBMhJTSzZViifTJQ1b0IgCmugUval4udkBlGeUL8LN/otORiMhwUMSos5A==", "requires": { "@docusaurus/plugin-content-docs": "^2 || ^3", "@docusaurus/theme-translations": "^2 || ^3", diff --git a/website/package.json b/website/package.json index 4e3b63e1fc..141b4a5142 100644 --- a/website/package.json +++ b/website/package.json @@ -18,7 +18,7 @@ "dependencies": { "@docusaurus/core": "^3.4.0", "@docusaurus/preset-classic": "^3.4.0", - "@easyops-cn/docusaurus-search-local": "^0.41.0", + "@easyops-cn/docusaurus-search-local": "^0.42.0", "@mdx-js/react": "^3.0.1", "clsx": "^2.1.1", "prism-react-renderer": "^2.3.0", diff --git a/website/yarn.lock b/website/yarn.lock index e1da6bca8d..5f4df140f7 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1758,7 +1758,7 @@ tslib "^2.6.0" utility-types "^3.10.0" -"@docusaurus/theme-translations@3.4.0": +"@docusaurus/theme-translations@3.4.0", "@docusaurus/theme-translations@^2 || ^3": version "3.4.0" resolved "https://registry.yarnpkg.com/@docusaurus/theme-translations/-/theme-translations-3.4.0.tgz#e6355d01352886c67e38e848b2542582ea3070af" integrity sha512-zSxCSpmQCCdQU5Q4CnX/ID8CSUUI3fvmq4hU/GNP/XoAWtXo9SAVnM3TzpU8Gb//H3WCsT8mJcTfyOk3d9ftNg== @@ -1766,14 +1766,6 @@ fs-extra "^11.1.1" tslib "^2.6.0" -"@docusaurus/theme-translations@^2 || ^3": - version "3.3.2" - resolved "https://registry.yarnpkg.com/@docusaurus/theme-translations/-/theme-translations-3.3.2.tgz#39ad011573ce963f1eda98ded925971ca57c5a52" - integrity sha512-bPuiUG7Z8sNpGuTdGnmKl/oIPeTwKr0AXLGu9KaP6+UFfRZiyWbWE87ti97RrevB2ffojEdvchNujparR3jEZQ== - dependencies: - fs-extra "^11.1.1" - tslib "^2.6.0" - "@docusaurus/tsconfig@^3.4.0": version "3.4.0" resolved "https://registry.yarnpkg.com/@docusaurus/tsconfig/-/tsconfig-3.4.0.tgz#2b6ea208e580facc6e3330433e9b4321ef0eb3f5" @@ -1864,10 +1856,10 @@ cssesc "^3.0.0" immediate "^3.2.3" -"@easyops-cn/docusaurus-search-local@^0.41.0": - version "0.41.0" - resolved "https://registry.yarnpkg.com/@easyops-cn/docusaurus-search-local/-/docusaurus-search-local-0.41.0.tgz#60b151e71bd8d4a24f1c61b402e4cc905a9c3f56" - integrity sha512-8Dj2QzoqjhOK1CCoNFk+F/ST5mjUHLgnX55W2YdQ0M+qL/GrFNxNVUpPhWMcCCBoLQk6CkhkYHUFRnv+sC9Ieg== +"@easyops-cn/docusaurus-search-local@^0.42.0": + version "0.42.0" + resolved "https://registry.yarnpkg.com/@easyops-cn/docusaurus-search-local/-/docusaurus-search-local-0.42.0.tgz#2e79d60cbe96c00eed3a47dae54443394d0ebbee" + integrity sha512-05G151YgZrNmV3GkO6/B+nYb8fwdyBMhJTSzZViifTJQ1b0IgCmugUval4udkBlGeUL8LN/otORiMhwUMSos5A== dependencies: "@docusaurus/plugin-content-docs" "^2 || ^3" "@docusaurus/theme-translations" "^2 || ^3" From e270235c7f1035558188f129d7629518effc7df6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Wed, 5 Jun 2024 19:47:51 +0300 Subject: [PATCH 6/6] chore(npm): update yarn.lock --- cliff.toml | 1 + npm/git-cliff/yarn.lock | 48 ++++++++++++++++++++--------------------- 2 files changed, 25 insertions(+), 24 deletions(-) diff --git a/cliff.toml b/cliff.toml index 8c677a67fd..81f90a065d 100644 --- a/cliff.toml +++ b/cliff.toml @@ -89,6 +89,7 @@ commit_parsers = [ { message = "^chore\\(deps.*\\)", skip = true }, { message = "^chore\\(pr\\)", skip = true }, { message = "^chore\\(pull\\)", skip = true }, + { message = "^chore\\(npm\\).*yarn\\.lock", skip = true }, { message = "^chore|^ci", group = "βš™οΈ Miscellaneous Tasks" }, { body = ".*security", group = "πŸ›‘οΈ Security" }, { message = "^revert", group = "◀️ Revert" }, diff --git a/npm/git-cliff/yarn.lock b/npm/git-cliff/yarn.lock index 45fa1e44c6..137c710429 100644 --- a/npm/git-cliff/yarn.lock +++ b/npm/git-cliff/yarn.lock @@ -1371,44 +1371,44 @@ __metadata: languageName: node linkType: hard -"git-cliff-darwin-arm64@npm:2.2.2": - version: 2.2.2 - resolution: "git-cliff-darwin-arm64@npm:2.2.2" +"git-cliff-darwin-arm64@npm:2.3.0": + version: 2.3.0 + resolution: "git-cliff-darwin-arm64@npm:2.3.0" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"git-cliff-darwin-x64@npm:2.2.2": - version: 2.2.2 - resolution: "git-cliff-darwin-x64@npm:2.2.2" +"git-cliff-darwin-x64@npm:2.3.0": + version: 2.3.0 + resolution: "git-cliff-darwin-x64@npm:2.3.0" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"git-cliff-linux-arm64@npm:2.2.2": - version: 2.2.2 - resolution: "git-cliff-linux-arm64@npm:2.2.2" +"git-cliff-linux-arm64@npm:2.3.0": + version: 2.3.0 + resolution: "git-cliff-linux-arm64@npm:2.3.0" conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"git-cliff-linux-x64@npm:2.2.2": - version: 2.2.2 - resolution: "git-cliff-linux-x64@npm:2.2.2" +"git-cliff-linux-x64@npm:2.3.0": + version: 2.3.0 + resolution: "git-cliff-linux-x64@npm:2.3.0" conditions: os=linux & cpu=x64 languageName: node linkType: hard -"git-cliff-windows-arm64@npm:2.2.2": - version: 2.2.2 - resolution: "git-cliff-windows-arm64@npm:2.2.2" +"git-cliff-windows-arm64@npm:2.3.0": + version: 2.3.0 + resolution: "git-cliff-windows-arm64@npm:2.3.0" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"git-cliff-windows-x64@npm:2.2.2": - version: 2.2.2 - resolution: "git-cliff-windows-x64@npm:2.2.2" +"git-cliff-windows-x64@npm:2.3.0": + version: 2.3.0 + resolution: "git-cliff-windows-x64@npm:2.3.0" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -1422,12 +1422,12 @@ __metadata: "@typescript-eslint/parser": "npm:^7.1.0" eslint: "npm:^8.57.0" execa: "npm:^8.0.1" - git-cliff-darwin-arm64: "npm:2.2.2" - git-cliff-darwin-x64: "npm:2.2.2" - git-cliff-linux-arm64: "npm:2.2.2" - git-cliff-linux-x64: "npm:2.2.2" - git-cliff-windows-arm64: "npm:2.2.2" - git-cliff-windows-x64: "npm:2.2.2" + git-cliff-darwin-arm64: "npm:2.3.0" + git-cliff-darwin-x64: "npm:2.3.0" + git-cliff-linux-arm64: "npm:2.3.0" + git-cliff-linux-x64: "npm:2.3.0" + git-cliff-windows-arm64: "npm:2.3.0" + git-cliff-windows-x64: "npm:2.3.0" tsup: "npm:^8.0.2" typescript: "npm:^5.3.3" dependenciesMeta: