3ee6b6059ecdc1640e966dcf6c2063445dcd0d86
2658
Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
fcef48e75a | test: Silence superfluous console output during test runs (#2540) | ||
|
|
921d45e577 |
chore: Enforce a few house rules via eslint (#2539)
|
||
|
|
5572ec728e | refactor: Centralize template render type assertion (#2538) | ||
|
|
a31816c168 | feat: Add event-based automation triggers (#2537) | ||
|
|
b701366762 |
feat: Align automations with Home Assistant triggers and conditions (#2527)
Split automations into HA-style `triggers`, ongoing `conditions`, and
`actions`, with compatibility migrations for existing Advanced Camera
Card configs.
## Summary
At a glance (details below):
- **Added** `triggers:` -- a required, HA-shaped block: stock `state` /
`numeric_state` / `template` plus card-specific triggers (`camera`,
`view`, `fullscreen`, ...).
- **Added** the HA-native `if` / `then` / `else` action.
- **Removed** `actions_not` (replaced by `if` / `then` / `else`).
- **Removed** the ambient `advanced_camera_card` template namespace (use
`acc` instead).
- **Changed** the trigger template surface to a top-level `trigger.*`
variable (as in HA); the nested `acc.trigger.*` paths are removed.
- **Changed** `conditions:` to ongoing gates only -- they no longer wake
an automation, and change-only forms (`config`, valueless `camera` /
`view` / `state`) become triggers, not conditions.
- **Changed** action templates to render per step, so a later action
sees state an earlier one changed.
- **Compatibility:** HA-shaped YAML is accepted (singular keys,
single-or-list, `and` / `or` / `not` shorthand, `entity` / `entity_id`).
- **Migration:** existing configs upgrade automatically; anything that
cannot be converted faithfully is recorded under `__UPGRADE_FAILURE__`
for manual fixup.
## Breaking Changes
### 1. Automations now require triggers
Before this PR, `automations[].conditions` served two roles:
- They decided whether the automation should run.
- They also acted as the thing that woke the automation up.
After this PR:
- `triggers` wake the automation.
- `conditions` only gate it at the instant a trigger fires.
Most existing automations are migrated automatically from `conditions:`
to `triggers:`.
### 2. `actions_not` is retired
Legacy `actions_not` is replaced by an HA-style `if` action with `then`
/ `else`.
Faithful conversions are automatic. Cases that cannot be faithfully
converted are recorded under `__UPGRADE_FAILURE__.automations` and must
be migrated manually.
### 3. Template surface aligned with Home Assistant
Two related template changes, both auto-migrated:
- **Top-level `trigger.*`.** Automation actions now receive a top-level
`trigger` template variable, like Home Assistant. Legacy nested paths
such as `acc.trigger.state.to` and
`advanced_camera_card.trigger.camera.to` are migrated automatically when
they appear inside template strings.
- **The ambient `advanced_camera_card` template namespace is removed.**
The long-form ambient namespace (`advanced_camera_card.camera`,
`advanced_camera_card.view`, `advanced_camera_card.config`) is retired
in favour of its shorter `acc` alias -- supported since v7.1.0, and the
only spelling the new trigger surface uses. Existing templates are
migrated automatically by rewriting the `advanced_camera_card.` prefix
to `acc.`.
### 4. Trigger-only condition forms are no longer valid conditions
Some legacy "conditions" were really change detectors. These are now
triggers only:
- `condition: config`
- valueless `camera`
- valueless `view`
- valueless `state` / picture-elements state condition with neither
`state` nor `state_not`
These are automatically promoted in automations and stripped from
overrides/elements where they would no longer be meaningful as ongoing
conditions.
### 5. Template truthiness now follows Home Assistant behavior
Template conditions and template triggers intentionally use different
truthiness rules, matching HA:
- A template condition passes only when the rendered value is `true`
(case-insensitive), matching HA's `condition.py`.
- A template trigger uses HA's broader `result_as_boolean` coercion: a
non-zero number, or `1` / `true` / `yes` / `on` / `enable`
(case-insensitive), counts as true.
### 6. Action templates render when each action executes
Action templates are now rendered per action step, not once for the
whole sequence. This means a later action can see card-local state
changed by an earlier action in the same sequence.
The `trigger` context is fixed for the automation run. HA entity state
updates still depend on the frontend receiving updated HASS state over
the websocket.
## Automatic Migrations
### Automation `conditions:` to `triggers:`
Simple legacy automation:
```yaml
# Before
automations:
- conditions:
- condition: fullscreen
fullscreen: true
actions:
- action: custom:advanced-camera-card-action
advanced_camera_card_action: substream_on
```
```yaml
# After, automatic
automations:
- triggers:
- trigger: fullscreen
fullscreen: true
actions:
- action: custom:advanced-camera-card-action
advanced_camera_card_action: substream_on
```
State conditions become HA-style state triggers:
```yaml
# Before
automations:
- conditions:
- condition: state
entity_id: binary_sensor.front_door
state: 'on'
actions:
- action: custom:advanced-camera-card-action
advanced_camera_card_action: live
```
```yaml
# After, automatic
automations:
- triggers:
- trigger: state
entity_id: binary_sensor.front_door
to: 'on'
actions:
- action: custom:advanced-camera-card-action
advanced_camera_card_action: live
```
Multiple conditions become both triggers and ongoing conditions:
```yaml
# Before
automations:
- conditions:
- condition: camera
cameras: [front_door]
- condition: fullscreen
fullscreen: true
actions:
- action: custom:advanced-camera-card-action
advanced_camera_card_action: substream_on
```
```yaml
# After, automatic
automations:
- triggers:
- trigger: camera
cameras: [front_door]
- trigger: fullscreen
fullscreen: true
conditions:
- condition: camera
cameras: [front_door]
- condition: fullscreen
fullscreen: true
actions:
- action: custom:advanced-camera-card-action
advanced_camera_card_action: substream_on
```
The flattened trigger list is an implicit OR. The retained `conditions:`
list is an implicit AND checked when any trigger fires.
### Trigger-only legacy conditions
Legacy `config` conditions become `config` triggers:
```yaml
# Before
automations:
- conditions:
- condition: config
paths: [menu.style]
actions:
- action: custom:advanced-camera-card-action
advanced_camera_card_action: status_bar
```
```yaml
# After, automatic
automations:
- triggers:
- trigger: config
paths: [menu.style]
actions:
- action: custom:advanced-camera-card-action
advanced_camera_card_action: status_bar
```
Trigger-only leaves are removed from retained `conditions:` blocks
because they no longer describe an ongoing state.
### `actions_not` to `if` / `then` / `else`
```yaml
# Before
automations:
- conditions:
- condition: state
entity_id: input_boolean.camera_alerts
state: 'on'
actions:
- action: custom:advanced-camera-card-action
advanced_camera_card_action: live
actions_not:
- action: none
```
```yaml
# After, automatic
automations:
- triggers:
- trigger: state
entity_id: input_boolean.camera_alerts
actions:
- if:
- condition: state
entity_id: input_boolean.camera_alerts
state: 'on'
then:
- action: custom:advanced-camera-card-action
advanced_camera_card_action: live
else:
- action: none
```
If the legacy automation had no conditions, or only trigger-only
conditions, `actions_not` is dropped because the old `else` branch could
not be reproduced as an ongoing predicate.
### Trigger template paths
```yaml
# Before
message: 'Door is {{ acc.trigger.state.to }} from {{ acc.trigger.state.from }}'
```
```yaml
# After, automatic
message: 'Door is {{ trigger.to_state.state }} from {{ trigger.from_state.state }}'
```
Path rewrites performed automatically:
| Old path | New path |
| -------------------------- | -------------------------- |
| `acc.trigger.state.entity` | `trigger.entity_id` |
| `acc.trigger.state.from` | `trigger.from_state.state` |
| `acc.trigger.state.to` | `trigger.to_state.state` |
| `acc.trigger.camera.from` | `trigger.from_acc.camera` |
| `acc.trigger.camera.to` | `trigger.to_acc.camera` |
| `acc.trigger.view.from` | `trigger.from_acc.view` |
| `acc.trigger.view.to` | `trigger.to_acc.view` |
| `acc.trigger.config.from` | `trigger.from_acc.config` |
| `acc.trigger.config.to` | `trigger.to_acc.config` |
The same rewrites are applied for the older
`advanced_camera_card.trigger.*` namespace.
### Ambient template namespace
Any remaining long-form ambient `advanced_camera_card.*` references
(outside the trigger surface) are rewritten to the `acc.*` alias:
```yaml
# Before
title: 'Now viewing {{ advanced_camera_card.camera }}'
```
```yaml
# After, automatic
title: 'Now viewing {{ acc.camera }}'
```
## Manual Migration Cases
### `__UPGRADE_FAILURE__.automations`
If a legacy automation cannot be converted faithfully, the original
automation is recorded under:
```yaml
__UPGRADE_FAILURE__:
automations:
- ...
```
These entries require manual migration.
The main known case is legacy `actions_not` with a condition whose
trigger can only fire on a rising edge, such as:
- `condition: template`
- `condition: screen`
- `condition: numeric_state` without an entity-backed state to watch
Those conditions can start the `then` branch, but cannot reliably start
the `else` branch when they stop matching.
### Unsupported HA conditions and triggers
This PR aligns the card with HA where supported, but it is not a full HA
automation engine.
Unsupported HA condition families include:
- `time`
- `zone`
- `sun`
- `location`
- `device`
- `condition: trigger`
Unsupported HA trigger platforms include:
- `event`
- `time`
- `time_pattern`
- `sun`
- `zone`
- `calendar`
- `webhook`
- `tag`
- `device`
- `mqtt`
The card-specific camera `triggers:` feature (which auto-selects and
wakes the card on camera events such as motion) is a separate feature
from automation `triggers:`, despite the shared word.
### Trigger IDs and variables
HA keys such as `id`, `alias`, and `variables` are accepted so pasted HA
YAML validates, but they are ignored by the card. There is no
`trigger.id` support in this PR.
## New Compatibility Features
This PR also makes card config more forgiving for HA-style YAML:
- `trigger`, `condition`, and `action` singular keys are accepted and
normalized to `triggers`, `conditions`, and `actions`.
- Single trigger, condition, and action objects are accepted where lists
are expected.
- `if`, `then`, and `else` accept a single item or a list.
- Composite condition shorthand is accepted:
- `{ and: [...] }`
- `{ or: [...] }`
- `{ not: [...] }`
- `{ condition: [...] }` as an implicit AND
- State conditions resolve expected state values that name another
entity, matching HA/Lovelace behavior.
- Both `entity` and `entity_id` are accepted on state and numeric
conditions and triggers (a superset of HA's two dialects), so there is
no forced rename.
- `state_not` remains supported as a card/Lovelace-friendly extension.
## Trigger Payloads
Automation action templates receive a top-level `trigger` object.
For stock `state` and `numeric_state` triggers:
```yaml
trigger.platform
trigger.entity_id
trigger.entity
trigger.from_state
trigger.to_state
```
For template triggers:
```yaml
trigger.platform
```
For card-specific triggers:
```yaml
trigger.platform # "acc"
trigger.type
trigger.from_acc
trigger.to_acc
```
The card does not currently expose HA's `id`, `idx`, `for`, `attribute`,
`above`, `below`, or `alias` trigger fields.
BREAKING CHANGE: Automations now follow Home Assistant's `triggers:` /
`conditions:` / `actions:` model. Automations require a `triggers:`
block and `conditions:` no longer wake an automation; `actions_not` is
removed in favour of an `if` / `then` / `else` action; the nested
`acc.trigger.*` template paths and the ambient `advanced_camera_card`
template namespace are removed (use the top-level `trigger.*` surface
and the `acc` alias); trigger-only condition forms (`config`, valueless
`camera` / `view` / `state`) are no longer valid conditions; and
template-condition vs template-trigger truthiness now follow HA.
Existing configs are upgraded automatically where a faithful conversion
exists; anything that cannot be converted is recorded under
`__UPGRADE_FAILURE__` for manual migration.
---------
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
|
||
|
|
209c873c58 |
docs: Add worked examples for showing a folder as a camera's media (#2521)
Related: #2498 |
||
|
|
12ae3b216c | refactor: Restructure condition evaluation into per-type evaluator classes (#2518) | ||
|
|
3480a55a87 |
chore(deps): bump release-drafter/release-drafter from 7.3.0 to 7.3.1 (#2509)
Bumps [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) from 7.3.0 to 7.3.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/release-drafter/release-drafter/releases">release-drafter/release-drafter's releases</a>.</em></p> <blockquote> <h2>v7.3.1</h2> <h1>What's Changed</h1> <h2>Bug Fixes</h2> <ul> <li>fix: output name and tag_name in dry-run mode (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1625">#1625</a>) <a href="https://github.com/cchanche"><code>@cchanche</code></a></li> </ul> <h2>Maintenance</h2> <ul> <li>chore(deps): update graphql-codegen to 7.0.0 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1619">#1619</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>chore(deps): update dependency nock to 14.0.15 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1609">#1609</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>chore(deps): update graphql-codegen (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1615">#1615</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>chore(deps): update dependency typescript to 6.0.3 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1610">#1610</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>ci(deps): update actions/download-artifact action to v8.0.1 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1620">#1620</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>chore(deps): update dependency <code>@types/node</code> to 24.12.3 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1608">#1608</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>chore(deps): update vitest to 4.1.5 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1612">#1612</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>chore(deps): update dependency <code>@biomejs/biome</code> to 2.4.15 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1607">#1607</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>chore(deps): update dependency vite to 8.0.11 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1611">#1611</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>ci(deps): pin dependencies (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1606">#1606</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> </ul> <h2>Dependency Updates</h2> <!-- raw HTML omitted --> <ul> <li>chore(deps): update node.js to v24.15.0 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1616">#1616</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>chore(deps): update vite to v8.0.13 and vitest to v4.1.6 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1624">#1624</a>) <a href="https://github.com/cchanche"><code>@cchanche</code></a></li> <li>fix(deps): update dependency semver to 7.8.0 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1622">#1622</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>chore(deps): update npm tool constraint to 11.14.1 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1617">#1617</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>fix(deps): update dependency zod to 4.4.3 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1618">#1618</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>fix(deps): update actions (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1613">#1613</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>chore(deps): update dependency <code>@biomejs/biome</code> to 2.4.15 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1607">#1607</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>fix(deps): update dependency yaml to 2.8.4 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1614">#1614</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> </ul> <!-- raw HTML omitted --> <p><strong>Full Changelog</strong>: <a href="https://github.com/release-drafter/release-drafter/compare/v7.3.0...v7.3.1">https://github.com/release-drafter/release-drafter/compare/v7.3.0...v7.3.1</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/release-drafter/release-drafter/commit/693d20e7c1ce1a81d3a41962f85914253b518449"><code>693d20e</code></a> chore: release v7.3.1</li> <li><a href="https://github.com/release-drafter/release-drafter/commit/8339e41baa2bbe599e9144446202a730b0b512dc"><code>8339e41</code></a> docs: update contributing docs for release process</li> <li><a href="https://github.com/release-drafter/release-drafter/commit/62d8da40388ce452db900d9dd413236c55d8527b"><code>62d8da4</code></a> fix: output name and tag_name in dry-run mode (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1625">#1625</a>)</li> <li><a href="https://github.com/release-drafter/release-drafter/commit/2c6d3958ca8ff5559d1816902d569397e6e7cd40"><code>2c6d395</code></a> chore(deps): update node.js to v24.15.0 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1616">#1616</a>)</li> <li><a href="https://github.com/release-drafter/release-drafter/commit/3b62240da12f1ebb0e312c0e333efb7c975c9f83"><code>3b62240</code></a> chore(deps): update vite to v8.0.13 and vitest to v4.1.6 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1624">#1624</a>)</li> <li><a href="https://github.com/release-drafter/release-drafter/commit/446e1517c52f0f2658eccfb62fe528f3c863e2ce"><code>446e151</code></a> fix(deps): adapt to graphql-codegen 7 type changes</li> <li><a href="https://github.com/release-drafter/release-drafter/commit/4cd06dcb5f73b1a2c718f7902ca013a7b3ebffc1"><code>4cd06dc</code></a> chore(deps): update graphql-codegen to 7.0.0</li> <li><a href="https://github.com/release-drafter/release-drafter/commit/80457684ebeb5980a2523289611de1d198148dc0"><code>8045768</code></a> fix(deps): update dependency semver to 7.8.0</li> <li><a href="https://github.com/release-drafter/release-drafter/commit/1cf836b3aa269940ddd548267ab0a35726568d79"><code>1cf836b</code></a> ci(release): use local action for publish step</li> <li><a href="https://github.com/release-drafter/release-drafter/commit/485c120935331ce9b7d39543ad7441a80d6c7194"><code>485c120</code></a> chore(deps): update npm tool constraint to 11.14.1</li> <li>Additional commits viewable in <a href="https://github.com/release-drafter/release-drafter/compare/v7.3.0...v7.3.1">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 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> |
||
|
|
ace3d1b89e |
chore(deps): bump dessant/lock-threads from 6.0.1 to 6.0.2 (#2510)
Bumps [dessant/lock-threads](https://github.com/dessant/lock-threads) from 6.0.1 to 6.0.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dessant/lock-threads/releases">dessant/lock-threads's releases</a>.</em></p> <blockquote> <h2>v6.0.2</h2> <p>Learn more about this release from the <a href="https://github.com/dessant/lock-threads/blob/main/CHANGELOG.md#changelog">changelog</a>.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/dessant/lock-threads/blob/main/CHANGELOG.md">dessant/lock-threads's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/dessant/lock-threads/compare/v6.0.1...v6.0.2">6.0.2</a> (2026-05-23)</h2> <h3>Bug Fixes</h3> <ul> <li>update github-token validation schema (<a href="https://github.com/dessant/lock-threads/commit/a329c89d09f15f65ee0fc0c36ed36f957598ff68">a329c89</a>), closes <a href="https://redirect.github.com/dessant/lock-threads/issues/55">#55</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dessant/lock-threads/commit/89ae32b08ed1a541efecbab17912962a5e38981c"><code>89ae32b</code></a> chore(release): 6.0.2</li> <li><a href="https://github.com/dessant/lock-threads/commit/020bb294228b89d5065f5d06621398fe679768eb"><code>020bb29</code></a> chore: update package</li> <li><a href="https://github.com/dessant/lock-threads/commit/a329c89d09f15f65ee0fc0c36ed36f957598ff68"><code>a329c89</code></a> fix: update github-token validation schema</li> <li>See full diff in <a href="https://github.com/dessant/lock-threads/compare/v6.0.1...v6.0.2">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 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> |
||
|
|
37df382aa2 | fix: Fix leaky Frigate subscriptions/unsubscriptions (#2513) | ||
|
|
0a36358394 | feat: Trigger cameras on HA bus events (#2512) | ||
|
|
406176eebc | feat: Add 'doorbell' configuration profile (#2511) | ||
|
|
ef9c9c8d5c | fix: Avoid potential call-manager race condition (#2508) | ||
|
|
773cee95a5 | feat: Add automatic doorbell detection (#2507) | ||
|
|
4b72fcd629 | feat: Support HA event entities as triggers (#2506) | ||
|
|
f1fad59a89 | chore: Small fixes to clean docs link checker results (#2505) | ||
|
|
f397596ed1 | feat: Explicit answer/reject for inbound calls (#2504) | ||
|
|
b9f09b7c4e | chore: Expand default Claude permissions slightly (#2503) | ||
|
|
88fde79721 | feat: Add easy access to card from JS console for user debugging (#2502) | ||
|
|
326c8d4e71 |
chore(deps): bump dessant/lock-threads from 6.0.0 to 6.0.1 (#2496)
Bumps [dessant/lock-threads](https://github.com/dessant/lock-threads) from 6.0.0 to 6.0.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dessant/lock-threads/releases">dessant/lock-threads's releases</a>.</em></p> <blockquote> <h2>v6.0.1</h2> <p>Learn more about this release from the <a href="https://github.com/dessant/lock-threads/blob/main/CHANGELOG.md#changelog">changelog</a>.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/dessant/lock-threads/blob/main/CHANGELOG.md">dessant/lock-threads's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/dessant/lock-threads/compare/v6.0.0...v6.0.1">6.0.1</a> (2026-05-21)</h2> <h3>Bug Fixes</h3> <ul> <li>update dependencies (<a href="https://github.com/dessant/lock-threads/commit/a3f9e2b5b7f63af69a4b183cb3328deac8b2c6e4">a3f9e2b</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dessant/lock-threads/commit/851cffe46851ddd2051ea7147ebdc995113241c3"><code>851cffe</code></a> chore(release): 6.0.1</li> <li><a href="https://github.com/dessant/lock-threads/commit/a746c16db10f5a5250490e783753c5dcc07bc41a"><code>a746c16</code></a> chore: update package</li> <li><a href="https://github.com/dessant/lock-threads/commit/779ad25099fb0f90bf5d21efed52986c23b23812"><code>779ad25</code></a> chore: update description</li> <li><a href="https://github.com/dessant/lock-threads/commit/a3f9e2b5b7f63af69a4b183cb3328deac8b2c6e4"><code>a3f9e2b</code></a> fix: update dependencies</li> <li><a href="https://github.com/dessant/lock-threads/commit/27bfaa2bb8ddbf290fa5c34e64cdde23bbbdc9ce"><code>27bfaa2</code></a> chore: add npm config</li> <li><a href="https://github.com/dessant/lock-threads/commit/b317ef364bb92af31cca37bcae6cb92185f4670c"><code>b317ef3</code></a> chore: update workflows</li> <li>See full diff in <a href="https://github.com/dessant/lock-threads/compare/v6.0.0...v6.0.1">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 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> |
||
|
|
f18e4cd4b8 |
refactor: Unify substream actions into substream_{on,off} (#2497)
## Summary
- Collapse `live_substream_{on,off,select}` into a unified
`substream_{on,off}` pair, symmetric with `call_{start,end}`.
- Rename the `camera` field on the former `live_substream_select` to
`stream` (it always was a stream ID).
- Add optional `camera` field to both new actions for targeting a
non-selected base camera.
- YAML configs are migrated automatically; URL bookmarks must be updated
by hand.
## Migration
### Cycling between camera and substream (toggle button)
Before:
```yaml
tap_action:
action: custom:advanced-camera-card-action
advanced_camera_card_action: live_substream_on
```
After:
```yaml
tap_action:
action: custom:advanced-camera-card-action
advanced_camera_card_action: substream_on
```
### Selecting a specific substream
Before:
```yaml
tap_action:
action: custom:advanced-camera-card-action
advanced_camera_card_action: live_substream_select
camera: camera.front_door_hd
```
After:
```yaml
tap_action:
action: custom:advanced-camera-card-action
advanced_camera_card_action: substream_on
stream: camera.front_door_hd
```
### Turning the substream off
Before:
```yaml
tap_action:
action: custom:advanced-camera-card-action
advanced_camera_card_action: live_substream_off
```
After:
```yaml
tap_action:
action: custom:advanced-camera-card-action
advanced_camera_card_action: substream_off
```
### URL querystrings (manual update required)
| Before | After |
| --- | --- |
|
`?advanced-camera-card-action.live_substream_select=camera.front_door_hd`
| `?advanced-camera-card-action.substream_on=camera.front_door_hd` |
|
||
|
|
15e335a647 | feat: Add support for inbound "calls" from triggers (#2500) | ||
|
|
f4c686c298 | chore: Allow parallel rollup instances (#2499) | ||
|
|
04059920bb | chore: Don't use rollup serving by default (#2495) | ||
|
|
48761f0478 |
refactor: Use toggleAttribute natively where possible (#2494)
|
||
|
|
2acec49b29 | refactor: Clone context when a view is cloned (#2493) | ||
|
|
3f0d2ef14d | chore: Add worktree deployment support (#2491) | ||
|
|
f21a46297a | fix: Improve visual styling for transmitting/triggering (#2490) | ||
|
|
090138a01e | fix: Lock the grid when the UI is locked (#2489) | ||
|
|
881ba51e9f |
feat: Escape ends calls (#2488)
|
||
|
|
9b750953ae | fix: Lock thumbnails and timeline when UX is locked for calls (#2487) | ||
|
|
abcba884e5 |
feat: Add 'call' support to improve 2-way audio experience (#2486)
Draws significant inspiration (and direct styling) from https://github.com/dermotduffy/advanced-camera-card/pull/2447 . Thank you @Maudfer ! BREAKING CHANGE: The microphone condition previously bundled two unrelated signals — whether a two-way-audio session was connected and whether the microphone was muted. Connection state is now its own dedicated call condition, and microphone is reserved purely for mute state. Configs are upgraded automatically (the card rewrites affected conditions under overrides, elements, and automations). If you maintain config by hand, convert as follows: If you only used connected: # Before ```yaml condition: microphone connected: true ``` # After ```yaml condition: call call: true ``` If you used both connected and muted — they must be split into two conditions, since they no longer live together: # Before ```yaml condition: microphone connected: true muted: false ``` # After ```yaml condition: and conditions: - condition: call call: true - condition: microphone muted: false ``` |
||
|
|
bb061a1a55 |
chore(deps): bump ytanikin/PRConventionalCommits from 1.2.0 to 1.3.0 (#2469)
Bumps [ytanikin/PRConventionalCommits](https://github.com/ytanikin/prconventionalcommits) from 1.2.0 to 1.3.0. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ytanikin/PRConventionalCommits/commit/b628c5a234cc32513014b7bfdd1e47b532124d98"><code>b628c5a</code></a> test: enable "breaking change" test</li> <li><a href="https://github.com/ytanikin/PRConventionalCommits/commit/e1b5683aa4071570835ed1217d43d4d31b24d5b8"><code>e1b5683</code></a> fix: Set breaking changes regex (<a href="https://redirect.github.com/ytanikin/prconventionalcommits/issues/24">#24</a>)</li> <li><a href="https://github.com/ytanikin/PRConventionalCommits/commit/92a7ab7dc605b39299db37d01f53223b01066550"><code>92a7ab7</code></a> fix: upgrade dependencies (<a href="https://redirect.github.com/ytanikin/prconventionalcommits/issues/26">#26</a>)</li> <li><a href="https://github.com/ytanikin/PRConventionalCommits/commit/cc6cc0dddb0ba80eaf229787a0becde7377415b9"><code>cc6cc0d</code></a> test: fix tests (<a href="https://redirect.github.com/ytanikin/prconventionalcommits/issues/25">#25</a>)</li> <li>See full diff in <a href="https://github.com/ytanikin/prconventionalcommits/compare/1.2.0...1.3.0">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 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> |
||
|
|
ad358da0f0 |
chore(deps): bump hacs/action from 21.12.1 to 22.5.0 (#2471)
Bumps [hacs/action](https://github.com/hacs/action) from 21.12.1 to 22.5.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/hacs/action/releases">hacs/action's releases</a>.</em></p> <blockquote> <h2>22.5.0</h2> <h2>What's Changed</h2> <ul> <li>Bump actions/checkout from 2.4.0 to 3 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/hacs/action/pull/29">hacs/action#29</a></li> <li>Migrate to docker action by <a href="https://github.com/ludeeus"><code>@ludeeus</code></a> in <a href="https://redirect.github.com/hacs/action/pull/30">hacs/action#30</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/hacs/action/compare/21.12.1...22.5.0">https://github.com/hacs/action/compare/21.12.1...22.5.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/hacs/action/commit/d556e736723344f83838d08488c983a15381059a"><code>d556e73</code></a> Delete release-drafter.yml</li> <li><a href="https://github.com/hacs/action/commit/eff54d64f50f8a02d3648d77d1ac909b3011ef67"><code>eff54d6</code></a> Delete release-drafter.yml</li> <li><a href="https://github.com/hacs/action/commit/9b8545c28fb3871677397d2d6ab687b285901a2c"><code>9b8545c</code></a> Fix image path</li> <li><a href="https://github.com/hacs/action/commit/1077020c2a7659697feb17aa95ce0e5334aeeb61"><code>1077020</code></a> Migrate to docker action (<a href="https://redirect.github.com/hacs/action/issues/30">#30</a>)</li> <li><a href="https://github.com/hacs/action/commit/1c38a977bb6ae5e83cc66e8d1e8cc8c636c295e5"><code>1c38a97</code></a> Bump actions/checkout from 2.4.0 to 3 (<a href="https://redirect.github.com/hacs/action/issues/29">#29</a>)</li> <li>See full diff in <a href="https://github.com/hacs/action/compare/21.12.1...22.5.0">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 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> |
||
|
|
489417a03d |
chore(deps): bump actions/checkout from 4 to 6 (#2472)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. <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>v6.0.0</h2> <h2>What's Changed</h2> <ul> <li>Update README to include Node.js 24 support details and requirements by <a href="https://github.com/salmanmkc"><code>@salmanmkc</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2248">actions/checkout#2248</a></li> <li>Persist creds to a separate file by <a href="https://github.com/ericsciple"><code>@ericsciple</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2286">actions/checkout#2286</a></li> <li>v6-beta by <a href="https://github.com/ericsciple"><code>@ericsciple</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2298">actions/checkout#2298</a></li> <li>update readme/changelog for v6 by <a href="https://github.com/ericsciple"><code>@ericsciple</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2311">actions/checkout#2311</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/checkout/compare/v5.0.0...v6.0.0">https://github.com/actions/checkout/compare/v5.0.0...v6.0.0</a></p> <h2>v6-beta</h2> <h2>What's Changed</h2> <p>Updated persist-credentials to store the credentials under <code>$RUNNER_TEMP</code> instead of directly in the local git config.</p> <p>This requires a minimum Actions Runner version of <a href="https://github.com/actions/runner/releases/tag/v2.329.0">v2.329.0</a> to access the persisted credentials for <a href="https://docs.github.com/en/actions/tutorials/use-containerized-services/create-a-docker-container-action">Docker container action</a> scenarios.</p> <h2>v5.0.1</h2> <h2>What's Changed</h2> <ul> <li>Port v6 cleanup to v5 by <a href="https://github.com/ericsciple"><code>@ericsciple</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2301">actions/checkout#2301</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/checkout/compare/v5...v5.0.1">https://github.com/actions/checkout/compare/v5...v5.0.1</a></p> <h2>v5.0.0</h2> <h2>What's Changed</h2> <ul> <li>Update actions checkout to use node 24 by <a href="https://github.com/salmanmkc"><code>@salmanmkc</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2226">actions/checkout#2226</a></li> <li>Prepare v5.0.0 release by <a href="https://github.com/salmanmkc"><code>@salmanmkc</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2238">actions/checkout#2238</a></li> </ul> <h2>⚠️ Minimum Compatible Runner Version</h2> <p><strong>v2.327.1</strong><br /> <a href="https://github.com/actions/runner/releases/tag/v2.327.1">Release Notes</a></p> <p>Make sure your runner is updated to this version or newer to use this release.</p> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/checkout/compare/v4...v5.0.0">https://github.com/actions/checkout/compare/v4...v5.0.0</a></p> <h2>v4.3.1</h2> <h2>What's Changed</h2> <ul> <li>Port v6 cleanup to v4 by <a href="https://github.com/ericsciple"><code>@ericsciple</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2305">actions/checkout#2305</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/checkout/compare/v4...v4.3.1">https://github.com/actions/checkout/compare/v4...v4.3.1</a></p> <h2>v4.3.0</h2> <h2>What's Changed</h2> <ul> <li>docs: update README.md by <a href="https://github.com/motss"><code>@motss</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1971">actions/checkout#1971</a></li> <li>Add internal repos for checking out multiple repositories by <a href="https://github.com/mouismail"><code>@mouismail</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1977">actions/checkout#1977</a></li> <li>Documentation update - add recommended permissions to Readme by <a href="https://github.com/benwells"><code>@benwells</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2043">actions/checkout#2043</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>v6.0.2</h2> <ul> <li>Fix tag handling: preserve annotations and explicit fetch-tags by <a href="https://github.com/ericsciple"><code>@ericsciple</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2356">actions/checkout#2356</a></li> </ul> <h2>v6.0.1</h2> <ul> <li>Add worktree support for persist-credentials includeIf by <a href="https://github.com/ericsciple"><code>@ericsciple</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2327">actions/checkout#2327</a></li> </ul> <h2>v6.0.0</h2> <ul> <li>Persist creds to a separate file by <a href="https://github.com/ericsciple"><code>@ericsciple</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2286">actions/checkout#2286</a></li> <li>Update README to include Node.js 24 support details and requirements by <a href="https://github.com/salmanmkc"><code>@salmanmkc</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2248">actions/checkout#2248</a></li> </ul> <h2>v5.0.1</h2> <ul> <li>Port v6 cleanup to v5 by <a href="https://github.com/ericsciple"><code>@ericsciple</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2301">actions/checkout#2301</a></li> </ul> <h2>v5.0.0</h2> <ul> <li>Update actions checkout to use node 24 by <a href="https://github.com/salmanmkc"><code>@salmanmkc</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2226">actions/checkout#2226</a></li> </ul> <h2>v4.3.1</h2> <ul> <li>Port v6 cleanup to v4 by <a href="https://github.com/ericsciple"><code>@ericsciple</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2305">actions/checkout#2305</a></li> </ul> <h2>v4.3.0</h2> <ul> <li>docs: update README.md by <a href="https://github.com/motss"><code>@motss</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1971">actions/checkout#1971</a></li> <li>Add internal repos for checking out multiple repositories by <a href="https://github.com/mouismail"><code>@mouismail</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1977">actions/checkout#1977</a></li> <li>Documentation update - add recommended permissions to Readme by <a href="https://github.com/benwells"><code>@benwells</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2043">actions/checkout#2043</a></li> <li>Adjust positioning of user email note and permissions heading by <a href="https://github.com/joshmgross"><code>@joshmgross</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2044">actions/checkout#2044</a></li> <li>Update README.md by <a href="https://github.com/nebuk89"><code>@nebuk89</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2194">actions/checkout#2194</a></li> <li>Update CODEOWNERS for actions by <a href="https://github.com/TingluoHuang"><code>@TingluoHuang</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2224">actions/checkout#2224</a></li> <li>Update package dependencies by <a href="https://github.com/salmanmkc"><code>@salmanmkc</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/2236">actions/checkout#2236</a></li> </ul> <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> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actions/checkout/commit/de0fac2e4500dabe0009e67214ff5f5447ce83dd"><code>de0fac2</code></a> Fix tag handling: preserve annotations and explicit fetch-tags (<a href="https://redirect.github.com/actions/checkout/issues/2356">#2356</a>)</li> <li><a href="https://github.com/actions/checkout/commit/064fe7f3312418007dea2b49a19844a9ee378f49"><code>064fe7f</code></a> Add orchestration_id to git user-agent when ACTIONS_ORCHESTRATION_ID is set (...</li> <li><a href="https://github.com/actions/checkout/commit/8e8c483db84b4bee98b60c0593521ed34d9990e8"><code>8e8c483</code></a> Clarify v6 README (<a href="https://redirect.github.com/actions/checkout/issues/2328">#2328</a>)</li> <li><a href="https://github.com/actions/checkout/commit/033fa0dc0b82693d8986f1016a0ec2c5e7d9cbb1"><code>033fa0d</code></a> Add worktree support for persist-credentials includeIf (<a href="https://redirect.github.com/actions/checkout/issues/2327">#2327</a>)</li> <li><a href="https://github.com/actions/checkout/commit/c2d88d3ecc89a9ef08eebf45d9637801dcee7eb5"><code>c2d88d3</code></a> Update all references from v5 and v4 to v6 (<a href="https://redirect.github.com/actions/checkout/issues/2314">#2314</a>)</li> <li><a href="https://github.com/actions/checkout/commit/1af3b93b6815bc44a9784bd300feb67ff0d1eeb3"><code>1af3b93</code></a> update readme/changelog for v6 (<a href="https://redirect.github.com/actions/checkout/issues/2311">#2311</a>)</li> <li><a href="https://github.com/actions/checkout/commit/71cf2267d89c5cb81562390fa70a37fa40b1305e"><code>71cf226</code></a> v6-beta (<a href="https://redirect.github.com/actions/checkout/issues/2298">#2298</a>)</li> <li><a href="https://github.com/actions/checkout/commit/069c6959146423d11cd0184e6accf28f9d45f06e"><code>069c695</code></a> Persist creds to a separate file (<a href="https://redirect.github.com/actions/checkout/issues/2286">#2286</a>)</li> <li><a href="https://github.com/actions/checkout/commit/ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493"><code>ff7abcd</code></a> Update README to include Node.js 24 support details and requirements (<a href="https://redirect.github.com/actions/checkout/issues/2248">#2248</a>)</li> <li><a href="https://github.com/actions/checkout/commit/08c6903cd8c0fde910a37f88322edcfb5dd907a8"><code>08c6903</code></a> Prepare v5.0.0 release (<a href="https://redirect.github.com/actions/checkout/issues/2238">#2238</a>)</li> <li>Additional commits viewable in <a href="https://github.com/actions/checkout/compare/v4...v6">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 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> |
||
|
|
a90f70fb8c |
chore(deps): bump release-drafter/release-drafter from 6.0.0 to 7.3.0 (#2477)
Bumps [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) from 6.0.0 to 7.3.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/release-drafter/release-drafter/releases">release-drafter/release-drafter's releases</a>.</em></p> <blockquote> <h2>v7.2.1</h2> <h1>What's Changed</h1> <h2>Bug Fixes</h2> <ul> <li>fix: initial-commits-since in config not overwritten by input (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1593">#1593</a>) <a href="https://github.com/sroebert"><code>@sroebert</code></a></li> <li>fix: clarify prerelease-identifier behavior and precedence in configuration (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1594">#1594</a>) <a href="https://github.com/neilime"><code>@neilime</code></a></li> </ul> <h2>Maintenance</h2> <ul> <li>chore: disable "No version input..." warning (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1595">#1595</a>) <a href="https://github.com/cchanche"><code>@cchanche</code></a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/release-drafter/release-drafter/compare/v7.2.0...v7.2.1">https://github.com/release-drafter/release-drafter/compare/v7.2.0...v7.2.1</a></p> <h2>v7.2.0</h2> <h1>What's Changed</h1> <h2>New</h2> <ul> <li>feat: allow always collapsing a category (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1444">#1444</a>) <a href="https://github.com/mhanberg"><code>@mhanberg</code></a></li> </ul> <h2>Bug Fixes</h2> <ul> <li>fix: improve advanced substitutions in replacers (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1555">#1555</a>) <a href="https://github.com/jetersen"><code>@jetersen</code></a></li> <li>fix: support repo-only _extends and prevent .github/ path doubling (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1577">#1577</a>) <a href="https://github.com/jetersen"><code>@jetersen</code></a></li> </ul> <h2>Maintenance</h2> <ul> <li>chore(deps): update dependency typescript to 6.0.2 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1587">#1587</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>chore(deps): update vitest to 4.1.4 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1585">#1585</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>ci(deps): update peter-evans/create-pull-request action to v8 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1588">#1588</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>chore(deps): update dependency vite to 8.0.5 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1579">#1579</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>chore(deps): update dependency nock to 14.0.12 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1583">#1583</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>chore(deps): update dependency <code>@types/node</code> to 24.12.2 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1582">#1582</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>chore(deps): update dependency <code>@biomejs/biome</code> to 2.4.10 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1581">#1581</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>chore: move codegen to monthly scheduled workflow (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1578">#1578</a>) <a href="https://github.com/jetersen"><code>@jetersen</code></a></li> <li>chore: replace vite-tsconfig-paths plugin with native resolve.tsconfigPaths (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1571">#1571</a>) <a href="https://github.com/jetersen"><code>@jetersen</code></a></li> </ul> <h2>Documentation</h2> <ul> <li>docs: fix autolabeler example tag (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1568">#1568</a>) <a href="https://github.com/cchanche"><code>@cchanche</code></a></li> </ul> <h2>Dependency Updates</h2> <ul> <li>build(deps): bump lodash and <code>@graphql-codegen/plugin-helpers</code> (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1589">#1589</a>) @<a href="https://github.com/apps/dependabot">dependabot[bot]</a></li> <li>fix(deps): update dependency <code>@actions/github</code> to 9.1.0 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1586">#1586</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>chore(deps): update dependency yaml to 2.8.3 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1580">#1580</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>chore(deps): update node.js to v24.14.1 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1584">#1584</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> <li>chore(deps): update dependency <code>@biomejs/biome</code> to 2.4.10 (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1581">#1581</a>) @<a href="https://github.com/apps/renovate">renovate[bot]</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/release-drafter/release-drafter/commit/c2e2804cc59f45f57076a99af580d0fedb697927"><code>c2e2804</code></a> chore: release v7.3.0</li> <li><a href="https://github.com/release-drafter/release-drafter/commit/0c28acd0bcb335f1f86b350a4283045eb03025b9"><code>0c28acd</code></a> feat: recover recently merged PRs missed by associated PRs lag (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1604">#1604</a>)</li> <li><a href="https://github.com/release-drafter/release-drafter/commit/3052ee00309feb828889940f8ea4fb642ff57f4e"><code>3052ee0</code></a> fix: restore prerelease-identifier on first run when no prior releases exist ...</li> <li><a href="https://github.com/release-drafter/release-drafter/commit/0503d11169c6098c4ff53bb412ae8887b6fbb79c"><code>0503d11</code></a> ci: rebuild dist after codegen so generated PRs include bundle updates (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1605">#1605</a>)</li> <li><a href="https://github.com/release-drafter/release-drafter/commit/a553731db26761b6a6446a23e3a978949cba6e2b"><code>a553731</code></a> chore: update generated GraphQL types (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1600">#1600</a>)</li> <li><a href="https://github.com/release-drafter/release-drafter/commit/c5dd36151c0584427a1f10cb41d5ba73cebcdad4"><code>c5dd361</code></a> ci: add warning on automatic codegen PRs</li> <li><a href="https://github.com/release-drafter/release-drafter/commit/705c5afff81196e065284562dd78729d4bbdab7a"><code>705c5af</code></a> ci: add maintenance label to automated codegen updates</li> <li><a href="https://github.com/release-drafter/release-drafter/commit/acfaf4fa10f83604f93febbc544d5be415f0458e"><code>acfaf4f</code></a> chore: clarify base repository pr filtering (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1599">#1599</a>)</li> <li><a href="https://github.com/release-drafter/release-drafter/commit/d181a5a9df5268ebc5c1cdebeaef584ddbe14412"><code>d181a5a</code></a> fix: prevent using commitish like refs/pull (<a href="https://redirect.github.com/release-drafter/release-drafter/issues/1598">#1598</a>)</li> <li><a href="https://github.com/release-drafter/release-drafter/commit/f188d08e9e71d8903f02ca1c5e7aea645a815537"><code>f188d08</code></a> feat: switch release discovery to ref comparison and explicit missing-baselin...</li> <li>Additional commits viewable in <a href="https://github.com/release-drafter/release-drafter/compare/v6.0.0...v7.3.0">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 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> |
||
|
|
be7e7d79dc | feat: Add UI optional UI locking when microphone is hot (#2484) | ||
|
|
9a763db1f3 | fix: Avoid go2rtc renegotiation on camera selection change (#2483) | ||
|
|
a68b665f03 |
feat: Add live.microphone.auto_mute / auto_unmute (#2482)
|
||
|
|
9eb503deff |
feat: Add casting capability to user_agent condition (#2480)
|
||
|
|
261a7e1a92 |
feat: Auto-resolve Frigate client_id from camera entity (#2475)
Credit goes to @Eduardo-Jaramillo for the inspiration and contribution of https://github.com/dermotduffy/advanced-camera-card/pull/2474 . |
||
|
|
9d088d7bcb |
fix: Add support for synchronously reseting go2rtc sessions (#2478)
This is part 1 of https://docs.google.com/document/d/1zbHYWqulEUaNLeX0fK3rfIiLugMlCQo_SFg3hcgiRRw/edit?tab=t.0 . There is a significant chance this will improve issues people have been experiencing with poorly designed doorbells that can only open a single stream at a time. |
||
|
|
31d0c9322f |
fix: Always respect the returned MIME type (#2473)
- Closes #2449 |
||
|
|
591f466b92 |
fix: Render sub-labels for Frigate reviews (#2468)
- Closes: #2438 |
||
|
|
149fce4823 |
chore(deps): bump svenstaro/upload-release-action from 2.9.0 to 2.11.5 (#2460)
Bumps [svenstaro/upload-release-action](https://github.com/svenstaro/upload-release-action) from 2.9.0 to 2.11.5. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/svenstaro/upload-release-action/releases">svenstaro/upload-release-action's releases</a>.</em></p> <blockquote> <h2>2.11.5</h2> <p>Update to ESM; Bump github-related npm libraries</p> <h2>2.11.4</h2> <h2>What's Changed</h2> <p>Bumped all NPM versions</p> <h2>2.11.3</h2> <p>Post-fix Github errors - releases created as draft when they shouldn't have been - <a href="https://redirect.github.com/svenstaro/upload-release-action/pull/99">#99</a></p> <h2>2.11.2</h2> <p>Solved race-condition when matrix builds try to create the same release at the same time - <a href="https://redirect.github.com/svenstaro/upload-release-action/pull/147">#147</a></p> <h2>2.11.1</h2> <p>Fixed input and output names for release_id</p> <h2>2.11.0</h2> <ul> <li>Adds a <code>release_id</code> output, and optional input, for uploading files to release - <a href="https://redirect.github.com/svenstaro/upload-release-action/pull/136">#136</a> (thanks <a href="https://github.com/alexis-opolka"><code>@alexis-opolka</code></a>)</li> </ul> <h2>2.10.0</h2> <p>Adds the ability to disable duplicate check, for lower Github API usage - <a href="https://redirect.github.com/svenstaro/upload-release-action/pull/142">#142</a> (thanks <a href="https://github.com/colinsullivan"><code>@colinsullivan</code></a>)</p> <h2>2.9.1</h2> <p>Fixed development + CI, updated dependencies - <a href="https://redirect.github.com/svenstaro/upload-release-action/pull/137">#137</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/svenstaro/upload-release-action/blob/master/CHANGELOG.md">svenstaro/upload-release-action's changelog</a>.</em></p> <blockquote> <h1>Changelog</h1> <h2>[2.11.4] - 2026-02-25</h2> <ul> <li>Bump npm versions</li> </ul> <h2>[2.11.3] - 2025-11-20</h2> <ul> <li>Post-fix releases created as draft when they shouldn't have - <a href="https://redirect.github.com/svenstaro/upload-release-action/pull/99">#99</a></li> </ul> <h2>[2.11.2] - 2025-07-06</h2> <ul> <li>Solved race-condition when matrix builds try to create the same release at the same time - <a href="https://redirect.github.com/svenstaro/upload-release-action/pull/147">#147</a></li> </ul> <h2>[2.11.1] - 2025-06-30</h2> <ul> <li>Adds a <code>release_id</code> output, and optional input, for uploading files to release - <a href="https://redirect.github.com/svenstaro/upload-release-action/pull/136">#136</a> (thanks <a href="https://github.com/alexis-opolka"><code>@alexis-opolka</code></a>)</li> </ul> <h2>[2.10.0] - 2025-06-21</h2> <ul> <li>Adds the ability to disable duplicate check, for lower Github API usage - <a href="https://redirect.github.com/svenstaro/upload-release-action/pull/142">#142</a> (thanks <a href="https://github.com/colinsullivan"><code>@colinsullivan</code></a>)</li> </ul> <h2>[2.9.1] - 2025-06-21</h2> <ul> <li>Fixed development + CI, updated dependencies <a href="https://redirect.github.com/svenstaro/upload-release-action/pull/137">#137</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/svenstaro/upload-release-action/commit/29e53e917877a24fad85510ded594ab3c9ca12de"><code>29e53e9</code></a> 2.11.5</li> <li><a href="https://github.com/svenstaro/upload-release-action/commit/e701a60fe7bfebdfb15e6617efada78782b376aa"><code>e701a60</code></a> Update actions to Node.js 24</li> <li><a href="https://github.com/svenstaro/upload-release-action/commit/f0ad2b8d7359da516cbb9a7c89353235d7ae6393"><code>f0ad2b8</code></a> Migrate to ESM and bump GitHub Actions toolkit to latest</li> <li><a href="https://github.com/svenstaro/upload-release-action/commit/0c75bf05266b8ed268dd79ac1cdf957fe77acb0f"><code>0c75bf0</code></a> Revert "Bump GitHub Actions toolkit dependencies to latest major versions"</li> <li><a href="https://github.com/svenstaro/upload-release-action/commit/980b6b11eb2d2828f0f84c0229319dcf11b5d607"><code>980b6b1</code></a> Bump GitHub Actions toolkit dependencies to latest major versions</li> <li><a href="https://github.com/svenstaro/upload-release-action/commit/b98a3b12e86552593f3e4e577ca8a62aa2f3f22b"><code>b98a3b1</code></a> 2.11.4</li> <li><a href="https://github.com/svenstaro/upload-release-action/commit/274af92b65b6d085e0cd7da0da51ddea680c748d"><code>274af92</code></a> Merge pull request <a href="https://redirect.github.com/svenstaro/upload-release-action/issues/152">#152</a> from svenstaro/dependabot/npm_and_yarn/isaacs/brace-e...</li> <li><a href="https://github.com/svenstaro/upload-release-action/commit/523bbfacdd1e951d0c8373aee192ebb2748b8bef"><code>523bbfa</code></a> Bump <code>@isaacs/brace-expansion</code> from 5.0.0 to 5.0.1</li> <li><a href="https://github.com/svenstaro/upload-release-action/commit/7f93926b6eec9cfdde9a8dfac51a4e23370b7c8e"><code>7f93926</code></a> 2.11.3</li> <li><a href="https://github.com/svenstaro/upload-release-action/commit/d78c2556e142f0ca7e915302380c1d933b4213b8"><code>d78c255</code></a> Fix releases that are created as drafts (github error) (<a href="https://redirect.github.com/svenstaro/upload-release-action/issues/151">#151</a>)</li> <li>Additional commits viewable in <a href="https://github.com/svenstaro/upload-release-action/compare/2.9.0...2.11.5">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 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> |
||
|
|
a88e94a173 |
chore(deps): bump dessant/lock-threads from 5.0.1 to 6.0.0 (#2458)
Bumps [dessant/lock-threads](https://github.com/dessant/lock-threads) from 5.0.1 to 6.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dessant/lock-threads/releases">dessant/lock-threads's releases</a>.</em></p> <blockquote> <h2>v6.0.0</h2> <p>Learn more about this release from the <a href="https://github.com/dessant/lock-threads/blob/main/CHANGELOG.md#changelog">changelog</a>.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/dessant/lock-threads/blob/main/CHANGELOG.md">dessant/lock-threads's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/dessant/lock-threads/compare/v5.0.1...v6.0.0">6.0.0</a> (2025-12-12)</h2> <h3>⚠ BREAKING CHANGES</h3> <ul> <li>the action now requires Node.js 24</li> </ul> <h3>Bug Fixes</h3> <ul> <li>update dependencies (<a href="https://github.com/dessant/lock-threads/commit/6548363a2d763e3a4a3a0dc04ca4a10481d8e536">6548363</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dessant/lock-threads/commit/7266a7ce5c1df01b1c6db85bf8cd86c737dadbe7"><code>7266a7c</code></a> chore(release): 6.0.0</li> <li><a href="https://github.com/dessant/lock-threads/commit/1b10b746bb9aa359bb8eb0f1666515a389929aa8"><code>1b10b74</code></a> chore: update package</li> <li><a href="https://github.com/dessant/lock-threads/commit/7d53f570b1a4ca8908c0fbcc1e5b124ac3903134"><code>7d53f57</code></a> chore: update workflows</li> <li><a href="https://github.com/dessant/lock-threads/commit/e15e78d779715a438a45a106efe0531932c02a71"><code>e15e78d</code></a> chore: update docs</li> <li><a href="https://github.com/dessant/lock-threads/commit/6548363a2d763e3a4a3a0dc04ca4a10481d8e536"><code>6548363</code></a> fix: update dependencies</li> <li>See full diff in <a href="https://github.com/dessant/lock-threads/compare/v5.0.1...v6.0.0">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 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> |
||
|
|
115fcc517f |
chore(deps): bump volta-cli/action from 4 to 5 (#2459)
Bumps [volta-cli/action](https://github.com/volta-cli/action) from 4 to 5. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/volta-cli/action/releases">volta-cli/action's releases</a>.</em></p> <blockquote> <h2>Release 5.0.0</h2> <h4>💥 Breaking Change</h4> <ul> <li><a href="https://redirect.github.com/volta-cli/action/pull/168">#168</a> Update to Node24 (<a href="https://github.com/Yama-Tomo"><code>@Yama-Tomo</code></a>)</li> </ul> <h4>Committers: 1</h4> <ul> <li><a href="https://github.com/Yama-Tomo"><code>@Yama-Tomo</code></a></li> </ul> <h2>Release 4.2.1</h2> <h4>🏠 Internal</h4> <ul> <li><a href="https://redirect.github.com/volta-cli/action/pull/156">#156</a> Re-roll package-lock.json (<a href="https://github.com/rwjblue"><code>@rwjblue</code></a>)</li> <li><a href="https://redirect.github.com/volta-cli/action/pull/155">#155</a> Update various dependencies to latest (<a href="https://github.com/rwjblue"><code>@rwjblue</code></a>)</li> <li><a href="https://redirect.github.com/volta-cli/action/pull/153">#153</a> Update linting related dependencies to latest (<a href="https://github.com/rwjblue"><code>@rwjblue</code></a>)</li> <li><a href="https://redirect.github.com/volta-cli/action/pull/152">#152</a> Update in-range dependencies to latest (<a href="https://github.com/rwjblue"><code>@rwjblue</code></a>)</li> </ul> <h4>Committers: 1</h4> <ul> <li>Robert Jackson (<a href="https://github.com/rwjblue"><code>@rwjblue</code></a>)</li> </ul> <h2>Release 4.2.0</h2> <h4>🚀 Enhancement</h4> <ul> <li><a href="https://redirect.github.com/volta-cli/action/pull/151">#151</a> Add support for Volta 2.0.0 (<a href="https://github.com/charlespierce"><code>@charlespierce</code></a>)</li> </ul> <h4>Committers: 1</h4> <ul> <li>Charles Pierce (<a href="https://github.com/charlespierce"><code>@charlespierce</code></a>)</li> </ul> <h2>Release 4.1.1</h2> <h4>🏠 Internal</h4> <ul> <li><a href="https://redirect.github.com/volta-cli/action/pull/148">#148</a> Re-roll lockfile. (<a href="https://github.com/rwjblue"><code>@rwjblue</code></a>)</li> </ul> <h4>Committers: 1</h4> <ul> <li>Robert Jackson (<a href="https://github.com/rwjblue"><code>@rwjblue</code></a>)</li> </ul> <h2>Release 4.1.0</h2> <h4>🐛 Bug Fix</h4> <ul> <li><a href="https://redirect.github.com/volta-cli/action/pull/143">#143</a> Update node to v20 (fix Node 16 deprecation) (<a href="https://github.com/stijnvn"><code>@stijnvn</code></a>)</li> </ul> <h4>Committers: 1</h4> <ul> <li>Stijn Van Nieuwenhuyse (<a href="https://github.com/stijnvn"><code>@stijnvn</code></a>)</li> </ul> <h2>Release 4.0.1</h2> <h4>📝 Documentation</h4> <ul> <li><a href="https://redirect.github.com/volta-cli/action/pull/125">#125</a> docs: update examples with v4 release (<a href="https://github.com/Maxwell2022"><code>@Maxwell2022</code></a>)</li> <li><a href="https://redirect.github.com/volta-cli/action/pull/128">#128</a> Use v4 in readme examples (<a href="https://github.com/otahontas"><code>@otahontas</code></a>)</li> <li><a href="https://redirect.github.com/volta-cli/action/pull/116">#116</a> Update link to Volta releases page (<a href="https://github.com/alexlafroscia"><code>@alexlafroscia</code></a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/volta-cli/action/blob/master/CHANGELOG.md">volta-cli/action's changelog</a>.</em></p> <blockquote> <h2>v4.2.0 (2024-08-05)</h2> <h4>🚀 Enhancement</h4> <ul> <li><a href="https://redirect.github.com/volta-cli/action/pull/151">#151</a> Add support for Volta 2.0.0 (<a href="https://github.com/charlespierce"><code>@charlespierce</code></a>)</li> </ul> <h4>Committers: 1</h4> <ul> <li>Charles Pierce (<a href="https://github.com/charlespierce"><code>@charlespierce</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/volta-cli/action/commit/615a78f6c83e116339c53b94f3f82b4d6c0b7d18"><code>615a78f</code></a> Release 5.0.0</li> <li><a href="https://github.com/volta-cli/action/commit/762cc9b5b6256ba779f903f6b9a1020aa5af0c0d"><code>762cc9b</code></a> Merge pull request <a href="https://redirect.github.com/volta-cli/action/issues/168">#168</a> from Yama-Tomo/master</li> <li><a href="https://github.com/volta-cli/action/commit/7c133393c9d5951109a951699ce62a87ba5affd1"><code>7c13339</code></a> Bump release-it to a version supporting Node.js 24</li> <li><a href="https://github.com/volta-cli/action/commit/b28a379fab526f998f684a3e5d35826ea730c3ce"><code>b28a379</code></a> Update to Node24</li> <li><a href="https://github.com/volta-cli/action/commit/979638c778c5abd4794f0ed83a764baf9ef381aa"><code>979638c</code></a> Merge pull request <a href="https://redirect.github.com/volta-cli/action/issues/158">#158</a> from volta-cli/dependabot/npm_and_yarn/rollup-4.22.4</li> <li><a href="https://github.com/volta-cli/action/commit/efcca962fa9a572f967a62c1d4adfd7415fda97b"><code>efcca96</code></a> Bump rollup from 4.20.0 to 4.22.4</li> <li><a href="https://github.com/volta-cli/action/commit/87cd325959ba3bf78fa33907158c3635f7b4d4c8"><code>87cd325</code></a> Merge pull request <a href="https://redirect.github.com/volta-cli/action/issues/157">#157</a> from volta-cli/dependabot/npm_and_yarn/vite-5.4.6</li> <li><a href="https://github.com/volta-cli/action/commit/5bc2990c6a381d4ea64d6aa18461412a78bb9646"><code>5bc2990</code></a> Bump vite from 5.3.5 to 5.4.6</li> <li>See full diff in <a href="https://github.com/volta-cli/action/compare/v4...v5">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 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> |
||
|
|
afc2d440bd |
chore(deps): bump actions/upload-artifact from 4 to 7 (#2461)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/upload-artifact/releases">actions/upload-artifact's releases</a>.</em></p> <blockquote> <h2>v7.0.0</h2> <h2>v7 What's new</h2> <h3>Direct Uploads</h3> <p>Adds support for uploading single files directly (unzipped). Callers can set the new <code>archive</code> parameter to <code>false</code> to skip zipping the file during upload. Right now, we only support single files. The action will fail if the glob passed resolves to multiple files. The <code>name</code> parameter is also ignored with this setting. Instead, the name of the artifact will be the name of the uploaded file.</p> <h3>ESM</h3> <p>To support new versions of the <code>@actions/*</code> packages, we've upgraded the package to ESM.</p> <h2>What's Changed</h2> <ul> <li>Add proxy integration test by <a href="https://github.com/Link"><code>@Link</code></a>- in <a href="https://redirect.github.com/actions/upload-artifact/pull/754">actions/upload-artifact#754</a></li> <li>Upgrade the module to ESM and bump dependencies by <a href="https://github.com/danwkennedy"><code>@danwkennedy</code></a> in <a href="https://redirect.github.com/actions/upload-artifact/pull/762">actions/upload-artifact#762</a></li> <li>Support direct file uploads by <a href="https://github.com/danwkennedy"><code>@danwkennedy</code></a> in <a href="https://redirect.github.com/actions/upload-artifact/pull/764">actions/upload-artifact#764</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/Link"><code>@Link</code></a>- made their first contribution in <a href="https://redirect.github.com/actions/upload-artifact/pull/754">actions/upload-artifact#754</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/upload-artifact/compare/v6...v7.0.0">https://github.com/actions/upload-artifact/compare/v6...v7.0.0</a></p> <h2>v6.0.0</h2> <h2>v6 - What's new</h2> <blockquote> <p>[!IMPORTANT] actions/upload-artifact@v6 now runs on Node.js 24 (<code>runs.using: node24</code>) and requires a minimum Actions Runner version of 2.327.1. If you are using self-hosted runners, ensure they are updated before upgrading.</p> </blockquote> <h3>Node.js 24</h3> <p>This release updates the runtime to Node.js 24. v5 had preliminary support for Node.js 24, however this action was by default still running on Node.js 20. Now this action by default will run on Node.js 24.</p> <h2>What's Changed</h2> <ul> <li>Upload Artifact Node 24 support by <a href="https://github.com/salmanmkc"><code>@salmanmkc</code></a> in <a href="https://redirect.github.com/actions/upload-artifact/pull/719">actions/upload-artifact#719</a></li> <li>fix: update <code>@actions/artifact</code> for Node.js 24 punycode deprecation by <a href="https://github.com/salmanmkc"><code>@salmanmkc</code></a> in <a href="https://redirect.github.com/actions/upload-artifact/pull/744">actions/upload-artifact#744</a></li> <li>prepare release v6.0.0 for Node.js 24 support by <a href="https://github.com/salmanmkc"><code>@salmanmkc</code></a> in <a href="https://redirect.github.com/actions/upload-artifact/pull/745">actions/upload-artifact#745</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/upload-artifact/compare/v5.0.0...v6.0.0">https://github.com/actions/upload-artifact/compare/v5.0.0...v6.0.0</a></p> <h2>v5.0.0</h2> <h2>What's Changed</h2> <p><strong>BREAKING CHANGE:</strong> this update supports Node <code>v24.x</code>. This is not a breaking change per-se but we're treating it as such.</p> <ul> <li>Update README.md by <a href="https://github.com/GhadimiR"><code>@GhadimiR</code></a> in <a href="https://redirect.github.com/actions/upload-artifact/pull/681">actions/upload-artifact#681</a></li> <li>Update README.md by <a href="https://github.com/nebuk89"><code>@nebuk89</code></a> in <a href="https://redirect.github.com/actions/upload-artifact/pull/712">actions/upload-artifact#712</a></li> <li>Readme: spell out the first use of GHES by <a href="https://github.com/danwkennedy"><code>@danwkennedy</code></a> in <a href="https://redirect.github.com/actions/upload-artifact/pull/727">actions/upload-artifact#727</a></li> <li>Update GHES guidance to include reference to Node 20 version by <a href="https://github.com/patrikpolyak"><code>@patrikpolyak</code></a> in <a href="https://redirect.github.com/actions/upload-artifact/pull/725">actions/upload-artifact#725</a></li> <li>Bump <code>@actions/artifact</code> to <code>v4.0.0</code></li> <li>Prepare <code>v5.0.0</code> by <a href="https://github.com/danwkennedy"><code>@danwkennedy</code></a> in <a href="https://redirect.github.com/actions/upload-artifact/pull/734">actions/upload-artifact#734</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actions/upload-artifact/commit/043fb46d1a93c77aae656e7c1c64a875d1fc6a0a"><code>043fb46</code></a> Merge pull request <a href="https://redirect.github.com/actions/upload-artifact/issues/797">#797</a> from actions/yacaovsnc/update-dependency</li> <li><a href="https://github.com/actions/upload-artifact/commit/634250c1388765ea7ed0f053e636f1f399000b94"><code>634250c</code></a> Include changes in typespec/ts-http-runtime 0.3.5</li> <li><a href="https://github.com/actions/upload-artifact/commit/e454baaac2be505c9450e11b8f3215c6fc023ce8"><code>e454baa</code></a> Readme: bump all the example versions to v7 (<a href="https://redirect.github.com/actions/upload-artifact/issues/796">#796</a>)</li> <li><a href="https://github.com/actions/upload-artifact/commit/74fad66b98a6d799dc004d3353ccd0e6f6b2530e"><code>74fad66</code></a> Update the readme with direct upload details (<a href="https://redirect.github.com/actions/upload-artifact/issues/795">#795</a>)</li> <li><a href="https://github.com/actions/upload-artifact/commit/bbbca2ddaa5d8feaa63e36b76fdaad77386f024f"><code>bbbca2d</code></a> Support direct file uploads (<a href="https://redirect.github.com/actions/upload-artifact/issues/764">#764</a>)</li> <li><a href="https://github.com/actions/upload-artifact/commit/589182c5a4cec8920b8c1bce3e2fab1c97a02296"><code>589182c</code></a> Upgrade the module to ESM and bump dependencies (<a href="https://redirect.github.com/actions/upload-artifact/issues/762">#762</a>)</li> <li><a href="https://github.com/actions/upload-artifact/commit/47309c993abb98030a35d55ef7ff34b7fa1074b5"><code>47309c9</code></a> Merge pull request <a href="https://redirect.github.com/actions/upload-artifact/issues/754">#754</a> from actions/Link-/add-proxy-integration-tests</li> <li><a href="https://github.com/actions/upload-artifact/commit/02a8460834e70dab0ce194c64360c59dc1475ef0"><code>02a8460</code></a> Add proxy integration test</li> <li><a href="https://github.com/actions/upload-artifact/commit/b7c566a772e6b6bfb58ed0dc250532a479d7789f"><code>b7c566a</code></a> Merge pull request <a href="https://redirect.github.com/actions/upload-artifact/issues/745">#745</a> from actions/upload-artifact-v6-release</li> <li><a href="https://github.com/actions/upload-artifact/commit/e516bc8500aaf3d07d591fcd4ae6ab5f9c391d5b"><code>e516bc8</code></a> docs: correct description of Node.js 24 support in README</li> <li>Additional commits viewable in <a href="https://github.com/actions/upload-artifact/compare/v4...v7">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 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> |
||
|
|
97c63edf59 |
chore(deps): bump crazy-max/ghaction-github-labeler from 5.0.0 to 6.0.0 (#2462)
Bumps [crazy-max/ghaction-github-labeler](https://github.com/crazy-max/ghaction-github-labeler) from 5.0.0 to 6.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/crazy-max/ghaction-github-labeler/releases">crazy-max/ghaction-github-labeler's releases</a>.</em></p> <blockquote> <h2>v6.0.0</h2> <ul> <li>Node 24 as default runtime (requires <a href="https://github.com/actions/runner/releases/tag/v2.327.1">Actions Runner v2.327.1</a> or later) by <a href="https://github.com/crazy-max"><code>@crazy-max</code></a> in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/249">crazy-max/ghaction-github-labeler#249</a></li> <li>Switch to ESM and update config/test wiring by <a href="https://github.com/crazy-max"><code>@crazy-max</code></a> in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/246">crazy-max/ghaction-github-labeler#246</a></li> <li>Bump <code>@actions/core</code> from 1.11.1 to 3.0.0 in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/247">crazy-max/ghaction-github-labeler#247</a></li> <li>Bump <code>@actions/github</code> from 6.0.0 to 9.0.0 in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/248">crazy-max/ghaction-github-labeler#248</a></li> <li>Bump brace-expansion from 1.1.11 to 1.1.12 in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/236">crazy-max/ghaction-github-labeler#236</a></li> <li>Bump js-yaml from 4.1.0 to 4.1.1 in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/240">crazy-max/ghaction-github-labeler#240</a></li> <li>Bump lodash from 4.17.21 to 4.17.23 in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/242">crazy-max/ghaction-github-labeler#242</a></li> <li>Bump matcher from 3.0.0 to 6.0.0 in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/239">crazy-max/ghaction-github-labeler#239</a></li> <li>Bump minimatch from 3.1.2 to 3.1.5 in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/245">crazy-max/ghaction-github-labeler#245</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/crazy-max/ghaction-github-labeler/compare/v5.3.0...v6.0.0">https://github.com/crazy-max/ghaction-github-labeler/compare/v5.3.0...v6.0.0</a></p> <h2>v5.3.0</h2> <ul> <li>Bump <code>@octokit/plugin-paginate-rest</code> from 9.2.1 to 9.2.2 in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/229">crazy-max/ghaction-github-labeler#229</a></li> <li>Bump <code>@octokit/request</code> from 8.4.0 to 8.4.1 in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/232">crazy-max/ghaction-github-labeler#232</a></li> <li>Bump <code>@octokit/request-error</code> from 5.1.0 to 5.1.1 in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/228">crazy-max/ghaction-github-labeler#228</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/crazy-max/ghaction-github-labeler/compare/v5.2.0...v5.3.0">https://github.com/crazy-max/ghaction-github-labeler/compare/v5.2.0...v5.3.0</a></p> <h2>v5.2.0</h2> <ul> <li>Load yaml files using the failsafe schema option by <a href="https://github.com/pjpires"><code>@pjpires</code></a> in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/226">crazy-max/ghaction-github-labeler#226</a></li> <li>Bump cross-spawn from 7.0.3 to 7.0.6 in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/223">crazy-max/ghaction-github-labeler#223</a></li> <li>Bump undici from 5.28.4 to 5.28.5 in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/225">crazy-max/ghaction-github-labeler#225</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/crazy-max/ghaction-github-labeler/compare/v5.1.0...v5.2.0">https://github.com/crazy-max/ghaction-github-labeler/compare/v5.1.0...v5.2.0</a></p> <h2>v5.1.0</h2> <ul> <li>Sanitize the color field to allow using hex codes by <a href="https://github.com/pjpires"><code>@pjpires</code></a> in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/207">crazy-max/ghaction-github-labeler#207</a></li> <li>Fix intermediate values by <a href="https://github.com/crazy-max"><code>@crazy-max</code></a> in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/218">crazy-max/ghaction-github-labeler#218</a></li> <li>Bump micromatch from 4.0.5 to 4.0.8 in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/215">crazy-max/ghaction-github-labeler#215</a></li> <li>Bump <code>@actions/core</code> from 1.10.0 to 1.11.1 in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/217">crazy-max/ghaction-github-labeler#217</a></li> <li>Bump <code>@actions/github</code> from 5.1.1 to 6.0.0 in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/205">crazy-max/ghaction-github-labeler#205</a></li> <li>Bump <code>@babel/traverse</code> from 7.17.9 to 7.23.2 in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/206">crazy-max/ghaction-github-labeler#206</a></li> <li>Bump braces from 3.0.2 to 3.0.3 in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/212">crazy-max/ghaction-github-labeler#212</a></li> <li>Bump ip from 2.0.0 to 2.0.1 in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/208">crazy-max/ghaction-github-labeler#208</a></li> <li>Bump debug from 4.1.1 to 4.3.4 in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/204">crazy-max/ghaction-github-labeler#204</a></li> <li>Bump tar from 6.1.11 to 6.2.1 in <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/pull/210">crazy-max/ghaction-github-labeler#210</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/crazy-max/ghaction-github-labeler/compare/v5.0.0...v5.1.0">https://github.com/crazy-max/ghaction-github-labeler/compare/v5.0.0...v5.1.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/crazy-max/ghaction-github-labeler/commit/548a7c3603594ec17c819e1239f281a3b801ab4d"><code>548a7c3</code></a> Merge pull request <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/issues/249">#249</a> from crazy-max/node24</li> <li><a href="https://github.com/crazy-max/ghaction-github-labeler/commit/e7bf9bf3ce87c8c459fd765a710dc0ed38012aff"><code>e7bf9bf</code></a> node 24 as default runtime</li> <li><a href="https://github.com/crazy-max/ghaction-github-labeler/commit/add2b84e3e5d140ca15989552396a4df64155b19"><code>add2b84</code></a> Merge pull request <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/issues/240">#240</a> from crazy-max/dependabot/npm_and_yarn/js-yaml-4.1.1</li> <li><a href="https://github.com/crazy-max/ghaction-github-labeler/commit/a33f4f858ed016420e462dcbe7162df20799c01a"><code>a33f4f8</code></a> chore: update generated content</li> <li><a href="https://github.com/crazy-max/ghaction-github-labeler/commit/f6e2b6d40ad21c35d6c1308d0b7ef70604270764"><code>f6e2b6d</code></a> chore(deps): bump js-yaml from 4.1.0 to 4.1.1</li> <li><a href="https://github.com/crazy-max/ghaction-github-labeler/commit/3f7ab4adf921caf43ec361e0579df08f3e8a7d02"><code>3f7ab4a</code></a> Merge pull request <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/issues/239">#239</a> from crazy-max/dependabot/npm_and_yarn/matcher-6.0.0</li> <li><a href="https://github.com/crazy-max/ghaction-github-labeler/commit/5893b14cccaf1a3a8103e9b3f008a90b93dee665"><code>5893b14</code></a> chore: update generated content</li> <li><a href="https://github.com/crazy-max/ghaction-github-labeler/commit/3849c6b431a2464c40091fdd17aa20d4b69814db"><code>3849c6b</code></a> fix matcher import</li> <li><a href="https://github.com/crazy-max/ghaction-github-labeler/commit/0a71a406d92a48fb0d66e898a9bd566e737427a4"><code>0a71a40</code></a> chore(deps): bump matcher from 3.0.0 to 6.0.0</li> <li><a href="https://github.com/crazy-max/ghaction-github-labeler/commit/082bf8ae2fdc4fd3782716d0d0aad47da358c328"><code>082bf8a</code></a> Merge pull request <a href="https://redirect.github.com/crazy-max/ghaction-github-labeler/issues/248">#248</a> from crazy-max/dependabot/npm_and_yarn/actions/github...</li> <li>Additional commits viewable in <a href="https://github.com/crazy-max/ghaction-github-labeler/compare/v5.0.0...v6.0.0">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 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> |
||
|
|
056a038e81 | fix: Improve folder icon rendering (#2467) |