mirror of
https://github.com/coder/coder.git
synced 2026-09-24 06:47:27 +08:00
fcd64ea7f52480eb05ebd262c7d383cfafc5c3ff
11724
Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
fcd64ea7f5 |
chore: upgrade to aibridge@v0.2.1 (#21082)
Changes from https://github.com/coder/aibridge/pull/70/ Signed-off-by: Danny Kopping <danny@coder.com> |
||
|
|
9d7509aeb3 |
docs: add link to new ROS2 community template (#20902)
Co-authored-by: Mathias Fredriksson <mafredri@gmail.com> |
||
|
|
d5bb1361e2 |
docs: delete references to adding database replicas (#21077)
Removes references to adding database replicas from the scaling docs, as Coder only allows a single connection URL. These passages where added in error. |
||
|
|
e17b47f9ff |
docs: restructure docker installation with tabs (#19567)
Co-authored-by: blink-so[bot] <211532188+blink-so[bot]@users.noreply.github.com> Co-authored-by: M Atif Ali <U04T3LN8ASU+atif@users.noreply.github.com> Co-authored-by: Atif Ali <atif@coder.com> |
||
|
|
40df21ed62 |
fix: fixes use of possibly nil RemoteAddr() and LocalAddr() return values (#21076)
fixes: https://github.com/coder/internal/issues/1143 Both gVisor and the Go standard library implementations of `net.Conn` can under certain circumstances return `nil` for `RemoteAddr()` and `LocalAddr()` calls. If we call their methods, we segfault. This PR fixes these calls and adds ruleguard rules. Note that `slog.F("remote_addr", conn.RemoteAddr())` is fine because slog detects the `nil` before attempting to stringify the type. |
||
|
|
65ef6df1df |
docs: add documentation for preset invalidation (#21018)
Fixes #17917 |
||
|
|
f1b2715555 |
docs: add data retention and export documentation for AI Bridge (#21055)
Previously AI Bridge retention was only documented in the auto-generated CLI reference, making it difficult for administrators to discover and understand how to configure data retention for compliance requirements. This adds retention configuration to the AI Bridge setup guide with examples, documents the REST API and CLI export options in the monitoring guide, and cross-references AI Bridge from the central data retention page for discoverability. Closes #21038 |
||
|
|
ad93262d07 |
fix(coderd/database/dbpurge): allow disabling AI Bridge retention with 0 (#21062)
Previously setting AI Bridge retention to 0 would cause records to be deleted immediately since we didn't check for the zero value before calculating the deletion threshold. This adds a check for aibridgeRetention > 0 to skip deletion when retention is disabled, matching the pattern used for other retention settings (connection logs, audit logs, etc.). Also fixes the return type of DeleteOldAIBridgeRecords from int32 to int64 since COUNT(*) returns bigint in PostgreSQL. Refs #21055 |
||
|
|
c750695d83 |
feat(cli/cliui): output empty string for empty table (#20967)
This changes makes it so that we output the empty string for Format when there is no data. It turns out there are many places in the code where we have such handling, but in a way that would break the JSON formatter (since we'd output nothing on stdout or text rather than `[]`/`null`). |
||
|
|
3c05cb6255 |
feat: add serviceAccount.labels for custom service account labels on helm chart (#21048)
closes #20541 adds `coder.serviceAccount.labels` var to support custom labels being added to the SA. Current chart: ``` ➜ helm-service-account-labels git:(rowansmithau/feat/helm_service_account_labels) helm template coder coder-v2/coder --set coder.image.tag=latest --set coder.serviceAccount.labels.mux=isnice | egrep -A13 '^kind: ServiceAccount$' kind: ServiceAccount metadata: annotations: {} labels: app.kubernetes.io/instance: coder app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: coder app.kubernetes.io/part-of: coder app.kubernetes.io/version: 2.28.3 helm.sh/chart: coder-2.28.3 name: coder namespace: default --- # Source: coder/templates/rbac.yaml ``` With this PR: ``` ➜ helm-service-account-labels git:(rowansmithau/feat/helm_service_account_labels) helm template coder helm/coder --set coder.image.tag=latest --set coder.serviceAccount.labels.mux=isnice | egrep -A13 '^kind: ServiceAccount$' kind: ServiceAccount metadata: annotations: {} labels: app.kubernetes.io/instance: coder app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: coder app.kubernetes.io/part-of: coder app.kubernetes.io/version: 0.1.0 helm.sh/chart: coder-0.1.0 mux: isnice name: coder namespace: default --- ``` A test with `disableCreate=true` still correctly shows no SA created: ``` ➜ helm-service-account-labels git:(rowansmithau/feat/helm_service_account_labels) helm template coder helm/coder --set coder.image.tag=latest --set coder.serviceAccount.labels.mux=isnice --set coder.serviceAccount.disableCreate=true | egrep '^kind: ServiceAccount$' ``` |
||
|
|
18ef78604f |
feat: add google antigravity ide icon to theme (#21068)
adds google antigravity ide icon to theme:  There is no need for any transformation with this icon, as it should look good in dark and light mode. |
||
|
|
db5ccda1ec | chore(docs): update Docs Release Cal for 2.29 (#21069) | ||
|
|
0873d9af6d |
docs: regenerate feature-stages experiments table (#21024)
Co-authored-by: blink-so[bot] <211532188+blink-so[bot]@users.noreply.github.com> |
||
|
|
c3c059fbc4 | chore: fix provisioner scripts shebang for nix users (#21066) | ||
|
|
ff46917e62 |
feat: add retention config for workspace_agent_logs (#21039)
Replace hardcoded 7-day retention for workspace agent logs with configurable retention from deployment settings. Defaults to 7d to preserve existing behavior. Depends on #21038 Updates #20743 |
||
|
|
d9888ced11 |
docs: add data retention documentation (#21038)
Document configurable retention policies for Audit Logs, Connection Logs, and API keys. Add new data-retention.md page and update existing docs to reference it. Depends on #21021 Updates #20743 |
||
|
|
9ec90cf2e7 |
feat(coderd/database/dbpurge): make API keys retention configurable (#21037)
Replace hardcoded 7-day retention for expired API keys with configurable retention from deployment settings. Skips deletion entirely when effective retention is 0. Depends on #21021 Updates #20743 |
||
|
|
929db243cb |
test(agent/agentcontainers): fix data race and flake in DuringUpWithContainerID test (#21059)
Fixes coder/internal#1169 |
||
|
|
c85d79bcdb |
feat(coderd/database/dbpurge): add retention for audit logs (#21025)
Add configurable retention policy for audit logs. The DeleteOldAuditLogs query excludes deprecated connection events (connect, disconnect, open, close) which are handled separately by DeleteOldAuditLogConnectionEvents. Disabled (0) by default. Depends on #21021 Updates #20743 |
||
|
|
fa7bbe2f55 | docs: fix typo in CLAUDE.md (#21058) | ||
|
|
4e2af837b7 |
docs(CLAUDE): fix gitignored file loading (#21056)
Follow-up for #21043 |
||
|
|
9ebcca5b0d |
feat(coderd/database/dbpurge): add retention for connection logs (#21022)
Add `DeleteOldConnectionLogs` query and integrate it into the `dbpurge` routine. Retention is controlled by `--retention-connection-logs` flag. Disabled (0) by default. Depends on #21021 Updates #20743 |
||
|
|
56e7858570 |
feat(coderd): add retention policy configuration (#21021)
Add `RetentionConfig` with server flags for configuring data retention: - `--audit-logs-retention`: retention for audit log entries - `--connection-logs-retention`: retention for connection logs - `--api-keys-retention`: retention for expired API keys (default 7d) Updates #20743 |
||
|
|
74d0c39cb3 |
fix(agent/agentcontainer): allow lifecycle script error on devcontainer up (#21020)
When devcontainer up fails due to a lifecycle script error like postCreateCommand, the CLI still returns a container ID. Previously this was discarded and the devcontainer marked as failed. Now we continue with agent injection if a container ID is available, allowing users to debug the issue in the running container. Fixes coder/internal#1137 |
||
|
|
bf40d678ec |
fix(cli): close prebuild runner prometheus server last (#21053)
## Description Fixes the prebuilds scaletest command where the prometheus server was being shut down before waiting for metrics to be scraped. The issue was the defer order - since defers execute in LIFO (last-in, first-out) order: **Before (broken):** 1. Register tracing defer (includes wait for prometheus scrape) 2. Register prometheus server defer Execution order: prometheus closes first, then wait happens (server already gone!) **After (fixed):** 1. Register prometheus server defer 2. Register tracing defer (includes wait for prometheus scrape) Execution order: wait happens first (server still up), then prometheus closes. This matches the pattern used in other scaletest commands. ## Impact The `coderd_scaletest_prebuild_deletion_jobs_completed` metric (and potentially others) was always showing 0 because the server shut down before Prometheus could scrape the final values. _This PR was generated by [`mux`](https://github.com/coder/mux) and reviewed by a human._ |
||
|
|
a47b3a4cb5 |
docs: add support for AGENTS.local.md overrides (#21043)
Adds support for local, gitignored `AGENTS.local.md` for environment-specific overrides. |
||
|
|
645da33767 |
test: fix TestDescCacheTimestampUpdate flake (#20975)
## Problem `TestDescCacheTimestampUpdate` was flaky on Windows CI because `time.Now()` has ~15.6ms resolution, causing consecutive calls to return identical timestamps. ## Solution Inject `quartz.Clock` into `MetricsAggregator` using an options pattern, making the test deterministic by using a mock clock with explicit time advancement. ### Changes - Add `clock quartz.Clock` field to `MetricsAggregator` struct - Add `WithClock()` option for dependency injection - Replace all `time.Now()` calls with `ma.clock.Now()` - Update test to use mock clock with `mClock.Advance(time.Second)` --- This PR was fully generated by [`mux`](https://github.com/coder/mux) using Claude Opus 4.5, and reviewed by me. Closes https://github.com/coder/internal/issues/1146 |
||
|
|
ab4366f5c6 |
feat!: implement AI Bridge heading to /deployment/observability (#20791)
> [!CAUTION] > In whichever release this lands, we've removed the ability to provide keys via a YAML file (specifically on `openai_key`, `anthropic_key`, `bedrock_access_key` and finally `bedrock_access_key_secret`). This will need to be described in the release notes as to not break peoples AI Bridge integrations upgrading from older versions. This pull-request ensures that we can see the overview of the settings of the `AI Bridge` feature within the `/deployment/observability` route. This set of options only render when the `aibridge` feature flag is enabled. ### Preview  |
||
|
|
afbe9ea154 |
docs: add GitHub to Coder Task Workflow Guide (#20928)
Co-authored-by: Danielle Maywood <danielle@themaywoods.com> |
||
|
|
cf6bb40cf8 |
chore: bump @storybook/react-vite from 9.1.2 to 9.1.16 in /site (#21036)
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) from 9.1.2 to 9.1.16. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@storybook/react-vite</code>'s releases</a>.</em></p> <blockquote> <h2>v9.1.16</h2> <h2>9.1.16</h2> <ul> <li>CLI: Fix Nextjs project creation in empty directories - <a href="https://redirect.github.com/storybookjs/storybook/pull/32828">#32828</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a>!</li> <li>Core: Add `experimental_devServer` preset - <a href="https://redirect.github.com/storybookjs/storybook/pull/32862">#32862</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a>!</li> <li>Telemetry: Fix preview-first-load event - <a href="https://redirect.github.com/storybookjs/storybook/pull/32859">#32859</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>v9.1.15</h2> <h2>9.1.15</h2> <ul> <li>Core: Add `preview-first-load` telemetry - <a href="https://redirect.github.com/storybookjs/storybook/pull/32770">#32770</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> <li>Dependencies: Update `vite-plugin-storybook-nextjs` - <a href="https://redirect.github.com/storybookjs/storybook/pull/32821">#32821</a>, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> </ul> <h2>v9.1.14</h2> <h2>9.1.14</h2> <ul> <li>NextJS: Add NextJS 16 support - <a href="https://redirect.github.com/storybookjs/storybook/pull/32791">#32791</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a> and <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> <li>Addon-Vitest: Support Vitest 4 - <a href="https://redirect.github.com/storybookjs/storybook/pull/32819">#32819</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a> and <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> <li>CSF: Fix `play-fn` tag for methods - <a href="https://redirect.github.com/storybookjs/storybook/pull/32695">#32695</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>v9.1.12</h2> <h2>9.1.12</h2> <ul> <li>Maintenance: Hotfix for missing nextjs dts files, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> </ul> <h2>v9.1.11</h2> <h2>9.1.11</h2> <ul> <li>Automigration: Improve the viewport/backgrounds automigration - <a href="https://redirect.github.com/storybookjs/storybook/pull/32619">#32619</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Mocking: Fix `sb.mock` usage in Storybook's deployed in subpaths - <a href="https://redirect.github.com/storybookjs/storybook/pull/32678">#32678</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>NextJS-Vite: Automatically fix bad PostCSS configuration - <a href="https://redirect.github.com/storybookjs/storybook/pull/32691">#32691</a>, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> <li>React Native Web: Fix REACT_NATIVE_AND_RNW should detect vite builder - <a href="https://redirect.github.com/storybookjs/storybook/pull/32718">#32718</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> <li>Telemetry: Add metadata for react routers - <a href="https://redirect.github.com/storybookjs/storybook/pull/32615">#32615</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>v9.1.10</h2> <h2>9.1.10</h2> <ul> <li>Automigrations: Add automigration for viewport and backgrounds - <a href="https://redirect.github.com/storybookjs/storybook/pull/31614">#31614</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Telemetry: Log userAgent in onboarding - <a href="https://redirect.github.com/storybookjs/storybook/pull/32566">#32566</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>v9.1.9</h2> <h2>9.1.9</h2> <ul> <li>Angular: Enable experimental zoneless detection on Angular v21 - <a href="https://redirect.github.com/storybookjs/storybook/pull/32580">#32580</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a>!</li> <li>Svelte: Ignore inherited <code>HTMLAttributes</code> docgen when using utility types - <a href="https://redirect.github.com/storybookjs/storybook/pull/32173">#32173</a>, thanks <a href="https://github.com/steciuk"><code>@steciuk</code></a>!</li> </ul> <h2>v9.1.8</h2> <h2>9.1.8</h2> <ul> <li>PreactVite: Add <code>node</code> entry point - <a href="https://redirect.github.com/storybookjs/storybook/pull/32534">#32534</a>, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</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/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@storybook/react-vite</code>'s changelog</a>.</em></p> <blockquote> <h2>9.1.16</h2> <ul> <li>CLI: Fix Nextjs project creation in empty directories - <a href="https://redirect.github.com/storybookjs/storybook/pull/32828">#32828</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a>!</li> <li>Core: Add <code>experimental_devServer</code> preset - <a href="https://redirect.github.com/storybookjs/storybook/pull/32862">#32862</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a>!</li> <li>Telemetry: Fix preview-first-load event - <a href="https://redirect.github.com/storybookjs/storybook/pull/32859">#32859</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>9.1.15</h2> <ul> <li>Core: Add <code>preview-first-load</code> telemetry - <a href="https://redirect.github.com/storybookjs/storybook/pull/32770">#32770</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> <li>Dependencies: Update <code>vite-plugin-storybook-nextjs</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/32821">#32821</a>, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> </ul> <h2>9.1.14</h2> <ul> <li>NextJS: Add NextJS 16 support - <a href="https://redirect.github.com/storybookjs/storybook/pull/32791">#32791</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a> and <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> <li>Addon-Vitest: Support Vitest 4 - <a href="https://redirect.github.com/storybookjs/storybook/pull/32819">#32819</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a> and <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> <li>CSF: Fix <code>play-fn</code> tag for methods - <a href="https://redirect.github.com/storybookjs/storybook/pull/32695">#32695</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>9.1.13</h2> <ul> <li>Nextjs: Fix config access for Vite - <a href="https://redirect.github.com/storybookjs/storybook/pull/32759">#32759</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> </ul> <h2>9.1.12</h2> <ul> <li>Maintenance: Hotfix for missing nextjs dts files, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> </ul> <h2>9.1.11</h2> <ul> <li>Automigration: Improve the viewport/backgrounds automigration - <a href="https://redirect.github.com/storybookjs/storybook/pull/32619">#32619</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Mocking: Fix <code>sb.mock</code> usage in Storybook's deployed in subpaths - <a href="https://redirect.github.com/storybookjs/storybook/pull/32678">#32678</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>NextJS-Vite: Automatically fix bad PostCSS configuration - <a href="https://redirect.github.com/storybookjs/storybook/pull/32691">#32691</a>, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> <li>React Native Web: Fix REACT_NATIVE_AND_RNW should detect vite builder - <a href="https://redirect.github.com/storybookjs/storybook/pull/32718">#32718</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> <li>Telemetry: Add metadata for react routers - <a href="https://redirect.github.com/storybookjs/storybook/pull/32615">#32615</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>9.1.10</h2> <ul> <li>Automigrations: Add automigration for viewport and backgrounds - <a href="https://redirect.github.com/storybookjs/storybook/pull/31614">#31614</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Telemetry: Log userAgent in onboarding - <a href="https://redirect.github.com/storybookjs/storybook/pull/32566">#32566</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>9.1.9</h2> <ul> <li>Angular: Enable experimental zoneless detection on Angular v21 - <a href="https://redirect.github.com/storybookjs/storybook/pull/32580">#32580</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a>!</li> <li>Svelte: Ignore inherited <code>HTMLAttributes</code> docgen when using utility types - <a href="https://redirect.github.com/storybookjs/storybook/pull/32173">#32173</a>, thanks <a href="https://github.com/steciuk"><code>@steciuk</code></a>!</li> </ul> <h2>9.1.8</h2> <ul> <li>PreactVite: Add <code>node</code> entry point - <a href="https://redirect.github.com/storybookjs/storybook/pull/32534">#32534</a>, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> </ul> <h2>9.1.7</h2> <ul> <li>Dependencies: Update <code>vite-plugin-storybook-nextjs</code> to 2.0.7 - <a href="https://redirect.github.com/storybookjs/storybook/pull/32331">#32331</a>, thanks <a href="https://github.com/k35o"><code>@k35o</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/a54a04cef3ea631f2dacf3631f7f78e4453cd096"><code>a54a04c</code></a> Bump version from "9.1.15" to "9.1.16" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/d0d17d96288be91ae0969803cbfcd7849b9c98f8"><code>d0d17d9</code></a> Bump version from "9.1.14" to "9.1.15" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/5afb39f85e981d380fba4658a82fac24fa5ce51b"><code>5afb39f</code></a> Bump version from "9.1.13" to "9.1.14" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/c2483f0e584fea0a7b4c306489b506f6165dc73b"><code>c2483f0</code></a> Bump version from "9.1.12" to "9.1.13" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/efe8a7ce5bf67cdef96bb4f34a787ef0d6152745"><code>efe8a7c</code></a> Bump version from "9.1.11" to "9.1.12" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/5b2e0edf9f1b56a4708721578be83d439ebc59f5"><code>5b2e0ed</code></a> Bump version from "9.1.10" to "9.1.11" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/642f0cf47ed9463cecd67fdbad978113edc88196"><code>642f0cf</code></a> Bump version from "9.1.9" to "9.1.10" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/01867d0d587fe23765bbd43397d861a6e08223f8"><code>01867d0</code></a> Bump version from "9.1.8" to "9.1.9" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/28833d41b8d0e33bdc11244907fa8d14c8ddd1bf"><code>28833d4</code></a> Bump version from "9.1.7" to "9.1.8" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/006b304feb4cb0d2fd1408505ebeb5aababb0aad"><code>006b304</code></a> Bump version from "9.1.6" to "9.1.7" [skip ci]</li> <li>Additional commits viewable in <a href="https://github.com/storybookjs/storybook/commits/v9.1.16/code/frameworks/react-vite">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for <code>@storybook/react-vite</code> since your current version.</p> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
60ac382ae6 |
chore: bump @storybook/addon-links from 9.1.2 to 9.1.16 in /site (#21035)
Bumps [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links) from 9.1.2 to 9.1.16. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@storybook/addon-links</code>'s releases</a>.</em></p> <blockquote> <h2>v9.1.16</h2> <h2>9.1.16</h2> <ul> <li>CLI: Fix Nextjs project creation in empty directories - <a href="https://redirect.github.com/storybookjs/storybook/pull/32828">#32828</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a>!</li> <li>Core: Add `experimental_devServer` preset - <a href="https://redirect.github.com/storybookjs/storybook/pull/32862">#32862</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a>!</li> <li>Telemetry: Fix preview-first-load event - <a href="https://redirect.github.com/storybookjs/storybook/pull/32859">#32859</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>v9.1.15</h2> <h2>9.1.15</h2> <ul> <li>Core: Add `preview-first-load` telemetry - <a href="https://redirect.github.com/storybookjs/storybook/pull/32770">#32770</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> <li>Dependencies: Update `vite-plugin-storybook-nextjs` - <a href="https://redirect.github.com/storybookjs/storybook/pull/32821">#32821</a>, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> </ul> <h2>v9.1.14</h2> <h2>9.1.14</h2> <ul> <li>NextJS: Add NextJS 16 support - <a href="https://redirect.github.com/storybookjs/storybook/pull/32791">#32791</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a> and <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> <li>Addon-Vitest: Support Vitest 4 - <a href="https://redirect.github.com/storybookjs/storybook/pull/32819">#32819</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a> and <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> <li>CSF: Fix `play-fn` tag for methods - <a href="https://redirect.github.com/storybookjs/storybook/pull/32695">#32695</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>v9.1.12</h2> <h2>9.1.12</h2> <ul> <li>Maintenance: Hotfix for missing nextjs dts files, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> </ul> <h2>v9.1.11</h2> <h2>9.1.11</h2> <ul> <li>Automigration: Improve the viewport/backgrounds automigration - <a href="https://redirect.github.com/storybookjs/storybook/pull/32619">#32619</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Mocking: Fix `sb.mock` usage in Storybook's deployed in subpaths - <a href="https://redirect.github.com/storybookjs/storybook/pull/32678">#32678</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>NextJS-Vite: Automatically fix bad PostCSS configuration - <a href="https://redirect.github.com/storybookjs/storybook/pull/32691">#32691</a>, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> <li>React Native Web: Fix REACT_NATIVE_AND_RNW should detect vite builder - <a href="https://redirect.github.com/storybookjs/storybook/pull/32718">#32718</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> <li>Telemetry: Add metadata for react routers - <a href="https://redirect.github.com/storybookjs/storybook/pull/32615">#32615</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>v9.1.10</h2> <h2>9.1.10</h2> <ul> <li>Automigrations: Add automigration for viewport and backgrounds - <a href="https://redirect.github.com/storybookjs/storybook/pull/31614">#31614</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Telemetry: Log userAgent in onboarding - <a href="https://redirect.github.com/storybookjs/storybook/pull/32566">#32566</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>v9.1.9</h2> <h2>9.1.9</h2> <ul> <li>Angular: Enable experimental zoneless detection on Angular v21 - <a href="https://redirect.github.com/storybookjs/storybook/pull/32580">#32580</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a>!</li> <li>Svelte: Ignore inherited <code>HTMLAttributes</code> docgen when using utility types - <a href="https://redirect.github.com/storybookjs/storybook/pull/32173">#32173</a>, thanks <a href="https://github.com/steciuk"><code>@steciuk</code></a>!</li> </ul> <h2>v9.1.8</h2> <h2>9.1.8</h2> <ul> <li>PreactVite: Add <code>node</code> entry point - <a href="https://redirect.github.com/storybookjs/storybook/pull/32534">#32534</a>, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</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/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@storybook/addon-links</code>'s changelog</a>.</em></p> <blockquote> <h2>9.1.16</h2> <ul> <li>CLI: Fix Nextjs project creation in empty directories - <a href="https://redirect.github.com/storybookjs/storybook/pull/32828">#32828</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a>!</li> <li>Core: Add <code>experimental_devServer</code> preset - <a href="https://redirect.github.com/storybookjs/storybook/pull/32862">#32862</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a>!</li> <li>Telemetry: Fix preview-first-load event - <a href="https://redirect.github.com/storybookjs/storybook/pull/32859">#32859</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>9.1.15</h2> <ul> <li>Core: Add <code>preview-first-load</code> telemetry - <a href="https://redirect.github.com/storybookjs/storybook/pull/32770">#32770</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> <li>Dependencies: Update <code>vite-plugin-storybook-nextjs</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/32821">#32821</a>, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> </ul> <h2>9.1.14</h2> <ul> <li>NextJS: Add NextJS 16 support - <a href="https://redirect.github.com/storybookjs/storybook/pull/32791">#32791</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a> and <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> <li>Addon-Vitest: Support Vitest 4 - <a href="https://redirect.github.com/storybookjs/storybook/pull/32819">#32819</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a> and <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> <li>CSF: Fix <code>play-fn</code> tag for methods - <a href="https://redirect.github.com/storybookjs/storybook/pull/32695">#32695</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>9.1.13</h2> <ul> <li>Nextjs: Fix config access for Vite - <a href="https://redirect.github.com/storybookjs/storybook/pull/32759">#32759</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> </ul> <h2>9.1.12</h2> <ul> <li>Maintenance: Hotfix for missing nextjs dts files, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> </ul> <h2>9.1.11</h2> <ul> <li>Automigration: Improve the viewport/backgrounds automigration - <a href="https://redirect.github.com/storybookjs/storybook/pull/32619">#32619</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Mocking: Fix <code>sb.mock</code> usage in Storybook's deployed in subpaths - <a href="https://redirect.github.com/storybookjs/storybook/pull/32678">#32678</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>NextJS-Vite: Automatically fix bad PostCSS configuration - <a href="https://redirect.github.com/storybookjs/storybook/pull/32691">#32691</a>, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> <li>React Native Web: Fix REACT_NATIVE_AND_RNW should detect vite builder - <a href="https://redirect.github.com/storybookjs/storybook/pull/32718">#32718</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> <li>Telemetry: Add metadata for react routers - <a href="https://redirect.github.com/storybookjs/storybook/pull/32615">#32615</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>9.1.10</h2> <ul> <li>Automigrations: Add automigration for viewport and backgrounds - <a href="https://redirect.github.com/storybookjs/storybook/pull/31614">#31614</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Telemetry: Log userAgent in onboarding - <a href="https://redirect.github.com/storybookjs/storybook/pull/32566">#32566</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>9.1.9</h2> <ul> <li>Angular: Enable experimental zoneless detection on Angular v21 - <a href="https://redirect.github.com/storybookjs/storybook/pull/32580">#32580</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a>!</li> <li>Svelte: Ignore inherited <code>HTMLAttributes</code> docgen when using utility types - <a href="https://redirect.github.com/storybookjs/storybook/pull/32173">#32173</a>, thanks <a href="https://github.com/steciuk"><code>@steciuk</code></a>!</li> </ul> <h2>9.1.8</h2> <ul> <li>PreactVite: Add <code>node</code> entry point - <a href="https://redirect.github.com/storybookjs/storybook/pull/32534">#32534</a>, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> </ul> <h2>9.1.7</h2> <ul> <li>Dependencies: Update <code>vite-plugin-storybook-nextjs</code> to 2.0.7 - <a href="https://redirect.github.com/storybookjs/storybook/pull/32331">#32331</a>, thanks <a href="https://github.com/k35o"><code>@k35o</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/a54a04cef3ea631f2dacf3631f7f78e4453cd096"><code>a54a04c</code></a> Bump version from "9.1.15" to "9.1.16" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/d0d17d96288be91ae0969803cbfcd7849b9c98f8"><code>d0d17d9</code></a> Bump version from "9.1.14" to "9.1.15" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/5afb39f85e981d380fba4658a82fac24fa5ce51b"><code>5afb39f</code></a> Bump version from "9.1.13" to "9.1.14" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/c2483f0e584fea0a7b4c306489b506f6165dc73b"><code>c2483f0</code></a> Bump version from "9.1.12" to "9.1.13" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/efe8a7ce5bf67cdef96bb4f34a787ef0d6152745"><code>efe8a7c</code></a> Bump version from "9.1.11" to "9.1.12" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/5b2e0edf9f1b56a4708721578be83d439ebc59f5"><code>5b2e0ed</code></a> Bump version from "9.1.10" to "9.1.11" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/642f0cf47ed9463cecd67fdbad978113edc88196"><code>642f0cf</code></a> Bump version from "9.1.9" to "9.1.10" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/01867d0d587fe23765bbd43397d861a6e08223f8"><code>01867d0</code></a> Bump version from "9.1.8" to "9.1.9" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/28833d41b8d0e33bdc11244907fa8d14c8ddd1bf"><code>28833d4</code></a> Bump version from "9.1.7" to "9.1.8" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/006b304feb4cb0d2fd1408505ebeb5aababb0aad"><code>006b304</code></a> Bump version from "9.1.6" to "9.1.7" [skip ci]</li> <li>Additional commits viewable in <a href="https://github.com/storybookjs/storybook/commits/v9.1.16/code/addons/links">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for <code>@storybook/addon-links</code> since your current version.</p> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
dcb4251849 |
chore: bump dayjs from 1.11.18 to 1.11.19 in /site (#21033)
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [dayjs](https://github.com/iamkun/dayjs) from 1.11.18 to 1.11.19. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/iamkun/dayjs/releases">dayjs's releases</a>.</em></p> <blockquote> <h2>v1.11.19</h2> <h2><a href="https://github.com/iamkun/dayjs/compare/v1.11.18...v1.11.19">1.11.19</a> (2025-10-31)</h2> <h3>Bug Fixes</h3> <ul> <li>added usage warnings for diff + updated unit tests (<a href="https://redirect.github.com/iamkun/dayjs/issues/2948">#2948</a>) (<a href="https://github.com/iamkun/dayjs/commit/269a7a9cf3649b7a4b328e771173701764a8480d">269a7a9</a>)</li> <li>dont instantiate regexes within ar locale functions to avoid performance overhead (<a href="https://redirect.github.com/iamkun/dayjs/issues/2898">#2898</a>) (<a href="https://github.com/iamkun/dayjs/commit/af5e9f0e7649cbd1ecf707daab8303f2733f2563">af5e9f0</a>)</li> <li>replace italian locale "un' ora fa" with "un'ora fa", add tests for it (<a href="https://redirect.github.com/iamkun/dayjs/issues/2930">#2930</a>) (<a href="https://github.com/iamkun/dayjs/commit/9e9f76cf117fa834260b30193434bc4481b4b6be">9e9f76c</a>)</li> <li>Updated Belarusian locale with relative time (<a href="https://redirect.github.com/iamkun/dayjs/issues/2656">#2656</a>) (<a href="https://github.com/iamkun/dayjs/commit/1d8746c23bd667bde80ee627a915301ebd69e1a2">1d8746c</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/iamkun/dayjs/blob/dev/CHANGELOG.md">dayjs's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/iamkun/dayjs/compare/v1.11.18...v1.11.19">1.11.19</a> (2025-10-31)</h2> <h3>Bug Fixes</h3> <ul> <li>added usage warnings for diff + updated unit tests (<a href="https://redirect.github.com/iamkun/dayjs/issues/2948">#2948</a>) (<a href="https://github.com/iamkun/dayjs/commit/269a7a9cf3649b7a4b328e771173701764a8480d">269a7a9</a>)</li> <li>dont instantiate regexes within ar locale functions to avoid performance overhead (<a href="https://redirect.github.com/iamkun/dayjs/issues/2898">#2898</a>) (<a href="https://github.com/iamkun/dayjs/commit/af5e9f0e7649cbd1ecf707daab8303f2733f2563">af5e9f0</a>)</li> <li>replace italian locale "un' ora fa" with "un'ora fa", add tests for it (<a href="https://redirect.github.com/iamkun/dayjs/issues/2930">#2930</a>) (<a href="https://github.com/iamkun/dayjs/commit/9e9f76cf117fa834260b30193434bc4481b4b6be">9e9f76c</a>)</li> <li>Updated Belarusian locale with relative time (<a href="https://redirect.github.com/iamkun/dayjs/issues/2656">#2656</a>) (<a href="https://github.com/iamkun/dayjs/commit/1d8746c23bd667bde80ee627a915301ebd69e1a2">1d8746c</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/iamkun/dayjs/commit/02b7a5c6c9500ad1a0d95a894ccc1e9f0942d222"><code>02b7a5c</code></a> chore(release): 1.11.19 [skip ci]</li> <li><a href="https://github.com/iamkun/dayjs/commit/37193be1dff17ecc4debc0cc03e8715cc9c9f1a3"><code>37193be</code></a> Merge pull request <a href="https://redirect.github.com/iamkun/dayjs/issues/2950">#2950</a> from iamkun/dev</li> <li><a href="https://github.com/iamkun/dayjs/commit/2db920bf9646b2eb55b56d328c376b5ee6a6fe5d"><code>2db920b</code></a> chore: update doc</li> <li><a href="https://github.com/iamkun/dayjs/commit/4f72974ab53890a50f52348cf3a97595941315a0"><code>4f72974</code></a> chore: update doc</li> <li><a href="https://github.com/iamkun/dayjs/commit/0b36a0711ffb0f488cfdfb73b56ed10d88ec3a32"><code>0b36a07</code></a> chore: update doc</li> <li><a href="https://github.com/iamkun/dayjs/commit/269a7a9cf3649b7a4b328e771173701764a8480d"><code>269a7a9</code></a> fix: added usage warnings for diff + updated unit tests (<a href="https://redirect.github.com/iamkun/dayjs/issues/2948">#2948</a>)</li> <li><a href="https://github.com/iamkun/dayjs/commit/9e3132e952ca0fbd3c38de3ef8bc9a5e24d235a4"><code>9e3132e</code></a> chore: update doc</li> <li><a href="https://github.com/iamkun/dayjs/commit/84201e609157283e008cc01211777fc82ecfdbd6"><code>84201e6</code></a> chore: update doc</li> <li><a href="https://github.com/iamkun/dayjs/commit/80401e3ff91cc6c5310e6603a4d7a5fa92ca90ec"><code>80401e3</code></a> chore: update readme</li> <li><a href="https://github.com/iamkun/dayjs/commit/88ad3fd5b56291ca3be48400f65f5f8316403c83"><code>88ad3fd</code></a> test: Add unit test for Belarusian locale (<a href="https://redirect.github.com/iamkun/dayjs/issues/2934">#2934</a>)</li> <li>Additional commits viewable in <a href="https://github.com/iamkun/dayjs/compare/v1.11.18...v1.11.19">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
dc3b11e545 |
chore: bump yup from 1.6.1 to 1.7.1 in /site (#21032)
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [yup](https://github.com/jquense/yup) from 1.6.1 to 1.7.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/jquense/yup/blob/master/CHANGELOG.md">yup's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/jquense/yup/compare/v1.7.0...v1.7.1">1.7.1</a> (2025-09-21)</h2> <h1><a href="https://github.com/jquense/yup/compare/v1.6.1...v1.7.0">1.7.0</a> (2025-08-01)</h1> <h3>Features</h3> <ul> <li>Implement standard schema interface (<a href="https://redirect.github.com/jquense/yup/issues/2258">#2258</a>) (<a href="https://github.com/jquense/yup/commit/ced5f514a6033a96f5de3b4ae9c17fe0de86d68f">ced5f51</a>)</li> <li>resolve ref params if present when describing (<a href="https://github.com/jquense/yup/commit/ef5303025c38e6e0dc0de53c990e7277cc74164e">ef53030</a>), closes <a href="https://redirect.github.com/jquense/yup/issues/2276">#2276</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/jquense/yup/commits">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
a110c98040 |
chore: bump lucide-react from 0.552.0 to 0.555.0 in /site (#21031)
Bumps [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) from 0.552.0 to 0.555.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/lucide-icons/lucide/releases">lucide-react's releases</a>.</em></p> <blockquote> <h2>Version 0.555.0</h2> <h2>What's Changed</h2> <ul> <li>fix(icons): changed <code>calendars</code> icon by <a href="https://github.com/jguddas"><code>@jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3795">lucide-icons/lucide#3795</a></li> <li>fix(docs): correct package name and description for Flutter and Lustre package (<a href="https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react/issues/3701">#3701</a>) by <a href="https://github.com/epifaniofrancisco"><code>@epifaniofrancisco</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3703">lucide-icons/lucide#3703</a></li> <li>feat(angular): Angular V21 Support by <a href="https://github.com/JeevanMahesha"><code>@JeevanMahesha</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3807">lucide-icons/lucide#3807</a></li> <li>chore(metadata): Adjust navigation category by <a href="https://github.com/ericfennis"><code>@ericfennis</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3461">lucide-icons/lucide#3461</a></li> <li>feat(icons): Add <code>waves-arrow-up</code> and <code>waves-arrow-down</code> by <a href="https://github.com/ericfennis"><code>@ericfennis</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3463">lucide-icons/lucide#3463</a></li> <li>fix(icons): changed <code>scale</code> icon by <a href="https://github.com/jamiemlaw"><code>@jamiemlaw</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3800">lucide-icons/lucide#3800</a></li> <li>feat(icons): added <code>form</code> icon by <a href="https://github.com/jguddas"><code>@jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3558">lucide-icons/lucide#3558</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/lucide-icons/lucide/compare/0.554.0...0.555.0">https://github.com/lucide-icons/lucide/compare/0.554.0...0.555.0</a></p> <h2>Version 0.554.0</h2> <h2>What's Changed</h2> <ul> <li>fix(icons): Rename fingerprint icon to fingerprint-pattern by <a href="https://github.com/ericfennis"><code>@ericfennis</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3767">lucide-icons/lucide#3767</a></li> <li>feat(docs): added lucide-rails third-party package by <a href="https://github.com/theiereman"><code>@theiereman</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3769">lucide-icons/lucide#3769</a></li> <li>fix(icons): changed <code>ampersand</code> icon by <a href="https://github.com/jguddas"><code>@jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3771">lucide-icons/lucide#3771</a></li> <li>fix(icons): changed <code>folder-git-2</code> icon by <a href="https://github.com/jguddas"><code>@jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3790">lucide-icons/lucide#3790</a></li> <li>fix(icons): update <code>anchor</code> icon by <a href="https://github.com/jamiemlaw"><code>@jamiemlaw</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/2523">lucide-icons/lucide#2523</a></li> <li>feat(icons): added <code>calendars</code> icon by <a href="https://github.com/jguddas"><code>@jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3788">lucide-icons/lucide#3788</a></li> </ul> <h2>Breaking change</h2> <p>For <code>lucide-react</code> and <code>lucide-solid</code>, imports for <code>Fingerprint</code> icon are changed to <code>FingerprintPattern</code>.</p> <h3>Lucide React</h3> <pre lang="diff"><code>- import { Fingerprint } from "lucide-react"; + import { FingerprintPattern } from "lucide-react"; </code></pre> <h3>Lucide Solid</h3> <pre lang="diff"><code>- import { Fingerprint } from "lucide/solid"; + import { FingerprintPattern } from "lucide/solid"; <p>// Or</p> <ul> <li>import Fingerprint from "lucide/solid/icons/fingerprint";</li> </ul> <ul> <li>import FingerprintPattern from "lucide/solid/icons/fingerprint-pattern";<br /> </code></pre></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/theiereman"><code>@theiereman</code></a> made their first contribution in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3769">lucide-icons/lucide#3769</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/lucide-icons/lucide/compare/0.553.0...0.554.0">https://github.com/lucide-icons/lucide/compare/0.553.0...0.554.0</a></p> <h2>Version 0.553.0</h2> <h2>What's Changed</h2> <ul> <li>feat(icons): added <code>mouse-pointer-2-off</code> icon by <a href="https://github.com/domingasp"><code>@domingasp</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3570">lucide-icons/lucide#3570</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/lucide-icons/lucide/commit/80d6f737e0a02c3c11af8d87cb986e33a4ef08d8"><code>80d6f73</code></a> fix(icons): Rename fingerprint icon to fingerprint-pattern (<a href="https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react/issues/3767">#3767</a>)</li> <li>See full diff in <a href="https://github.com/lucide-icons/lucide/commits/0.555.0/packages/lucide-react">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
bbf3f763fd |
chore: bump knip from 5.66.4 to 5.71.0 in /site (#21029)
Bumps [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) from 5.66.4 to 5.71.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/webpro-nl/knip/releases">knip's releases</a>.</em></p> <blockquote> <h2>Release 5.71.0</h2> <ul> <li>Add <code>sed</code> to globally ignored binaries (<a href="https://github.com/webpro-nl/knip/tree/HEAD/packages/knip/issues/1365">#1365</a>) (ea8d61899fe8d4ba160ec998d564d3c9f5aafd55) - thanks <a href="https://github.com/jmoses"><code>@jmoses</code></a>!</li> <li>Consider NS in condition referenced (closes <a href="https://github.com/webpro-nl/knip/tree/HEAD/packages/knip/issues/1364">#1364</a>) (7a5a8ea2351b31e1cefb1405d33b8dbb464c2ec9)</li> <li>Improve dynamic import binding handling (close <a href="https://github.com/webpro-nl/knip/tree/HEAD/packages/knip/issues/1368">#1368</a>) (b210b18c18357885b33827fc23a7333615ef7d64)</li> <li>Introduce graph explorer (b107af4cfbf034159903cf79c82e6926ff7dd91c)</li> <li>Find mdx plugins in next config (resolve <a href="https://github.com/webpro-nl/knip/tree/HEAD/packages/knip/issues/1367">#1367</a>) (07c0539dd167681e2f5533bef15a7759bd6a3f5f)</li> <li>Filter out subshell function calls (resolve <a href="https://github.com/webpro-nl/knip/tree/HEAD/packages/knip/issues/1369">#1369</a>) (97d8f6acc9fda00486b2072f9717789d54b4e225)</li> </ul> <h2>Release 5.70.2</h2> <ul> <li>Restore & add TS v5.5.0 workarounds ↻ oh my (fe7ea23981ae1c94118041299b9f1fecceba62d4)</li> <li>Extend & refactor <code>Import</code> in module graph (ad25794fc5ed465cf4be151df05fc4196d1589e4)</li> <li>Fix <code>TYPE_ONLY</code> instance (b431303d60f84f6abf77f37f93ccf9ab399d4cc9)</li> <li>Add side-effect imports as well (ed289ba9e69a030f945a42aef0828029fbe9b734)</li> <li>Remove <code>project</code> patterns from astro plugin (ac9e378d2bdf84b70791bdce9febc511bee924b4)</li> <li>Don't leak negated entry into project patterns (eab2b892c774c8ed545952997e66cf53719fa68e)</li> <li>Run glob sets with negations separately (resolves <a href="https://github.com/webpro-nl/knip/tree/HEAD/packages/knip/issues/1249">#1249</a>) (969e3afdb25d9e607ff68f60543c8f1e64be5a69)</li> <li>Include all groups to negate entry patterns in production mode (406592dca0e44917703b24cee78c2d85b0a42fb6)</li> </ul> <h2>Release 5.70.1</h2> <ul> <li>chore: fix vitest node env recognition (<a href="https://github.com/webpro-nl/knip/tree/HEAD/packages/knip/issues/1360">#1360</a>) (9a38e10230b18b256ee8ed03dcc5217029b5298d) - thanks <a href="https://github.com/jonathansamines"><code>@jonathansamines</code></a>!</li> <li>Improve some export/import positions (f6f58fa96ef1243c4e5c70e8860b286bd63bed94)</li> <li>Add some common hints/FAQs to plugin test template (da7cf84a501321a9bbb3e118e840d36d47abad56)</li> </ul> <h2>Release 5.70.0</h2> <ul> <li>Revert "Revive some tests in Bun" (f1406b5d8fc5add850e88ea23619bad745519c97)</li> <li>feat(plugins): Add Prisma plugin entry and Prisma schema compiler (<a href="https://github.com/webpro-nl/knip/tree/HEAD/packages/knip/issues/1340">#1340</a>) (9f80aa4b09f9c9c5a0e55015a8b0eae9fb2e1812) - thanks <a href="https://github.com/CHC383"><code>@CHC383</code></a>!</li> <li>Improve some export/import positions (b19282b3ff84d1486820afb9f09e1384d8934bc8)</li> <li>Move block to group top-level patterns (bba25f33d489fb1942925d022348536513e4a4dd)</li> <li>Improve some naming around module graph (63d61176f0613bb405627f6cab2dc1bbee052df5)</li> <li>Minor refactors (a63b0dce0f886f297650185c72003f7c935a9deb)</li> <li>Update auto-fix.mdx (<a href="https://github.com/webpro-nl/knip/tree/HEAD/packages/knip/issues/1356">#1356</a>) (c64d9056ef9aed63b1b8255dc1bad120a21f311f) - thanks <a href="https://github.com/skvale"><code>@skvale</code></a>!</li> <li>Improve side-effects & opaque import call handling (resolve <a href="https://github.com/webpro-nl/knip/tree/HEAD/packages/knip/issues/1352">#1352</a>) (e364589d790ce185c9a3b29aa2ea00f2663064d6)</li> <li>Add some unit tests for <code>isIdentifierReferenced</code> (f31eab4b443f084ff4af3eab187c352deab27089)</li> <li>Add support for awaited import call promise (92cbcef6b0501891e9e62ef6a3ef801b0de945e7)</li> <li>Edit and dim tag hints title (e4affd2f0651ba530817bb04805805e6474b0fbe)</li> <li>feat(plugins): Add taskfile plugin (<a href="https://github.com/webpro-nl/knip/tree/HEAD/packages/knip/issues/1357">#1357</a>) (f64b72c31f0ee47da68a1eff96505dc770c43194) - thanks <a href="https://github.com/elierotenberg"><code>@elierotenberg</code></a>!</li> <li>Improve pragmas handling/setup (resolves <a href="https://github.com/webpro-nl/knip/tree/HEAD/packages/knip/issues/1358">#1358</a>) (e0f497cc937e5cb5281a84a7e9c2181942b94361)</li> <li>Upgrade js-yaml + some others (resolve <a href="https://github.com/webpro-nl/knip/tree/HEAD/packages/knip/issues/1359">#1359</a>) (5195888a691c200c971e214f28ad20bf4a395862)</li> <li>Clean up (da9440fb6a09222cc8a50093178e6cd69fee3bd6)</li> </ul> <h2>Release 5.69.1</h2> <ul> <li>Release <code>@knip/create-config</code> 1.0.8 (87405169656dbfa8cf931092d516c91647f95529)</li> <li>Edit docs (5eb8a6943904505b5630dee1ee58379c7707f72d)</li> <li>Apply Next.js page extensions to app directory (<a href="https://github.com/webpro-nl/knip/tree/HEAD/packages/knip/issues/1351">#1351</a>) (f9cf9dc0fd44880a515979a104261ed77fa8878d) - thanks <a href="https://github.com/remcohaszing"><code>@remcohaszing</code></a>!</li> <li>Refactor fixes & consistently use <code>issue.fixes</code> (d7b45cfebb135881160ecda2acf0ad5239d98441)</li> <li>Revive some tests in Bun (74a0bd8ebf6e68e121333489495d2b6d58545fd4)</li> <li>Fix import identifier/specifier pos (95d2c04d5400ffb57f9057653c0977967b3ae02e)</li> <li>Fix namespace import pos (6b6b80b813d545d16ba74fc68beecd492f1252a2)</li> <li>Improve some export/import positions (9b87b1ac20fb33d9f9b5af1de1cbe1d053fa18ff)</li> <li>Rely on absolute paths with formatly (npx acts weird) (6653f357074c559f537af1b5563b191372d7901e)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/webpro-nl/knip/commit/879a42ca09721292fc3443443d8d5f9df96c9aa7"><code>879a42c</code></a> Release 5.71.0</li> <li><a href="https://github.com/webpro-nl/knip/commit/97d8f6acc9fda00486b2072f9717789d54b4e225"><code>97d8f6a</code></a> Filter out subshell function calls (resolve <a href="https://github.com/webpro-nl/knip/tree/HEAD/packages/knip/issues/1369">#1369</a>)</li> <li><a href="https://github.com/webpro-nl/knip/commit/07c0539dd167681e2f5533bef15a7759bd6a3f5f"><code>07c0539</code></a> Find mdx plugins in next config (resolve <a href="https://github.com/webpro-nl/knip/tree/HEAD/packages/knip/issues/1367">#1367</a>)</li> <li><a href="https://github.com/webpro-nl/knip/commit/b107af4cfbf034159903cf79c82e6926ff7dd91c"><code>b107af4</code></a> Introduce graph explorer</li> <li><a href="https://github.com/webpro-nl/knip/commit/b210b18c18357885b33827fc23a7333615ef7d64"><code>b210b18</code></a> Improve dynamic import binding handling (close <a href="https://github.com/webpro-nl/knip/tree/HEAD/packages/knip/issues/1368">#1368</a>)</li> <li><a href="https://github.com/webpro-nl/knip/commit/7a5a8ea2351b31e1cefb1405d33b8dbb464c2ec9"><code>7a5a8ea</code></a> Consider NS in condition referenced (closes <a href="https://github.com/webpro-nl/knip/tree/HEAD/packages/knip/issues/1364">#1364</a>)</li> <li><a href="https://github.com/webpro-nl/knip/commit/ea8d61899fe8d4ba160ec998d564d3c9f5aafd55"><code>ea8d618</code></a> Add <code>sed</code> to globally ignored binaries (<a href="https://github.com/webpro-nl/knip/tree/HEAD/packages/knip/issues/1365">#1365</a>)</li> <li><a href="https://github.com/webpro-nl/knip/commit/59abdaa9c40bc750d18c5bfb3ddc0f44def93b30"><code>59abdaa</code></a> Release 5.70.2</li> <li><a href="https://github.com/webpro-nl/knip/commit/406592dca0e44917703b24cee78c2d85b0a42fb6"><code>406592d</code></a> Include all groups to negate entry patterns in production mode</li> <li><a href="https://github.com/webpro-nl/knip/commit/969e3afdb25d9e607ff68f60543c8f1e64be5a69"><code>969e3af</code></a> Run glob sets with negations separately (resolves <a href="https://github.com/webpro-nl/knip/tree/HEAD/packages/knip/issues/1249">#1249</a>)</li> <li>Additional commits viewable in <a href="https://github.com/webpro-nl/knip/commits/5.71.0/packages/knip">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
59866d9f52 |
chore: bump autoprefixer from 10.4.21 to 10.4.22 in /site (#21030)
Bumps [autoprefixer](https://github.com/postcss/autoprefixer) from 10.4.21 to 10.4.22. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/postcss/autoprefixer/releases">autoprefixer's releases</a>.</em></p> <blockquote> <h2>10.4.22</h2> <ul> <li>Fixed <code>stretch</code> prefixes on new Can I Use database.</li> <li>Updated <code>fraction.js</code>.</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md">autoprefixer's changelog</a>.</em></p> <blockquote> <h2>10.4.22</h2> <ul> <li>Fixed <code>stretch</code> prefixes on new Can I Use database.</li> <li>Updated <code>fraction.js</code>.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/postcss/autoprefixer/commit/73dc62c779bf51f2883f9541dc62fd164262e872"><code>73dc62c</code></a> Release 10.4.22 version</li> <li><a href="https://github.com/postcss/autoprefixer/commit/9973c59f4880abff46c94fd5554e7e4ea194b549"><code>9973c59</code></a> Lock CI action versions</li> <li><a href="https://github.com/postcss/autoprefixer/commit/4b4feca71abf7596d978fe7a1e048dec1608d740"><code>4b4feca</code></a> Fix Node.js 10 on CI</li> <li><a href="https://github.com/postcss/autoprefixer/commit/15c21d3a7c626ec8269fdb926ed76e729593f09e"><code>15c21d3</code></a> Fix old Node.js CI</li> <li><a href="https://github.com/postcss/autoprefixer/commit/27523c1c560933adfb5f8e29184a85b45ed60c87"><code>27523c1</code></a> Update fraction.js</li> <li><a href="https://github.com/postcss/autoprefixer/commit/88a0d3e0f8034eb9a54087c74a36abb771de41a0"><code>88a0d3e</code></a> Update dependencies and fix stretch and update example</li> <li>See full diff in <a href="https://github.com/postcss/autoprefixer/compare/10.4.21...10.4.22">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
e00578cf99 |
chore: bump axios from 1.13.1 to 1.13.2 in /site (#21028)
Bumps [axios](https://github.com/axios/axios) from 1.13.1 to 1.13.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/axios/axios/releases">axios's releases</a>.</em></p> <blockquote> <h2>Release v1.13.2</h2> <h2>Release notes:</h2> <h3>Bug Fixes</h3> <ul> <li><strong>http:</strong> fix 'socket hang up' bug for keep-alive requests when using timeouts; (<a href="https://redirect.github.com/axios/axios/issues/7206">#7206</a>) (<a href="https://github.com/axios/axios/commit/8d372335f5c50ecd01e8615f2468a9eb19703117">8d37233</a>)</li> <li><strong>http:</strong> use default export for http2 module to support stubs; (<a href="https://redirect.github.com/axios/axios/issues/7196">#7196</a>) (<a href="https://github.com/axios/axios/commit/0588880ac7ddba7594ef179930493884b7e90bf5">0588880</a>)</li> </ul> <h3>Performance Improvements</h3> <ul> <li><strong>http:</strong> fix early loop exit; (<a href="https://redirect.github.com/axios/axios/issues/7202">#7202</a>) (<a href="https://github.com/axios/axios/commit/12c314b603e7852a157e93e47edb626a471ba6c5">12c314b</a>)</li> </ul> <h3>Contributors to this release</h3> <ul> <li><!-- raw HTML omitted --> <a href="https://github.com/DigitalBrainJS" title="+28/-9 ([#7206](https://github.com/axios/axios/issues/7206) [#7202](https://github.com/axios/axios/issues/7202) )">Dmitriy Mozgovoy</a></li> <li><!-- raw HTML omitted --> <a href="https://github.com/kasperisager" title="+9/-9 ([#7196](https://github.com/axios/axios/issues/7196) )">Kasper Isager Dalsgarð</a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/axios/axios/compare/v1.13.1...v1.13.2">1.13.2</a> (2025-11-04)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>http:</strong> fix 'socket hang up' bug for keep-alive requests when using timeouts; (<a href="https://redirect.github.com/axios/axios/issues/7206">#7206</a>) (<a href="https://github.com/axios/axios/commit/8d372335f5c50ecd01e8615f2468a9eb19703117">8d37233</a>)</li> <li><strong>http:</strong> use default export for http2 module to support stubs; (<a href="https://redirect.github.com/axios/axios/issues/7196">#7196</a>) (<a href="https://github.com/axios/axios/commit/0588880ac7ddba7594ef179930493884b7e90bf5">0588880</a>)</li> </ul> <h3>Performance Improvements</h3> <ul> <li><strong>http:</strong> fix early loop exit; (<a href="https://redirect.github.com/axios/axios/issues/7202">#7202</a>) (<a href="https://github.com/axios/axios/commit/12c314b603e7852a157e93e47edb626a471ba6c5">12c314b</a>)</li> </ul> <h3>Contributors to this release</h3> <ul> <li><!-- raw HTML omitted --> <a href="https://github.com/DigitalBrainJS" title="+28/-9 ([#7206](https://github.com/axios/axios/issues/7206) [#7202](https://github.com/axios/axios/issues/7202) )">Dmitriy Mozgovoy</a></li> <li><!-- raw HTML omitted --> <a href="https://github.com/kasperisager" title="+9/-9 ([#7196](https://github.com/axios/axios/issues/7196) )">Kasper Isager Dalsgarð</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/axios/axios/commit/08b84b52d5835d0c7b81049c365c3d271ade8bff"><code>08b84b5</code></a> chore(release): v1.13.2 (<a href="https://redirect.github.com/axios/axios/issues/7207">#7207</a>)</li> <li><a href="https://github.com/axios/axios/commit/8d372335f5c50ecd01e8615f2468a9eb19703117"><code>8d37233</code></a> fix(http): fix 'socket hang up' bug for keep-alive requests when using timeou...</li> <li><a href="https://github.com/axios/axios/commit/12c314b603e7852a157e93e47edb626a471ba6c5"><code>12c314b</code></a> perf(http): fix early loop exit; (<a href="https://redirect.github.com/axios/axios/issues/7202">#7202</a>)</li> <li><a href="https://github.com/axios/axios/commit/f6d79e773baf70bf4e6d888e72d4bcf589060a84"><code>f6d79e7</code></a> chore(sponsor): update sponsor block (<a href="https://redirect.github.com/axios/axios/issues/7203">#7203</a>)</li> <li><a href="https://github.com/axios/axios/commit/0588880ac7ddba7594ef179930493884b7e90bf5"><code>0588880</code></a> fix(http): use default export for http2 module to support stubs; (<a href="https://redirect.github.com/axios/axios/issues/7196">#7196</a>)</li> <li>See full diff in <a href="https://github.com/axios/axios/compare/v1.13.1...v1.13.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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
fe850752dd |
chore: bump formik from 2.4.6 to 2.4.9 in /site (#21027)
Bumps [formik](https://github.com/jaredpalmer/formik) from 2.4.6 to 2.4.9. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jaredpalmer/formik/releases">formik's releases</a>.</em></p> <blockquote> <h2>formik@2.4.9</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/jaredpalmer/formik/pull/4051">#4051</a> <a href="https://github.com/jaredpalmer/formik/commit/8f9d04d206146ca941facf37ddd9ddb459c459dc"><code>8f9d04d</code></a> Thanks <a href="https://github.com/Moumouls"><code>@Moumouls</code></a>! - fix: jsx ref for react 19</li> </ul> <h2>formik@2.4.8</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/jaredpalmer/formik/pull/4042">#4042</a> <a href="https://github.com/jaredpalmer/formik/commit/1de45decf8fd70c038fca88dc1a6543aac269553"><code>1de45de</code></a> Thanks <a href="https://github.com/apps/copilot-swe-agent"><code>@copilot-swe-agent</code></a>! - Replace JSX.IntrinsicElements with React.JSX.IntrinsicElements for React 19 compatibility. The global JSX namespace was removed in React 19, so we now use React.JSX.IntrinsicElements instead.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jaredpalmer/formik/commit/91475adbf33579561e580eceea0c031f4ec2e992"><code>91475ad</code></a> Merge pull request <a href="https://redirect.github.com/jaredpalmer/formik/issues/4053">#4053</a> from jaredpalmer/changeset-release/main</li> <li><a href="https://github.com/jaredpalmer/formik/commit/920f107205a9e3440efc5dba127e3aecbe98fda5"><code>920f107</code></a> Version Packages</li> <li><a href="https://github.com/jaredpalmer/formik/commit/8f9d04d206146ca941facf37ddd9ddb459c459dc"><code>8f9d04d</code></a> fix: jsx ref for react 19 (<a href="https://redirect.github.com/jaredpalmer/formik/issues/4051">#4051</a>)</li> <li><a href="https://github.com/jaredpalmer/formik/commit/ddfae3fad836c088f376e88c2be5282262429c1c"><code>ddfae3f</code></a> Merge pull request <a href="https://redirect.github.com/jaredpalmer/formik/issues/4045">#4045</a> from jaredpalmer/changeset-release/main</li> <li><a href="https://github.com/jaredpalmer/formik/commit/741c9d448b13590900bd5170b55cd03ade33f578"><code>741c9d4</code></a> Version Packages</li> <li><a href="https://github.com/jaredpalmer/formik/commit/f7f8f53f9ee379d4e2048ee4c73d1bf9c4af48ad"><code>f7f8f53</code></a> Upgrade changesets/action to v1.5.3 and npm packages (<a href="https://redirect.github.com/jaredpalmer/formik/issues/4043">#4043</a>)</li> <li><a href="https://github.com/jaredpalmer/formik/commit/7fca4b2cdc881dc0b79a2f219df57a7e15866fc2"><code>7fca4b2</code></a> Merge pull request <a href="https://redirect.github.com/jaredpalmer/formik/issues/4044">#4044</a> from jaredpalmer/copilot/upgrade-to-latest-turborepo</li> <li><a href="https://github.com/jaredpalmer/formik/commit/c8e5527ff4c1f2ab9a876f8df71dd24b443f7efe"><code>c8e5527</code></a> Add .turbo to .gitignore and remove cached files</li> <li><a href="https://github.com/jaredpalmer/formik/commit/488dbec5dd619ba71814dc9fb643c0da5f65482a"><code>488dbec</code></a> Upgrade turborepo from 1.9.9 to 2.6.0 with initial configuration changes</li> <li><a href="https://github.com/jaredpalmer/formik/commit/dc03941b8a9d198aad54e624b850c6446eaadaec"><code>dc03941</code></a> Initial plan</li> <li>Additional commits viewable in <a href="https://github.com/jaredpalmer/formik/compare/formik@2.4.6...formik@2.4.9">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
d786bc400c |
chore: bump react-syntax-highlighter from 15.6.1 to 15.6.6 in /site (#21026)
Bumps [react-syntax-highlighter](https://github.com/react-syntax-highlighter/react-syntax-highlighter) from 15.6.1 to 15.6.6. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/react-syntax-highlighter/react-syntax-highlighter/releases">react-syntax-highlighter's releases</a>.</em></p> <blockquote> <h2>v15.6.6</h2> <p>Updated <code>overrides</code> block attempting to solve transitive <code>prismjs</code> dependency issue:</p> <pre><code>"overrides": { "prismjs": "^1.30.0", "refractor": { "prismjs": "^1.30.0" } } </code></pre> <p><strong>Full Changelog</strong>: <a href="https://github.com/react-syntax-highlighter/react-syntax-highlighter/compare/v15.6.5...v15.6.6">https://github.com/react-syntax-highlighter/react-syntax-highlighter/compare/v15.6.5...v15.6.6</a></p> <h2>v15.6.5</h2> <h2>What's Changed</h2> <ul> <li>Bump elliptic from 6.5.5 to 6.6.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/react-syntax-highlighter/react-syntax-highlighter/pull/576">react-syntax-highlighter/react-syntax-highlighter#576</a></li> <li>Bump ws from 6.2.2 to 6.2.3 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/react-syntax-highlighter/react-syntax-highlighter/pull/574">react-syntax-highlighter/react-syntax-highlighter#574</a></li> <li>Bump express from 4.19.2 to 4.21.1 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/react-syntax-highlighter/react-syntax-highlighter/pull/572">react-syntax-highlighter/react-syntax-highlighter#572</a></li> <li>Bump send and express by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/react-syntax-highlighter/react-syntax-highlighter/pull/571">react-syntax-highlighter/react-syntax-highlighter#571</a></li> <li>Bump cookie and express by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/react-syntax-highlighter/react-syntax-highlighter/pull/570">react-syntax-highlighter/react-syntax-highlighter#570</a></li> <li>Bump serve-static and express by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/react-syntax-highlighter/react-syntax-highlighter/pull/569">react-syntax-highlighter/react-syntax-highlighter#569</a></li> <li>Bump body-parser and express by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/react-syntax-highlighter/react-syntax-highlighter/pull/568">react-syntax-highlighter/react-syntax-highlighter#568</a></li> <li>Add Boemly to the built with section of the readme by <a href="https://github.com/lukasbals"><code>@lukasbals</code></a> in <a href="https://redirect.github.com/react-syntax-highlighter/react-syntax-highlighter/pull/467">react-syntax-highlighter/react-syntax-highlighter#467</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/lukasbals"><code>@lukasbals</code></a> made their first contribution in <a href="https://redirect.github.com/react-syntax-highlighter/react-syntax-highlighter/pull/467">react-syntax-highlighter/react-syntax-highlighter#467</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/react-syntax-highlighter/react-syntax-highlighter/compare/v15.6.4...v15.6.5">https://github.com/react-syntax-highlighter/react-syntax-highlighter/compare/v15.6.4...v15.6.5</a></p> <h2>v15.6.4</h2> <h2>What's Changed</h2> <ul> <li>Override <code>refractor 3.6.0</code>'s <code>prismjs</code> dependency by <a href="https://github.com/simmerer"><code>@simmerer</code></a> in <a href="https://redirect.github.com/react-syntax-highlighter/react-syntax-highlighter/pull/605">react-syntax-highlighter/react-syntax-highlighter#605</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/react-syntax-highlighter/react-syntax-highlighter/compare/v15.6.3...v15.6.4">https://github.com/react-syntax-highlighter/react-syntax-highlighter/compare/v15.6.3...v15.6.4</a></p> <h2>v15.6.3</h2> <h2>What's Changed</h2> <ul> <li>fix line count error by <a href="https://github.com/bbbert"><code>@bbbert</code></a> in <a href="https://redirect.github.com/react-syntax-highlighter/react-syntax-highlighter/pull/583">react-syntax-highlighter/react-syntax-highlighter#583</a></li> <li>fix spelling error by <a href="https://github.com/BrianHung"><code>@BrianHung</code></a> in <a href="https://redirect.github.com/react-syntax-highlighter/react-syntax-highlighter/pull/579">react-syntax-highlighter/react-syntax-highlighter#579</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/bbbert"><code>@bbbert</code></a> made their first contribution in <a href="https://redirect.github.com/react-syntax-highlighter/react-syntax-highlighter/pull/583">react-syntax-highlighter/react-syntax-highlighter#583</a></li> <li><a href="https://github.com/BrianHung"><code>@BrianHung</code></a> made their first contribution in <a href="https://redirect.github.com/react-syntax-highlighter/react-syntax-highlighter/pull/579">react-syntax-highlighter/react-syntax-highlighter#579</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/react-syntax-highlighter/react-syntax-highlighter/compare/v15.6.2...v15.6.3">https://github.com/react-syntax-highlighter/react-syntax-highlighter/compare/v15.6.2...v15.6.3</a></p> <h2>v15.6.2</h2> <h2>What's Changed</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/react-syntax-highlighter/react-syntax-highlighter/blob/master/CHANGELOG.MD">react-syntax-highlighter's changelog</a>.</em></p> <blockquote> <h1>Changelog</h1> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/react-syntax-highlighter/react-syntax-highlighter/commit/56a1b0f779e3bc0175a6e8915fa9274c0f4ca985"><code>56a1b0f</code></a> add top-level override for prismjs, bump to 15.6.6</li> <li><a href="https://github.com/react-syntax-highlighter/react-syntax-highlighter/commit/a169285045a1448d58102e034ac38df63596745a"><code>a169285</code></a> bump to 15.6.5</li> <li><a href="https://github.com/react-syntax-highlighter/react-syntax-highlighter/commit/5d507f0a97d29d9f74c2ce0844f87a08c85b0a46"><code>5d507f0</code></a> Add Boemly to the built with section of the readme (<a href="https://redirect.github.com/react-syntax-highlighter/react-syntax-highlighter/issues/467">#467</a>)</li> <li><a href="https://github.com/react-syntax-highlighter/react-syntax-highlighter/commit/0bda76915b41ec92aea9e79f360476efc1b7fb2c"><code>0bda769</code></a> Bump body-parser and express (<a href="https://redirect.github.com/react-syntax-highlighter/react-syntax-highlighter/issues/568">#568</a>)</li> <li><a href="https://github.com/react-syntax-highlighter/react-syntax-highlighter/commit/9fb3f732fc263056e6504fced239dfe0e87dd67a"><code>9fb3f73</code></a> Bump serve-static and express (<a href="https://redirect.github.com/react-syntax-highlighter/react-syntax-highlighter/issues/569">#569</a>)</li> <li><a href="https://github.com/react-syntax-highlighter/react-syntax-highlighter/commit/5f0dbfcc3c5ec44460595011def5aaa9821dd560"><code>5f0dbfc</code></a> Bump cookie and express (<a href="https://redirect.github.com/react-syntax-highlighter/react-syntax-highlighter/issues/570">#570</a>)</li> <li><a href="https://github.com/react-syntax-highlighter/react-syntax-highlighter/commit/53e66073ca675005ec069b20a16ff38a81d10a5e"><code>53e6607</code></a> Bump send and express (<a href="https://redirect.github.com/react-syntax-highlighter/react-syntax-highlighter/issues/571">#571</a>)</li> <li><a href="https://github.com/react-syntax-highlighter/react-syntax-highlighter/commit/130c9c322b7d5975440c0476f6418e2c22a696d6"><code>130c9c3</code></a> Bump express from 4.19.2 to 4.21.1 (<a href="https://redirect.github.com/react-syntax-highlighter/react-syntax-highlighter/issues/572">#572</a>)</li> <li><a href="https://github.com/react-syntax-highlighter/react-syntax-highlighter/commit/93825906ee0f0f6671830f3d0da601c8174d52d9"><code>9382590</code></a> Bump ws from 6.2.2 to 6.2.3 (<a href="https://redirect.github.com/react-syntax-highlighter/react-syntax-highlighter/issues/574">#574</a>)</li> <li><a href="https://github.com/react-syntax-highlighter/react-syntax-highlighter/commit/7ecf60606abccc2c7edef5fc254338a7c951db3c"><code>7ecf606</code></a> Bump elliptic from 6.5.5 to 6.6.0 (<a href="https://redirect.github.com/react-syntax-highlighter/react-syntax-highlighter/issues/576">#576</a>)</li> <li>Additional commits viewable in <a href="https://github.com/react-syntax-highlighter/react-syntax-highlighter/compare/v15.6.1...v15.6.6">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
cbb0952e5a |
chore: disable autoupgrade of GH Actions version upgrades (#21019)
Addresses https://github.com/coder/internal/issues/1166 |
||
|
|
d3fe72c861 | chore: add ansible icon (#20887) | ||
|
|
163f495346 |
chore: bump @types/node from 20.17.16 to 20.19.25 in /site (#21003)
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.17.16 to 20.19.25. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
fad8b54ab8 |
ci: bump the github-actions group across 1 directory with 6 updates (#21017)
Bumps the github-actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5.0.0` | `6.0.0` | | [crate-ci/typos](https://github.com/crate-ci/typos) | `1.39.2` | `1.40.0` | | [chromaui/action](https://github.com/chromaui/action) | `13.3.3` | `13.3.4` | | [fluxcd/flux2](https://github.com/fluxcd/flux2) | `2.7.3` | `2.7.5` | | [tj-actions/changed-files](https://github.com/tj-actions/changed-files) | `70069877f29101175ed2b055d210fe8b1d54d7d7` | `abdd2f68ea150cee8f236d4a9fb4e0f2491abf1b` | | [github/codeql-action](https://github.com/github/codeql-action) | `4.31.3` | `4.31.6` | Updates `actions/checkout` from 5.0.0 to 6.0.0 <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> </blockquote> </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.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> <h2>v4.1.5</h2> <ul> <li>Update NPM dependencies by <a href="https://github.com/cory-miller"><code>@cory-miller</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1703">actions/checkout#1703</a></li> <li>Bump github/codeql-action from 2 to 3 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1694">actions/checkout#1694</a></li> <li>Bump actions/setup-node from 1 to 4 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1696">actions/checkout#1696</a></li> <li>Bump actions/upload-artifact from 2 to 4 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1695">actions/checkout#1695</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <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>See full diff in <a href="https://github.com/actions/checkout/compare/08c6903cd8c0fde910a37f88322edcfb5dd907a8...1af3b93b6815bc44a9784bd300feb67ff0d1eeb3">compare view</a></li> </ul> </details> <br /> Updates `crate-ci/typos` from 1.39.2 to 1.40.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/crate-ci/typos/releases">crate-ci/typos's releases</a>.</em></p> <blockquote> <h2>v1.40.0</h2> <h2>[1.40.0] - 2025-11-26</h2> <h3>Features</h3> <ul> <li>Updated the dictionary with the <a href="https://redirect.github.com/crate-ci/typos/issues/1405">November 2025</a> changes</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/crate-ci/typos/blob/master/CHANGELOG.md">crate-ci/typos's changelog</a>.</em></p> <blockquote> <h1>Change Log</h1> <p>All notable changes to this project will be documented in this file.</p> <p>The format is based on <a href="https://keepachangelog.com/">Keep a Changelog</a> and this project adheres to <a href="https://semver.org/">Semantic Versioning</a>.</p> <!-- raw HTML omitted --> <h2>[Unreleased] - ReleaseDate</h2> <h2>[1.40.0] - 2025-11-26</h2> <h3>Features</h3> <ul> <li>Updated the dictionary with the <a href="https://redirect.github.com/crate-ci/typos/issues/1405">November 2025</a> changes</li> </ul> <h2>[1.39.2] - 2025-11-13</h2> <h3>Fixes</h3> <ul> <li>Don't offer <code>entry</code> as a correction for <code>entrys</code></li> </ul> <h2>[1.39.1] - 2025-11-12</h2> <h3>Features</h3> <ul> <li>Make <code>--help</code> more vibrant</li> </ul> <h2>[1.39.0] - 2025-10-31</h2> <h3>Features</h3> <ul> <li>Updated the dictionary with the <a href="https://redirect.github.com/crate-ci/typos/issues/1383">October 2025</a> changes</li> </ul> <h3>Fixes</h3> <ul> <li>When a typo is pluralized, prefer pluralized corrections</li> </ul> <h2>[1.38.1] - 2025-10-07</h2> <h3>Fixes</h3> <ul> <li>Ignore common golang identifiers</li> </ul> <h2>[1.38.0] - 2025-10-06</h2> <h3>Features</h3> <ul> <li>Update type list</li> </ul> <h3>Fixes</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/crate-ci/typos/commit/2d0ce569feab1f8752f1dde43cc2f2aa53236e06"><code>2d0ce56</code></a> chore: Release</li> <li><a href="https://github.com/crate-ci/typos/commit/efbd900f8db9952781b6bd1ad83baa38ebd153e3"><code>efbd900</code></a> chore: Release</li> <li><a href="https://github.com/crate-ci/typos/commit/863fd15db8bf16bfe9117ec1a83ea7b6e802e9f3"><code>863fd15</code></a> docs: Update changelog</li> <li><a href="https://github.com/crate-ci/typos/commit/9a27b16791dd73549457a07f247bc4920f787919"><code>9a27b16</code></a> Merge pull request <a href="https://redirect.github.com/crate-ci/typos/issues/1432">#1432</a> from epage/nov</li> <li><a href="https://github.com/crate-ci/typos/commit/3dbd9d4eacab7f22586ea581e4d403c3ca9dbbb7"><code>3dbd9d4</code></a> feat(dict): November additions</li> <li><a href="https://github.com/crate-ci/typos/commit/a1a16c7b7c25d1c27cc750525aada8b9ae68b716"><code>a1a16c7</code></a> Merge pull request <a href="https://redirect.github.com/crate-ci/typos/issues/1427">#1427</a> from deining/bump-github-action</li> <li><a href="https://github.com/crate-ci/typos/commit/cb8d2e78ff23c82fca05340ed256b04513d022b9"><code>cb8d2e7</code></a> docs: Bump GitHub checkout action in 'github-action.md'</li> <li><a href="https://github.com/crate-ci/typos/commit/9f99fb8dfe87b8a3441863fb2e5d5da88a2aa9a2"><code>9f99fb8</code></a> docs(ref): Clarify extend-words / extend-identifiers</li> <li>See full diff in <a href="https://github.com/crate-ci/typos/compare/626c4bedb751ce0b7f03262ca97ddda9a076ae1c...2d0ce569feab1f8752f1dde43cc2f2aa53236e06">compare view</a></li> </ul> </details> <br /> Updates `chromaui/action` from 13.3.3 to 13.3.4 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/chromaui/action/commit/4c20b95e9d3209ecfdf9cd6aace6bbde71ba1694"><code>4c20b95</code></a> v13.3.4</li> <li>See full diff in <a href="https://github.com/chromaui/action/compare/ac86f2ff0a458ffbce7b40698abd44c0fa34d4b6...4c20b95e9d3209ecfdf9cd6aace6bbde71ba1694">compare view</a></li> </ul> </details> <br /> Updates `fluxcd/flux2` from 2.7.3 to 2.7.5 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/fluxcd/flux2/releases">fluxcd/flux2's releases</a>.</em></p> <blockquote> <h2>v2.7.5</h2> <h2>Highlights</h2> <p>Flux v2.7.5 is a patch release that comes with fixes to helm-controller. Users are encouraged to upgrade for the best experience.</p> <p>ℹ️ Please follow the <a href="https://github.com/fluxcd/flux2/discussions/5572">Upgrade Procedure for Flux v2.7+</a> for a smooth upgrade from Flux v2.6 to the latest version.</p> <p>Fixes:</p> <ul> <li>Fix HelmRelease history truncation when using the <code>RetryOnFailure</code> strategy.</li> </ul> <p>⚠️ Note that signature verification for OCI artifacts in source-controller is not compatible with Cosign v3. Flux users are advised to use <a href="https://fluxcd.io/flux/flux-gh-action/#push-and-sign-kubernetes-manifests-to-container-registries">Cosign v2.6</a> for signing Flux OCI artifacts and Helm charts, until support for Cosign v3 is added in Flux v2.8.</p> <h2>Components changelog</h2> <ul> <li>helm-controller <a href="https://github.com/fluxcd/helm-controller/blob/v1.4.5/CHANGELOG.md">v1.4.5</a></li> </ul> <h2>CLI changelog</h2> <ul> <li>[release/v2.7.x] Update toolkit components by <a href="https://github.com/fluxcdbot"><code>@fluxcdbot</code></a> in <a href="https://redirect.github.com/fluxcd/flux2/pull/5649">fluxcd/flux2#5649</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/fluxcd/flux2/compare/v2.7.4...v2.7.5">https://github.com/fluxcd/flux2/compare/v2.7.4...v2.7.5</a></p> <h2>v2.7.4</h2> <h2>Highlights</h2> <p>Flux v2.7.4 is a patch release that comes with various fixes. Users are encouraged to upgrade for the best experience.</p> <p>ℹ️ Please follow the <a href="https://github.com/fluxcd/flux2/discussions/5572">Upgrade Procedure for Flux v2.7+</a> for a smooth upgrade from Flux v2.6 to the latest version.</p> <p>Fixes:</p> <ul> <li>Add <code>DisableConfigWatchers</code> feature gate to all controllers for disabling the Secrets/ConfigMaps watchers</li> <li>Fix Workload Identity for Azure China Cloud in all controllers</li> <li>Update Helm Go SDK to v3.19.2 fixing schema validation issues in helm-controller</li> <li>Skip secret decryption for remote kustomize patches in kustomize-controller</li> <li>Improve post-build error reporting in kustomize-controller</li> <li>Add <code>ArtifactGenerator</code> to aggregated RBAC roles</li> </ul> <p>⚠️ Note that signature verification for OCI artifacts in source-controller is not compatible with Cosign v3. Flux users are advised to use <a href="https://fluxcd.io/flux/flux-gh-action/#push-and-sign-kubernetes-manifests-to-container-registries">Cosign v2.6</a> for signing Flux OCI artifacts and Helm charts, until support for Cosign v3 is added in Flux v2.8.</p> <h2>Components changelog</h2> <ul> <li>source-controller <a href="https://github.com/fluxcd/source-controller/blob/v1.7.4/CHANGELOG.md">v1.7.4</a></li> <li>kustomize-controller <a href="https://github.com/fluxcd/kustomize-controller/blob/v1.7.3/CHANGELOG.md">v1.7.3</a></li> <li>notification-controller <a href="https://github.com/fluxcd/notification-controller/blob/v1.7.5/CHANGELOG.md">v1.7.5</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/fluxcd/flux2/commit/8454b02a32e48d775b9f563cb51fdcb1787b5b93"><code>8454b02</code></a> Merge pull request <a href="https://redirect.github.com/fluxcd/flux2/issues/5649">#5649</a> from fluxcd/backport-5648-to-release/v2.7.x</li> <li><a href="https://github.com/fluxcd/flux2/commit/931f101cb1cba9f7af4efa44ac0a5c7f634d9b06"><code>931f101</code></a> Update toolkit components</li> <li><a href="https://github.com/fluxcd/flux2/commit/06ed49dcd3f3ce2fc8d1988848245873a91550bc"><code>06ed49d</code></a> Merge pull request <a href="https://redirect.github.com/fluxcd/flux2/issues/5642">#5642</a> from fluxcd/backport-5597-to-release/v2.7.x</li> <li><a href="https://github.com/fluxcd/flux2/commit/6021981de38a416f214a97dd090a1346a20d9ad4"><code>6021981</code></a> Allow option to skip tenant namespace creation</li> <li><a href="https://github.com/fluxcd/flux2/commit/4b7d46e511ca0efbea80e19fca675b18191a7508"><code>4b7d46e</code></a> Merge pull request <a href="https://redirect.github.com/fluxcd/flux2/issues/5640">#5640</a> from fluxcd/backport-5639-to-release/v2.7.x</li> <li><a href="https://github.com/fluxcd/flux2/commit/e8c87047ba81d4bdacc3a33c443e93a35efedda0"><code>e8c8704</code></a> Update toolkit components</li> <li><a href="https://github.com/fluxcd/flux2/commit/abd603eca72aac25d6a7b2da88e902ff798fbf61"><code>abd603e</code></a> Merge pull request <a href="https://redirect.github.com/fluxcd/flux2/issues/5635">#5635</a> from fluxcd/backport-5625-to-release/v2.7.x</li> <li><a href="https://github.com/fluxcd/flux2/commit/83d426c3c04baba957c4aa7774990563e125f5d4"><code>83d426c</code></a> diff: report if object is skipped</li> <li><a href="https://github.com/fluxcd/flux2/commit/48e77c820ecea23bb34fe51b1914bc41fd0830ac"><code>48e77c8</code></a> Merge pull request <a href="https://redirect.github.com/fluxcd/flux2/issues/5634">#5634</a> from fluxcd/backport-5633-to-release/v2.7.x</li> <li><a href="https://github.com/fluxcd/flux2/commit/01fbe3763997a09e67ec30779aa9280cb74e8885"><code>01fbe37</code></a> Upgrade k8s to 1.34.2, c-r to 0.22.4 and helm to 3.19.2</li> <li>Additional commits viewable in <a href="https://github.com/fluxcd/flux2/compare/b6e76ca2534f76dcb8dd94fb057cdfa923c3b641...8454b02a32e48d775b9f563cb51fdcb1787b5b93">compare view</a></li> </ul> </details> <br /> Updates `tj-actions/changed-files` from 70069877f29101175ed2b055d210fe8b1d54d7d7 to abdd2f68ea150cee8f236d4a9fb4e0f2491abf1b <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/tj-actions/changed-files/blob/main/HISTORY.md">tj-actions/changed-files's changelog</a>.</em></p> <blockquote> <h1>Changelog</h1> <h1><a href="https://github.com/tj-actions/changed-files/compare/v46.0.5...v47.0.0">47.0.0</a> - (2025-09-13)</h1> <h2><!-- raw HTML omitted -->🚀 Features</h2> <ul> <li>Add any_added to outputs (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2567">#2567</a>) (<a href="https://github.com/tj-actions/changed-files/commit/c260d49a827b5eb266673bed7871c5d3ee9b5aef">c260d49</a>) - (Jellyfrog)</li> </ul> <h2><!-- raw HTML omitted -->➖ Remove</h2> <ul> <li>Commit and push step from build job (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2538">#2538</a>) (<a href="https://github.com/tj-actions/changed-files/commit/be393a90381e27c9fec2c8c2e02b00f005710145">be393a9</a>) - (Tonye Jack)</li> </ul> <h2><!-- raw HTML omitted -->🔄 Update</h2> <ul> <li>Updated README.md (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2592">#2592</a>)</li> </ul> <p>Co-authored-by: github-actions[bot] <41898282+github-actions[bot]<a href="https://github.com/users"><code>@users</code></a>.noreply.github.com> (<a href="https://github.com/tj-actions/changed-files/commit/3dbc1e181273d808ccff822a6e00cf18b6628ef0">3dbc1e1</a>) - (github-actions[bot])</p> <ul> <li>Updated README.md (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2591">#2591</a>)</li> </ul> <p>Co-authored-by: github-actions[bot] <41898282+github-actions[bot]<a href="https://github.com/users"><code>@users</code></a>.noreply.github.com> (<a href="https://github.com/tj-actions/changed-files/commit/b1ccff8c0892ad141d7d2de6f31e526a9dad931f">b1ccff8</a>) - (github-actions[bot])</p> <ul> <li>Updated README.md (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2574">#2574</a>)</li> </ul> <p>Co-authored-by: github-actions[bot] <41898282+github-actions[bot]<a href="https://github.com/users"><code>@users</code></a>.noreply.github.com> (<a href="https://github.com/tj-actions/changed-files/commit/050a3d3360d29711ee9d8210fc639d902d23ad07">050a3d3</a>) - (github-actions[bot])</p> <h2><!-- raw HTML omitted -->📚 Documentation</h2> <ul> <li>Update link to glob patterns (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2590">#2590</a>) (<a href="https://github.com/tj-actions/changed-files/commit/a892f50f7a7187bc288633c09230b09ce7ad8fd0">a892f50</a>) - (Tonye Jack)</li> <li>Add Jellyfrog as a contributor for code, and doc (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2573">#2573</a>) (<a href="https://github.com/tj-actions/changed-files/commit/f000a9b97f254f9590ff26f651cccde827ad36da">f000a9b</a>) - (allcontributors[bot])</li> </ul> <h2><!-- raw HTML omitted -->🧪 Testing</h2> <ul> <li>Manual triggered workflows (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2637">#2637</a>) (<a href="https://github.com/tj-actions/changed-files/commit/c2ca2493190021783138cb8aac49bcee14b4bb89">c2ca249</a>) - (Tonye Jack)</li> </ul> <h2><!-- raw HTML omitted -->⚙️ Miscellaneous Tasks</h2> <ul> <li><strong>deps-dev:</strong> Bump jest from 30.0.5 to 30.1.3 (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2655">#2655</a>) (<a href="https://github.com/tj-actions/changed-files/commit/9a6755550a331fdcc8ec45443738933f8fa22eea">9a67555</a>) - (dependabot[bot])</li> <li><strong>deps:</strong> Bump tj-actions/git-cliff from 2.1.0 to 2.2.0 (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2660">#2660</a>) (<a href="https://github.com/tj-actions/changed-files/commit/b67e30df88f43e244f4e83775e5ad8335114fb95">b67e30d</a>) - (dependabot[bot])</li> <li><strong>deps:</strong> Bump github/codeql-action from 3.30.2 to 3.30.3 (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2661">#2661</a>) (<a href="https://github.com/tj-actions/changed-files/commit/62aef422ffa195474d80d73387535cf4622b2824">62aef42</a>) - (dependabot[bot])</li> <li><strong>deps:</strong> Bump github/codeql-action from 3.29.11 to 3.30.2 (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2659">#2659</a>) (<a href="https://github.com/tj-actions/changed-files/commit/e874f3cddd0f54ae776e6995ae6dae4cf40fd3d3">e874f3c</a>) - (dependabot[bot])</li> <li><strong>deps:</strong> Bump actions/setup-node from 4.4.0 to 5.0.0 (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2656">#2656</a>) (<a href="https://github.com/tj-actions/changed-files/commit/8c14441336bb3d84fd6b7fa83b6d7201c740baf5">8c14441</a>) - (dependabot[bot])</li> <li><strong>deps-dev:</strong> Bump <code>@types/node</code> from 24.3.0 to 24.3.1 (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2657">#2657</a>) (<a href="https://github.com/tj-actions/changed-files/commit/e995ac4be5be2bcb6e29556edc51fb63aca6b49b">e995ac4</a>) - (dependabot[bot])</li> <li><strong>deps-dev:</strong> Bump <code>@types/node</code> from 24.2.1 to 24.3.0 (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2649">#2649</a>) (<a href="https://github.com/tj-actions/changed-files/commit/3b04099b21072562f07469c10deb182b24236ca9">3b04099</a>) - (dependabot[bot])</li> <li><strong>deps:</strong> Bump github/codeql-action from 3.29.9 to 3.29.11 (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2651">#2651</a>) (<a href="https://github.com/tj-actions/changed-files/commit/e7b6c977e51984988e3cc1d6b18abe2a3ba8daaa">e7b6c97</a>) - (dependabot[bot])</li> <li><strong>deps:</strong> Bump tj-actions/git-cliff from 2.0.2 to 2.1.0 (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2648">#2648</a>) (<a href="https://github.com/tj-actions/changed-files/commit/765d62bc041415a5b494ef13d02d566128b25973">765d62b</a>) - (dependabot[bot])</li> <li><strong>deps:</strong> Bump github/codeql-action from 3.29.8 to 3.29.9 (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2647">#2647</a>) (<a href="https://github.com/tj-actions/changed-files/commit/2036da178f85576f1940fedb74bb93a36cd89ab7">2036da1</a>) - (dependabot[bot])</li> <li><strong>deps:</strong> Bump github/codeql-action from 3.29.7 to 3.29.8 (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2644">#2644</a>) (<a href="https://github.com/tj-actions/changed-files/commit/239aef84a5502c79a1cea96e495d17588c66c659">239aef8</a>) - (dependabot[bot])</li> <li><strong>deps-dev:</strong> Bump <code>@types/node</code> from 24.2.0 to 24.2.1 (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2645">#2645</a>) (<a href="https://github.com/tj-actions/changed-files/commit/a7d5f5f4919b6dbc6d3a3689887964361e8dd88f">a7d5f5f</a>) - (dependabot[bot])</li> <li><strong>deps:</strong> Bump actions/checkout from 4.2.2 to 5.0.0 (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2646">#2646</a>) (<a href="https://github.com/tj-actions/changed-files/commit/5107f3abcc0c3737db51e2949f181e2c197d4d5b">5107f3a</a>) - (dependabot[bot])</li> <li><strong>deps-dev:</strong> Bump <code>@types/node</code> from 24.1.0 to 24.2.0 (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2640">#2640</a>) (<a href="https://github.com/tj-actions/changed-files/commit/f963b3f3562b00b6d2dd25efc390eb04e51ef6c6">f963b3f</a>) - (dependabot[bot])</li> <li><strong>deps:</strong> Bump actions/download-artifact from 4.3.0 to 5.0.0 (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2641">#2641</a>) (<a href="https://github.com/tj-actions/changed-files/commit/f956744105e18d78bba3844a1199ce43d6503017">f956744</a>) - (dependabot[bot])</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tj-actions/changed-files/commit/abdd2f68ea150cee8f236d4a9fb4e0f2491abf1b"><code>abdd2f6</code></a> chore(deps): bump peter-evans/create-pull-request from 7.0.8 to 7.0.9 (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2717">#2717</a>)</li> <li><a href="https://github.com/tj-actions/changed-files/commit/1d08ab228c06cfdb5c92a6be6fb2e03654e2410c"><code>1d08ab2</code></a> chore(deps-dev): bump <code>@types/lodash</code> from 4.17.20 to 4.17.21 (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2718">#2718</a>)</li> <li><a href="https://github.com/tj-actions/changed-files/commit/085eb10d7ef84ec5ab690becdd4072966e781924"><code>085eb10</code></a> chore(deps-dev): bump eslint-plugin-jest from 29.1.0 to 29.2.1 (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2719">#2719</a>)</li> <li><a href="https://github.com/tj-actions/changed-files/commit/72321d1f003ac6191c4d5c7781eed4241a728447"><code>72321d1</code></a> chore(deps): bump github/codeql-action from 4.31.4 to 4.31.5 (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2720">#2720</a>)</li> <li><a href="https://github.com/tj-actions/changed-files/commit/8c66df4f78c44069a58c4517f775d02211a2b06b"><code>8c66df4</code></a> chore(deps-dev): bump prettier from 3.6.2 to 3.7.1 (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2722">#2722</a>)</li> <li><a href="https://github.com/tj-actions/changed-files/commit/6da3c88b60ebf09464ada9b06fba5b6f2d34bb94"><code>6da3c88</code></a> chore(deps): bump nrwl/nx-set-shas from 4.3.3 to 4.4.0 (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2712">#2712</a>)</li> <li><a href="https://github.com/tj-actions/changed-files/commit/48b6e9756da9107e9b08fcb676b292caaac1140b"><code>48b6e97</code></a> chore(deps): bump actions/checkout from 5.0.0 to 5.0.1 (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2714">#2714</a>)</li> <li><a href="https://github.com/tj-actions/changed-files/commit/4206138f174379c379efaa0f5c1d1f82a96eac0a"><code>4206138</code></a> Update README.md</li> <li><a href="https://github.com/tj-actions/changed-files/commit/31e663cd71ad1f011b9f9e87f3a710e5ebb9a658"><code>31e663c</code></a> chore(deps): bump github/codeql-action from 4.31.2 to 4.31.4 (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2715">#2715</a>)</li> <li><a href="https://github.com/tj-actions/changed-files/commit/46fd332157a59040c95f13a55162240a4b789b6c"><code>46fd332</code></a> chore(deps-dev): bump <code>@types/node</code> from 24.10.0 to 24.10.1 (<a href="https://redirect.github.com/tj-actions/changed-files/issues/2711">#2711</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tj-actions/changed-files/compare/70069877f29101175ed2b055d210fe8b1d54d7d7...abdd2f68ea150cee8f236d4a9fb4e0f2491abf1b">compare view</a></li> </ul> </details> <br /> Updates `github/codeql-action` from 4.31.3 to 4.31.6 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/github/codeql-action/releases">github/codeql-action's releases</a>.</em></p> <blockquote> <h2>v4.31.6</h2> <h1>CodeQL Action Changelog</h1> <p>See the <a href="https://github.com/github/codeql-action/releases">releases page</a> for the relevant changes to the CodeQL CLI and language packs.</p> <h2>4.31.6 - 01 Dec 2025</h2> <p>No user facing changes.</p> <p>See the full <a href="https://github.com/github/codeql-action/blob/v4.31.6/CHANGELOG.md">CHANGELOG.md</a> for more information.</p> <h2>v4.31.5</h2> <h1>CodeQL Action Changelog</h1> <p>See the <a href="https://github.com/github/codeql-action/releases">releases page</a> for the relevant changes to the CodeQL CLI and language packs.</p> <h2>4.31.5 - 24 Nov 2025</h2> <ul> <li>Update default CodeQL bundle version to 2.23.6. <a href="https://redirect.github.com/github/codeql-action/pull/3321">#3321</a></li> </ul> <p>See the full <a href="https://github.com/github/codeql-action/blob/v4.31.5/CHANGELOG.md">CHANGELOG.md</a> for more information.</p> <h2>v4.31.4</h2> <h1>CodeQL Action Changelog</h1> <p>See the <a href="https://github.com/github/codeql-action/releases">releases page</a> for the relevant changes to the CodeQL CLI and language packs.</p> <h2>4.31.4 - 18 Nov 2025</h2> <p>No user facing changes.</p> <p>See the full <a href="https://github.com/github/codeql-action/blob/v4.31.4/CHANGELOG.md">CHANGELOG.md</a> for more information.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/github/codeql-action/blob/main/CHANGELOG.md">github/codeql-action's changelog</a>.</em></p> <blockquote> <h1>CodeQL Action Changelog</h1> <p>See the <a href="https://github.com/github/codeql-action/releases">releases page</a> for the relevant changes to the CodeQL CLI and language packs.</p> <h2>[UNRELEASED]</h2> <p>No user facing changes.</p> <h2>4.31.6 - 01 Dec 2025</h2> <p>No user facing changes.</p> <h2>4.31.5 - 24 Nov 2025</h2> <ul> <li>Update default CodeQL bundle version to 2.23.6. <a href="https://redirect.github.com/github/codeql-action/pull/3321">#3321</a></li> </ul> <h2>4.31.4 - 18 Nov 2025</h2> <p>No user facing changes.</p> <h2>4.31.3 - 13 Nov 2025</h2> <ul> <li>CodeQL Action v3 will be deprecated in December 2026. The Action now logs a warning for customers who are running v3 but could be running v4. For more information, see <a href="https://github.blog/changelog/2025-10-28-upcoming-deprecation-of-codeql-action-v3/">Upcoming deprecation of CodeQL Action v3</a>.</li> <li>Update default CodeQL bundle version to 2.23.5. <a href="https://redirect.github.com/github/codeql-action/pull/3288">#3288</a></li> </ul> <h2>4.31.2 - 30 Oct 2025</h2> <p>No user facing changes.</p> <h2>4.31.1 - 30 Oct 2025</h2> <ul> <li>The <code>add-snippets</code> input has been removed from the <code>analyze</code> action. This input has been deprecated since CodeQL Action 3.26.4 in August 2024 when this removal was announced.</li> </ul> <h2>4.31.0 - 24 Oct 2025</h2> <ul> <li>Bump minimum CodeQL bundle version to 2.17.6. <a href="https://redirect.github.com/github/codeql-action/pull/3223">#3223</a></li> <li>When SARIF files are uploaded by the <code>analyze</code> or <code>upload-sarif</code> actions, the CodeQL Action automatically performs post-processing steps to prepare the data for the upload. Previously, these post-processing steps were only performed before an upload took place. We are now changing this so that the post-processing steps will always be performed, even when the SARIF files are not uploaded. This does not change anything for the <code>upload-sarif</code> action. For <code>analyze</code>, this may affect Advanced Setup for CodeQL users who specify a value other than <code>always</code> for the <code>upload</code> input. <a href="https://redirect.github.com/github/codeql-action/pull/3222">#3222</a></li> </ul> <h2>4.30.9 - 17 Oct 2025</h2> <ul> <li>Update default CodeQL bundle version to 2.23.3. <a href="https://redirect.github.com/github/codeql-action/pull/3205">#3205</a></li> <li>Experimental: A new <code>setup-codeql</code> action has been added which is similar to <code>init</code>, except it only installs the CodeQL CLI and does not initialize a database. Do not use this in production as it is part of an internal experiment and subject to change at any time. <a href="https://redirect.github.com/github/codeql-action/pull/3204">#3204</a></li> </ul> <h2>4.30.8 - 10 Oct 2025</h2> <p>No user facing changes.</p> <h2>4.30.7 - 06 Oct 2025</h2> <ul> <li>[v4+ only] The CodeQL Action now runs on Node.js v24. <a href="https://redirect.github.com/github/codeql-action/pull/3169">#3169</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/github/codeql-action/commit/fe4161a26a8629af62121b670040955b330f9af2"><code>fe4161a</code></a> Merge pull request <a href="https://redirect.github.com/github/codeql-action/issues/3336">#3336</a> from github/update-v4.31.6-ecec1f887</li> <li><a href="https://github.com/github/codeql-action/commit/88c2ab5eee3b475eef2f7aabf89bd9f052153d91"><code>88c2ab5</code></a> Update changelog for v4.31.6</li> <li><a href="https://github.com/github/codeql-action/commit/ecec1f88769052ebc45aa0affc53ea30d474cffa"><code>ecec1f8</code></a> Merge pull request <a href="https://redirect.github.com/github/codeql-action/issues/3335">#3335</a> from github/mbg/ci/run-codeql-on-all-prs</li> <li><a href="https://github.com/github/codeql-action/commit/23da73277866951560f258278028b48f68958a0a"><code>23da732</code></a> Merge pull request <a href="https://redirect.github.com/github/codeql-action/issues/3334">#3334</a> from github/kaspersv/overlay-minor-comments</li> <li><a href="https://github.com/github/codeql-action/commit/f7abc748a3da068e17cfd0e1086e8d72e51f17b6"><code>f7abc74</code></a> Remove branch filter for PR event in CodeQL workflow</li> <li><a href="https://github.com/github/codeql-action/commit/32ada5e061c0433b9e40f11632c2412a55b745f9"><code>32ada5e</code></a> Merge branch 'main' into kaspersv/overlay-minor-comments</li> <li><a href="https://github.com/github/codeql-action/commit/75b2f49aeaf4e8a9eab338ddc5d628eea7366eeb"><code>75b2f49</code></a> Merge pull request <a href="https://redirect.github.com/github/codeql-action/issues/3333">#3333</a> from github/kaspersv/overlay-no-resource-checks-option</li> <li><a href="https://github.com/github/codeql-action/commit/f036b1cb781fa664100fee1f7c56a0088663dd26"><code>f036b1c</code></a> Merge branch 'main' into kaspersv/overlay-no-resource-checks-option</li> <li><a href="https://github.com/github/codeql-action/commit/58c5954801c246a3975b658372285b37c45de271"><code>58c5954</code></a> Add comment to runnerSupportsOverlayAnalysis</li> <li><a href="https://github.com/github/codeql-action/commit/b02fa13292ce189c02cbb1ba5488f7dbbc8c6b14"><code>b02fa13</code></a> Order feature flags alphabetically</li> <li>Additional commits viewable in <a href="https://github.com/github/codeql-action/compare/014f16e7ab1402f30e7c3329d33797e7948572db...fe4161a26a8629af62121b670040955b330f9af2">compare view</a></li> </ul> </details> <br /> <details> <summary>Most Recent Ignore Conditions Applied to This Pull Request</summary> | Dependency Name | Ignore Conditions | | --- | --- | | crate-ci/typos | [>= 1.30.a, < 1.31] | </details> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
ffc3e8151a |
chore: bump @storybook/addon-docs from 9.1.2 to 9.1.16 in /site (#21000)
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs) from 9.1.2 to 9.1.16. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@storybook/addon-docs</code>'s releases</a>.</em></p> <blockquote> <h2>v9.1.16</h2> <h2>9.1.16</h2> <ul> <li>CLI: Fix Nextjs project creation in empty directories - <a href="https://redirect.github.com/storybookjs/storybook/pull/32828">#32828</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a>!</li> <li>Core: Add `experimental_devServer` preset - <a href="https://redirect.github.com/storybookjs/storybook/pull/32862">#32862</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a>!</li> <li>Telemetry: Fix preview-first-load event - <a href="https://redirect.github.com/storybookjs/storybook/pull/32859">#32859</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>v9.1.15</h2> <h2>9.1.15</h2> <ul> <li>Core: Add `preview-first-load` telemetry - <a href="https://redirect.github.com/storybookjs/storybook/pull/32770">#32770</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> <li>Dependencies: Update `vite-plugin-storybook-nextjs` - <a href="https://redirect.github.com/storybookjs/storybook/pull/32821">#32821</a>, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> </ul> <h2>v9.1.14</h2> <h2>9.1.14</h2> <ul> <li>NextJS: Add NextJS 16 support - <a href="https://redirect.github.com/storybookjs/storybook/pull/32791">#32791</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a> and <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> <li>Addon-Vitest: Support Vitest 4 - <a href="https://redirect.github.com/storybookjs/storybook/pull/32819">#32819</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a> and <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> <li>CSF: Fix `play-fn` tag for methods - <a href="https://redirect.github.com/storybookjs/storybook/pull/32695">#32695</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>v9.1.12</h2> <h2>9.1.12</h2> <ul> <li>Maintenance: Hotfix for missing nextjs dts files, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> </ul> <h2>v9.1.11</h2> <h2>9.1.11</h2> <ul> <li>Automigration: Improve the viewport/backgrounds automigration - <a href="https://redirect.github.com/storybookjs/storybook/pull/32619">#32619</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Mocking: Fix `sb.mock` usage in Storybook's deployed in subpaths - <a href="https://redirect.github.com/storybookjs/storybook/pull/32678">#32678</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>NextJS-Vite: Automatically fix bad PostCSS configuration - <a href="https://redirect.github.com/storybookjs/storybook/pull/32691">#32691</a>, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> <li>React Native Web: Fix REACT_NATIVE_AND_RNW should detect vite builder - <a href="https://redirect.github.com/storybookjs/storybook/pull/32718">#32718</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> <li>Telemetry: Add metadata for react routers - <a href="https://redirect.github.com/storybookjs/storybook/pull/32615">#32615</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>v9.1.10</h2> <h2>9.1.10</h2> <ul> <li>Automigrations: Add automigration for viewport and backgrounds - <a href="https://redirect.github.com/storybookjs/storybook/pull/31614">#31614</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Telemetry: Log userAgent in onboarding - <a href="https://redirect.github.com/storybookjs/storybook/pull/32566">#32566</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>v9.1.9</h2> <h2>9.1.9</h2> <ul> <li>Angular: Enable experimental zoneless detection on Angular v21 - <a href="https://redirect.github.com/storybookjs/storybook/pull/32580">#32580</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a>!</li> <li>Svelte: Ignore inherited <code>HTMLAttributes</code> docgen when using utility types - <a href="https://redirect.github.com/storybookjs/storybook/pull/32173">#32173</a>, thanks <a href="https://github.com/steciuk"><code>@steciuk</code></a>!</li> </ul> <h2>v9.1.8</h2> <h2>9.1.8</h2> <ul> <li>PreactVite: Add <code>node</code> entry point - <a href="https://redirect.github.com/storybookjs/storybook/pull/32534">#32534</a>, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</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/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@storybook/addon-docs</code>'s changelog</a>.</em></p> <blockquote> <h2>9.1.16</h2> <ul> <li>CLI: Fix Nextjs project creation in empty directories - <a href="https://redirect.github.com/storybookjs/storybook/pull/32828">#32828</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a>!</li> <li>Core: Add <code>experimental_devServer</code> preset - <a href="https://redirect.github.com/storybookjs/storybook/pull/32862">#32862</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a>!</li> <li>Telemetry: Fix preview-first-load event - <a href="https://redirect.github.com/storybookjs/storybook/pull/32859">#32859</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>9.1.15</h2> <ul> <li>Core: Add <code>preview-first-load</code> telemetry - <a href="https://redirect.github.com/storybookjs/storybook/pull/32770">#32770</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> <li>Dependencies: Update <code>vite-plugin-storybook-nextjs</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/32821">#32821</a>, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> </ul> <h2>9.1.14</h2> <ul> <li>NextJS: Add NextJS 16 support - <a href="https://redirect.github.com/storybookjs/storybook/pull/32791">#32791</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a> and <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> <li>Addon-Vitest: Support Vitest 4 - <a href="https://redirect.github.com/storybookjs/storybook/pull/32819">#32819</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a> and <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> <li>CSF: Fix <code>play-fn</code> tag for methods - <a href="https://redirect.github.com/storybookjs/storybook/pull/32695">#32695</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>9.1.13</h2> <ul> <li>Nextjs: Fix config access for Vite - <a href="https://redirect.github.com/storybookjs/storybook/pull/32759">#32759</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> </ul> <h2>9.1.12</h2> <ul> <li>Maintenance: Hotfix for missing nextjs dts files, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> </ul> <h2>9.1.11</h2> <ul> <li>Automigration: Improve the viewport/backgrounds automigration - <a href="https://redirect.github.com/storybookjs/storybook/pull/32619">#32619</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Mocking: Fix <code>sb.mock</code> usage in Storybook's deployed in subpaths - <a href="https://redirect.github.com/storybookjs/storybook/pull/32678">#32678</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>NextJS-Vite: Automatically fix bad PostCSS configuration - <a href="https://redirect.github.com/storybookjs/storybook/pull/32691">#32691</a>, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> <li>React Native Web: Fix REACT_NATIVE_AND_RNW should detect vite builder - <a href="https://redirect.github.com/storybookjs/storybook/pull/32718">#32718</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> <li>Telemetry: Add metadata for react routers - <a href="https://redirect.github.com/storybookjs/storybook/pull/32615">#32615</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>9.1.10</h2> <ul> <li>Automigrations: Add automigration for viewport and backgrounds - <a href="https://redirect.github.com/storybookjs/storybook/pull/31614">#31614</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Telemetry: Log userAgent in onboarding - <a href="https://redirect.github.com/storybookjs/storybook/pull/32566">#32566</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>9.1.9</h2> <ul> <li>Angular: Enable experimental zoneless detection on Angular v21 - <a href="https://redirect.github.com/storybookjs/storybook/pull/32580">#32580</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a>!</li> <li>Svelte: Ignore inherited <code>HTMLAttributes</code> docgen when using utility types - <a href="https://redirect.github.com/storybookjs/storybook/pull/32173">#32173</a>, thanks <a href="https://github.com/steciuk"><code>@steciuk</code></a>!</li> </ul> <h2>9.1.8</h2> <ul> <li>PreactVite: Add <code>node</code> entry point - <a href="https://redirect.github.com/storybookjs/storybook/pull/32534">#32534</a>, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> </ul> <h2>9.1.7</h2> <ul> <li>Dependencies: Update <code>vite-plugin-storybook-nextjs</code> to 2.0.7 - <a href="https://redirect.github.com/storybookjs/storybook/pull/32331">#32331</a>, thanks <a href="https://github.com/k35o"><code>@k35o</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/a54a04cef3ea631f2dacf3631f7f78e4453cd096"><code>a54a04c</code></a> Bump version from "9.1.15" to "9.1.16" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/d0d17d96288be91ae0969803cbfcd7849b9c98f8"><code>d0d17d9</code></a> Bump version from "9.1.14" to "9.1.15" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/5afb39f85e981d380fba4658a82fac24fa5ce51b"><code>5afb39f</code></a> Bump version from "9.1.13" to "9.1.14" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/c2483f0e584fea0a7b4c306489b506f6165dc73b"><code>c2483f0</code></a> Bump version from "9.1.12" to "9.1.13" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/efe8a7ce5bf67cdef96bb4f34a787ef0d6152745"><code>efe8a7c</code></a> Bump version from "9.1.11" to "9.1.12" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/5b2e0edf9f1b56a4708721578be83d439ebc59f5"><code>5b2e0ed</code></a> Bump version from "9.1.10" to "9.1.11" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/642f0cf47ed9463cecd67fdbad978113edc88196"><code>642f0cf</code></a> Bump version from "9.1.9" to "9.1.10" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/01867d0d587fe23765bbd43397d861a6e08223f8"><code>01867d0</code></a> Bump version from "9.1.8" to "9.1.9" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/28833d41b8d0e33bdc11244907fa8d14c8ddd1bf"><code>28833d4</code></a> Bump version from "9.1.7" to "9.1.8" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/006b304feb4cb0d2fd1408505ebeb5aababb0aad"><code>006b304</code></a> Bump version from "9.1.6" to "9.1.7" [skip ci]</li> <li>Additional commits viewable in <a href="https://github.com/storybookjs/storybook/commits/v9.1.16/code/addons/docs">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for <code>@storybook/addon-docs</code> since your current version.</p> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
61b95314ae |
chore: bump @storybook/addon-themes from 9.1.2 to 9.1.16 in /site (#21005)
Bumps [@storybook/addon-themes](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/themes) from 9.1.2 to 9.1.16. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@storybook/addon-themes</code>'s releases</a>.</em></p> <blockquote> <h2>v9.1.16</h2> <h2>9.1.16</h2> <ul> <li>CLI: Fix Nextjs project creation in empty directories - <a href="https://redirect.github.com/storybookjs/storybook/pull/32828">#32828</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a>!</li> <li>Core: Add `experimental_devServer` preset - <a href="https://redirect.github.com/storybookjs/storybook/pull/32862">#32862</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a>!</li> <li>Telemetry: Fix preview-first-load event - <a href="https://redirect.github.com/storybookjs/storybook/pull/32859">#32859</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>v9.1.15</h2> <h2>9.1.15</h2> <ul> <li>Core: Add `preview-first-load` telemetry - <a href="https://redirect.github.com/storybookjs/storybook/pull/32770">#32770</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> <li>Dependencies: Update `vite-plugin-storybook-nextjs` - <a href="https://redirect.github.com/storybookjs/storybook/pull/32821">#32821</a>, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> </ul> <h2>v9.1.14</h2> <h2>9.1.14</h2> <ul> <li>NextJS: Add NextJS 16 support - <a href="https://redirect.github.com/storybookjs/storybook/pull/32791">#32791</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a> and <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> <li>Addon-Vitest: Support Vitest 4 - <a href="https://redirect.github.com/storybookjs/storybook/pull/32819">#32819</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a> and <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> <li>CSF: Fix `play-fn` tag for methods - <a href="https://redirect.github.com/storybookjs/storybook/pull/32695">#32695</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>v9.1.12</h2> <h2>9.1.12</h2> <ul> <li>Maintenance: Hotfix for missing nextjs dts files, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> </ul> <h2>v9.1.11</h2> <h2>9.1.11</h2> <ul> <li>Automigration: Improve the viewport/backgrounds automigration - <a href="https://redirect.github.com/storybookjs/storybook/pull/32619">#32619</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Mocking: Fix `sb.mock` usage in Storybook's deployed in subpaths - <a href="https://redirect.github.com/storybookjs/storybook/pull/32678">#32678</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>NextJS-Vite: Automatically fix bad PostCSS configuration - <a href="https://redirect.github.com/storybookjs/storybook/pull/32691">#32691</a>, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> <li>React Native Web: Fix REACT_NATIVE_AND_RNW should detect vite builder - <a href="https://redirect.github.com/storybookjs/storybook/pull/32718">#32718</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> <li>Telemetry: Add metadata for react routers - <a href="https://redirect.github.com/storybookjs/storybook/pull/32615">#32615</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>v9.1.10</h2> <h2>9.1.10</h2> <ul> <li>Automigrations: Add automigration for viewport and backgrounds - <a href="https://redirect.github.com/storybookjs/storybook/pull/31614">#31614</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Telemetry: Log userAgent in onboarding - <a href="https://redirect.github.com/storybookjs/storybook/pull/32566">#32566</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>v9.1.9</h2> <h2>9.1.9</h2> <ul> <li>Angular: Enable experimental zoneless detection on Angular v21 - <a href="https://redirect.github.com/storybookjs/storybook/pull/32580">#32580</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a>!</li> <li>Svelte: Ignore inherited <code>HTMLAttributes</code> docgen when using utility types - <a href="https://redirect.github.com/storybookjs/storybook/pull/32173">#32173</a>, thanks <a href="https://github.com/steciuk"><code>@steciuk</code></a>!</li> </ul> <h2>v9.1.8</h2> <h2>9.1.8</h2> <ul> <li>PreactVite: Add <code>node</code> entry point - <a href="https://redirect.github.com/storybookjs/storybook/pull/32534">#32534</a>, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</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/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@storybook/addon-themes</code>'s changelog</a>.</em></p> <blockquote> <h2>9.1.16</h2> <ul> <li>CLI: Fix Nextjs project creation in empty directories - <a href="https://redirect.github.com/storybookjs/storybook/pull/32828">#32828</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a>!</li> <li>Core: Add <code>experimental_devServer</code> preset - <a href="https://redirect.github.com/storybookjs/storybook/pull/32862">#32862</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a>!</li> <li>Telemetry: Fix preview-first-load event - <a href="https://redirect.github.com/storybookjs/storybook/pull/32859">#32859</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>9.1.15</h2> <ul> <li>Core: Add <code>preview-first-load</code> telemetry - <a href="https://redirect.github.com/storybookjs/storybook/pull/32770">#32770</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> <li>Dependencies: Update <code>vite-plugin-storybook-nextjs</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/32821">#32821</a>, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> </ul> <h2>9.1.14</h2> <ul> <li>NextJS: Add NextJS 16 support - <a href="https://redirect.github.com/storybookjs/storybook/pull/32791">#32791</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a> and <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> <li>Addon-Vitest: Support Vitest 4 - <a href="https://redirect.github.com/storybookjs/storybook/pull/32819">#32819</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a> and <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> <li>CSF: Fix <code>play-fn</code> tag for methods - <a href="https://redirect.github.com/storybookjs/storybook/pull/32695">#32695</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>9.1.13</h2> <ul> <li>Nextjs: Fix config access for Vite - <a href="https://redirect.github.com/storybookjs/storybook/pull/32759">#32759</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> </ul> <h2>9.1.12</h2> <ul> <li>Maintenance: Hotfix for missing nextjs dts files, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> </ul> <h2>9.1.11</h2> <ul> <li>Automigration: Improve the viewport/backgrounds automigration - <a href="https://redirect.github.com/storybookjs/storybook/pull/32619">#32619</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Mocking: Fix <code>sb.mock</code> usage in Storybook's deployed in subpaths - <a href="https://redirect.github.com/storybookjs/storybook/pull/32678">#32678</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>NextJS-Vite: Automatically fix bad PostCSS configuration - <a href="https://redirect.github.com/storybookjs/storybook/pull/32691">#32691</a>, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> <li>React Native Web: Fix REACT_NATIVE_AND_RNW should detect vite builder - <a href="https://redirect.github.com/storybookjs/storybook/pull/32718">#32718</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> <li>Telemetry: Add metadata for react routers - <a href="https://redirect.github.com/storybookjs/storybook/pull/32615">#32615</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>9.1.10</h2> <ul> <li>Automigrations: Add automigration for viewport and backgrounds - <a href="https://redirect.github.com/storybookjs/storybook/pull/31614">#31614</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Telemetry: Log userAgent in onboarding - <a href="https://redirect.github.com/storybookjs/storybook/pull/32566">#32566</a>, thanks <a href="https://github.com/shilman"><code>@shilman</code></a>!</li> </ul> <h2>9.1.9</h2> <ul> <li>Angular: Enable experimental zoneless detection on Angular v21 - <a href="https://redirect.github.com/storybookjs/storybook/pull/32580">#32580</a>, thanks <a href="https://github.com/yannbf"><code>@yannbf</code></a>!</li> <li>Svelte: Ignore inherited <code>HTMLAttributes</code> docgen when using utility types - <a href="https://redirect.github.com/storybookjs/storybook/pull/32173">#32173</a>, thanks <a href="https://github.com/steciuk"><code>@steciuk</code></a>!</li> </ul> <h2>9.1.8</h2> <ul> <li>PreactVite: Add <code>node</code> entry point - <a href="https://redirect.github.com/storybookjs/storybook/pull/32534">#32534</a>, thanks <a href="https://github.com/ndelangen"><code>@ndelangen</code></a>!</li> </ul> <h2>9.1.7</h2> <ul> <li>Dependencies: Update <code>vite-plugin-storybook-nextjs</code> to 2.0.7 - <a href="https://redirect.github.com/storybookjs/storybook/pull/32331">#32331</a>, thanks <a href="https://github.com/k35o"><code>@k35o</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/a54a04cef3ea631f2dacf3631f7f78e4453cd096"><code>a54a04c</code></a> Bump version from "9.1.15" to "9.1.16" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/d0d17d96288be91ae0969803cbfcd7849b9c98f8"><code>d0d17d9</code></a> Bump version from "9.1.14" to "9.1.15" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/5afb39f85e981d380fba4658a82fac24fa5ce51b"><code>5afb39f</code></a> Bump version from "9.1.13" to "9.1.14" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/c2483f0e584fea0a7b4c306489b506f6165dc73b"><code>c2483f0</code></a> Bump version from "9.1.12" to "9.1.13" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/efe8a7ce5bf67cdef96bb4f34a787ef0d6152745"><code>efe8a7c</code></a> Bump version from "9.1.11" to "9.1.12" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/5b2e0edf9f1b56a4708721578be83d439ebc59f5"><code>5b2e0ed</code></a> Bump version from "9.1.10" to "9.1.11" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/642f0cf47ed9463cecd67fdbad978113edc88196"><code>642f0cf</code></a> Bump version from "9.1.9" to "9.1.10" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/01867d0d587fe23765bbd43397d861a6e08223f8"><code>01867d0</code></a> Bump version from "9.1.8" to "9.1.9" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/28833d41b8d0e33bdc11244907fa8d14c8ddd1bf"><code>28833d4</code></a> Bump version from "9.1.7" to "9.1.8" [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/006b304feb4cb0d2fd1408505ebeb5aababb0aad"><code>006b304</code></a> Bump version from "9.1.6" to "9.1.7" [skip ci]</li> <li>Additional commits viewable in <a href="https://github.com/storybookjs/storybook/commits/v9.1.16/code/addons/themes">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for <code>@storybook/addon-themes</code> since your current version.</p> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
2530471922 |
chore: bump the react group across 1 directory with 2 updates (#20994)
Bumps the react group with 2 updates in the /site directory: [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) and [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom). Updates `@types/react` from 19.2.2 to 19.2.7 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react">compare view</a></li> </ul> </details> <br /> Updates `@types/react-dom` from 19.2.2 to 19.2.3 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
fe963369ce |
chore: bump @types/node from 20.19.24 to 20.19.25 in /offlinedocs (#20998)
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.19.24 to 20.19.25. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
fc3e0e834f |
chore: bump @chromatic-com/storybook from 4.1.0 to 4.1.3 in /site (#21002)
Bumps [@chromatic-com/storybook](https://github.com/chromaui/addon-visual-tests) from 4.1.0 to 4.1.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/chromaui/addon-visual-tests/releases"><code>@chromatic-com/storybook</code>'s releases</a>.</em></p> <blockquote> <h2>v4.1.3</h2> <h4>🐛 Bug Fix</h4> <ul> <li>Upgrade <code>chromatic</code> to v13.3.3 <a href="https://redirect.github.com/chromaui/addon-visual-tests/pull/394">#394</a> (<a href="https://github.com/ghengeveld"><code>@ghengeveld</code></a>)</li> </ul> <h4>Authors: 1</h4> <ul> <li>Gert Hengeveld (<a href="https://github.com/ghengeveld"><code>@ghengeveld</code></a>)</li> </ul> <h2>v4.1.3-next.0</h2> <h4>🐛 Bug Fix</h4> <ul> <li>Upgrade <code>chromatic</code> to v13.3.3 <a href="https://redirect.github.com/chromaui/addon-visual-tests/pull/394">#394</a> (<a href="https://github.com/ghengeveld"><code>@ghengeveld</code></a>)</li> </ul> <h4>Authors: 1</h4> <ul> <li>Gert Hengeveld (<a href="https://github.com/ghengeveld"><code>@ghengeveld</code></a>)</li> </ul> <h2>v4.1.2</h2> <h4>🐛 Bug Fix</h4> <ul> <li>Broaden version-range for storybook peerDependency to include 10.1.0-0 <a href="https://redirect.github.com/chromaui/addon-visual-tests/pull/392">#392</a> (<a href="https://github.com/ndelangen"><code>@ndelangen</code></a>)</li> </ul> <h4>Authors: 2</h4> <ul> <li><a href="https://github.com/chromatic-support"><code>@chromatic-support</code></a></li> <li>Norbert de Langen (<a href="https://github.com/ndelangen"><code>@ndelangen</code></a>)</li> </ul> <h2>v4.1.2-next.4</h2> <h4>⚠️ Pushed to <code>next</code></h4> <ul> <li>Broaden version-range for storybook peerDependency to include 10.2.0-0 and 10.3.0-0 (<a href="https://github.com/ndelangen"><code>@ndelangen</code></a>)</li> </ul> <h4>Authors: 1</h4> <ul> <li>Norbert de Langen (<a href="https://github.com/ndelangen"><code>@ndelangen</code></a>)</li> </ul> <h2>v4.1.2-next.3</h2> <h4>⚠️ Pushed to <code>next</code></h4> <ul> <li>Update GitHub Actions workflow to fetch full git history and tags with optimized settings (<a href="https://github.com/ndelangen"><code>@ndelangen</code></a>)</li> </ul> <h4>Authors: 1</h4> <ul> <li>Norbert de Langen (<a href="https://github.com/ndelangen"><code>@ndelangen</code></a>)</li> </ul> <h2>v4.1.2-next.2</h2> <h4>⚠️ Pushed to <code>next</code></h4> <ul> <li>bump yarn version (<a href="https://github.com/ndelangen"><code>@ndelangen</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/chromaui/addon-visual-tests/blob/v4.1.3/CHANGELOG.md"><code>@chromatic-com/storybook</code>'s changelog</a>.</em></p> <blockquote> <h1>v4.1.3 (Mon Nov 17 2025)</h1> <h4>🐛 Bug Fix</h4> <ul> <li>Upgrade <code>chromatic</code> to v13.3.3 <a href="https://redirect.github.com/chromaui/addon-visual-tests/pull/394">#394</a> (<a href="https://github.com/ghengeveld"><code>@ghengeveld</code></a>)</li> </ul> <h4>Authors: 1</h4> <ul> <li>Gert Hengeveld (<a href="https://github.com/ghengeveld"><code>@ghengeveld</code></a>)</li> </ul> <hr /> <h1>v4.1.2 (Wed Oct 29 2025)</h1> <h4>🐛 Bug Fix</h4> <ul> <li>Broaden version-range for storybook peerDependency to include 10.1.0-0 <a href="https://redirect.github.com/chromaui/addon-visual-tests/pull/392">#392</a> (<a href="https://github.com/ndelangen"><code>@ndelangen</code></a>)</li> <li>Main <a href="https://redirect.github.com/chromaui/addon-visual-tests/pull/391">#391</a> (<a href="https://github.com/ndelangen"><code>@ndelangen</code></a> <a href="https://github.com/chromatic-support"><code>@chromatic-support</code></a>)</li> </ul> <h4>Authors: 2</h4> <ul> <li><a href="https://github.com/chromatic-support"><code>@chromatic-support</code></a></li> <li>Norbert de Langen (<a href="https://github.com/ndelangen"><code>@ndelangen</code></a>)</li> </ul> <hr /> <h1>v4.1.1 (Wed Aug 20 2025)</h1> <h4>🐛 Bug Fix</h4> <ul> <li>Broaden version-range for storybook peerDependency <a href="https://redirect.github.com/chromaui/addon-visual-tests/pull/389">#389</a> (<a href="https://github.com/ndelangen"><code>@ndelangen</code></a>)</li> </ul> <h4>Authors: 1</h4> <ul> <li>Norbert de Langen (<a href="https://github.com/ndelangen"><code>@ndelangen</code></a>)</li> </ul> <hr /> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/chromaui/addon-visual-tests/commit/f382bd5c24d552b1bb4a6c40ed0a6e82a7723b05"><code>f382bd5</code></a> Bump version to: 4.1.3 [skip ci]</li> <li><a href="https://github.com/chromaui/addon-visual-tests/commit/eeea23948483541818a46203cf4837de084257f7"><code>eeea239</code></a> Update CHANGELOG.md [skip ci]</li> <li><a href="https://github.com/chromaui/addon-visual-tests/commit/05e1b8a5ed17a1692639cab84c376578d26f51f0"><code>05e1b8a</code></a> Merge pull request <a href="https://redirect.github.com/chromaui/addon-visual-tests/issues/395">#395</a> from chromaui/next</li> <li><a href="https://github.com/chromaui/addon-visual-tests/commit/bf78815c1b82c8cfd3bbfbff3fe28416dd299723"><code>bf78815</code></a> Merge pull request <a href="https://redirect.github.com/chromaui/addon-visual-tests/issues/394">#394</a> from chromaui/upgrade-chromatic-cli</li> <li><a href="https://github.com/chromaui/addon-visual-tests/commit/aed7067fdfc73689503b47fa1b52c13ca6a711b5"><code>aed7067</code></a> Upgrade CLI package to v13.3.3</li> <li><a href="https://github.com/chromaui/addon-visual-tests/commit/a3af186430dd5852f8109f5cbf833b88933e8dce"><code>a3af186</code></a> Bump version to: 4.1.2 [skip ci]</li> <li><a href="https://github.com/chromaui/addon-visual-tests/commit/5c28b499ed66e891e968e7147db46330d9dbebc0"><code>5c28b49</code></a> Update CHANGELOG.md [skip ci]</li> <li><a href="https://github.com/chromaui/addon-visual-tests/commit/b5fef8d290f5b6cbb45f93e3cae7282036ec3e7f"><code>b5fef8d</code></a> Merge pull request <a href="https://redirect.github.com/chromaui/addon-visual-tests/issues/393">#393</a> from chromaui/next</li> <li><a href="https://github.com/chromaui/addon-visual-tests/commit/dbc88e78778da6d26968b6ee72c7d47ec6e0a9a6"><code>dbc88e7</code></a> Broaden version-range for storybook peerDependency to include 10.2.0-0 and 10...</li> <li><a href="https://github.com/chromaui/addon-visual-tests/commit/2b73fc62cc295aa7522975c1e386f030e20f4b67"><code>2b73fc6</code></a> Broaden version-range for storybook peerDependency to include 10.2.0-0 and 10...</li> <li>Additional commits viewable in <a href="https://github.com/chromaui/addon-visual-tests/compare/v4.1.0...v4.1.3">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
77febb1469 |
chore: bump jsdom from 27.0.1 to 27.2.0 in /site (#21001)
Bumps [jsdom](https://github.com/jsdom/jsdom) from 27.0.1 to 27.2.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jsdom/jsdom/releases">jsdom's releases</a>.</em></p> <blockquote> <h2>Version 27.2.0</h2> <ul> <li>Added <code>CSSGroupingRule</code>, <code>CSSNestedDeclarations</code>, <code>CSSConditionRule</code>, <code>CSSContainerRule</code>, <code>CSSScopeRule</code>, <code>CSSSupportsRule</code>, <code>CSSLayerBlockRule</code>, and <code>CSSLayerStatementRule</code> to jsdom <code>Window</code>s. (acemir)</li> <li>Improved CSS parsing and CSSOM object APIs via updates to <a href="https://www.npmjs.com/package/@acemir/cssom"><code>@acemir/cssom</code></a>. (acemir)</li> <li>Fixed <code>@import</code>-ed stylesheets to be properly exposed to CSSOM, and not to overwrite the sheet created from the <code><link></code> or <code><style></code> element. (acemir)</li> </ul> <h2>Version 27.1.0</h2> <ul> <li>Improved CSS parsing by switching to <a href="https://www.npmjs.com/package/@acemir/cssom"><code>@acemir/cssom</code></a>, including support for nested selectors, nested declarations, layer statements, and improved at-rule validation. (acemir)</li> <li>Fixed some selector cache invalidation issues where changes to attributes were not being picked up. (asamuzaK)</li> <li>Fixed <code>package.json</code> <code>"engines"</code> field to reflect the new minimum Node.js versions needed to run jsdom, as noted in the changelog for v27.0.1.</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/jsdom/jsdom/blob/main/Changelog.md">jsdom's changelog</a>.</em></p> <blockquote> <h2>27.2.0</h2> <ul> <li>Added <code>CSSGroupingRule</code>, <code>CSSNestedDeclarations</code>, <code>CSSConditionRule</code>, <code>CSSContainerRule</code>, <code>CSSScopeRule</code>, <code>CSSSupportsRule</code>, <code>CSSLayerBlockRule</code>, and <code>CSSLayerStatementRule</code> to jsdom <code>Window</code>s. (acemir)</li> <li>Improved CSS parsing and CSSOM object APIs via updates to <a href="https://www.npmjs.com/package/@acemir/cssom"><code>@acemir/cssom</code></a>. (acemir)</li> <li>Fixed <code>@import</code>-ed stylesheets to be properly exposed to CSSOM, and not to overwrite the sheet created from the <code><link></code> or <code><style></code> element. (acemir)</li> </ul> <h2>27.1.0</h2> <ul> <li>Improved CSS parsing by switching to <a href="https://www.npmjs.com/package/@acemir/cssom"><code>@acemir/cssom</code></a>, including support for nested selectors, nested declarations, layer statements, and improved at-rule validation. (acemir)</li> <li>Fixed some selector cache invalidation issues where changes to attributes were not being picked up. (asamuzaK)</li> <li>Fixed <code>package.json</code> <code>"engines"</code> field to reflect the new minimum Node.js versions needed to run jsdom, as noted in the changelog for v27.0.1.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsdom/jsdom/commit/b0805a908fb905ec69c4d1afc09977226927ae09"><code>b0805a9</code></a> Version 27.2.0</li> <li><a href="https://github.com/jsdom/jsdom/commit/3e07e1e1a93e5f67d6aac93046c99da94bc47625"><code>3e07e1e</code></a> Update dependencies and dev dependencies</li> <li><a href="https://github.com/jsdom/jsdom/commit/931aabedb686bb612b34afca4dc803f86976f426"><code>931aabe</code></a> Various CSSOM improvements</li> <li><a href="https://github.com/jsdom/jsdom/commit/70741dab9a9733c8c359ae82745269c5de607e44"><code>70741da</code></a> Add failing tests for border shorthand property parsing</li> <li><a href="https://github.com/jsdom/jsdom/commit/b282400b448d34477dcf539f0e5c9654e2ed4a0c"><code>b282400</code></a> Update <code>@acemir/cssom</code> dependency</li> <li><a href="https://github.com/jsdom/jsdom/commit/adb999a12912f2f5ceb49fde6b1c9f7051968dc8"><code>adb999a</code></a> Version 27.1.0</li> <li><a href="https://github.com/jsdom/jsdom/commit/91f40c4bb1ef7c814b01b8e24db33356dc233eb1"><code>91f40c4</code></a> Update dependencies and dev dependencies</li> <li><a href="https://github.com/jsdom/jsdom/commit/ebad33c3ce5eb9c2fdfb81aaa5c0ab200626aac1"><code>ebad33c</code></a> Note more strict minimum version requirement</li> <li><a href="https://github.com/jsdom/jsdom/commit/bd02585e2fd07bf846490779fba4696462d2eb94"><code>bd02585</code></a> Swap rweb-cssom to <code>@acemir/cssom</code></li> <li><a href="https://github.com/jsdom/jsdom/commit/f15c8302a03d0e9ccdef743e8297ff2e18e3f748"><code>f15c830</code></a> Add failing test for cssText setter</li> <li>Additional commits viewable in <a href="https://github.com/jsdom/jsdom/compare/27.0.1...27.2.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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
154baf3d45 |
chore: bump github.com/anthropics/anthropic-sdk-go from 1.18.0 to 1.19.0 (#21013)
Bumps [github.com/anthropics/anthropic-sdk-go](https://github.com/anthropics/anthropic-sdk-go) from 1.18.0 to 1.19.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/anthropics/anthropic-sdk-go/releases">github.com/anthropics/anthropic-sdk-go's releases</a>.</em></p> <blockquote> <h2>v1.19.0</h2> <h2>1.19.0 (2025-11-24)</h2> <p>Full Changelog: <a href="https://github.com/anthropics/anthropic-sdk-go/compare/v1.18.1...v1.19.0">v1.18.1...v1.19.0</a></p> <h3>Features</h3> <ul> <li><strong>api:</strong> adds support for Claude Opus 4.5, Effort, Advance Tool Use Features, Autocompaction, and Computer Use v5 (<a href="https://github.com/anthropics/anthropic-sdk-go/commit/a03391cb00b8c78c79fd8bfe447f00d78f37db25">a03391c</a>)</li> </ul> <h2>v1.18.1</h2> <h2>1.18.1 (2025-11-19)</h2> <p>Full Changelog: <a href="https://github.com/anthropics/anthropic-sdk-go/compare/v1.18.0...v1.18.1">v1.18.0...v1.18.1</a></p> <h3>Bug Fixes</h3> <ul> <li><strong>structured outputs:</strong> use correct beta header (<a href="https://github.com/anthropics/anthropic-sdk-go/commit/09ec0a647b1a108bb7c74e4c7b1016502ca781bb">09ec0a6</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/anthropics/anthropic-sdk-go/blob/main/CHANGELOG.md">github.com/anthropics/anthropic-sdk-go's changelog</a>.</em></p> <blockquote> <h2>1.19.0 (2025-11-24)</h2> <p>Full Changelog: <a href="https://github.com/anthropics/anthropic-sdk-go/compare/v1.18.1...v1.19.0">v1.18.1...v1.19.0</a></p> <h3>Features</h3> <ul> <li><strong>api:</strong> adds support for Claude Opus 4.5, Effort, Advance Tool Use Features, Autocompaction, and Computer Use v5 (<a href="https://github.com/anthropics/anthropic-sdk-go/commit/a03391cb00b8c78c79fd8bfe447f00d78f37db25">a03391c</a>)</li> </ul> <h2>1.18.1 (2025-11-19)</h2> <p>Full Changelog: <a href="https://github.com/anthropics/anthropic-sdk-go/compare/v1.18.0...v1.18.1">v1.18.0...v1.18.1</a></p> <h3>Bug Fixes</h3> <ul> <li><strong>structured outputs:</strong> use correct beta header (<a href="https://github.com/anthropics/anthropic-sdk-go/commit/09ec0a647b1a108bb7c74e4c7b1016502ca781bb">09ec0a6</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/anthropics/anthropic-sdk-go/commit/0e4a219d952e839fbbfe42e54282e44c1c28f1fb"><code>0e4a219</code></a> release: 1.19.0</li> <li><a href="https://github.com/anthropics/anthropic-sdk-go/commit/9ea2999a49dac535ab07ff6a94aaf70f4ec3b85a"><code>9ea2999</code></a> feat(api): adds support for Claude Opus 4.5, Effort, Advance Tool Use Feature...</li> <li><a href="https://github.com/anthropics/anthropic-sdk-go/commit/9d1fca29394cf4a2aff51e99b4b089882cf0b769"><code>9d1fca2</code></a> release: 1.18.1</li> <li><a href="https://github.com/anthropics/anthropic-sdk-go/commit/f79df507220e2a46ca26e00562fd0300de1fe99f"><code>f79df50</code></a> fix(structured outputs): use correct beta header</li> <li><a href="https://github.com/anthropics/anthropic-sdk-go/commit/9c3ce43f8b134b0f74449bf258f5a6828f80f59d"><code>9c3ce43</code></a> codegen metadata</li> <li>See full diff in <a href="https://github.com/anthropics/anthropic-sdk-go/compare/v1.18.0...v1.19.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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |