Skip to content

deps: Bump the go-dependencies group with 3 updates - #425

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/go-dependencies-a5ca031a19
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/go-dependencies-a5ca031a19

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 21, 2026

Copy link
Copy Markdown
Contributor

Bumps the go-dependencies group with 3 updates: github.com/anthropics/anthropic-sdk-go, github.com/github/copilot-sdk/go and github.com/mark3labs/mcp-go.

Updates github.com/anthropics/anthropic-sdk-go from 1.72.0 to 1.73.0

Release notes

Sourced from github.com/anthropics/anthropic-sdk-go's releases.

v1.73.0

1.73.0 (2026-09-15)

Full Changelog: v1.72.0...v1.73.0

Features

  • api: add compaction parameter and signed compaction blocks (beta) (e8fde9a)
  • api: add enum types for workspace data-residency geo fields (2a6278f)
  • api: add thinking_mismatch_allowed entries to input_transformations (beta) (94f69a4)
  • api: add url_sources to the web fetch tool (739316b)
  • api: add workspace_id parameter to user profiles methods (2fe76c4)

Bug Fixes

  • api: use one input transformation type for message and delta event (4ce03aa)
  • tests: compare the input transformation reason as a string (e1c9fb6)

Chores

  • docs: clarify that session_thread_id on tool use events is informational (4c1ee73)
  • docs: correct the compaction beta's parameter descriptions (5716f68)
  • internal: move the default HTTP client constructor into internal/requestconfig (ffb85e5)
  • tests: stop the mock server without failing a passing test run (b03bf9d)

Documentation

  • api: add descriptions to enum constants (2fc6555)
  • api: clarify usage.iterations entry typing under server-side fallback (1661494)
  • api: fix typo in temperature deprecation message (6295557)
  • stop documenting unions with their first variant's description (e8d63c8)
Changelog

Sourced from github.com/anthropics/anthropic-sdk-go's changelog.

1.73.0 (2026-09-15)

Full Changelog: v1.72.0...v1.73.0

Features

  • api: add compaction parameter and signed compaction blocks (beta) (e8fde9a)
  • api: add enum types for workspace data-residency geo fields (2a6278f)
  • api: add thinking_mismatch_allowed entries to input_transformations (beta) (94f69a4)
  • api: add url_sources to the web fetch tool (739316b)
  • api: add workspace_id parameter to user profiles methods (2fe76c4)

Bug Fixes

  • api: use one input transformation type for message and delta event (4ce03aa)
  • tests: compare the input transformation reason as a string (e1c9fb6)

Chores

  • docs: clarify that session_thread_id on tool use events is informational (4c1ee73)
  • docs: correct the compaction beta's parameter descriptions (5716f68)
  • internal: move the default HTTP client constructor into internal/requestconfig (ffb85e5)
  • tests: stop the mock server without failing a passing test run (b03bf9d)

Documentation

  • api: add descriptions to enum constants (2fc6555)
  • api: clarify usage.iterations entry typing under server-side fallback (1661494)
  • api: fix typo in temperature deprecation message (6295557)
  • stop documenting unions with their first variant's description (e8d63c8)
Commits
  • 394d253 Merge pull request #439 from anthropics/release-please--branches--main--chang...
  • 2fe81ca release: 1.73.0
  • 5716f68 chore(docs): correct the compaction beta's parameter descriptions
  • e8fde9a feat(api): add compaction parameter and signed compaction blocks (beta)
  • e1c9fb6 fix(tests): compare the input transformation reason as a string
  • 4ce03aa fix(api): use one input transformation type for message and delta event
  • 739316b feat(api): add url_sources to the web fetch tool
  • 2fc6555 docs(api): add descriptions to enum constants
  • b03bf9d chore(tests): stop the mock server without failing a passing test run
  • 94f69a4 feat(api): add thinking_mismatch_allowed entries to input_transformations (beta)
  • Additional commits viewable in compare view

Updates github.com/github/copilot-sdk/go from 1.0.13 to 1.0.14

Release notes

Sourced from github.com/github/copilot-sdk/go's releases.

v1.0.14

Feature: typed message provenance for user, system, and agent sources

Messages sent through the SDK can now carry typed source provenance, distinguishing human user input, internal system injections, and identified agent- senders, so recipients can reliably tell agent input from human authorization. (#2573)

await session.send("Looks good to me.", { source: "agent-reviewer" });
await session.send("Looks good to me.", source=AgentMessageSource("reviewer"))

Feature: Auto model routing Fast tier

Sessions using auto model routing can now select the fast tier alongside the existing efficiency, balance, and intelligence tiers, giving integrators a latency-focused routing preset across all six SDKs. (#2669)

await session.setAutoTier("fast");

Feature: force-refresh managed settings cache

The new managedSettings.clearCache RPC method wipes the persistent server-policy cache and drops the runtime's in-memory retained policy, giving hosts a primitive for a "force refresh account policy" action. (#2438)

await client.rpc.managedSettings.clearCache();
await client.Rpc.ManagedSettings.ClearCacheAsync();

Feature: Rust SDK model allowlists

SessionConfig and ResumeSessionConfig in the Rust SDK now accept an optional allowed_models list, letting hosts restrict which model IDs a session may use without duplicating runtime validation. (#2512)

let config = SessionConfig::default().with_allowed_models(["gpt-4o", "claude-3.7-sonnet"]);

Other changes

  • feature: [Core] add factory pause checkpoints for the Node.js Agent Factories API, letting a paused run resume without losing invocation limits or execution identity (#2537)
  • feature: forward the optional host OAuth client metadata URL across all six SDKs on session create and resume (#2258)
  • feature: [TypeScript] add max_output_tokens to the model capabilities override, previously unreachable without an unsafe cast (#2569)
  • bugfix: [.NET] include Copilot CLI runtime assets in PackAsTool packages so dotnet pack --no-build produces a working tool (#2557)
  • bugfix: apply the runtime's connection_close callback-quiescence contract consistently across all six in-process C ABI adapters, preventing races with freed callback state during disposal (#2610, #2622)
  • bugfix: [Rust] fix codegen for CLI 1.0.84 schemas, correctly mapping the CatalogTrustEligibility unknown value and re-exporting shared session-event types (#2631)
  • bugfix: [C#] fix codegen for runtime schema unions, unblocking single-variant anyOf/oneOf handling (#2656)

... (truncated)

Changelog

Sourced from github.com/github/copilot-sdk/go's changelog.

v1.0.14 (2026-09-16)

Feature: typed message provenance for user, system, and agent sources

Messages sent through the SDK can now carry typed source provenance, distinguishing human user input, internal system injections, and identified agent- senders, so recipients can reliably tell agent input from human authorization. (#2573)

await session.send("Looks good to me.", { source: "agent-reviewer" });
await session.send("Looks good to me.", source=AgentMessageSource("reviewer"))

Feature: Auto model routing Fast tier

Sessions using auto model routing can now select the fast tier alongside the existing efficiency, balance, and intelligence tiers, giving integrators a latency-focused routing preset across all six SDKs. (#2669)

await session.setAutoTier("fast");

Feature: force-refresh managed settings cache

The new managedSettings.clearCache RPC method wipes the persistent server-policy cache and drops the runtime's in-memory retained policy, giving hosts a primitive for a "force refresh account policy" action. (#2438)

await client.rpc.managedSettings.clearCache();
await client.Rpc.ManagedSettings.ClearCacheAsync();

Feature: Rust SDK model allowlists

SessionConfig and ResumeSessionConfig in the Rust SDK now accept an optional allowed_models list, letting hosts restrict which model IDs a session may use without duplicating runtime validation. (#2512)

let config = SessionConfig::default().with_allowed_models(["gpt-4o", "claude-3.7-sonnet"]);

Other changes

  • feature: [Core] add factory pause checkpoints for the Node.js Agent Factories API, letting a paused run resume without losing invocation limits or execution identity (#2537)
  • feature: forward the optional host OAuth client metadata URL across all six SDKs on session create and resume (#2258)
  • feature: [TypeScript] add max_output_tokens to the model capabilities override, previously unreachable without an unsafe cast (#2569)
  • bugfix: [.NET] include Copilot CLI runtime assets in PackAsTool packages so dotnet pack --no-build produces a working tool (#2557)
  • bugfix: apply the runtime's connection_close callback-quiescence contract consistently across all six in-process C ABI adapters, preventing races with freed callback state during disposal (#2610, #2622)
  • bugfix: [Rust] fix codegen for CLI 1.0.84 schemas, correctly mapping the CatalogTrustEligibility unknown value and re-exporting shared session-event types (#2631)

... (truncated)

Commits

Updates github.com/mark3labs/mcp-go from 1.0.0 to 1.1.0

Commits
  • c413b9e fix: reject SSE restart after close (#968)
  • 320fd42 fix(transport): skip unsupported SIGTERM on Windows stdio Close (#978)
  • d55a9a1 feat(mcp): keep tool schema property order through decode and encode (#984)
  • 65844e4 fix(server): cancel task execution on TTL expiration (#982)
  • 0407a98 fix(mcp): decode the result envelope in the prompts/get and resources/read pa...
  • 912f19e feat(mcptest): support roots handlers (#955)
  • e06b9e0 feat(client): configure in-process handlers together (#953)
  • See full diff in compare view

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 commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <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

Bumps the go-dependencies group with 3 updates: [github.com/anthropics/anthropic-sdk-go](https://github.com/anthropics/anthropic-sdk-go), [github.com/github/copilot-sdk/go](https://github.com/github/copilot-sdk) and [github.com/mark3labs/mcp-go](https://github.com/mark3labs/mcp-go).


Updates `github.com/anthropics/anthropic-sdk-go` from 1.72.0 to 1.73.0
- [Release notes](https://github.com/anthropics/anthropic-sdk-go/releases)
- [Changelog](https://github.com/anthropics/anthropic-sdk-go/blob/main/CHANGELOG.md)
- [Commits](anthropics/anthropic-sdk-go@v1.72.0...v1.73.0)

Updates `github.com/github/copilot-sdk/go` from 1.0.13 to 1.0.14
- [Release notes](https://github.com/github/copilot-sdk/releases)
- [Changelog](https://github.com/github/copilot-sdk/blob/main/CHANGELOG.md)
- [Commits](github/copilot-sdk@v1.0.13...v1.0.14)

Updates `github.com/mark3labs/mcp-go` from 1.0.0 to 1.1.0
- [Release notes](https://github.com/mark3labs/mcp-go/releases)
- [Commits](mark3labs/mcp-go@v1.0.0...v1.1.0)

---
updated-dependencies:
- dependency-name: github.com/anthropics/anthropic-sdk-go
  dependency-version: 1.73.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/github/copilot-sdk/go
  dependency-version: 1.0.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/mark3labs/mcp-go
  dependency-version: 1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Sep 21, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: go. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot Bot added the dependencies Dependency updates label Sep 21, 2026
@dependabot
dependabot Bot requested a review from jongio as a code owner September 21, 2026 01:54
@dependabot dependabot Bot added the dependencies Dependency updates label Sep 21, 2026
@github-actions

Copy link
Copy Markdown
Contributor

Benchmarks: linux-amd64

📊 Results vs main (same-runner) , click to expand
goos: linux
goarch: amd64
pkg: github.com/jongio/grut/internal/ai
cpu: AMD EPYC 7763 64-Core Processor                
                                       │ bench-baseline.txt │         bench-current.txt          │
                                       │       sec/op       │    sec/op     vs base              │
RedactContent/small_500B-4                      111.9µ ± 3%   112.4µ ±  1%       ~ (p=0.699 n=6)
RedactContent/medium_5KB-4                      1.556m ± 1%   1.545m ±  1%  -0.69% (p=0.041 n=6)
RedactContent/large_50KB-4                      16.68m ± 3%   16.59m ±  6%       ~ (p=0.485 n=6)
RedactContent_NoMatch/small_500B-4              163.2µ ± 4%   159.2µ ±  2%  -2.48% (p=0.026 n=6)
RedactContent_NoMatch/medium_5KB-4              1.867m ± 3%   1.889m ± 17%       ~ (p=0.310 n=6)
RedactContent_NoMatch/large_50KB-4              19.66m ± 1%   19.72m ±  1%       ~ (p=0.937 n=6)
ShouldExcludeFile/match_builtin-4               69.49n ± 2%   68.29n ±  3%       ~ (p=0.240 n=6)
ShouldExcludeFile/match_user_pattern-4          2.408µ ± 0%   2.408µ ±  1%       ~ (p=0.848 n=6)
ShouldExcludeFile/no_match-4                    1.665µ ± 0%   1.667µ ±  0%       ~ (p=0.132 n=6)
NewRedactor-4                                   787.6n ± 2%   787.1n ±  2%       ~ (p=0.485 n=6)
geomean                                         72.13µ        71.88µ        -0.35%

                                       │ bench-baseline.txt │            bench-current.txt            │
                                       │        B/op        │      B/op       vs base                 │
RedactContent/small_500B-4                2.879Ki ±    0%     2.879Ki ±   0%        ~ (p=0.394 n=6)
RedactContent/medium_5KB-4                36.28Ki ±    0%     36.31Ki ±   1%        ~ (p=0.589 n=6)
RedactContent/large_50KB-4                370.3Ki ±    0%     370.3Ki ±   0%        ~ (p=0.732 n=6)
RedactContent_NoMatch/small_500B-4          4.000 ±     ?       2.000 ±    ?        ~ (p=1.000 n=6)
RedactContent_NoMatch/medium_5KB-4          67.50 ±   99%       35.00 ± 129%        ~ (p=1.000 n=6)
RedactContent_NoMatch/large_50KB-4          8.000 ± 1412%     120.000 ±  93%        ~ (p=0.152 n=6)
ShouldExcludeFile/match_builtin-4           0.000 ±    0%       0.000 ±   0%        ~ (p=1.000 n=6) ¹
ShouldExcludeFile/match_user_pattern-4      0.000 ±    0%       0.000 ±   0%        ~ (p=1.000 n=6) ¹
ShouldExcludeFile/no_match-4                0.000 ±    0%       0.000 ±   0%        ~ (p=1.000 n=6) ¹
NewRedactor-4                             1.320Ki ±    0%     1.320Ki ±   0%        ~ (p=1.000 n=6) ¹
geomean                                                   ²                   +14.56%               ²
¹ all samples are equal
² summaries must be >0 to compute geomean

                                       │ bench-baseline.txt │         bench-current.txt          │
                                       │     allocs/op      │ allocs/op   vs base                │
RedactContent/small_500B-4                     12.00 ± 0%     12.00 ± 0%       ~ (p=1.000 n=6) ¹
RedactContent/medium_5KB-4                     60.00 ± 0%     60.00 ± 0%       ~ (p=1.000 n=6) ¹
RedactContent/large_50KB-4                     483.0 ± 0%     483.0 ± 0%       ~ (p=1.000 n=6)
RedactContent_NoMatch/small_500B-4             0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
RedactContent_NoMatch/medium_5KB-4             0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
RedactContent_NoMatch/large_50KB-4             0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
ShouldExcludeFile/match_builtin-4              0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
ShouldExcludeFile/match_user_pattern-4         0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
ShouldExcludeFile/no_match-4                   0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
NewRedactor-4                                  5.000 ± 0%     5.000 ± 0%       ~ (p=1.000 n=6) ¹
geomean                                                   ²               +0.00%               ²
¹ all samples are equal
² summaries must be >0 to compute geomean

pkg: github.com/jongio/grut/internal/config
                                   │ bench-baseline.txt │         bench-current.txt         │
                                   │       sec/op       │   sec/op     vs base              │
Validate/valid_defaults-4                   2.383µ ± 1%   2.375µ ± 2%       ~ (p=0.851 n=6)
Validate/with_arrays-4                      9.402µ ± 1%   9.518µ ± 2%       ~ (p=0.240 n=6)
Validate/invalid_multi_error-4              5.354µ ± 3%   5.382µ ± 1%       ~ (p=0.974 n=6)
ParseDefaultsTOML-4                         33.86µ ± 1%   33.97µ ± 0%       ~ (p=0.394 n=6)
RejectEmbeddedKeys/clean_config-4           1.562µ ± 2%   1.579µ ± 2%       ~ (p=0.084 n=6)
RejectEmbeddedKeys/with_patterns-4          9.859µ ± 2%   9.912µ ± 1%       ~ (p=0.180 n=6)
AppendEnumErr/match_first-4                 33.92n ± 2%   33.88n ± 5%       ~ (p=0.818 n=6)
AppendEnumErr/match_last-4                  34.09n ± 2%   34.29n ± 1%       ~ (p=0.132 n=6)
AppendEnumErr/no_match-4                    886.4n ± 2%   890.4n ± 2%       ~ (p=0.394 n=6)
geomean                                     1.588µ        1.595µ       +0.47%

                                   │ bench-baseline.txt │          bench-current.txt           │
                                   │        B/op        │     B/op      vs base                │
Validate/valid_defaults-4                  868.0 ± 0%       868.0 ± 0%       ~ (p=0.636 n=6)
Validate/with_arrays-4                     868.0 ± 0%       867.0 ± 0%       ~ (p=0.535 n=6)
Validate/invalid_multi_error-4           2.039Ki ± 0%     2.038Ki ± 0%       ~ (p=0.310 n=6)
ParseDefaultsTOML-4                      1.836Ki ± 0%     1.836Ki ± 0%       ~ (p=1.000 n=6)
RejectEmbeddedKeys/clean_config-4          0.000 ± 0%       0.000 ± 0%       ~ (p=1.000 n=6) ¹
RejectEmbeddedKeys/with_patterns-4         0.000 ± 0%       0.000 ± 0%       ~ (p=1.000 n=6) ¹
AppendEnumErr/match_first-4                48.00 ± 0%       48.00 ± 0%       ~ (p=1.000 n=6) ¹
AppendEnumErr/match_last-4                 48.00 ± 0%       48.00 ± 0%       ~ (p=1.000 n=6) ¹
AppendEnumErr/no_match-4                   346.0 ± 0%       346.0 ± 0%       ~ (p=1.000 n=6)
geomean                                               ²                 -0.02%               ²
¹ all samples are equal
² summaries must be >0 to compute geomean

                                   │ bench-baseline.txt │         bench-current.txt          │
                                   │     allocs/op      │ allocs/op   vs base                │
Validate/valid_defaults-4                  18.00 ± 0%     18.00 ± 0%       ~ (p=1.000 n=6) ¹
Validate/with_arrays-4                     18.00 ± 0%     18.00 ± 0%       ~ (p=1.000 n=6) ¹
Validate/invalid_multi_error-4             58.00 ± 0%     58.00 ± 0%       ~ (p=1.000 n=6) ¹
ParseDefaultsTOML-4                        52.00 ± 0%     52.00 ± 0%       ~ (p=1.000 n=6) ¹
RejectEmbeddedKeys/clean_config-4          0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
RejectEmbeddedKeys/with_patterns-4         0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
AppendEnumErr/match_first-4                1.000 ± 0%     1.000 ± 0%       ~ (p=1.000 n=6) ¹
AppendEnumErr/match_last-4                 1.000 ± 0%     1.000 ± 0%       ~ (p=1.000 n=6) ¹
AppendEnumErr/no_match-4                   12.00 ± 0%     12.00 ± 0%       ~ (p=1.000 n=6) ¹
geomean                                               ²               +0.00%               ²
¹ all samples are equal
² summaries must be >0 to compute geomean

pkg: github.com/jongio/grut/internal/crashlog
                                 │ bench-baseline.txt │         bench-current.txt         │
                                 │       sec/op       │   sec/op     vs base              │
ScrubPII/small_100B-4                     12.88µ ± 1%   12.95µ ± 2%       ~ (p=0.310 n=6)
ScrubPII/medium_1KB-4                     225.8µ ± 1%   228.0µ ± 1%       ~ (p=0.093 n=6)
ScrubPII/large_10KB-4                     3.166m ± 3%   3.107m ± 2%  -1.85% (p=0.009 n=6)
ScrubPII_NoSecrets/100B-4                 23.69µ ± 2%   23.59µ ± 0%       ~ (p=0.485 n=6)
ScrubPII_NoSecrets/1KB-4                  234.3µ ± 2%   233.9µ ± 1%       ~ (p=0.589 n=6)
ScrubPII_NoSecrets/10KB-4                 3.036m ± 7%   2.906m ± 9%  -4.26% (p=0.041 n=6)
ScrubLogTail/10_entries-4                 129.1µ ± 1%   129.5µ ± 1%       ~ (p=0.485 n=6)
ScrubLogTail/50_entries-4                 645.9µ ± 0%   650.2µ ± 1%       ~ (p=0.093 n=6)
ScrubLogTail/100_entries_mixed-4          10.83m ± 1%   10.93m ± 6%       ~ (p=0.310 n=6)
geomean                                   373.1µ        371.7µ       -0.38%

                                 │ bench-baseline.txt │         bench-current.txt          │
                                 │        B/op        │     B/op      vs base              │
ScrubPII/small_100B-4                      914.0 ± 0%     913.0 ± 0%       ~ (p=0.407 n=6)
ScrubPII/medium_1KB-4                    11.89Ki ± 0%   11.89Ki ± 0%       ~ (p=0.632 n=6)
ScrubPII/large_10KB-4                    228.1Ki ± 0%   228.4Ki ± 0%       ~ (p=0.258 n=6)
ScrubPII_NoSecrets/100B-4                1.175Ki ± 0%   1.174Ki ± 0%       ~ (p=0.556 n=6)
ScrubPII_NoSecrets/1KB-4                 10.09Ki ± 0%   10.09Ki ± 0%       ~ (p=0.481 n=6)
ScrubPII_NoSecrets/10KB-4                101.0Ki ± 0%   101.1Ki ± 0%       ~ (p=0.310 n=6)
ScrubLogTail/10_entries-4                9.085Ki ± 0%   9.085Ki ± 0%       ~ (p=0.658 n=6)
ScrubLogTail/50_entries-4                45.53Ki ± 0%   45.53Ki ± 0%       ~ (p=0.944 n=6)
ScrubLogTail/100_entries_mixed-4         545.7Ki ± 0%   545.5Ki ± 0%       ~ (p=0.848 n=6)
geomean                                  20.55Ki        20.55Ki       +0.00%

                                 │ bench-baseline.txt │          bench-current.txt          │
                                 │     allocs/op      │  allocs/op   vs base                │
ScrubPII/small_100B-4                      17.00 ± 0%    17.00 ± 0%       ~ (p=1.000 n=6) ¹
ScrubPII/medium_1KB-4                      27.00 ± 0%    27.00 ± 0%       ~ (p=1.000 n=6) ¹
ScrubPII/large_10KB-4                      79.00 ± 1%    79.00 ± 1%       ~ (p=1.000 n=6)
ScrubPII_NoSecrets/100B-4                  15.00 ± 0%    15.00 ± 0%       ~ (p=1.000 n=6) ¹
ScrubPII_NoSecrets/1KB-4                   15.00 ± 0%    15.00 ± 0%       ~ (p=1.000 n=6) ¹
ScrubPII_NoSecrets/10KB-4                  15.00 ± 0%    15.00 ± 0%       ~ (p=1.000 n=6) ¹
ScrubLogTail/10_entries-4                  171.0 ± 0%    171.0 ± 0%       ~ (p=1.000 n=6) ¹
ScrubLogTail/50_entries-4                  851.0 ± 0%    851.0 ± 0%       ~ (p=1.000 n=6) ¹
ScrubLogTail/100_entries_mixed-4          1.909k ± 0%   1.909k ± 0%       ~ (p=1.000 n=6) ¹
geomean                                    68.68         68.68       +0.00%
¹ all samples are equal

pkg: github.com/jongio/grut/internal/git
                               │ bench-baseline.txt │         bench-current.txt         │
                               │       sec/op       │   sec/op     vs base              │
ParseStatus/10_files-4                 1.785µ ±  3%   1.789µ ± 2%       ~ (p=0.974 n=6)
ParseStatus/100_files-4                15.52µ ±  4%   15.74µ ± 2%       ~ (p=0.699 n=6)
ParseStatus/500_files-4                75.13µ ±  4%   75.73µ ± 1%       ~ (p=0.699 n=6)
ParseStatus/100_renamed-4              23.22µ ±  2%   23.54µ ± 4%       ~ (p=0.394 n=6)
ParseStatusBranch-4                    1.693µ ±  3%   1.690µ ± 2%       ~ (p=0.584 n=6)
ParseDiff/10_lines-4                   1.056µ ±  2%   1.063µ ± 2%       ~ (p=0.485 n=6)
ParseDiff/100_lines-4                  6.731µ ±  5%   6.770µ ± 2%       ~ (p=0.937 n=6)
ParseDiff/1000_lines-4                 67.54µ ± 12%   67.40µ ± 2%       ~ (p=0.699 n=6)
ParseHunkHeader/simple-4               99.51n ±  2%   99.59n ± 1%       ~ (p=1.000 n=6)
ParseHunkHeader/with_context-4         105.8n ±  1%   105.7n ± 1%       ~ (p=0.701 n=6)
ParseHunkHeader/large_range-4          118.2n ±  1%   118.2n ± 2%       ~ (p=0.848 n=6)
UndoStack/record_50-4                  20.46µ ±  2%   20.58µ ± 2%       ~ (p=0.485 n=6)
UndoStack/record_overflow-4            82.14µ ±  2%   80.50µ ± 2%       ~ (p=0.065 n=6)
UndoStack/peek_undo-4                  8.466n ±  0%   8.472n ± 0%       ~ (p=0.485 n=6)
UndoStack/can_undo_redo-4              11.35n ±  0%   11.34n ± 0%       ~ (p=0.067 n=6)
JoinPaths-4                            1.202µ ±  3%   1.199µ ± 1%       ~ (p=0.554 n=6)
SplitPaths-4                           2.266µ ±  4%   2.226µ ± 2%       ~ (p=0.310 n=6)
geomean                                1.798µ         1.799µ       +0.06%

                               │ bench-baseline.txt │          bench-current.txt           │
                               │        B/op        │     B/op      vs base                │
ParseStatus/10_files-4               2.641Ki ± 0%     2.641Ki ± 0%       ~ (p=1.000 n=6) ¹
ParseStatus/100_files-4              24.66Ki ± 0%     24.66Ki ± 0%       ~ (p=1.000 n=6) ¹
ParseStatus/500_files-4              111.9Ki ± 0%     111.9Ki ± 0%       ~ (p=1.000 n=6) ¹
ParseStatus/100_renamed-4            32.16Ki ± 0%     32.16Ki ± 0%       ~ (p=1.000 n=6) ¹
ParseStatusBranch-4                    928.0 ± 0%       928.0 ± 0%       ~ (p=1.000 n=6) ¹
ParseDiff/10_lines-4                 1.703Ki ± 0%     1.703Ki ± 0%       ~ (p=1.000 n=6) ¹
ParseDiff/100_lines-4                11.02Ki ± 0%     11.02Ki ± 0%       ~ (p=1.000 n=6) ¹
ParseDiff/1000_lines-4               116.5Ki ± 0%     116.5Ki ± 0%       ~ (p=1.000 n=6) ¹
ParseHunkHeader/simple-4               32.00 ± 0%       32.00 ± 0%       ~ (p=1.000 n=6) ¹
ParseHunkHeader/with_context-4         32.00 ± 0%       32.00 ± 0%       ~ (p=1.000 n=6) ¹
ParseHunkHeader/large_range-4          32.00 ± 0%       32.00 ± 0%       ~ (p=1.000 n=6) ¹
UndoStack/record_50-4                22.91Ki ± 0%     22.91Ki ± 0%       ~ (p=1.000 n=6)
UndoStack/record_overflow-4          87.27Ki ± 0%     87.27Ki ± 0%       ~ (p=1.000 n=6)
UndoStack/peek_undo-4                  0.000 ± 0%       0.000 ± 0%       ~ (p=1.000 n=6) ¹
UndoStack/can_undo_redo-4              0.000 ± 0%       0.000 ± 0%       ~ (p=1.000 n=6) ¹
JoinPaths-4                          2.625Ki ± 0%     2.625Ki ± 0%       ~ (p=1.000 n=6) ¹
SplitPaths-4                         6.062Ki ± 0%     6.062Ki ± 0%       ~ (p=1.000 n=6) ¹
geomean                                           ²                 +0.00%               ²
¹ all samples are equal
² summaries must be >0 to compute geomean

                               │ bench-baseline.txt │         bench-current.txt          │
                               │     allocs/op      │ allocs/op   vs base                │
ParseStatus/10_files-4                 14.00 ± 0%     14.00 ± 0%       ~ (p=1.000 n=6) ¹
ParseStatus/100_files-4                89.00 ± 0%     89.00 ± 0%       ~ (p=1.000 n=6) ¹
ParseStatus/500_files-4                411.0 ± 0%     411.0 ± 0%       ~ (p=1.000 n=6) ¹
ParseStatus/100_renamed-4              209.0 ± 0%     209.0 ± 0%       ~ (p=1.000 n=6) ¹
ParseStatusBranch-4                    2.000 ± 0%     2.000 ± 0%       ~ (p=1.000 n=6) ¹
ParseDiff/10_lines-4                   9.000 ± 0%     9.000 ± 0%       ~ (p=1.000 n=6) ¹
ParseDiff/100_lines-4                  46.00 ± 0%     46.00 ± 0%       ~ (p=1.000 n=6) ¹
ParseDiff/1000_lines-4                 448.0 ± 0%     448.0 ± 0%       ~ (p=1.000 n=6) ¹
ParseHunkHeader/simple-4               1.000 ± 0%     1.000 ± 0%       ~ (p=1.000 n=6) ¹
ParseHunkHeader/with_context-4         1.000 ± 0%     1.000 ± 0%       ~ (p=1.000 n=6) ¹
ParseHunkHeader/large_range-4          1.000 ± 0%     1.000 ± 0%       ~ (p=1.000 n=6) ¹
UndoStack/record_50-4                  208.0 ± 0%     208.0 ± 0%       ~ (p=1.000 n=6) ¹
UndoStack/record_overflow-4            811.0 ± 0%     811.0 ± 0%       ~ (p=1.000 n=6) ¹
UndoStack/peek_undo-4                  0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
UndoStack/can_undo_redo-4              0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
JoinPaths-4                            1.000 ± 0%     1.000 ± 0%       ~ (p=1.000 n=6) ¹
SplitPaths-4                           7.000 ± 0%     7.000 ± 0%       ~ (p=1.000 n=6) ¹
geomean                                           ²               +0.00%               ²
¹ all samples are equal
² summaries must be >0 to compute geomean

pkg: github.com/jongio/grut/internal/markdown
                                   │ bench-baseline.txt │         bench-current.txt         │
                                   │       sec/op       │   sec/op     vs base              │
RenderStaticCached/same_width-4             534.0µ ± 1%   530.5µ ± 1%       ~ (p=0.132 n=6)
RenderStaticCached/varying_width-4          607.8µ ± 9%   604.4µ ± 1%       ~ (p=0.394 n=6)
RenderStaticCold-4                          545.8µ ± 1%   550.6µ ± 6%       ~ (p=0.699 n=6)
geomean                                     561.6µ        561.0µ       -0.11%

                                   │ bench-baseline.txt │         bench-current.txt          │
                                   │        B/op        │     B/op      vs base              │
RenderStaticCached/same_width-4            122.0Ki ± 0%   121.7Ki ± 0%       ~ (p=0.240 n=6)
RenderStaticCached/varying_width-4         144.2Ki ± 0%   144.0Ki ± 0%       ~ (p=0.818 n=6)
RenderStaticCold-4                         163.1Ki ± 0%   163.2Ki ± 0%       ~ (p=0.937 n=6)
geomean                                    142.1Ki        142.0Ki       -0.09%

                                   │ bench-baseline.txt │          bench-current.txt          │
                                   │     allocs/op      │  allocs/op   vs base                │
RenderStaticCached/same_width-4             12.18k ± 0%   12.18k ± 0%       ~ (p=1.000 n=6) ¹
RenderStaticCached/varying_width-4          13.76k ± 0%   13.76k ± 0%       ~ (p=1.000 n=6)
RenderStaticCold-4                          5.824k ± 0%   5.824k ± 0%       ~ (p=0.773 n=6)
geomean                                     9.919k        9.919k       +0.00%
¹ all samples are equal

pkg: github.com/jongio/grut/internal/notify
                           │ bench-baseline.txt │         bench-current.txt         │
                           │       sec/op       │   sec/op     vs base              │
NotifyToastChurn-4                 327.2n ±  2%   327.0n ± 4%       ~ (p=0.665 n=6)
NotifyToastLifecycleCold-4         663.5n ± 10%   661.5n ± 1%       ~ (p=0.240 n=6)
NotifyInlineCap-4                  1.018µ ±  3%   1.021µ ± 2%       ~ (p=0.777 n=6)
geomean                            604.6n         604.4n       -0.03%

                           │ bench-baseline.txt │         bench-current.txt          │
                           │        B/op        │    B/op     vs base                │
NotifyToastChurn-4                   144.0 ± 0%   144.0 ± 0%       ~ (p=1.000 n=6) ¹
NotifyToastLifecycleCold-4           848.0 ± 0%   848.0 ± 0%       ~ (p=1.000 n=6) ¹
NotifyInlineCap-4                    104.0 ± 0%   104.0 ± 0%       ~ (p=1.000 n=6) ¹
geomean                              233.3        233.3       +0.00%
¹ all samples are equal

                           │ bench-baseline.txt │         bench-current.txt          │
                           │     allocs/op      │ allocs/op   vs base                │
NotifyToastChurn-4                   2.000 ± 0%   2.000 ± 0%       ~ (p=1.000 n=6) ¹
NotifyToastLifecycleCold-4           10.00 ± 0%   10.00 ± 0%       ~ (p=1.000 n=6) ¹
NotifyInlineCap-4                    2.000 ± 0%   2.000 ± 0%       ~ (p=1.000 n=6) ¹
geomean                              3.420        3.420       +0.00%
¹ all samples are equal

pkg: github.com/jongio/grut/internal/panels/filetree
                                               │ bench-baseline.txt │         bench-current.txt         │
                                               │       sec/op       │   sec/op     vs base              │
TreeRebuildVisible/flat_50_files-4                      183.7n ± 0%   183.7n ± 0%       ~ (p=0.846 n=6)
TreeRebuildVisible/nested_5_levels_461_nodes-4          2.242µ ± 1%   2.253µ ± 3%       ~ (p=0.169 n=6)
TreeRebuildVisible/large_1000_nodes-4                   3.832µ ± 4%   3.850µ ± 2%       ~ (p=0.855 n=6)
RenderLine/file_node-4                                  4.618µ ± 1%   4.609µ ± 0%       ~ (p=0.485 n=6)
RenderLine/dir_node_cursor-4                            5.612µ ± 1%   5.569µ ± 1%  -0.76% (p=0.041 n=6)
RenderLine/with_icons-4                                 4.734µ ± 1%   4.742µ ± 3%       ~ (p=0.561 n=6)
DetachedLazyLoad/50_entries-4                           149.1µ ± 2%   147.8µ ± 1%       ~ (p=0.310 n=6)
DetachedLazyLoad/23_root_entries-4                      66.21µ ± 2%   66.44µ ± 2%       ~ (p=0.589 n=6)
DisplayWidth/ascii-4                                    69.32n ± 1%   69.44n ± 1%       ~ (p=0.310 n=6)
DisplayWidth/mixed_unicode-4                            193.7n ± 1%   194.4n ± 1%       ~ (p=0.318 n=6)
TruncateToWidth/no_truncation-4                         21.65n ± 1%   21.47n ± 3%       ~ (p=0.167 n=6)
TruncateToWidth/needs_truncation-4                      821.1n ± 2%   811.8n ± 2%       ~ (p=0.394 n=6)
geomean                                                 1.666µ        1.663µ       -0.15%

                                               │ bench-baseline.txt │          bench-current.txt           │
                                               │        B/op        │     B/op      vs base                │
TreeRebuildVisible/flat_50_files-4                     0.000 ± 0%       0.000 ± 0%       ~ (p=1.000 n=6) ¹
TreeRebuildVisible/nested_5_levels_461_nodes-4         0.000 ± 0%       0.000 ± 0%       ~ (p=1.000 n=6) ¹
TreeRebuildVisible/large_1000_nodes-4                  0.000 ± 0%       0.000 ± 0%       ~ (p=1.000 n=6) ¹
RenderLine/file_node-4                                 392.0 ± 0%       392.0 ± 0%       ~ (p=1.000 n=6) ¹
RenderLine/dir_node_cursor-4                           624.0 ± 0%       624.0 ± 0%       ~ (p=1.000 n=6) ¹
RenderLine/with_icons-4                                392.0 ± 0%       392.0 ± 0%       ~ (p=1.000 n=6) ¹
DetachedLazyLoad/50_entries-4                        34.13Ki ± 0%     34.13Ki ± 0%       ~ (p=0.145 n=6)
DetachedLazyLoad/23_root_entries-4                   14.77Ki ± 0%     14.77Ki ± 0%       ~ (p=0.115 n=6)
DisplayWidth/ascii-4                                   0.000 ± 0%       0.000 ± 0%       ~ (p=1.000 n=6) ¹
DisplayWidth/mixed_unicode-4                           0.000 ± 0%       0.000 ± 0%       ~ (p=1.000 n=6) ¹
TruncateToWidth/no_truncation-4                        0.000 ± 0%       0.000 ± 0%       ~ (p=1.000 n=6) ¹
TruncateToWidth/needs_truncation-4                     544.0 ± 0%       544.0 ± 0%       ~ (p=1.000 n=6) ¹
geomean                                                           ²                 -0.00%               ²
¹ all samples are equal
² summaries must be >0 to compute geomean

                                               │ bench-baseline.txt │         bench-current.txt          │
                                               │     allocs/op      │ allocs/op   vs base                │
TreeRebuildVisible/flat_50_files-4                     0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
TreeRebuildVisible/nested_5_levels_461_nodes-4         0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
TreeRebuildVisible/large_1000_nodes-4                  0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
RenderLine/file_node-4                                 12.00 ± 0%     12.00 ± 0%       ~ (p=1.000 n=6) ¹
RenderLine/dir_node_cursor-4                           18.00 ± 0%     18.00 ± 0%       ~ (p=1.000 n=6) ¹
RenderLine/with_icons-4                                12.00 ± 0%     12.00 ± 0%       ~ (p=1.000 n=6) ¹
DetachedLazyLoad/50_entries-4                          363.0 ± 0%     363.0 ± 0%       ~ (p=1.000 n=6) ¹
DetachedLazyLoad/23_root_entries-4                     164.0 ± 0%     164.0 ± 0%       ~ (p=1.000 n=6) ¹
DisplayWidth/ascii-4                                   0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
DisplayWidth/mixed_unicode-4                           0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
TruncateToWidth/no_truncation-4                        0.000 ± 0%     0.000 ± 0%       ~ (p=1.000 n=6) ¹
TruncateToWidth/needs_truncation-4                     3.000 ± 0%     3.000 ± 0%       ~ (p=1.000 n=6) ¹
geomean                                                           ²               +0.00%               ²
¹ all samples are equal
² summaries must be >0 to compute geomean

pkg: github.com/jongio/grut/internal/panels/gitdiff
                                                   │ bench-baseline.txt │         bench-current.txt         │
                                                   │       sec/op       │   sec/op     vs base              │
InlineDiffRenderExact/10_lines-4                            46.95µ ± 1%   46.95µ ± 1%       ~ (p=0.589 n=6)
InlineDiffRenderExact/100_lines-4                           407.3µ ± 0%   406.7µ ± 1%       ~ (p=0.818 n=6)
InlineDiffRenderExact/1000_lines-4                          4.072m ± 0%   4.068m ± 1%       ~ (p=0.818 n=6)
InlineDiffRenderCold-4                                      407.8µ ± 1%   409.7µ ± 2%       ~ (p=0.589 n=6)
SideBySideDiffRenderExact/10_lines-4                        85.50µ ± 2%   85.84µ ± 1%       ~ (p=0.699 n=6)
SideBySideDiffRenderExact/100_lines-4                       764.4µ ± 2%   765.2µ ± 2%       ~ (p=0.937 n=6)
SideBySideDiffRenderExact/1000_lines-4                      7.695m ± 2%   7.696m ± 1%       ~ (p=0.937 n=6)
SideBySideDiffRenderCold-4                                  769.7µ ± 2%   765.6µ ± 2%       ~ (p=0.394 n=6)
PairDiffLines/20_lines_mixed-4                              304.1n ± 2%   304.6n ± 8%       ~ (p=0.937 n=6)
PairDiffLines/200_lines_mixed-4                             2.024µ ± 5%   2.038µ ± 5%       ~ (p=0.394 n=6)
RenderViewportWithStats/small-4                             5.489µ ± 3%   5.491µ ± 3%       ~ (p=0.818 n=6)
RenderViewportWithStats/large_scrolled-4                    5.791µ ± 3%   5.822µ ± 2%       ~ (p=0.589 n=6)
DiffWordsBoundedAllocations/50_tokens-4                     29.85µ ± 1%   29.87µ ± 2%       ~ (p=0.699 n=6)
DiffWordsBoundedAllocations/200_tokens-4                    439.5µ ± 4%   439.9µ ± 1%       ~ (p=1.000 n=6)
DiffWordsBoundedAllocations/400_tokens-4                    1.726m ± 0%   1.727m ± 1%       ~ (p=0.310 n=6)
DiffWordsBoundedAllocations/over_cap_tokens-4               5.151µ ± 2%   5.126µ ± 2%       ~ (p=0.290 n=6)
DiffWordsBoundedAllocations/one_mib_over_cap-4              5.134µ ± 3%   5.178µ ± 3%       ~ (p=0.240 n=6)
DiffWordsBoundedAllocations/one_mib_single_token-4          9.182m ± 0%   9.188m ± 2%       ~ (p=0.589 n=6)
geomean                                                     101.6µ        101.7µ       +0.13%

                                                   │ bench-baseline.txt │          bench-current.txt           │
                                                   │        B/op        │     B/op      vs base                │
InlineDiffRenderExact/10_lines-4                           4.016Ki ± 0%   4.016Ki ± 0%       ~ (p=1.000 n=6) ¹
InlineDiffRenderExact/100_lines-4                          33.47Ki ± 0%   33.47Ki ± 0%       ~ (p=1.000 n=6) ¹
InlineDiffRenderExact/1000_lines-4                         334.7Ki ± 0%   334.7Ki ± 0%       ~ (p=0.455 n=6)
InlineDiffRenderCold-4                                     37.97Ki ± 0%   37.97Ki ± 0%       ~ (p=1.000 n=6) ¹
SideBySideDiffRenderExact/10_lines-4                       15.50Ki ± 0%   15.50Ki ± 0%       ~ (p=1.000 n=6) ¹
SideBySideDiffRenderExact/100_lines-4                      144.3Ki ± 0%   144.3Ki ± 0%       ~ (p=0.535 n=6)
SideBySideDiffRenderExact/1000_lines-4                     1.410Mi ± 0%   1.410Mi ± 0%       ~ (p=0.515 n=6)
SideBySideDiffRenderCold-4                                 148.8Ki ± 0%   148.8Ki ± 0%       ~ (p=0.545 n=6)
PairDiffLines/20_lines_mixed-4                               416.0 ± 0%     416.0 ± 0%       ~ (p=1.000 n=6) ¹
PairDiffLines/200_lines_mixed-4                            3.469Ki ± 0%   3.469Ki ± 0%       ~ (p=1.000 n=6) ¹
RenderViewportWithStats/small-4                            6.368Ki ± 0%   6.368Ki ± 0%       ~ (p=1.000 n=6) ¹
RenderViewportWithStats/large_scrolled-4                   6.376Ki ± 0%   6.376Ki ± 0%       ~ (p=1.000 n=6) ¹
DiffWordsBoundedAllocations/50_tokens-4                    4.125Ki ± 0%   4.125Ki ± 0%       ~ (p=1.000 n=6) ¹
DiffWordsBoundedAllocations/200_tokens-4                   18.12Ki ± 0%   18.12Ki ± 0%       ~ (p=1.000 n=6) ¹
DiffWordsBoundedAllocations/400_tokens-4                   36.62Ki ± 0%   36.62Ki ± 0%       ~ (p=1.000 n=6) ¹
DiffWordsBoundedAllocations/over_cap_tokens-4              18.12Ki ± 0%   18.12Ki ± 0%       ~ (p=1.000 n=6) ¹
DiffWordsBoundedAllocations/one_mib_over_cap-4             18.12Ki ± 0%   18.12Ki ± 0%       ~ (p=1.000 n=6) ¹
DiffWordsBoundedAllocations/one_mib_single_token-4           896.0 ± 0%     896.0 ± 0%       ~ (p=1.000 n=6) ¹
geomean                                                    17.94Ki        17.94Ki       -0.00%
¹ all samples are equal

                                                   │ bench-baseline.txt │          bench-current.txt          │
                                                   │     allocs/op      │  allocs/op   vs base                │
InlineDiffRenderExact/10_lines-4                             122.0 ± 0%    122.0 ± 0%       ~ (p=1.000 n=6) ¹
InlineDiffRenderExact/100_lines-4                           1.096k ± 0%   1.096k ± 0%       ~ (p=1.000 n=6) ¹
InlineDiffRenderExact/1000_lines-4                          10.96k ± 0%   10.96k ± 0%       ~ (p=1.000 n=6) ¹
InlineDiffRenderCold-4                                      1.110k ± 0%   1.110k ± 0%       ~ (p=1.000 n=6) ¹
SideBySideDiffRenderExact/10_lines-4                         217.0 ± 0%    217.0 ± 0%       ~ (p=1.000 n=6) ¹
SideBySideDiffRenderExact/100_lines-4                       2.044k ± 0%   2.044k ± 0%       ~ (p=1.000 n=6) ¹
SideBySideDiffRenderExact/1000_lines-4                      20.44k ± 0%   20.44k ± 0%       ~ (p=0.545 n=6)
SideBySideDiffRenderCold-4                                  2.058k ± 0%   2.058k ± 0%       ~ (p=1.000 n=6) ¹
PairDiffLines/20_lines_mixed-4                               3.000 ± 0%    3.000 ± 0%       ~ (p=1.000 n=6) ¹
PairDiffLines/200_lines_mixed-4                              3.000 ± 0%    3.000 ± 0%       ~ (p=1.000 n=6) ¹
RenderViewportWithStats/small-4                              18.00 ± 0%    18.00 ± 0%       ~ (p=1.000 n=6) ¹
RenderViewportWithStats/large_scrolled-4                     19.00 ± 0%    19.00 ± 0%       ~ (p=1.000 n=6) ¹
DiffWordsBoundedAllocations/50_tokens-4                      8.000 ± 0%    8.000 ± 0%       ~ (p=1.000 n=6) ¹
DiffWordsBoundedAllocations/200_tokens-4                     12.00 ± 0%    12.00 ± 0%       ~ (p=1.000 n=6) ¹
DiffWordsBoundedAllocations/400_tokens-4                     14.00 ± 0%    14.00 ± 0%       ~ (p=1.000 n=6) ¹
DiffWordsBoundedAllocations/over_cap_tokens-4                6.000 ± 0%    6.000 ± 0%       ~ (p=1.000 n=6) ¹
DiffWordsBoundedAllocations/one_mib_over_cap-4               6.000 ± 0%    6.000 ± 0%       ~ (p=1.000 n=6) ¹
DiffWordsBoundedAllocations/one_mib_single_token-4           4.000 ± 0%    4.000 ± 0%       ~ (p=1.000 n=6) ¹
geomean                                                      80.02         80.02       -0.00%
¹ all samples are equal

Note

No significant regressions on linux-amd64 (threshold: 15%, same-runner comparison).

@github-actions

Copy link
Copy Markdown
Contributor

Benchmarks: darwin-arm64

📊 Results vs main (same-runner) , click to expand

Note

No significant regressions on darwin-arm64 (threshold: 40%, same-runner comparison).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Dependency updates

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants