18 Commits

Author SHA1 Message Date
859fc5d629 prepare Release v1.8.2 (#154)
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/tag/docs Pipeline was successful
ci/woodpecker/tag/ci Pipeline was successful
### 📖 Summary

- update changelog
- update package

### 📑 Test Plan

 CI pipeline tests (Default)

### 💬 Details

_No response_

### 📚 Additional Notes

_No response_

Reviewed-on: #154
2024-12-12 20:30:52 +01:00
f45fe5e4a0 chore(deps): update dependency prettier to v3.4.2 (#151)
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | devDependencies | patch | [`3.4.1` -> `3.4.2`](https://renovatebot.com/diffs/npm/prettier/3.4.1/3.4.2) |

---

### Release Notes

<details>
<summary>prettier/prettier (prettier)</summary>

### [`v3.4.2`](https://github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#342)

[Compare Source](https://github.com/prettier/prettier/compare/3.4.1...3.4.2)

[diff](https://github.com/prettier/prettier/compare/3.4.1...3.4.2)

##### Treat U+30A0 & U+30FB in Katakana Block as CJK ([#&#8203;16796](https://github.com/prettier/prettier/pull/16796) by [@&#8203;tats-u](https://github.com/tats-u))

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- prettier-ignore -->

```md
<!-- Input (--prose-wrap=never) -->

C言
語
・
C++
・
Go
・
Rust

<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust

<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust
```

U+30A0 can be used as the replacement of the `-` in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

##### Fix comments print on class methods with decorators ([#&#8203;16891](https://github.com/prettier/prettier/pull/16891) by [@&#8203;fisker](https://github.com/fisker))

<!-- prettier-ignore -->

```jsx
// Input
class A {
  @&#8203;decorator
  /**
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.1
class A {
  @&#8203;decorator
  async /**
   * The method description
   *
   */
  method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.2
class A {
  @&#8203;decorator
  /**
   * The method description
   *
   */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
```

##### Fix non-idempotent formatting ([#&#8203;16899](https://github.com/prettier/prettier/pull/16899) by [@&#8203;seiyab](https://github.com/seiyab))

This bug fix is not language-specific. You may see similar change in any languages. This fixes regression in 3.4.0 so change caused by it should yield same formatting as 3.3.3.

<!-- prettier-ignore -->

```jsx
// Input
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.1 (first)
<div>
  foo
  <span>
    longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo
  </span>, abc
</div>;

// Prettier 3.4.1 (second)
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.2
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;
```

</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.

---

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

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS41Ny4xIiwidXBkYXRlZEluVmVyIjoiMzkuNTcuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJyZW5vdmF0ZSJdfQ==-->

Reviewed-on: #151
Co-authored-by: renovate-bot <renovate@ocram85.com>
Co-committed-by: renovate-bot <renovate@ocram85.com>
2024-12-12 20:04:21 +01:00
c2cf031afc prepare release v1.8.1 (#149)
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/tag/docs Pipeline was successful
ci/woodpecker/tag/ci Pipeline was successful
### 📖 Summary

- update changelog
- update package version

### 📑 Test Plan

 CI pipeline tests (Default)

### 💬 Details

_No response_

### 📚 Additional Notes

_No response_

Reviewed-on: #149
2024-12-02 10:35:46 +01:00
9770d71aea chore(deps): update dependency typescript to v5.7.2 (#145)
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript)) | peerDependencies | minor | [`5.6.3` -> `5.7.2`](https://renovatebot.com/diffs/npm/typescript/5.6.3/5.7.2) |

---

### Release Notes

<details>
<summary>microsoft/TypeScript (typescript)</summary>

### [`v5.7.2`](https://github.com/microsoft/TypeScript/releases/tag/v5.7.2): TypeScript 5.7

[Compare Source](https://github.com/microsoft/TypeScript/compare/v5.6.3...v5.7.2)

For release notes, check out the [release announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-5-7/).

-   [fixed issues query for Typescript 5.7.0 (Beta)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.7.0%22+is%3Aclosed+).
-   [fixed issues query for Typescript 5.7.1 (RC)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.7.1%22+is%3Aclosed+).
-   [fixed issues query for Typescript 5.7.2 (Stable)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.7.2%22+is%3Aclosed+).

Downloads are available on:

-   [npm](https://www.npmjs.com/package/typescript)

</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.

---

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

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNi4zIiwidXBkYXRlZEluVmVyIjoiMzkuNDMuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJyZW5vdmF0ZSJdfQ==-->

Reviewed-on: #145
Reviewed-by: OCram85 <marco.blessing@googlemail.com>
Co-authored-by: renovate-bot <renovate@ocram85.com>
Co-committed-by: renovate-bot <renovate@ocram85.com>
2024-12-02 10:21:58 +01:00
1222bfc54d chore(deps): update dependency prettier to v3.4.1 (#148)
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | devDependencies | minor | [`3.3.3` -> `3.4.1`](https://renovatebot.com/diffs/npm/prettier/3.3.3/3.4.1) |

---

### Release Notes

<details>
<summary>prettier/prettier (prettier)</summary>

### [`v3.4.1`](https://github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#341)

[Compare Source](https://github.com/prettier/prettier/compare/3.4.0...3.4.1)

[diff](https://github.com/prettier/prettier/compare/3.4.0...3.4.1)

##### Remove unnecessary parentheses around assignment in `v-on` ([#&#8203;16887](https://github.com/prettier/prettier/pull/16887) by [@&#8203;fisker](https://github.com/fisker))

<!-- prettier-ignore -->

```vue
<!-- Input -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

<!-- Prettier 3.4.0 -->
<template>
  <button @&#8203;click="(foo += 2)">Click</button>
</template>

<!-- Prettier 3.4.1 -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>
```

### [`v3.4.0`](https://github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#340)

[Compare Source](https://github.com/prettier/prettier/compare/3.3.3...3.4.0)

[diff](https://github.com/prettier/prettier/compare/3.3.3...3.4.0)

🔗 [Release Notes](https://prettier.io/blog/2024/11/26/3.4.0.html)

</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.

---

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

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS40Mi4yIiwidXBkYXRlZEluVmVyIjoiMzkuNDIuMiIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJyZW5vdmF0ZSJdfQ==-->

Reviewed-on: #148
Reviewed-by: OCram85 <marco.blessing@googlemail.com>
Co-authored-by: renovate-bot <renovate@ocram85.com>
Co-committed-by: renovate-bot <renovate@ocram85.com>
2024-12-02 10:04:33 +01:00
499fd68fab prepare release 1.8.0 (#142)
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/tag/docs Pipeline was successful
ci/woodpecker/tag/ci Pipeline was successful
### 📖 Summary

- update changelog
- update version in package.json

### 📑 Test Plan

 CI pipeline tests (Default)

### 💬 Details

_No response_

### 📚 Additional Notes

_No response_

Reviewed-on: #142
2024-11-22 07:11:48 +01:00
8d682c5437 chore(deps): update dependency vitepress to v1.5.0 (#137)
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [vitepress](https://vitepress.dev/) ([source](https://github.com/vuejs/vitepress)) | devDependencies | minor | [`1.4.1` -> `1.5.0`](https://renovatebot.com/diffs/npm/vitepress/1.4.1/1.5.0) |

---

### Release Notes

<details>
<summary>vuejs/vitepress (vitepress)</summary>

### [`v1.5.0`](https://github.com/vuejs/vitepress/blob/HEAD/CHANGELOG.md#150-2024-11-04)

[Compare Source](https://github.com/vuejs/vitepress/compare/v1.4.5...v1.5.0)

##### Features

-   on-demand social icons ([#&#8203;4339](https://github.com/vuejs/vitepress/issues/4339)) ([05f2f0d](05f2f0d261)), closes [#&#8203;4256](https://github.com/vuejs/vitepress/issues/4256) [#&#8203;4135](https://github.com/vuejs/vitepress/issues/4135) [#&#8203;4076](https://github.com/vuejs/vitepress/issues/4076) [#&#8203;3809](https://github.com/vuejs/vitepress/issues/3809) [#&#8203;3750](https://github.com/vuejs/vitepress/issues/3750) [#&#8203;1214](https://github.com/vuejs/vitepress/issues/1214) [#&#8203;2768](https://github.com/vuejs/vitepress/issues/2768) [#&#8203;2861](https://github.com/vuejs/vitepress/issues/2861)

#### [1.4.5](https://github.com/vuejs/vitepress/compare/v1.4.4...v1.4.5) (2024-11-03)

##### Bug Fixes

-   lang lazy load not working with twoslash ([fc92a77](fc92a77a5d)), closes [#&#8203;4334](https://github.com/vuejs/vitepress/issues/4334)
-   typo in missing language check ([dcb8450](dcb8450f11))

#### [1.4.3](https://github.com/vuejs/vitepress/compare/v1.4.2...v1.4.3) (2024-10-31)

##### Performance Improvements

-   lazy load shiki languages ([#&#8203;4326](https://github.com/vuejs/vitepress/issues/4326)) ([8299778](829977876a))

#### [1.4.2](https://github.com/vuejs/vitepress/compare/v1.4.1...v1.4.2) (2024-10-29)

##### Bug Fixes

-   cache markdown-it instance and properly dispose shiki on config reload ([#&#8203;4321](https://github.com/vuejs/vitepress/issues/4321)) ([45968cd](45968cdc50)) ([acfe97f](acfe97f608))
-   **regression:** hmr not working with markdown includes due to wrong cache key ([615aed5](615aed5df7)), closes [#&#8203;4289](https://github.com/vuejs/vitepress/issues/4289) [#&#8203;4303](https://github.com/vuejs/vitepress/issues/4303)
-   remove explicit chinese fonts ([#&#8203;4286](https://github.com/vuejs/vitepress/issues/4286)) ([668e9f7](668e9f7050)) ([b893550](b8935502fb)), closes [#&#8203;4286](https://github.com/vuejs/vitepress/issues/4286)
-   **theme/a11y:** don't select search result unless mouse is actually moved ([e638d85](e638d855cf)), closes [#&#8203;4297](https://github.com/vuejs/vitepress/issues/4297)
-   **theme:** add types for `VPLink`, `VPSocialLink` and `VPSocialLinks` exports ([#&#8203;4284](https://github.com/vuejs/vitepress/issues/4284)) ([fcae4d5](fcae4d5554))
-   **theme:** don't escape html in `siteTitle` ([#&#8203;4308](https://github.com/vuejs/vitepress/issues/4308)) ([bd690d6](bd690d6a9b))

#### [1.4.1](https://github.com/vuejs/vitepress/compare/v1.4.0...v1.4.1) (2024-10-13)

##### Bug Fixes

-   broken rewrites on windows ([#&#8203;4268](https://github.com/vuejs/vitepress/issues/4268)) ([b46d6d3](b46d6d3a20))
-   **client:** use `usePreferredDark` with `appearance: "force-auto"` ([#&#8203;4263](https://github.com/vuejs/vitepress/issues/4263)) ([3e8fc40](3e8fc40c36))
-   **client:** wrong script async check ([461a5b0](461a5b001d))
-   **theme:** bind missing no icon prop in the menu link component [#&#8203;4260](https://github.com/vuejs/vitepress/issues/4260) ([b96712c](b96712c074))
-   **theme:** improve local search input a11y ([#&#8203;4066](https://github.com/vuejs/vitepress/issues/4066)) ([92b92ae](92b92aefca))

##### Features

-   **experimental:** support passing function for rewrites ([#&#8203;4274](https://github.com/vuejs/vitepress/issues/4274)) ([8436472](8436472c78))

### [`v1.4.5`](https://github.com/vuejs/vitepress/blob/HEAD/CHANGELOG.md#145-2024-11-03)

##### Bug Fixes

-   lang lazy load not working with twoslash ([fc92a77](fc92a77a5d)), closes [#&#8203;4334](https://github.com/vuejs/vitepress/issues/4334)
-   typo in missing language check ([dcb8450](dcb8450f11))

### [`v1.4.3`](https://github.com/vuejs/vitepress/blob/HEAD/CHANGELOG.md#143-2024-10-31)

[Compare Source](https://github.com/vuejs/vitepress/compare/v1.4.2...v1.4.3)

##### Performance Improvements

-   lazy load shiki languages ([#&#8203;4326](https://github.com/vuejs/vitepress/issues/4326)) ([8299778](829977876a))

### [`v1.4.2`](https://github.com/vuejs/vitepress/blob/HEAD/CHANGELOG.md#142-2024-10-29)

[Compare Source](https://github.com/vuejs/vitepress/compare/v1.4.1...v1.4.2)

##### Bug Fixes

-   cache markdown-it instance and properly dispose shiki on config reload ([#&#8203;4321](https://github.com/vuejs/vitepress/issues/4321)) ([45968cd](45968cdc50)) ([acfe97f](acfe97f608))
-   **regression:** hmr not working with markdown includes due to wrong cache key ([615aed5](615aed5df7)), closes [#&#8203;4289](https://github.com/vuejs/vitepress/issues/4289) [#&#8203;4303](https://github.com/vuejs/vitepress/issues/4303)
-   remove explicit chinese fonts ([#&#8203;4286](https://github.com/vuejs/vitepress/issues/4286)) ([668e9f7](668e9f7050)) ([b893550](b8935502fb)), closes [#&#8203;4286](https://github.com/vuejs/vitepress/issues/4286)
-   **theme/a11y:** don't select search result unless mouse is actually moved ([e638d85](e638d855cf)), closes [#&#8203;4297](https://github.com/vuejs/vitepress/issues/4297)
-   **theme:** add types for `VPLink`, `VPSocialLink` and `VPSocialLinks` exports ([#&#8203;4284](https://github.com/vuejs/vitepress/issues/4284)) ([fcae4d5](fcae4d5554))
-   **theme:** don't escape html in `siteTitle` ([#&#8203;4308](https://github.com/vuejs/vitepress/issues/4308)) ([bd690d6](bd690d6a9b))

</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.

---

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

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40NDAuNyIsInVwZGF0ZWRJblZlciI6IjM3LjQ0MC43IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlIl19-->

Reviewed-on: #137
Reviewed-by: OCram85 <marco.blessing@googlemail.com>
Co-authored-by: renovate-bot <renovate@ocram85.com>
Co-committed-by: renovate-bot <renovate@ocram85.com>
2024-11-19 14:18:48 +01:00
4c84939734 prepare release v1.7.1 (#136)
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/tag/ci Pipeline was successful
ci/woodpecker/tag/docs Pipeline was successful
### 📖 Summary

- update changelog
-- bump package version

### 📑 Test Plan

 CI pipeline tests (Default)

### 💬 Details

_No response_

### 📚 Additional Notes

_No response_

Reviewed-on: #136
2024-10-23 15:41:32 +02:00
4bff70a6d3 prepare release v1.7.0 (#133)
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/tag/ci Pipeline was successful
ci/woodpecker/tag/docs Pipeline was successful
### 📖 Summary

- updates chanelog
- adds new blog post

### 📑 Test Plan

 CI pipeline tests (Default)

### 💬 Details

_No response_

### 📚 Additional Notes

_No response_

Reviewed-on: #133
2024-10-22 15:09:35 +02:00
bfa4344249 chore(deps): update dependency vitepress to v1.4.1 (#130)
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/push/docs Pipeline was successful
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [vitepress](https://vitepress.dev/) ([source](https://github.com/vuejs/vitepress)) | devDependencies | minor | [`1.3.4` -> `1.4.1`](https://renovatebot.com/diffs/npm/vitepress/1.3.4/1.4.1) |

---

### Release Notes

<details>
<summary>vuejs/vitepress (vitepress)</summary>

### [`v1.4.1`](https://github.com/vuejs/vitepress/blob/HEAD/CHANGELOG.md#141-2024-10-13)

[Compare Source](https://github.com/vuejs/vitepress/compare/v1.4.0...v1.4.1)

##### Bug Fixes

-   broken rewrites on windows ([#&#8203;4268](https://github.com/vuejs/vitepress/issues/4268)) ([b46d6d3](b46d6d3a20))
-   **client:** use `usePreferredDark` with `appearance: "force-auto"` ([#&#8203;4263](https://github.com/vuejs/vitepress/issues/4263)) ([3e8fc40](3e8fc40c36))
-   **client:** wrong script async check ([461a5b0](461a5b001d))
-   **theme:** bind missing no icon prop in the menu link component [#&#8203;4260](https://github.com/vuejs/vitepress/issues/4260) ([b96712c](b96712c074))
-   **theme:** improve local search input a11y ([#&#8203;4066](https://github.com/vuejs/vitepress/issues/4066)) ([92b92ae](92b92aefca))

##### Features

-   **experimental:** support passing function for rewrites ([#&#8203;4274](https://github.com/vuejs/vitepress/issues/4274)) ([8436472](8436472c78))

### [`v1.4.0`](https://github.com/vuejs/vitepress/blob/HEAD/CHANGELOG.md#140-2024-10-07)

[Compare Source](https://github.com/vuejs/vitepress/compare/v1.3.4...v1.4.0)

##### Bug Fixes

-   `vueRE` conflicting with `lineNoRE` ([#&#8203;4247](https://github.com/vuejs/vitepress/issues/4247)) ([2ac64b8](2ac64b8d41))
-   hmr not updating page data in rewritten paths and file path is wrong in mdit for dynamic routes ([c46e4b7](c46e4b784d)), closes [#&#8203;4172](https://github.com/vuejs/vitepress/issues/4172)
-   remove font synthesis in webfont mode, google fonts now support italic axis in inter ([1628918](1628918f30))
-   **theme:** change the order of CSS rules of `VPFlyout` ([#&#8203;4225](https://github.com/vuejs/vitepress/issues/4225)) ([68150a6](68150a6f33)), closes [#&#8203;4224](https://github.com/vuejs/vitepress/issues/4224)
-   **theme:** respect custom tag prop in VPButton component ([#&#8203;4185](https://github.com/vuejs/vitepress/issues/4185)) ([9c5d348](9c5d348c03))

##### Features

-   add `data-title` attribute for code group label tag ([#&#8203;4152](https://github.com/vuejs/vitepress/issues/4152)) ([bc7271d](bc7271d258))
-   allow ignoring certain headers and their subtrees completely in outline ([3e11b6a](3e11b6abf5)), closes [#&#8203;4171](https://github.com/vuejs/vitepress/issues/4171)
-   **client:** add `onAfterPageLoad` hook in router ([#&#8203;4126](https://github.com/vuejs/vitepress/issues/4126)) ([315c220](315c220049))
-   support adding extra attributes to snippet imports (useful for twoslash) ([#&#8203;4100](https://github.com/vuejs/vitepress/issues/4100)) ([e8f7dd1](e8f7dd16f6))
-   **theme:** expose theme default VPLink & VPSocialLink(s) component ([#&#8203;4178](https://github.com/vuejs/vitepress/issues/4178)) ([615e33b](615e33bb24))
-   trigger `onContentUpdated` on frontmatter-only changes too ([0db269a](0db269a4c5))

#### [1.3.4](https://github.com/vuejs/vitepress/compare/v1.3.3...v1.3.4) (2024-08-24)

##### Bug Fixes

-   check if `_importGlobMap` (vite internal) exists before using it ([612d66f](612d66fbb5))

#### [1.3.3](https://github.com/vuejs/vitepress/compare/v1.3.2...v1.3.3) (2024-08-17)

##### Miscellaneous

-   bump deps ([a20db24](a20db24782))

#### [1.3.2](https://github.com/vuejs/vitepress/compare/v1.3.1...v1.3.2) (2024-08-05)

##### Bug Fixes

-   multiple cache busting imports causing useData to fail ([2b3e486](2b3e486ab9)), closes [#&#8203;3820](https://github.com/vuejs/vitepress/issues/3820), reverts [#&#8203;3398](https://github.com/vuejs/vitepress/issues/3398), reopens [#&#8203;3363](https://github.com/vuejs/vitepress/issues/3363)
-   **theme:** excerpt style in LocalSearchBox ([#&#8203;4050](https://github.com/vuejs/vitepress/issues/4050)) ([2bc0d39](2bc0d39d50))

#### [1.3.1](https://github.com/vuejs/vitepress/compare/v1.3.0...v1.3.1) (2024-07-14)

##### Bug Fixes

-   don't reopen browser on restart when `vite.server.open` is specified ([6263db1](6263db170a)), closes [#&#8203;4040](https://github.com/vuejs/vitepress/issues/4040)
-   **theme/regression:** typo in component props resulting in nested titles not showing in navbar ([01d0d45](01d0d45292)), closes [#&#8203;4042](https://github.com/vuejs/vitepress/issues/4042)

</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.

---

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

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40NDAuNyIsInVwZGF0ZWRJblZlciI6IjM3LjQ0MC43IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlIl19-->

Reviewed-on: https://gitea.ocram85.com/arkanum/arkanum/pulls/130
Reviewed-by: OCram85 <marco.blessing@googlemail.com>
Co-authored-by: renovate-bot <renovate@ocram85.com>
Co-committed-by: renovate-bot <renovate@ocram85.com>
2024-10-22 14:10:33 +02:00
db6f131d14 chore(deps): update dependency typescript to v5.6.3 (#129)
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript)) | peerDependencies | patch | [`5.6.2` -> `5.6.3`](https://renovatebot.com/diffs/npm/typescript/5.6.2/5.6.3) |

---

### Release Notes

<details>
<summary>microsoft/TypeScript (typescript)</summary>

### [`v5.6.3`](https://github.com/microsoft/TypeScript/releases/tag/v5.6.3): TypeScript 5.6.3

[Compare Source](https://github.com/microsoft/TypeScript/compare/v5.6.2...v5.6.3)

For release notes, check out the [release announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-5-6/).

For the complete list of fixed issues, check out the

-   [fixed issues query for Typescript 5.6.0 (Beta)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.6.0%22+is%3Aclosed+).
-   [fixed issues query for Typescript 5.6.1 (RC)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.6.1%22+is%3Aclosed+).
-   [fixed issues query for Typescript 5.6.2 (Stable)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.6.2%22+is%3Aclosed+).
-   [fixed issues query for Typescript 5.6.3 (Stable)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.6.3%22+is%3Aclosed+).

Downloads are available on:

-   [npm](https://www.npmjs.com/package/typescript)
-   [NuGet package](https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild)

</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.

---

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

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40NDAuNyIsInVwZGF0ZWRJblZlciI6IjM3LjQ0MC43IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlIl19-->

Reviewed-on: #129
Co-authored-by: renovate-bot <renovate@ocram85.com>
Co-committed-by: renovate-bot <renovate@ocram85.com>
2024-10-22 13:59:59 +02:00
89f87e0299 chore(deps): update dependency typescript to v5.6.2 (#126)
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [typescript](https://www.typescriptlang.org/) ([source](https://github.com/microsoft/TypeScript)) | peerDependencies | minor | [`5.5.4` -> `5.6.2`](https://renovatebot.com/diffs/npm/typescript/5.5.4/5.6.2) |

---

### Release Notes

<details>
<summary>microsoft/TypeScript (typescript)</summary>

### [`v5.6.2`](https://github.com/microsoft/TypeScript/releases/tag/v5.6.2): TypeScript 5.6

[Compare Source](https://github.com/microsoft/TypeScript/compare/v5.5.4...v5.6.2)

For release notes, check out the [release announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-5-6/).

For the complete list of fixed issues, check out the

-   [fixed issues query for Typescript 5.6.0 (Beta)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.6.0%22+is%3Aclosed+).
-   [fixed issues query for Typescript 5.6.1 (RC)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.6.1%22+is%3Aclosed+).
-   [fixed issues query for Typescript 5.6.2 (Stable)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.6.2%22+is%3Aclosed+).

Downloads are available on:

-   [npm](https://www.npmjs.com/package/typescript)
-   [NuGet package](https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild)

</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.

---

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

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40NDAuNyIsInVwZGF0ZWRJblZlciI6IjM3LjQ0MC43IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlIl19-->

Reviewed-on: #126
Reviewed-by: OCram85 <marco.blessing@googlemail.com>
Co-authored-by: renovate-bot <renovate@ocram85.com>
Co-committed-by: renovate-bot <renovate@ocram85.com>
2024-10-07 14:55:05 +02:00
fe7d255aeb chore(deps): pin dependencies (#124)
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | devDependencies | pin | [`^3.2.5` -> `3.3.3`](https://renovatebot.com/diffs/npm/prettier/3.3.3/3.3.3) |
| [rimraf](https://github.com/isaacs/rimraf) | devDependencies | pin | [`^6.0.0` -> `6.0.1`](https://renovatebot.com/diffs/npm/rimraf/6.0.1/6.0.1) |
| [typescript](https://www.typescriptlang.org/) ([source](https://github.com/Microsoft/TypeScript)) | peerDependencies | pin | [`^5.0.0` -> `5.5.4`](https://renovatebot.com/diffs/npm/typescript/5.5.4/5.5.4) |
| [vitepress](https://vitepress.dev/) ([source](https://github.com/vuejs/vitepress)) | devDependencies | pin | [`^1.1.0` -> `1.3.4`](https://renovatebot.com/diffs/npm/vitepress/1.3.4/1.3.4) |

Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies.

---

### 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 is behind base branch, or you tick the rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired.

---

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

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40NDAuNyIsInVwZGF0ZWRJblZlciI6IjM3LjQ0MC43IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlIl19-->

Reviewed-on: #124
Co-authored-by: renovate-bot <renovate@ocram85.com>
Co-committed-by: renovate-bot <renovate@ocram85.com>
2024-09-09 10:35:50 +02:00
ea513c90ac prepare release v1.6.0 (#122)
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/tag/docs Pipeline was successful
ci/woodpecker/tag/ci Pipeline was successful
### 📖 Summary

- updatee changelog
- add blog post
- update guides

### 📑 Test Plan

 CI pipeline tests (Default)

### 💬 Details

_No response_

### 📚 Additional Notes

_No response_

Reviewed-on: #122
2024-08-01 10:46:28 +02:00
d9b03cadb4 chore(deps): update dependency rimraf to v6 (#115)
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [rimraf](https://github.com/isaacs/rimraf) | devDependencies | major | [`^5.0.5` -> `^6.0.0`](https://renovatebot.com/diffs/npm/rimraf/5.0.9/6.0.1) |

---

### Release Notes

<details>
<summary>isaacs/rimraf (rimraf)</summary>

### [`v6.0.1`](https://github.com/isaacs/rimraf/compare/v6.0.0...v6.0.1)

[Compare Source](https://github.com/isaacs/rimraf/compare/v6.0.0...v6.0.1)

### [`v6.0.0`](https://github.com/isaacs/rimraf/compare/v5.0.9...v6.0.0)

[Compare Source](https://github.com/isaacs/rimraf/compare/v5.0.9...v6.0.0)

</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.

---

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

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjguMyIsInVwZGF0ZWRJblZlciI6IjM3LjQyOC4zIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlIl19-->

Reviewed-on: #115
Reviewed-by: OCram85 <marco.blessing@googlemail.com>
Co-authored-by: renovate-bot <renovate@ocram85.com>
Co-committed-by: renovate-bot <renovate@ocram85.com>
2024-07-11 17:38:02 +02:00
59c789b464 prepare release v1.5.3 (#111)
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/tag/docs Pipeline was successful
ci/woodpecker/tag/ci Pipeline was successful
### 📖 Summary

- update changelog
- bump package version

### 📑 Test Plan

 CI pipeline tests (Default)

### 💬 Details

_No response_

### 📚 Additional Notes

_No response_

Reviewed-on: #111
2024-06-20 17:46:27 +02:00
e1e2a068d8 prep/v1.5.2 (#105)
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/tag/docs Pipeline was successful
ci/woodpecker/tag/ci Pipeline was successful
### 📖 Summary

- updates changelog
- bumps package / docs version

### 📑 Test Plan

 CI pipeline tests (Default)

### 💬 Details

_No response_

### 📚 Additional Notes

_No response_

Reviewed-on: #105
2024-06-04 16:36:35 +02:00
81aea0a4d2 add Arkanum.dev site with docs (#97)
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful
### 📖 Summary

- adds vitepess based docs for Arkanum.dev
- migrate arakanumm project from CodeServer org to arkanum org

### 📑 Test Plan

 CI pipeline tests (Default)

### 💬 Details

_No response_

### 📚 Additional Notes

_No response_

Reviewed-on: #97
2024-05-22 10:07:32 +02:00