github-actions[bot]
3c20d36149
chore(changelog): update changelog (auto) ( #639 )
...
This PR was created by a GitHub Action to update the changelog.
Co-authored-by: alexpasmantier <47638216+alexpasmantier@users.noreply.github.com>
2025-07-13 13:59:23 +02:00
alexandre pasmantier
e87f7d30a8
chore: release version 0.12.4
0.12.4
2025-07-13 13:57:54 +02:00
alexandre pasmantier
99b5c5ce78
feat(cli): add --force
option to update-channels
2025-07-13 13:28:01 +02:00
alexandre pasmantier
16d7de7d09
ci: fix cross not available in PATH
2025-07-13 13:01:35 +02:00
alexandre pasmantier
23f38f9bb4
test: fix flaky tests and increase frame stability timeout
2025-07-13 12:35:51 +02:00
alexandre pasmantier
da9484a491
docs: update CONTRIBUTING.md
2025-07-13 01:49:12 +02:00
github-actions[bot]
874e91190d
chore(changelog): update changelog (auto) ( #637 )
...
This PR was created by a GitHub Action to update the changelog.
Co-authored-by: alexpasmantier <47638216+alexpasmantier@users.noreply.github.com>
2025-07-13 01:25:03 +02:00
alexandre pasmantier
d5adad0323
chore: release version 0.12.3
0.12.3
2025-07-13 01:16:08 +02:00
alexandre pasmantier
f0d17b7011
docs: add links to various repo docs
2025-07-13 01:15:25 +02:00
alexandre pasmantier
fb97f011be
fix(themes): selection_fg
was not applied correctly + code improvements
...
Fixes #636
2025-07-13 00:21:39 +02:00
alexandre pasmantier
1bbda8e62f
docs: add link to shell integration local dev note
2025-07-12 21:41:32 +02:00
Alex Pasmantier
7079d48aa7
fix(nushell): append to existing nu keybindings instead of replacing them ( #635 )
...
## 📺 PR Description
Fixes #628
## Checklist
<!-- a quick pass through the following items to make sure you haven't
forgotten anything -->
- [ ] my commits **and PR title** follow the [conventional
commits](https://www.conventionalcommits.org/en/v1.0.0/#summary ) format
- [ ] if this is a new feature, I have added tests to consolidate the
feature and prevent regressions
- [ ] if this is a bug fix, I have added a test that reproduces the bug
(if applicable)
- [ ] I have added a reasonable amount of documentation to the code
where appropriate
2025-07-12 17:38:35 +02:00
LM
ecf05a0148
test(cli): fix some flaky tests, reinstate exact mode testing ( #632 )
...
## 📺 PR Description
Fixes #631
Added constraints to make either mitigate or remove "flakiness" for some
tests
## Checklist
<!-- a quick pass through the following items to make sure you haven't
forgotten anything -->
- [x] my commits **and PR title** follow the [conventional
commits](https://www.conventionalcommits.org/en/v1.0.0/#summary ) format
- [ ] if this is a new feature, I have added tests to consolidate the
feature and prevent regressions
- [ ] if this is a bug fix, I have added a test that reproduces the bug
(if applicable)
- [ ] I have added a reasonable amount of documentation to the code
where appropriate
2025-07-12 15:27:38 +02:00
Samir
6023d020f1
fix(nix): set meta.mainProgram field ( #634 )
...
`meta.mainProgram` must be set otherwise `lib.getExe` assumes that the
package name is `television` and home manager shell integrations are
broken
## 📺 PR Description
<!-- summary of the change + which issue is fixed if applicable. -->
## Checklist
<!-- a quick pass through the following items to make sure you haven't
forgotten anything -->
- [x] my commits **and PR title** follow the [conventional
commits](https://www.conventionalcommits.org/en/v1.0.0/#summary ) format
- [ ] if this is a new feature, I have added tests to consolidate the
feature and prevent regressions
- [ ] if this is a bug fix, I have added a test that reproduces the bug
(if applicable)
- [ ] I have added a reasonable amount of documentation to the code
where appropriate
2025-07-12 14:23:46 +02:00
LM
521c7473b4
fix(channels): make stdin and adhoc channels inherit from global config ( #633 )
...
## 📺 PR Description
Fixes #627
stdin and adhoc channels now inherit from global config making them
consistent with the rest
## Checklist
<!-- a quick pass through the following items to make sure you haven't
forgotten anything -->
- [x] my commits **and PR title** follow the [conventional
commits](https://www.conventionalcommits.org/en/v1.0.0/#summary ) format
- [ ] if this is a new feature, I have added tests to consolidate the
feature and prevent regressions
- [ ] if this is a bug fix, I have added a test that reproduces the bug
(if applicable)
- [x] I have added a reasonable amount of documentation to the code
where appropriate
2025-07-12 13:51:48 +02:00
MohMine
4e90a357e8
feat(themes): allow users to add theme overrides using their config file
...
Fixes #560
### Add theme color overrides in configuration file
Link to #560
### Problem
Currently, customizing television's appearance to match personal style
requires users to rebuild from source code to modify theme colors. This
creates a significant barrier for users who want to personalize their
experience without dealing with compilation and development setup.
Users who want to adjust colors for better readability, match their
terminal theme, or create custom color schemes must either:
- Modify theme files in the source code
- Rebuild the entire application
- Maintain separate theme files
This workflow is not user-friendly and prevents quick experimentation
with different color combinations.
### Solution
Added theme color overrides directly in the configuration file, allowing
users to customize any theme color without rebuilding from source. The
themes/*.toml files now serve as defaults, while the configuration file
provides overrides that take precedence.
### Key features:
- No rebuild required: Customize colors instantly through config
- Easy testing: Try different color combinations without compilation
- Theme flexibility: Mix and match colors from different themes
- Backward compatible: Existing configs continue to work unchanged
- User-friendly: Simple TOML syntax for color customization
### Usage Example
Find your config file location:
```
Default locations:
# Unix: ~/.config/television/config.toml
# Windows: %APPDATA%\television\config.toml
```
Add theme overrides to your config:
```
[ui]
theme = "catppuccin" # or any other theme
[ui.theme_overrides]
background = "#000000 " # Pure black background for maximum contrast
text_fg = "#00ff00" # Bright green for main text (high visibility)
selection_bg = "#ff00ff" # Bright magenta for selected items (eye-catching)
selection_fg = "#ffffff" # Pure white text on selected items (high contrast)
match_fg = "#ffff00" # Bright yellow for search matches (stands out)
border_fg = "#00ffff" # Bright cyan for borders (neon effect)
result_name_fg = "#ff8800" # Bright orange for file names (warm highlight)
result_value_fg = "#ff0080" # Bright pink for values (vibrant accent)
```
Test your changes:
```
# Run with your config
./target/release/tv --config-file ~/.config/television/config.toml
```
<img width="1420" alt="Screenshot 2025-07-08 at 08 14 42"
src="https://github.com/user-attachments/assets/90563f86-74aa-460a-a7c2-82080be3dc0b "
/>
---------
Co-authored-by: Mohamed-Amine Bousahih <mohamed-aminebousahih@pc-66.home>
Co-authored-by: Mohamed-Amine Bousahih <mohamed-aminebousahih@mohamedminesair.home>
2025-07-11 00:06:46 +02:00
alexandre pasmantier
23cf584f67
refactor(bash): improve bash integration script
2025-07-10 23:16:22 +02:00
alexandre pasmantier
229604a765
fix(fish): fix --inline terminal behavior for fish integration
...
Fixes #624
2025-07-10 22:48:53 +02:00
alexandre pasmantier
781d27cebc
fix(ci): cross compilation for aarch64 deb release
2025-07-10 21:35:57 +02:00
alexandre pasmantier
e9ef8d8150
chore: add recipes to allow testing shell integrations locally less of a pain
2025-07-10 21:31:36 +02:00
alexandre pasmantier
83711f6d30
fix(zsh): improve zsh integration inline mode
2025-07-10 21:12:33 +02:00
github-actions[bot]
0cdf65a204
chore(changelog): update changelog (auto) ( #623 )
...
This PR was created by a GitHub Action to update the changelog.
Co-authored-by: alexpasmantier <47638216+alexpasmantier@users.noreply.github.com>
2025-07-10 18:46:12 +02:00
Alex Pasmantier
d05b22d82b
chore: bump to 0.12.2
0.12.2
2025-07-10 18:40:00 +02:00
github-actions[bot]
ec899b56b6
chore(changelog): update changelog (auto) ( #622 )
...
This PR was created by a GitHub Action to update the changelog.
Co-authored-by: alexpasmantier <47638216+alexpasmantier@users.noreply.github.com>
2025-07-10 18:38:56 +02:00
kapobajza
e4a6447d75
fix(themes): make channel mode background optional ( #614 )
...
## 📺 PR Description
<!-- summary of the change + which issue is fixed if applicable. -->
Fixes https://github.com/alexpasmantier/television/issues/603 .
Regarding the 2nd point of [your
comment](https://github.com/alexpasmantier/television/issues/603#issuecomment-3048772061 ),
@alexpasmantier:
> - display a custom error message instead of panicking when themes,
**configuration** and **channels** encounter a parsing error
I couldn't find anything specific for other configuration or channels
regarding parsing errors, they're already properly handled it seems.
Although there's a high chance I might've missed something. Please do
let me know if I did.
## Checklist
<!-- a quick pass through the following items to make sure you haven't
forgotten anything -->
- [x] my commits **and PR title** follow the [conventional
commits](https://www.conventionalcommits.org/en/v1.0.0/#summary ) format
- [ ] if this is a new feature, I have added tests to consolidate the
feature and prevent regressions
- [x] if this is a bug fix, I have added a test that reproduces the bug
(if applicable)
- [x] I have added a reasonable amount of documentation to the code
where appropriate
Co-authored-by: Kapobajza <kapobajza@gmail.com>
2025-07-10 18:28:23 +02:00
LM
20be709ee9
fix(tui): better handling of cursor position ( #621 )
...
## 📺 PR Description
Fixes #617
Cursor position is now correctly set regardless of the layout
## Checklist
<!-- a quick pass through the following items to make sure you haven't
forgotten anything -->
- [x] my commits **and PR title** follow the [conventional
commits](https://www.conventionalcommits.org/en/v1.0.0/#summary ) format
- [ ] if this is a new feature, I have added tests to consolidate the
feature and prevent regressions
- [ ] if this is a bug fix, I have added a test that reproduces the bug
(if applicable)
- [x] I have added a reasonable amount of documentation to the code
where appropriate
2025-07-10 18:17:22 +02:00
LM
799dcd875d
fix(tui): account for cursor position when determining the size ( #620 )
2025-07-10 14:04:48 +02:00
LM
177ac79bcf
fix(cable): quote shell arguments and fix line endings for linux files ( #619 )
...
## 📺 PR Description
Fixes #616
Added quotes to prevent shell argument escape
## Checklist
<!-- a quick pass through the following items to make sure you haven't
forgotten anything -->
- [x] my commits **and PR title** follow the [conventional
commits](https://www.conventionalcommits.org/en/v1.0.0/#summary ) format
- [ ] if this is a new feature, I have added tests to consolidate the
feature and prevent regressions
- [ ] if this is a bug fix, I have added a test that reproduces the bug
(if applicable)
- [ ] I have added a reasonable amount of documentation to the code
where appropriate
2025-07-10 12:38:02 +02:00
Alex Pasmantier
b2c43539ff
docs: update installation page
2025-07-10 00:21:33 +02:00
Alex Pasmantier
381dddeab2
docs: update readme link
2025-07-10 00:16:57 +02:00
Alex Pasmantier
a663c47e4c
fix(ci): install cross
2025-07-10 00:11:00 +02:00
github-actions[bot]
44b9e4af45
chore(changelog): update changelog (auto) ( #613 )
...
This PR was created by a GitHub Action to update the changelog.
Co-authored-by: alexpasmantier <47638216+alexpasmantier@users.noreply.github.com>
2025-07-10 00:05:41 +02:00
Alex Pasmantier
85a538d257
chore: bump to 0.12.1
0.12.1
2025-07-10 00:01:19 +02:00
Alex Pasmantier
c392ae891c
fix(ui): config now takes precedence when no cli args on ui_scale
...
fixes #612
2025-07-09 23:58:22 +02:00
LM
20a55cf142
fix(tui): fix incorrect height calculation when there is not enough space ( #611 )
...
## 📺 PR Description
Solves #609
- The calculation of available_height for the Inline and Fixed mode were
updated to correctly account for the remaining space and the necessary
height needed for the TUI
- QoL: Refactored the viewport calculation logic for both Inline and
Fixed modes to use a shared scrolling function
(handle_viewport_scrolling).
- Docs: Added note about default minimum height
## Checklist
- [x] my commits **and PR title** follow the [conventional
commits](https://www.conventionalcommits.org/en/v1.0.0/#summary ) format
- [x] if this is a new feature, I have added tests to consolidate the
feature and prevent regressions
- [ ] if this is a bug fix, I have added a test that reproduces the bug
(if applicable)
- [x] I have added a reasonable amount of documentation to the code
where appropriate
2025-07-09 16:12:19 +02:00
Jozsef Lazar
427ca3619c
fix(shell): set fish keybinds for both default and insert modes ( #610 )
...
When I set up the keybinds for my fish, I couldn't configure them. After
a while, I realized that there are two modes for fish. Whenever vim mode
is set up for fish with `fish_vi_key_bindings`.
Based on how the keybinds are set in
[fzf.fish](8920367cf8/functions/fzf_configure_bindings.fish (L32)
),
I managed to fix it.
Let me know what you think 🤞
2025-07-09 16:04:17 +02:00
alexandre pasmantier
75ea8953a2
fix(cable): no more panics on empty cable
2025-07-09 16:00:13 +02:00
Vijayabaskar
55560db112
fix (shell) : nu shell integration enhancement ( #607 )
...
## 📺 PR Description
Fixes #592
- Left of cursor extraction - lhs
- Right of cursor extraction - rhs
- Add space if needed - lhs_with_space
- Concatenate lhs + output + rhs - new_line
- Set line and cursor position - command line edit --replace and command
line set-cursor
- add nu-history for both windows and unix channels
## Checklist
<!-- a quick pass through the following items to make sure you haven't
forgotten anything -->
- [X ] my commits **and PR title** follow the [conventional
commits](https://www.conventionalcommits.org/en/v1.0.0/#summary ) format
- [ ] if this is a new feature, I have added tests to consolidate the
feature and prevent regressions
- [ ] if this is a bug fix, I have added a test that reproduces the bug
(if applicable)
- [ ] I have added a reasonable amount of documentation to the code
where appropriate
---------
Co-authored-by: alexpasmantier <alex.pasmant@gmail.com>
2025-07-09 15:22:33 +02:00
alexandre pasmantier
bcf9f1a3a6
fix(cable): no panic when listing empty cable
2025-07-08 19:02:31 +02:00
alexandre pasmantier
4fd42acd7e
chore: update issue and pr templates
2025-07-08 18:47:02 +02:00
dependabot[bot]
38095c51a3
chore(deps): bump astral-sh/setup-uv from 5 to 6 ( #600 )
2025-07-08 14:19:42 +02:00
kapobajza
b6e9990b2f
docs: Made the landing page more responsive ( #605 )
2025-07-08 14:19:24 +02:00
dependabot[bot]
173f20cba5
chore(deps): bump peaceiris/actions-gh-pages from 3 to 4 ( #601 )
...
Bumps
[peaceiris/actions-gh-pages](https://github.com/peaceiris/actions-gh-pages )
from 3 to 4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/peaceiris/actions-gh-pages/releases ">peaceiris/actions-gh-pages's
releases</a>.</em></p>
<blockquote>
<h2>actions-github-pages v4.0.0</h2>
<p>See <a
href="https://github.com/peaceiris/actions-gh-pages/blob/v4.0.0/CHANGELOG.md ">CHANGELOG.md</a>
for more details.</p>
<h2>actions-github-pages v3.9.3</h2>
<p>See <a
href="https://github.com/peaceiris/actions-gh-pages/blob/v3.9.3/CHANGELOG.md ">CHANGELOG.md</a>
for more details.</p>
<h2>actions-github-pages v3.9.2</h2>
<p>See <a
href="https://github.com/peaceiris/actions-gh-pages/blob/v3.9.2/CHANGELOG.md ">CHANGELOG.md</a>
for more details.</p>
<h2>actions-github-pages v3.9.1</h2>
<ul>
<li>update deps</li>
</ul>
<p>See <a
href="https://github.com/peaceiris/actions-gh-pages/blob/v3.9.1/CHANGELOG.md ">CHANGELOG.md</a>
for more details.</p>
<h2>actions-github-pages v3.9.0</h2>
<ul>
<li>deps: bump node12 to node16</li>
<li>deps: bump <code>@actions/core</code> from 1.6.0 to 1.10.0</li>
</ul>
<p>See <a
href="https://github.com/peaceiris/actions-gh-pages/blob/v3.9.0/CHANGELOG.md ">CHANGELOG.md</a>
for more details.</p>
<h2>actions-github-pages v3.8.0</h2>
<p>See <a
href="https://github.com/peaceiris/actions-gh-pages/blob/v3.8.0/CHANGELOG.md ">CHANGELOG.md</a>
for more details.</p>
<h2>actions-github-pages v3.7.3</h2>
<p>See <a
href="https://github.com/peaceiris/actions-gh-pages/blob/v3.7.3/CHANGELOG.md ">CHANGELOG.md</a>
for more details.</p>
<h2>actions-github-pages v3.7.2</h2>
<p>See <a
href="https://github.com/peaceiris/actions-gh-pages/blob/v3.7.2/CHANGELOG.md ">CHANGELOG.md</a>
for more details.</p>
<h2>actions-github-pages v3.7.1</h2>
<p>See <a
href="https://github.com/peaceiris/actions-gh-pages/blob/v3.7.1/CHANGELOG.md ">CHANGELOG.md</a>
for more details.</p>
<h2>actions-github-pages v3.7.0</h2>
<p>See <a
href="https://github.com/peaceiris/actions-gh-pages/blob/v3.7.0/CHANGELOG.md ">CHANGELOG.md</a>
for more details.</p>
<p>Overviews:</p>
<ul>
<li>Add .nojekyll file by default for all branches (<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/438 ">#438</a>)
(079d483), closes <a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/438 ">#438</a></li>
<li>Add destination_dir option (<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/403 ">#403</a>)
(f30118c), closes <a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/403 ">#403</a>
<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/324 ">#324</a>
<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/390 ">#390</a></li>
<li>Add exclude_assets option (<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/416 ">#416</a>)
(0f5c65e), closes <a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/416 ">#416</a>
<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/163 ">#163</a></li>
<li>exclude_assets supports glob patterns (<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/417 ">#417</a>)
(6f45501), closes <a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/417 ">#417</a>
<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/163 ">#163</a></li>
</ul>
<h2>actions-github-pages v3.6.4</h2>
<p>See <a
href="https://github.com/peaceiris/actions-gh-pages/blob/v3.6.4/CHANGELOG.md ">CHANGELOG.md</a>
for more details.</p>
<h2>actions-github-pages v3.6.3</h2>
<p>See <a
href="https://github.com/peaceiris/actions-gh-pages/blob/v3.6.3/CHANGELOG.md ">CHANGELOG.md</a>
for more details.</p>
<h2>actions-github-pages v3.6.2</h2>
<p>See <a
href="https://github.com/peaceiris/actions-gh-pages/blob/v3.6.2/CHANGELOG.md ">CHANGELOG.md</a>
for more details.</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/peaceiris/actions-gh-pages/blob/main/CHANGELOG.md ">peaceiris/actions-gh-pages's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/peaceiris/actions-gh-pages/compare/v3.9.2...v3.9.3 ">3.9.3</a>
(2023-03-30)</h2>
<h3>docs</h3>
<ul>
<li>fix typo, bump hugo version (<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/851 ">#851</a>)
(<a
href="884a0224fd
">884a022</a>),
closes <a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/851 ">#851</a></li>
</ul>
<h3>fix</h3>
<ul>
<li>fix error handling (<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/841 ">#841</a>)
(<a
href="32e33dcd3a
">32e33dc</a>),
closes <a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/841 ">#841</a></li>
<li>update known_hosts (<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/871 ">#871</a>)
(<a
href="31c15f0329
">31c15f0</a>),
closes <a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/871 ">#871</a></li>
</ul>
<h2><a
href="https://github.com/peaceiris/actions-gh-pages/compare/v3.9.1...v3.9.2 ">3.9.2</a>
(2023-01-17)</h2>
<h3>chore</h3>
<ul>
<li>rename cicd (<a
href="32c9288f55
">32c9288</a>)</li>
<li>replace npm ci with install (<a
href="983978086a
">9839780</a>)</li>
</ul>
<h3>ci</h3>
<ul>
<li>add github-actions npm (<a
href="5e5dc6d02e
">5e5dc6d</a>)</li>
<li>enable automerge (<a
href="dd7d778958
">dd7d778</a>)</li>
<li>remove dependabot (<a
href="7af79a873e
">7af79a8</a>)</li>
<li>remove enabledManagers (<a
href="cba22ba760
">cba22ba</a>)</li>
<li>use peaceiris/workflows/setup-node 0.19.1 (<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/818 ">#818</a>)
(<a
href="416f539fb4
">416f539</a>),
closes <a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/818 ">#818</a></li>
</ul>
<h3>deps</h3>
<ul>
<li>apply npm audit fix (<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/809 ">#809</a>)
(<a
href="e3aa46d23b
">e3aa46d</a>),
closes <a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/809 ">#809</a></li>
</ul>
<h2><a
href="https://github.com/peaceiris/actions-gh-pages/compare/v3.9.0...v3.9.1 ">3.9.1</a>
(2023-01-05)</h2>
<h3>chore</h3>
<ul>
<li>change cicd label name (<a
href="1808965241
">1808965</a>)</li>
</ul>
<h3>ci</h3>
<ul>
<li>add Renovate config (<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/802 ">#802</a>)
(<a
href="072d16c439
">072d16c</a>),
closes <a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/802 ">#802</a></li>
<li>bump actions/dependency-review-action from 2 to 3 (<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/799 ">#799</a>)
(<a
href="e3b45f2700
">e3b45f2</a>),
closes <a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/799 ">#799</a></li>
<li>bump peaceiris/actions-github-app-token from 1.1.4 to 1.1.5 (<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/798 ">#798</a>)
(<a
href="a5f971f112
">a5f971f</a>),
closes <a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/798 ">#798</a></li>
<li>bump peaceiris/actions-mdbook from 1.1.14 to 1.2.0 (<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/793 ">#793</a>)
(<a
href="9af6a68dde
">9af6a68</a>),
closes <a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/793 ">#793</a></li>
<li>bump peaceiris/workflows from 0.17.1 to 0.17.2 (<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/794 ">#794</a>)
(<a
href="087a759f90
">087a759</a>),
closes <a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/794 ">#794</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="4f9cc6602d
"><code>4f9cc66</code></a>
chore(release): 4.0.0</li>
<li><a
href="9c75028a53
"><code>9c75028</code></a>
chore(release): Add build assets</li>
<li><a
href="5049354438
"><code>5049354</code></a>
build: node 20.11.1</li>
<li><a
href="4eb285e828
"><code>4eb285e</code></a>
chore: bump node16 to node20 (<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/1067 ">#1067</a>)</li>
<li><a
href="cdc09a3baa
"><code>cdc09a3</code></a>
chore(deps): update dependency <code>@types/node</code> to v16.18.77
(<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/1065 ">#1065</a>)</li>
<li><a
href="d830378ec6
"><code>d830378</code></a>
chore(deps): update dependency <code>@types/node</code> to v16.18.76
(<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/1063 ">#1063</a>)</li>
<li><a
href="80daa1d144
"><code>80daa1d</code></a>
chore(deps): update dependency <code>@types/node</code> to v16.18.75
(<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/1061 ">#1061</a>)</li>
<li><a
href="108285e909
"><code>108285e</code></a>
chore(deps): update dependency ts-jest to v29.1.2 (<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/1060 ">#1060</a>)</li>
<li><a
href="99c95ff54e
"><code>99c95ff</code></a>
chore(deps): update dependency <code>@types/node</code> to v16.18.74
(<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/1058 ">#1058</a>)</li>
<li><a
href="1f4653792d
"><code>1f46537</code></a>
chore(deps): update dependency <code>@types/node</code> to v16.18.73
(<a
href="https://redirect.github.com/peaceiris/actions-gh-pages/issues/1057 ">#1057</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/peaceiris/actions-gh-pages/compare/v3...v4 ">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores )
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-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-08 13:50:54 +02:00
dependabot[bot]
b4100d6774
chore(deps): bump actions/setup-node from 3 to 4 ( #602 )
...
Bumps [actions/setup-node](https://github.com/actions/setup-node ) from 3
to 4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/actions/setup-node/releases ">actions/setup-node's
releases</a>.</em></p>
<blockquote>
<h2>v4.0.0</h2>
<h2>What's Changed</h2>
<p>In scope of this release we changed version of node runtime for
action from node16 to node20 and updated dependencies in <a
href="https://redirect.github.com/actions/setup-node/pull/866 ">actions/setup-node#866</a></p>
<p>Besides, release contains such changes as:</p>
<ul>
<li>Upgrade actions/checkout to v4 by <a
href="https://github.com/gmembre-zenika "><code>@gmembre-zenika</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/868 ">actions/setup-node#868</a></li>
<li>Update actions/checkout for documentation and yaml by <a
href="https://github.com/dmitry-shibanov "><code>@dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/876 ">actions/setup-node#876</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/gmembre-zenika "><code>@gmembre-zenika</code></a>
made their first contribution in <a
href="https://redirect.github.com/actions/setup-node/pull/868 ">actions/setup-node#868</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-node/compare/v3...v4.0.0 ">https://github.com/actions/setup-node/compare/v3...v4.0.0 </a></p>
<h2>v3.9.1</h2>
<h2>What's Changed</h2>
<ul>
<li>Add workflow file for publishing releases to immutable action
package by <a
href="https://github.com/aparnajyothi-y "><code>@aparnajyothi-y</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/1281 ">actions/setup-node#1281</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-node/compare/v3...v3.9.1 ">https://github.com/actions/setup-node/compare/v3...v3.9.1 </a></p>
<h2>v3.9.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Upgrade <code>@actions/cache</code> to 4.0.3 by <a
href="https://github.com/gowridurgad "><code>@gowridurgad</code></a> in
<a
href="https://redirect.github.com/actions/setup-node/pull/1270 ">actions/setup-node#1270</a>
In scope of this release we updated actions/cache package to ensure
continued support and compatibility, as older versions of the package
are now deprecated. For more information please refer to the <a
href="https://github.com/actions/toolkit/discussions/1890 ">toolkit/cache</a>.</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-node/compare/v3...v3.9.0 ">https://github.com/actions/setup-node/compare/v3...v3.9.0 </a></p>
<h2>v3.8.2</h2>
<h2>What's Changed</h2>
<ul>
<li>Update semver by <a
href="https://github.com/dmitry-shibanov "><code>@dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/861 ">actions/setup-node#861</a></li>
<li>Update temp directory creation by <a
href="https://github.com/nikolai-laevskii "><code>@nikolai-laevskii</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/859 ">actions/setup-node#859</a></li>
<li>Bump <code>@babel/traverse</code> from 7.15.4 to 7.23.2 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/actions/setup-node/pull/870 ">actions/setup-node#870</a></li>
<li>Add notice about binaries not being updated yet by <a
href="https://github.com/nikolai-laevskii "><code>@nikolai-laevskii</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/872 ">actions/setup-node#872</a></li>
<li>Update toolkit cache and core by <a
href="https://github.com/dmitry-shibanov "><code>@dmitry-shibanov</code></a>
and <a
href="https://github.com/seongwon-privatenote "><code>@seongwon-privatenote</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/875 ">actions/setup-node#875</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-node/compare/v3...v3.8.2 ">https://github.com/actions/setup-node/compare/v3...v3.8.2 </a></p>
<h2>v3.8.1</h2>
<h2>What's Changed</h2>
<p>In scope of this release, the filter was removed within the
cache-save step by <a
href="https://github.com/dmitry-shibanov "><code>@dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/831 ">actions/setup-node#831</a>.
It is filtered and checked in the toolkit/cache library.</p>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/setup-node/compare/v3...v3.8.1 ">https://github.com/actions/setup-node/compare/v3...v3.8.1 </a></p>
<h2>v3.8.0</h2>
<h2>What's Changed</h2>
<h3>Bug fixes:</h3>
<ul>
<li>Add check for existing paths by <a
href="https://github.com/dmitry-shibanov "><code>@dmitry-shibanov</code></a>
in <a
href="https://redirect.github.com/actions/setup-node/pull/803 ">actions/setup-node#803</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="49933ea528
"><code>49933ea</code></a>
Bump <code>@action/cache</code> from 4.0.2 to 4.0.3 (<a
href="https://redirect.github.com/actions/setup-node/issues/1262 ">#1262</a>)</li>
<li><a
href="e3ce749e20
"><code>e3ce749</code></a>
feat: support private mirrors (<a
href="https://redirect.github.com/actions/setup-node/issues/1240 ">#1240</a>)</li>
<li><a
href="40337cb8f7
"><code>40337cb</code></a>
Add support for indented eslint output (<a
href="https://redirect.github.com/actions/setup-node/issues/1245 ">#1245</a>)</li>
<li><a
href="1ccdddc9b8
"><code>1ccdddc</code></a>
Make eslint-compact matcher compatible with Stylelint (<a
href="https://redirect.github.com/actions/setup-node/issues/98 ">#98</a>)</li>
<li><a
href="cdca7365b2
"><code>cdca736</code></a>
Bump <code>@actions/tool-cache</code> from 2.0.1 to 2.0.2 (<a
href="https://redirect.github.com/actions/setup-node/issues/1220 ">#1220</a>)</li>
<li><a
href="22c0e7494f
"><code>22c0e74</code></a>
Bump <code>@vercel/ncc</code> from 0.38.1 to 0.38.3 (<a
href="https://redirect.github.com/actions/setup-node/issues/1203 ">#1203</a>)</li>
<li><a
href="a7c2d9473e
"><code>a7c2d94</code></a>
actions/cache upgrade (<a
href="https://redirect.github.com/actions/setup-node/issues/1251 ">#1251</a>)</li>
<li><a
href="802632921f
"><code>8026329</code></a>
Bump <code>@actions/glob</code> from 0.4.0 to 0.5.0 (<a
href="https://redirect.github.com/actions/setup-node/issues/1200 ">#1200</a>)</li>
<li><a
href="1d0ff469b7
"><code>1d0ff46</code></a>
Bump undici from 5.28.4 to 5.28.5 (<a
href="https://redirect.github.com/actions/setup-node/issues/1205 ">#1205</a>)</li>
<li><a
href="574f09a9fa
"><code>574f09a</code></a>
Bump <code>@types/jest</code> from 29.5.12 to 29.5.14 (<a
href="https://redirect.github.com/actions/setup-node/issues/1201 ">#1201</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/actions/setup-node/compare/v3...v4 ">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores )
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-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-08 13:50:38 +02:00
dependabot[bot]
1a0c405b3e
chore(deps): bump actions/checkout from 3 to 4 ( #599 )
...
Bumps [actions/checkout](https://github.com/actions/checkout ) from 3 to
4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/actions/checkout/releases ">actions/checkout's
releases</a>.</em></p>
<blockquote>
<h2>v4.0.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Update default runtime to node20 by <a
href="https://github.com/takost "><code>@takost</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1436 ">actions/checkout#1436</a></li>
<li>Support fetching without the --progress option by <a
href="https://github.com/simonbaird "><code>@simonbaird</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1067 ">actions/checkout#1067</a></li>
<li>Release 4.0.0 by <a
href="https://github.com/takost "><code>@takost</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1447 ">actions/checkout#1447</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/takost "><code>@takost</code></a> made
their first contribution in <a
href="https://redirect.github.com/actions/checkout/pull/1436 ">actions/checkout#1436</a></li>
<li><a
href="https://github.com/simonbaird "><code>@simonbaird</code></a> made
their first contribution in <a
href="https://redirect.github.com/actions/checkout/pull/1067 ">actions/checkout#1067</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/checkout/compare/v3...v4.0.0 ">https://github.com/actions/checkout/compare/v3...v4.0.0 </a></p>
<h2>v3.6.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Mark test scripts with Bash'isms to be run via Bash by <a
href="https://github.com/dscho "><code>@dscho</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1377 ">actions/checkout#1377</a></li>
<li>Add option to fetch tags even if fetch-depth > 0 by <a
href="https://github.com/RobertWieczoreck "><code>@RobertWieczoreck</code></a>
in <a
href="https://redirect.github.com/actions/checkout/pull/579 ">actions/checkout#579</a></li>
<li>Release 3.6.0 by <a
href="https://github.com/luketomlinson "><code>@luketomlinson</code></a>
in <a
href="https://redirect.github.com/actions/checkout/pull/1437 ">actions/checkout#1437</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/RobertWieczoreck "><code>@RobertWieczoreck</code></a>
made their first contribution in <a
href="https://redirect.github.com/actions/checkout/pull/579 ">actions/checkout#579</a></li>
<li><a
href="https://github.com/luketomlinson "><code>@luketomlinson</code></a>
made their first contribution in <a
href="https://redirect.github.com/actions/checkout/pull/1437 ">actions/checkout#1437</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/checkout/compare/v3.5.3...v3.6.0 ">https://github.com/actions/checkout/compare/v3.5.3...v3.6.0 </a></p>
<h2>v3.5.3</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix: Checkout Issue in self hosted runner due to faulty submodule
check-ins by <a
href="https://github.com/megamanics "><code>@megamanics</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1196 ">actions/checkout#1196</a></li>
<li>Fix typos found by codespell by <a
href="https://github.com/DimitriPapadopoulos "><code>@DimitriPapadopoulos</code></a>
in <a
href="https://redirect.github.com/actions/checkout/pull/1287 ">actions/checkout#1287</a></li>
<li>Add support for sparse checkouts by <a
href="https://github.com/dscho "><code>@dscho</code></a> and <a
href="https://github.com/dfdez "><code>@dfdez</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1369 ">actions/checkout#1369</a></li>
<li>Release v3.5.3 by <a
href="https://github.com/TingluoHuang "><code>@TingluoHuang</code></a>
in <a
href="https://redirect.github.com/actions/checkout/pull/1376 ">actions/checkout#1376</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/megamanics "><code>@megamanics</code></a> made
their first contribution in <a
href="https://redirect.github.com/actions/checkout/pull/1196 ">actions/checkout#1196</a></li>
<li><a
href="https://github.com/DimitriPapadopoulos "><code>@DimitriPapadopoulos</code></a>
made their first contribution in <a
href="https://redirect.github.com/actions/checkout/pull/1287 ">actions/checkout#1287</a></li>
<li><a href="https://github.com/dfdez "><code>@dfdez</code></a> made
their first contribution in <a
href="https://redirect.github.com/actions/checkout/pull/1369 ">actions/checkout#1369</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/checkout/compare/v3...v3.5.3 ">https://github.com/actions/checkout/compare/v3...v3.5.3 </a></p>
<h2>v3.5.2</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix: Use correct API url / endpoint in GHES by <a
href="https://github.com/fhammerl "><code>@fhammerl</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1289 ">actions/checkout#1289</a>
based on <a
href="https://redirect.github.com/actions/checkout/issues/1286 ">#1286</a>
by <a href="https://github.com/1newsr "><code>@1newsr</code></a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/checkout/compare/v3.5.1...v3.5.2 ">https://github.com/actions/checkout/compare/v3.5.1...v3.5.2 </a></p>
<h2>v3.5.1</h2>
<h2>What's Changed</h2>
<ul>
<li>Improve checkout performance on Windows runners by upgrading
<code>@actions/github</code> dependency by <a
href="https://github.com/BrettDong "><code>@BrettDong</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1246 ">actions/checkout#1246</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/BrettDong "><code>@BrettDong</code></a>
made their first contribution in <a
href="https://redirect.github.com/actions/checkout/pull/1246 ">actions/checkout#1246</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/actions/checkout/blob/main/CHANGELOG.md ">actions/checkout's
changelog</a>.</em></p>
<blockquote>
<h1>Changelog</h1>
<h2>v4.2.2</h2>
<ul>
<li><code>url-helper.ts</code> now leverages well-known environment
variables by <a href="https://github.com/jww3 "><code>@jww3</code></a>
in <a
href="https://redirect.github.com/actions/checkout/pull/1941 ">actions/checkout#1941</a></li>
<li>Expand unit test coverage for <code>isGhes</code> by <a
href="https://github.com/jww3 "><code>@jww3</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1946 ">actions/checkout#1946</a></li>
</ul>
<h2>v4.2.1</h2>
<ul>
<li>Check out other refs/* by commit if provided, fall back to ref by <a
href="https://github.com/orhantoy "><code>@orhantoy</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1924 ">actions/checkout#1924</a></li>
</ul>
<h2>v4.2.0</h2>
<ul>
<li>Add Ref and Commit outputs by <a
href="https://github.com/lucacome "><code>@lucacome</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1180 ">actions/checkout#1180</a></li>
<li>Dependency updates by <a
href="https://github.com/dependabot "><code>@dependabot</code></a>- <a
href="https://redirect.github.com/actions/checkout/pull/1777 ">actions/checkout#1777</a>,
<a
href="https://redirect.github.com/actions/checkout/pull/1872 ">actions/checkout#1872</a></li>
</ul>
<h2>v4.1.7</h2>
<ul>
<li>Bump the minor-npm-dependencies group across 1 directory with 4
updates by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1739 ">actions/checkout#1739</a></li>
<li>Bump actions/checkout from 3 to 4 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1697 ">actions/checkout#1697</a></li>
<li>Check out other refs/* by commit by <a
href="https://github.com/orhantoy "><code>@orhantoy</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1774 ">actions/checkout#1774</a></li>
<li>Pin actions/checkout's own workflows to a known, good, stable
version. by <a href="https://github.com/jww3 "><code>@jww3</code></a> in
<a
href="https://redirect.github.com/actions/checkout/pull/1776 ">actions/checkout#1776</a></li>
</ul>
<h2>v4.1.6</h2>
<ul>
<li>Check platform to set archive extension appropriately by <a
href="https://github.com/cory-miller "><code>@cory-miller</code></a> in
<a
href="https://redirect.github.com/actions/checkout/pull/1732 ">actions/checkout#1732</a></li>
</ul>
<h2>v4.1.5</h2>
<ul>
<li>Update NPM dependencies by <a
href="https://github.com/cory-miller "><code>@cory-miller</code></a> in
<a
href="https://redirect.github.com/actions/checkout/pull/1703 ">actions/checkout#1703</a></li>
<li>Bump github/codeql-action from 2 to 3 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1694 ">actions/checkout#1694</a></li>
<li>Bump actions/setup-node from 1 to 4 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1696 ">actions/checkout#1696</a></li>
<li>Bump actions/upload-artifact from 2 to 4 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1695 ">actions/checkout#1695</a></li>
<li>README: Suggest <code>user.email</code> to be
<code>41898282+github-actions[bot]@users.noreply.github.com</code> by <a
href="https://github.com/cory-miller "><code>@cory-miller</code></a> in
<a
href="https://redirect.github.com/actions/checkout/pull/1707 ">actions/checkout#1707</a></li>
</ul>
<h2>v4.1.4</h2>
<ul>
<li>Disable <code>extensions.worktreeConfig</code> when disabling
<code>sparse-checkout</code> by <a
href="https://github.com/jww3 "><code>@jww3</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1692 ">actions/checkout#1692</a></li>
<li>Add dependabot config by <a
href="https://github.com/cory-miller "><code>@cory-miller</code></a> in
<a
href="https://redirect.github.com/actions/checkout/pull/1688 ">actions/checkout#1688</a></li>
<li>Bump the minor-actions-dependencies group with 2 updates by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1693 ">actions/checkout#1693</a></li>
<li>Bump word-wrap from 1.2.3 to 1.2.5 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1643 ">actions/checkout#1643</a></li>
</ul>
<h2>v4.1.3</h2>
<ul>
<li>Check git version before attempting to disable
<code>sparse-checkout</code> by <a
href="https://github.com/jww3 "><code>@jww3</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1656 ">actions/checkout#1656</a></li>
<li>Add SSH user parameter by <a
href="https://github.com/cory-miller "><code>@cory-miller</code></a> in
<a
href="https://redirect.github.com/actions/checkout/pull/1685 ">actions/checkout#1685</a></li>
<li>Update <code>actions/checkout</code> version in
<code>update-main-version.yml</code> by <a
href="https://github.com/jww3 "><code>@jww3</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1650 ">actions/checkout#1650</a></li>
</ul>
<h2>v4.1.2</h2>
<ul>
<li>Fix: Disable sparse checkout whenever <code>sparse-checkout</code>
option is not present <a
href="https://github.com/dscho "><code>@dscho</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1598 ">actions/checkout#1598</a></li>
</ul>
<h2>v4.1.1</h2>
<ul>
<li>Correct link to GitHub Docs by <a
href="https://github.com/peterbe "><code>@peterbe</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1511 ">actions/checkout#1511</a></li>
<li>Link to release page from what's new section by <a
href="https://github.com/cory-miller "><code>@cory-miller</code></a> in
<a
href="https://redirect.github.com/actions/checkout/pull/1514 ">actions/checkout#1514</a></li>
</ul>
<h2>v4.1.0</h2>
<ul>
<li><a href="https://redirect.github.com/actions/checkout/pull/1396 ">Add
support for partial checkout filters</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="11bd71901b
"><code>11bd719</code></a>
Prepare 4.2.2 Release (<a
href="https://redirect.github.com/actions/checkout/issues/1953 ">#1953</a>)</li>
<li><a
href="e3d2460bbb
"><code>e3d2460</code></a>
Expand unit test coverage (<a
href="https://redirect.github.com/actions/checkout/issues/1946 ">#1946</a>)</li>
<li><a
href="163217dfcd
"><code>163217d</code></a>
<code>url-helper.ts</code> now leverages well-known environment
variables. (<a
href="https://redirect.github.com/actions/checkout/issues/1941 ">#1941</a>)</li>
<li><a
href="eef61447b9
"><code>eef6144</code></a>
Prepare 4.2.1 release (<a
href="https://redirect.github.com/actions/checkout/issues/1925 ">#1925</a>)</li>
<li><a
href="6b42224f41
"><code>6b42224</code></a>
Add workflow file for publishing releases to immutable action package
(<a
href="https://redirect.github.com/actions/checkout/issues/1919 ">#1919</a>)</li>
<li><a
href="de5a000abf
"><code>de5a000</code></a>
Check out other refs/* by commit if provided, fall back to ref (<a
href="https://redirect.github.com/actions/checkout/issues/1924 ">#1924</a>)</li>
<li><a
href="d632683dd7
"><code>d632683</code></a>
Prepare 4.2.0 release (<a
href="https://redirect.github.com/actions/checkout/issues/1878 ">#1878</a>)</li>
<li><a
href="6d193bf280
"><code>6d193bf</code></a>
Bump braces from 3.0.2 to 3.0.3 (<a
href="https://redirect.github.com/actions/checkout/issues/1777 ">#1777</a>)</li>
<li><a
href="db0cee9a51
"><code>db0cee9</code></a>
Bump the minor-npm-dependencies group across 1 directory with 4 updates
(<a
href="https://redirect.github.com/actions/checkout/issues/1872 ">#1872</a>)</li>
<li><a
href="b684943689
"><code>b684943</code></a>
Add Ref and Commit outputs (<a
href="https://redirect.github.com/actions/checkout/issues/1180 ">#1180</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/actions/checkout/compare/v3...v4 ">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores )
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-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-08 13:36:14 +02:00
alexandre pasmantier
ee180d72fb
ci(docs): add missing pnpm installation step to tests
2025-07-08 13:31:24 +02:00
alexandre pasmantier
0876520938
docs: update patch notes
2025-07-07 18:42:56 +02:00
alexandre pasmantier
333bf63e3a
docs: update readme links
2025-07-07 18:39:18 +02:00
github-actions[bot]
338632c8f7
chore(changelog): update changelog (auto) ( #598 )
...
This PR was created by a GitHub Action to update the changelog.
Co-authored-by: alexpasmantier <47638216+alexpasmantier@users.noreply.github.com>
2025-07-07 18:28:39 +02:00
alexandre pasmantier
f1c68167ea
chore: bump to 0.12.0
0.12.0
2025-07-07 18:21:18 +02:00