5 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
1fc492fb03 chore(deps): update woodpeckerci/plugin-docker-buildx docker tag to v5.1.0 (#152)
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 | Update | Change |
|---|---|---|
| [woodpeckerci/plugin-docker-buildx](https://codeberg.org/woodpecker-plugins/docker-buildx) ([source](https://codeberg.org/woodpecker-plugins/docker-buildx.git)) | minor | `5.0.0` -> `5.1.0` |

---

### Release Notes

<details>
<summary>woodpecker-plugins/docker-buildx (woodpeckerci/plugin-docker-buildx)</summary>

### [`v5.1.0`](https://codeberg.org/woodpecker-plugins/docker-buildx/blob/HEAD/CHANGELOG.md#510---2024-12-07)

[Compare Source](https://codeberg.org/woodpecker-plugins/docker-buildx/compare/v5.0.0...v5.1.0)

##### ❤️ Thanks to all contributors! ❤️

[@&#8203;6543](https://github.com/6543), [@&#8203;pat-s](https://github.com/pat-s), [@&#8203;woodpecker-bot](https://github.com/woodpecker-bot)

##### 📈 Enhancement

-   Allow build-args to get json \[[#&#8203;202](https://codeberg.org/woodpecker-plugins/docker-buildx/pulls/202)]

##### 📚 Documentation

-   Clarify insecure tag \[[#&#8203;200](https://codeberg.org/woodpecker-plugins/docker-buildx/pulls/200)]

##### 📦️ Dependency

-   fix(deps): update module github.com/urfave/cli/v3 to v3.0.0-alpha9.1 \[[#&#8203;199](https://codeberg.org/woodpecker-plugins/docker-buildx/pulls/199)]
-   chore(deps): update woodpeckerci/plugin-docker-buildx docker tag to v5.0.0 \[[#&#8203;198](https://codeberg.org/woodpecker-plugins/docker-buildx/pulls/198)]

##### Misc

-   chore(deps): update docker/buildx-bin docker tag to v0.19.1 ([5ff83b1](5ff83b1454))
-   fix(deps): update module github.com/urfave/cli/v3 to v3.0.0-beta1 ([62b3316](62b3316cb6))
-   chore(deps): update woodpeckerci/plugin-release docker tag to v0.2.2 ([2ff549c](2ff549c3c6))
-   fix(deps): update module github.com/stretchr/testify to v1.10.0 ([ed1d55f](ed1d55f533))
-   chore(deps): update docker/buildx-bin docker tag to v0.18.0 ([43bbfaa](43bbfaa0af))
-   chore(deps): update docker.io/woodpeckerci/plugin-ready-release-go docker tag to v2.1.1 ([faf4a88](faf4a889f6))
-   fix(deps): update module github.com/urfave/cli/v3 to v3.0.0-alpha9.4 ([1d723a3](1d723a3379))
-   chore(deps): update davidanson/markdownlint-cli2 docker tag to v0.15.0 ([f6bbd6c](f6bbd6c1c2))
-   fix(deps): update module github.com/urfave/cli/v3 to v3.0.0-alpha9.3 ([8d3d558](8d3d558c09))
-   chore(deps): update dependency go to v1.23.3 ([be45ede](be45ede500))
-   fix(deps): update golang.org/x/lint digest to [`818c5a8`](https://github.com/woodpecker-plugins/docker-buildx/commit/818c5a8) ([cbf2022](cbf20222b0))
-   Add vendor target for make \[[#&#8203;201](https://codeberg.org/woodpecker-plugins/docker-buildx/pulls/201)]
-   remove pat-s from maintainers ([b664c37](b664c37d62))
-   CI: Dont lint on tag event ([1f4e506](1f4e506a19))

</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: #152
Co-authored-by: renovate-bot <renovate@ocram85.com>
Co-committed-by: renovate-bot <renovate@ocram85.com>
2024-12-12 20:01:25 +01:00
94ecfc35ed update missing lib (#153)
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful
### 📖 Summary

- use libicu74

### 📑 Test Plan

 CI pipeline tests (Default)

### 💬 Details

_No response_

### 📚 Additional Notes

_No response_

Reviewed-on: #153
2024-12-12 19:57:43 +01:00
bb67ea6112 add release blog item for version 1.8 (#150)
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful
### 📖 Summary

- add basic infos about the new version

### 📑 Test Plan

 CI pipeline tests (Default)

### 💬 Details

_No response_

### 📚 Additional Notes

_No response_

Reviewed-on: #150
2024-12-02 10:53:43 +01:00
7 changed files with 85 additions and 8 deletions

View File

@ -5,7 +5,7 @@ when:
- ${CI_REPO_DEFAULT_BRANCH} - ${CI_REPO_DEFAULT_BRANCH}
variables: variables:
- &build_plugin 'woodpeckerci/plugin-docker-buildx:5.0.0' - &build_plugin 'woodpeckerci/plugin-docker-buildx:5.1.0'
# deployment targets # deployment targets
- &publish_repos 'ocram85/arkanum,gitea.ocram85.com/arkanum/arkanum,ghcr.io/ocram85/arkanum,codeberg.org/arkanum/arkanum' - &publish_repos 'ocram85/arkanum,gitea.ocram85.com/arkanum/arkanum,ghcr.io/ocram85/arkanum,codeberg.org/arkanum/arkanum'
# logins for deployment targets # logins for deployment targets
@ -87,12 +87,24 @@ steps:
when: when:
event: [pull_request] event: [pull_request]
gitea-release: # TODO: Remove old plugin in next release tag
image: plugins/gitea-release #gitea-release:
# image: plugins/gitea-release
# settings:
# api_key:
# from_secret: ci_token
# base_url: https://gitea.ocram85.com
# title: ${CI_COMMIT_TAG}
# note: "> :bulb: **Note:** Please refer to [CHANGELOG.md](src/branch/${CI_REPO_DEFAULT_BRANCH}/CHANGELOG.md) for details."
# when:
# event: [tag]
# branch: ${CI_REPO_DEFAULT_BRANCH}
forge-release:
image: woodpeckerci/plugin-release
settings: settings:
api_key: api_key:
from_secret: ci_token from_secret: ci_token
base_url: https://gitea.ocram85.com
title: ${CI_COMMIT_TAG} title: ${CI_COMMIT_TAG}
note: "> :bulb: **Note:** Please refer to [CHANGELOG.md](src/branch/${CI_REPO_DEFAULT_BRANCH}/CHANGELOG.md) for details." note: "> :bulb: **Note:** Please refer to [CHANGELOG.md](src/branch/${CI_REPO_DEFAULT_BRANCH}/CHANGELOG.md) for details."
when: when:

View File

@ -5,7 +5,7 @@ when:
- ${CI_REPO_DEFAULT_BRANCH} - ${CI_REPO_DEFAULT_BRANCH}
variables: variables:
- &build_plugin 'woodpeckerci/plugin-docker-buildx:5.0.0' - &build_plugin 'woodpeckerci/plugin-docker-buildx:5.1.0'
# deployment targets # deployment targets
- &publish_repos 'ocram85/arkanum-docs,gitea.ocram85.com/arkanum/arkanum-docs' - &publish_repos 'ocram85/arkanum-docs,gitea.ocram85.com/arkanum/arkanum-docs'
# logins for deployment targets # logins for deployment targets

View File

@ -1,3 +1,11 @@
## [v1.8.2](https://gitea.ocram85.com/arkanum/arkanum/releases/tag/v1.8.2) - 2024-12-12
- 🐛 BUGFIXES
- Update missing lib (#153)
- 🤖 DEPENDENCIES
- Chore(deps): update woodpeckerci/plugin-docker-buildx docker tag to v5.1.0 (#152)
- Chore(deps): update dependency prettier to v3.4.2 (#151)
## [v1.8.1](https://gitea.ocram85.com/arkanum/arkanum/releases/tag/v1.8.1) - 2024-12-02 ## [v1.8.1](https://gitea.ocram85.com/arkanum/arkanum/releases/tag/v1.8.1) - 2024-12-02
- 🐛 BUGFIXES - 🐛 BUGFIXES

View File

@ -109,7 +109,7 @@ function instDotNet() {
say "Installing dotnet requirements..." "dotnet" say "Installing dotnet requirements..." "dotnet"
sudo -E apt-get update > /dev/null sudo -E apt-get update > /dev/null
sudo -E apt-get install --no-install-recommends -y \ sudo -E apt-get install --no-install-recommends -y \
libicu70 libicu74
say "Downloading latest install script..." "dotnet" say "Downloading latest install script..." "dotnet"
curl -#fSL https://dot.net/v1/dotnet-install.sh -o /tmp/dotnet-install.sh curl -#fSL https://dot.net/v1/dotnet-install.sh -o /tmp/dotnet-install.sh

BIN
bun.lockb

Binary file not shown.

View File

@ -0,0 +1,57 @@
---
aside: false
author: OCram85
title: 'Arkanum 1.8.1 is released'
tag: 'release'
image: 'blogCard.png'
date: '2024-12-02'
#featured: true
---
# Arkanum 1.8.1 is released
<BlogHeaderImage Source='/blogCard.png' />
**Content**
[[TOC]]
## About
I'm happy to present the latest Arkanum release version `1.8.1`.
We highly encourage you to directly update to version `1.8.1`. This hotfix version already
fixes an issue where the embedded FiraCode font couldn't be loaded.
## New Session Handler
This version brings you a basic session handler. It includes saving your preferred framework
sources and simplifies the restore after an Arkanum restart.
See the docs for details [here](../../guide/components/arkanum-cli#session-handling).
## Changes
This release includes the following changes:
### [v1.8.1](https://gitea.ocram85.com/arkanum/arkanum/releases/tag/v1.8.1) - 2024-12-02
- 🐛 BUGFIXES
- Fix FiraCode font loader (#147)
- 🤖 DEPENDENCIES
- Chore(deps): update dependency prettier to v3.4.1 (#148)
- Chore(deps): update dependency typescript to v5.7.2 (#145)
- Chore(deps): update quay.io/linuxserver.io/code-server docker tag to v4.95.3 (#144)
- Chore(deps): update oven/bun docker tag to v1.1.38 (#143)
### [v1.8.0](https://gitea.ocram85.com/arkanum/arkanum/releases/tag/v1.8.0) - 2024-11-21
- ✨ FEATURES
- Add session helper (#141)
- 🛠️ ENHANCEMENTS
- Move additional packages install to dockerfile (#138)
- 🤖 DEPENDENCIES
- Chore(deps): update quay.io/linuxserver.io/code-server docker tag to v4.95.2 (#139)
- Chore(deps): update dependency vitepress to v1.5.0 (#137)
- ⚙️ META
- Pin exact bun version (#140)

View File

@ -1,6 +1,6 @@
{ {
"name": "arkanum-docs", "name": "arkanum-docs",
"version": "1.8.1", "version": "1.8.2",
"type": "module", "type": "module",
"repository": { "repository": {
"type": "git", "type": "git",
@ -8,7 +8,7 @@
}, },
"devDependencies": { "devDependencies": {
"@types/bun": "latest", "@types/bun": "latest",
"prettier": "3.4.1", "prettier": "3.4.2",
"rimraf": "6.0.1", "rimraf": "6.0.1",
"vitepress": "1.5.0" "vitepress": "1.5.0"
}, },