Skip to content

Bump the github-actions-dependencies group with 3 updates - #9

Merged
philippemnoel merged 2 commits into
mainfrom
dependabot/github_actions/github-actions-dependencies-2501b77b27
May 1, 2026
Merged

Bump the github-actions-dependencies group with 3 updates#9
philippemnoel merged 2 commits into
mainfrom
dependabot/github_actions/github-actions-dependencies-2501b77b27

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the github-actions-dependencies group with 3 updates: actions/github-script, dtolnay/rust-toolchain and softprops/action-gh-release.

Updates actions/github-script from 8 to 9

Release notes

Sourced from actions/github-script's releases.

v9.0.0

New features:

  • getOctokit factory function — Available directly in the script context. Create additional authenticated Octokit clients with different tokens for multi-token workflows, GitHub App tokens, and cross-org access. See Creating additional clients with getOctokit for details and examples.
  • Orchestration ID in user-agent — The ACTIONS_ORCHESTRATION_ID environment variable is automatically appended to the user-agent string for request tracing.

Breaking changes:

  • require('@actions/github') no longer works in scripts. The upgrade to @actions/github v9 (ESM-only) means require('@actions/github') will fail at runtime. If you previously used patterns like const { getOctokit } = require('@actions/github') to create secondary clients, use the new injected getOctokit function instead — it's available directly in the script context with no imports needed.
  • getOctokit is now an injected function parameter. Scripts that declare const getOctokit = ... or let getOctokit = ... will get a SyntaxError because JavaScript does not allow const/let redeclaration of function parameters. Use the injected getOctokit directly, or use var getOctokit = ... if you need to redeclare it.
  • If your script accesses other @actions/github internals beyond the standard github/octokit client, you may need to update those references for v9 compatibility.

What's Changed

New Contributors

Full Changelog: actions/github-script@v8.0.0...v9.0.0

Commits
  • 3a2844b Merge pull request #700 from actions/salmanmkc/expose-getoctokit + prepare re...
  • ca10bbd fix: use @​octokit/core/types import for v7 compatibility
  • 86e48e2 merge: incorporate main branch changes
  • c108472 chore: rebuild dist for v9 upgrade and getOctokit factory
  • afff112 Merge pull request #712 from actions/salmanmkc/deployment-false + fix user-ag...
  • ff8117e ci: fix user-agent test to handle orchestration ID
  • 81c6b78 ci: use deployment: false to suppress deployment noise from integration tests
  • 3953caf docs: update README examples from @​v8 to @​v9, add getOctokit docs and v9 brea...
  • c17d55b ci: add getOctokit integration test job
  • a047196 test: add getOctokit integration tests via callAsyncFunction
  • Additional commits viewable in compare view

Updates dtolnay/rust-toolchain from 1.85 to 1.100

Commits

Updates softprops/action-gh-release from 2 to 3

Release notes

Sourced from softprops/action-gh-release's releases.

v3.0.0

3.0.0 is a major release that moves the action runtime from Node 20 to Node 24. Use v3 on GitHub-hosted runners and self-hosted fleets that already support the Node 24 Actions runtime. If you still need the last Node 20-compatible line, stay on v2.6.2.

What's Changed

Other Changes 🔄

  • Move the action runtime and bundle target to Node 24
  • Update @types/node to the Node 24 line and allow future Dependabot updates
  • Keep the floating major tag on v3; v2 remains pinned to the latest 2.x release

v2.6.2

What's Changed

Other Changes 🔄

Full Changelog: softprops/action-gh-release@v2...v2.6.2

v2.6.1

2.6.1 is a patch release focused on restoring linked discussion thread creation when discussion_category_name is set. It fixes [#764](https://github.com/softprops/action-gh-release/issues/764), where the draft-first publish flow stopped carrying the discussion category through the final publish step.

If you still hit an issue after upgrading, please open a report with the bug template and include a minimal repro or sanitized workflow snippet where possible.

What's Changed

Bug fixes 🐛

v2.6.0

2.6.0 is a minor release centered on previous_tag support for generate_release_notes, which lets workflows pin GitHub's comparison base explicitly instead of relying on the default range. It also includes the recent concurrent asset upload recovery fix, a working_directory docs sync, a checked-bundle freshness guard for maintainers, and clearer immutable-prerelease guidance where GitHub platform behavior imposes constraints on how prerelease asset uploads can be published.

If you still hit an issue after upgrading, please open a report with the bug template and include a minimal repro or sanitized workflow snippet where possible.

What's Changed

... (truncated)

Changelog

Sourced from softprops/action-gh-release's changelog.

0.1.13

  • fix issue with multiple runs concatenating release bodies #145
Commits

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 github-actions-dependencies group with 3 updates: [actions/github-script](https://github.com/actions/github-script), [dtolnay/rust-toolchain](https://github.com/dtolnay/rust-toolchain) and [softprops/action-gh-release](https://github.com/softprops/action-gh-release).


Updates `actions/github-script` from 8 to 9
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](actions/github-script@v8...v9)

Updates `dtolnay/rust-toolchain` from 1.85 to 1.100
- [Release notes](https://github.com/dtolnay/rust-toolchain/releases)
- [Commits](dtolnay/rust-toolchain@1.85...1.100)

Updates `softprops/action-gh-release` from 2 to 3
- [Release notes](https://github.com/softprops/action-gh-release/releases)
- [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md)
- [Commits](softprops/action-gh-release@v2...v3)

---
updated-dependencies:
- dependency-name: actions/github-script
  dependency-version: '9'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions-dependencies
- dependency-name: dtolnay/rust-toolchain
  dependency-version: '1.100'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions-dependencies
- dependency-name: softprops/action-gh-release
  dependency-version: '3'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels May 1, 2026
@github-actions

github-actions Bot commented May 1, 2026

Copy link
Copy Markdown

📊 Benchmark Comparison

Click to expand benchmark results
group                                                                 base                                     pr
-----                                                                 ----                                     --
18_digit_precision/Decimal/16+2_decimal                               1.00    237.5±6.03ns        ? ?/sec      1.00    237.1±2.86ns        ? ?/sec
18_digit_precision/Decimal/18_digits                                  1.00    220.6±9.14ns        ? ?/sec      1.00    220.5±3.49ns        ? ?/sec
18_digit_precision/Decimal64NoScale/16+2_decimal                      1.00     91.2±1.88ns        ? ?/sec      1.00     91.4±1.51ns        ? ?/sec
18_digit_precision/Decimal64NoScale/18_digits                         1.07     55.9±2.17ns        ? ?/sec      1.00     52.3±0.81ns        ? ?/sec
aggregate_simulation/min_max_1000/Decimal64                           1.00  1896.8±21.69ns 502.8 MElem/sec     1.00  1895.4±21.96ns 503.1 MElem/sec
aggregate_simulation/min_max_1000/Decimal64NoScale                    1.00   1622.9±9.66ns 587.6 MElem/sec     1.00   1622.2±4.19ns 587.9 MElem/sec
aggregate_simulation/sum_1000/Decimal64                               1.00    909.6±8.58ns 1048.5 MElem/sec    1.00    909.5±5.54ns 1048.5 MElem/sec
aggregate_simulation/sum_1000/Decimal64NoScale                        1.00    178.0±3.36ns  5.2 GElem/sec      1.00    178.0±2.35ns  5.2 GElem/sec
batch/parse_10_decimals                                               1.03  1185.3±20.99ns  8.0 MElem/sec      1.00  1153.7±16.41ns  8.3 MElem/sec
batch/sort_10_decimals                                                1.03    350.2±6.94ns        ? ?/sec      1.00    339.8±3.94ns        ? ?/sec
batch_decimal_vs_decimal64/parse_10/Decimal                           1.01  1222.9±19.00ns  7.8 MElem/sec      1.00  1214.9±17.68ns  7.8 MElem/sec
batch_decimal_vs_decimal64/parse_10/Decimal64                         1.00   1276.2±8.93ns  7.5 MElem/sec      1.00  1276.5±22.28ns  7.5 MElem/sec
batch_decimal_vs_decimal64/sort_10/Decimal                            1.00   339.7±11.97ns 28.1 MElem/sec      1.00    338.7±4.38ns 28.2 MElem/sec
batch_decimal_vs_decimal64/sort_10/Decimal64                          1.00    145.6±1.61ns 65.5 MElem/sec      1.00    145.9±2.30ns 65.4 MElem/sec
comparison/cmp_bytes                                                  1.00      3.2±0.03ns        ? ?/sec      1.11      3.5±0.07ns        ? ?/sec
comparison/cmp_equal                                                  1.00      2.8±0.03ns        ? ?/sec      1.00      2.8±0.01ns        ? ?/sec
comparison/cmp_less                                                   1.00      3.2±0.02ns        ? ?/sec      1.01      3.2±0.12ns        ? ?/sec
decimal64_comparison/cmp_diff_scale                                   1.00      4.9±0.08ns        ? ?/sec      1.00      4.9±0.10ns        ? ?/sec
decimal64_comparison/cmp_equal                                        1.00      1.1±0.01ns        ? ?/sec      1.00      1.1±0.00ns        ? ?/sec
decimal64_comparison/cmp_less                                         1.00      4.6±0.03ns        ? ?/sec      1.00      4.6±0.07ns        ? ?/sec
decimal64_comparison/cmp_raw                                          1.00      1.1±0.02ns        ? ?/sec      1.00      1.1±0.02ns        ? ?/sec
decimal64_parse/from_str_auto                                         1.01    175.0±2.66ns    87.2 MB/sec      1.00    172.8±2.41ns    88.3 MB/sec
decimal64_parse/new/financial                                         1.00    131.5±1.98ns    94.3 MB/sec      1.00    132.1±6.41ns    93.9 MB/sec
decimal64_parse/new/max_precision                                     1.03     82.4±8.43ns   185.1 MB/sec      1.00     80.4±1.28ns   189.9 MB/sec
decimal64_parse/new/medium_decimal                                    1.01    132.7±2.99ns    93.4 MB/sec      1.00    131.7±3.15ns    94.1 MB/sec
decimal64_parse/new/medium_int                                        1.00     74.5±0.83ns   115.2 MB/sec      1.04     77.5±1.10ns   110.8 MB/sec
decimal64_parse/new/small_decimal                                     1.01    121.7±1.20ns    31.3 MB/sec      1.00    120.5±1.40ns    31.7 MB/sec
decimal64_parse/new/small_int                                         1.00     64.5±0.49ns    29.6 MB/sec      1.01     64.9±0.44ns    29.4 MB/sec
decimal64_precision_scale/from_parts                                  1.00      3.2±0.05ns        ? ?/sec      1.00      3.2±0.08ns        ? ?/sec
decimal64_precision_scale/negative_scale                              1.00     54.6±0.83ns        ? ?/sec      1.00     54.5±0.86ns        ? ?/sec
decimal64_precision_scale/with_precision_scale                        1.00    175.4±1.64ns        ? ?/sec      1.01    176.3±2.19ns        ? ?/sec
decimal64_serialization/deserialize_json                              1.00     33.9±0.28ns        ? ?/sec      1.00     33.9±0.13ns        ? ?/sec
decimal64_serialization/from_be_bytes                                 1.00      2.7±0.04ns        ? ?/sec      1.00      2.7±0.03ns        ? ?/sec
decimal64_serialization/serialize_json                                1.00     22.9±0.13ns        ? ?/sec      1.02     23.2±1.17ns        ? ?/sec
decimal64_serialization/to_be_bytes                                   1.00      2.8±0.02ns        ? ?/sec      1.00      2.8±0.02ns        ? ?/sec
decimal64_special/create_infinity                                     1.00      0.4±0.00ns        ? ?/sec      1.01      0.4±0.01ns        ? ?/sec
decimal64_special/create_nan                                          1.00      0.4±0.00ns        ? ?/sec      1.00      0.4±0.01ns        ? ?/sec
decimal64_special/is_finite                                           1.00      0.7±0.01ns        ? ?/sec      1.00      0.7±0.01ns        ? ?/sec
decimal64_special/is_infinity                                         1.00      0.7±0.00ns        ? ?/sec      1.00      0.7±0.01ns        ? ?/sec
decimal64_special/is_nan                                              1.00      0.7±0.01ns        ? ?/sec      1.00      0.7±0.01ns        ? ?/sec
decimal64_special/parse_infinity                                      1.00     27.9±0.37ns        ? ?/sec      1.00     27.8±0.40ns        ? ?/sec
decimal64_to_string/to_string/financial                               1.00    140.8±2.13ns        ? ?/sec      1.00    140.9±2.73ns        ? ?/sec
decimal64_to_string/to_string/medium_decimal                          1.01   145.4±19.74ns        ? ?/sec      1.00   143.7±12.82ns        ? ?/sec
decimal64_to_string/to_string/medium_int                              1.03     52.4±0.30ns        ? ?/sec      1.00     50.9±0.56ns        ? ?/sec
decimal64_to_string/to_string/small_decimal                           1.00    127.4±2.48ns        ? ?/sec      1.00    126.9±1.94ns        ? ?/sec
decimal64_to_string/to_string/small_int                               1.00     49.0±1.60ns        ? ?/sec      1.04     50.9±0.31ns        ? ?/sec
decimal64_vs_decimal64ns/equality/Decimal64                           1.00      1.1±0.01ns        ? ?/sec      1.00      1.1±0.01ns        ? ?/sec
decimal64_vs_decimal64ns/equality/Decimal64NoScale                    1.00      1.1±0.02ns        ? ?/sec      1.00      1.1±0.01ns        ? ?/sec
decimal64_vs_decimal64ns/parse/Decimal64/16_digits                    1.00     80.3±0.68ns        ? ?/sec      1.00     80.3±1.22ns        ? ?/sec
decimal64_vs_decimal64ns/parse/Decimal64/financial                    1.04    136.2±2.35ns        ? ?/sec      1.00    131.0±1.49ns        ? ?/sec
decimal64_vs_decimal64ns/parse/Decimal64/medium_decimal               1.01    134.8±2.31ns        ? ?/sec      1.00    133.9±3.03ns        ? ?/sec
decimal64_vs_decimal64ns/parse/Decimal64/small_int                    1.03     66.0±0.43ns        ? ?/sec      1.00     63.8±1.04ns        ? ?/sec
decimal64_vs_decimal64ns/parse/Decimal64NoScale/16_digits             1.00     41.6±2.91ns        ? ?/sec      1.01     41.9±3.77ns        ? ?/sec
decimal64_vs_decimal64ns/parse/Decimal64NoScale/financial             1.00     87.6±0.64ns        ? ?/sec      1.00     87.4±1.15ns        ? ?/sec
decimal64_vs_decimal64ns/parse/Decimal64NoScale/medium_decimal        1.00     86.3±0.79ns        ? ?/sec      1.00     86.0±1.55ns        ? ?/sec
decimal64_vs_decimal64ns/parse/Decimal64NoScale/small_int             1.00     28.3±0.74ns        ? ?/sec      1.00     28.2±0.49ns        ? ?/sec
decimal64_vs_decimal64ns/to_string/Decimal64/16_digits                1.00     54.0±1.09ns        ? ?/sec      1.02     54.9±0.37ns        ? ?/sec
decimal64_vs_decimal64ns/to_string/Decimal64/financial                1.00    141.3±2.40ns        ? ?/sec      1.00    141.1±0.97ns        ? ?/sec
decimal64_vs_decimal64ns/to_string/Decimal64/medium_decimal           1.00    140.4±2.17ns        ? ?/sec      1.01    141.2±2.50ns        ? ?/sec
decimal64_vs_decimal64ns/to_string/Decimal64/small_int                1.02     51.2±0.64ns        ? ?/sec      1.00     50.0±3.21ns        ? ?/sec
decimal64_vs_decimal64ns/to_string/Decimal64NoScale/16_digits         1.00     25.1±0.45ns        ? ?/sec      1.00     25.1±0.39ns        ? ?/sec
decimal64_vs_decimal64ns/to_string/Decimal64NoScale/financial         1.01    108.3±2.82ns        ? ?/sec      1.00    107.6±1.75ns        ? ?/sec
decimal64_vs_decimal64ns/to_string/Decimal64NoScale/medium_decimal    1.01    108.4±6.03ns        ? ?/sec      1.00    107.6±1.93ns        ? ?/sec
decimal64_vs_decimal64ns/to_string/Decimal64NoScale/small_int         1.01     21.5±0.16ns        ? ?/sec      1.00     21.3±0.80ns        ? ?/sec
decimal64ns_operations/cmp_equal                                      1.00      1.1±0.00ns        ? ?/sec      1.00      1.1±0.01ns        ? ?/sec
decimal64ns_operations/cmp_less                                       1.00      1.1±0.00ns        ? ?/sec      1.00      1.1±0.01ns        ? ?/sec
decimal64ns_operations/cmp_raw                                        1.00      1.1±0.01ns        ? ?/sec      1.00      1.1±0.01ns        ? ?/sec
decimal64ns_operations/max_100_values                                 1.00     79.3±0.40ns        ? ?/sec      1.00     79.3±0.54ns        ? ?/sec
decimal64ns_operations/min_100_values                                 1.00     80.2±4.46ns        ? ?/sec      1.02     81.6±7.64ns        ? ?/sec
decimal64ns_operations/sum_100_values                                 1.00     19.4±0.32ns        ? ?/sec      1.00     19.4±0.30ns        ? ?/sec
decimal64ns_parse/new/16_digits                                       1.00     41.6±2.32ns   367.1 MB/sec      1.01     41.9±0.63ns   364.4 MB/sec
decimal64ns_parse/new/17+1_decimal                                    1.01     93.2±2.82ns   194.4 MB/sec      1.00     92.3±4.36ns   196.3 MB/sec
decimal64ns_parse/new/18_digits                                       1.11     57.6±0.43ns   298.2 MB/sec      1.00     52.0±0.76ns   330.4 MB/sec
decimal64ns_parse/new/financial                                       1.02     88.1±1.46ns   140.7 MB/sec      1.00     86.7±1.28ns   142.9 MB/sec
decimal64ns_parse/new/medium_decimal                                  1.01     86.6±0.62ns   143.1 MB/sec      1.00     85.9±0.45ns   144.4 MB/sec
decimal64ns_parse/new/medium_int                                      1.00     41.0±0.66ns   209.3 MB/sec      1.00     41.1±0.65ns   208.8 MB/sec
decimal64ns_parse/new/small_decimal                                   1.01     71.6±1.06ns    53.3 MB/sec      1.00     71.1±1.27ns    53.6 MB/sec
decimal64ns_parse/new/small_int                                       1.00     28.4±0.87ns    67.3 MB/sec      1.00     28.2±0.45ns    67.6 MB/sec
decimal64ns_serialization/deserialize_json                            1.00     30.1±0.22ns        ? ?/sec      1.00     30.1±0.24ns        ? ?/sec
decimal64ns_serialization/from_be_bytes                               1.00      2.7±0.04ns        ? ?/sec      1.00      2.7±0.01ns        ? ?/sec
decimal64ns_serialization/from_raw                                    1.00      0.7±0.00ns        ? ?/sec      1.00      0.7±0.00ns        ? ?/sec
decimal64ns_serialization/serialize_json                              1.00     21.7±0.72ns        ? ?/sec      1.00     21.6±0.54ns        ? ?/sec
decimal64ns_serialization/to_be_bytes                                 1.01      2.8±0.11ns        ? ?/sec      1.00      2.8±0.01ns        ? ?/sec
decimal64ns_special/create_infinity                                   1.00      0.4±0.00ns        ? ?/sec      1.00      0.4±0.00ns        ? ?/sec
decimal64ns_special/create_nan                                        1.00      0.4±0.00ns        ? ?/sec      1.00      0.4±0.00ns        ? ?/sec
decimal64ns_special/is_finite                                         1.00      0.7±0.01ns        ? ?/sec      1.00      0.7±0.01ns        ? ?/sec
decimal64ns_special/is_infinity                                       1.01      0.7±0.04ns        ? ?/sec      1.00      0.7±0.01ns        ? ?/sec
decimal64ns_special/is_nan                                            1.00      0.7±0.01ns        ? ?/sec      1.00      0.7±0.01ns        ? ?/sec
decimal64ns_to_string/to_string_with_scale/18_digits                  1.00     25.6±0.12ns        ? ?/sec      1.00     25.6±0.36ns        ? ?/sec
decimal64ns_to_string/to_string_with_scale/financial                  1.00    107.5±0.78ns        ? ?/sec      1.00    107.9±2.71ns        ? ?/sec
decimal64ns_to_string/to_string_with_scale/medium_decimal             1.00    107.7±2.46ns        ? ?/sec      1.00    107.8±1.85ns        ? ?/sec
decimal64ns_to_string/to_string_with_scale/medium_int                 1.00     22.8±0.41ns        ? ?/sec      1.01     22.9±0.31ns        ? ?/sec
decimal64ns_to_string/to_string_with_scale/small_decimal              1.01     94.5±0.72ns        ? ?/sec      1.00     93.5±1.62ns        ? ?/sec
decimal64ns_to_string/to_string_with_scale/small_int                  1.00     21.9±0.42ns        ? ?/sec      1.00     21.9±0.33ns        ? ?/sec
decimal_vs_decimal64/parse/Decimal/financial                          1.03    168.6±0.93ns        ? ?/sec      1.00    163.3±5.37ns        ? ?/sec
decimal_vs_decimal64/parse/Decimal/max_d64_precision                  1.00    146.7±6.21ns        ? ?/sec      1.00    146.8±1.06ns        ? ?/sec
decimal_vs_decimal64/parse/Decimal/medium_decimal                     1.00    165.9±1.21ns        ? ?/sec      1.00    165.2±1.01ns        ? ?/sec
decimal_vs_decimal64/parse/Decimal/small_int                          1.00     87.4±1.27ns        ? ?/sec      1.00     87.3±0.61ns        ? ?/sec
decimal_vs_decimal64/parse/Decimal64/financial                        1.00    131.6±2.44ns        ? ?/sec      1.03   135.4±14.60ns        ? ?/sec
decimal_vs_decimal64/parse/Decimal64/max_d64_precision                1.00     80.4±1.11ns        ? ?/sec      1.00     80.5±0.97ns        ? ?/sec
decimal_vs_decimal64/parse/Decimal64/medium_decimal                   1.02    134.0±1.64ns        ? ?/sec      1.00    131.7±2.71ns        ? ?/sec
decimal_vs_decimal64/parse/Decimal64/small_int                        1.00     64.6±4.17ns        ? ?/sec      1.00     64.8±2.32ns        ? ?/sec
decimal_vs_decimal64/to_string/Decimal/financial                      1.00    107.4±1.69ns        ? ?/sec      1.00    107.3±1.69ns        ? ?/sec
decimal_vs_decimal64/to_string/Decimal/max_d64_precision              1.01    104.0±3.84ns        ? ?/sec      1.00    102.9±0.83ns        ? ?/sec
decimal_vs_decimal64/to_string/Decimal/medium_decimal                 1.00    104.3±1.60ns        ? ?/sec      1.00    104.3±1.56ns        ? ?/sec
decimal_vs_decimal64/to_string/Decimal/small_int                      1.00     70.5±1.45ns        ? ?/sec      1.00     70.4±0.86ns        ? ?/sec
decimal_vs_decimal64/to_string/Decimal64/financial                    1.00    141.8±6.78ns        ? ?/sec      1.00    141.6±2.18ns        ? ?/sec
decimal_vs_decimal64/to_string/Decimal64/max_d64_precision            1.00     53.3±1.40ns        ? ?/sec      1.01     54.0±2.75ns        ? ?/sec
decimal_vs_decimal64/to_string/Decimal64/medium_decimal               1.00    140.7±2.86ns        ? ?/sec      1.01    141.6±3.88ns        ? ?/sec
decimal_vs_decimal64/to_string/Decimal64/small_int                    1.01     51.9±0.96ns        ? ?/sec      1.00     51.3±0.75ns        ? ?/sec
from_bytes/from_bytes/large                                           1.01    261.9±4.66ns        ? ?/sec      1.00    258.7±4.84ns        ? ?/sec
from_bytes/from_bytes/medium                                          1.04    103.5±0.55ns        ? ?/sec      1.00     99.7±1.30ns        ? ?/sec
from_bytes/from_bytes/small                                           1.03     67.3±0.71ns        ? ?/sec      1.00     65.4±1.43ns        ? ?/sec
from_bytes/from_bytes_unchecked/large                                 1.00     16.0±0.29ns        ? ?/sec      1.01     16.2±0.23ns        ? ?/sec
from_bytes/from_bytes_unchecked/medium                                1.00     16.2±0.31ns        ? ?/sec      1.00     16.2±0.20ns        ? ?/sec
from_bytes/from_bytes_unchecked/small                                 1.01     16.5±0.52ns        ? ?/sec      1.00     16.3±0.58ns        ? ?/sec
memory_size_all/create_1000/Decimal                                   1.02    197.1±2.84µs  4.8 MElem/sec      1.00    192.7±1.50µs  4.9 MElem/sec
memory_size_all/create_1000/Decimal64                                 1.03    174.8±3.97µs  5.5 MElem/sec      1.00    170.1±2.75µs  5.6 MElem/sec
memory_size_all/create_1000/Decimal64NoScale                          1.01    122.3±2.05µs  7.8 MElem/sec      1.00    120.6±1.33µs  7.9 MElem/sec
parse/from_str/large_decimal                                          1.01    350.0±4.55ns   109.0 MB/sec      1.00    348.1±4.00ns   109.6 MB/sec
parse/from_str/large_int                                              1.00    262.7±4.20ns   108.9 MB/sec      1.01    265.1±6.88ns   107.9 MB/sec
parse/from_str/medium_decimal                                         1.00    165.5±1.83ns    74.9 MB/sec      1.00    165.5±2.38ns    74.9 MB/sec
parse/from_str/medium_int                                             1.00    137.6±4.21ns    62.4 MB/sec      1.01    139.6±6.40ns    61.5 MB/sec
parse/from_str/negative                                               1.04    259.6±4.96ns    73.5 MB/sec      1.00    250.1±1.65ns    76.3 MB/sec
parse/from_str/scientific                                             1.00    185.6±3.69ns    66.8 MB/sec      1.00    186.1±1.52ns    66.6 MB/sec
parse/from_str/small_decimal                                          1.00    112.0±3.24ns    34.0 MB/sec      1.01   113.0±11.44ns    33.7 MB/sec
parse/from_str/small_int                                              1.00     87.0±0.63ns    21.9 MB/sec      1.01     87.4±0.75ns    21.8 MB/sec
precision_scale/negative_scale                                        1.02   239.7±14.52ns        ? ?/sec      1.00    234.1±3.76ns        ? ?/sec
precision_scale/with_precision_scale                                  1.01    280.8±3.23ns        ? ?/sec      1.00    279.4±7.35ns        ? ?/sec
serialization/deserialize_json                                        1.00    218.2±5.20ns        ? ?/sec      1.00    218.9±3.30ns        ? ?/sec
serialization/serialize_json                                          1.00    140.4±1.34ns        ? ?/sec      1.02    143.0±8.20ns        ? ?/sec
special_values/create_infinity                                        1.00     14.4±0.06ns        ? ?/sec      1.00     14.4±0.07ns        ? ?/sec
special_values/create_nan                                             1.00     14.1±0.40ns        ? ?/sec      1.00     14.1±0.11ns        ? ?/sec
special_values/is_infinity                                            1.00      1.3±0.01ns        ? ?/sec      1.00      1.3±0.02ns        ? ?/sec
special_values/is_nan                                                 1.00      1.2±0.06ns        ? ?/sec      1.00      1.2±0.06ns        ? ?/sec
special_values/parse_infinity                                         1.00     51.8±0.35ns        ? ?/sec      1.01     52.2±0.79ns        ? ?/sec
special_values/parse_nan                                              1.00     57.8±0.74ns        ? ?/sec      1.03     59.5±0.68ns        ? ?/sec
to_string/to_string/large_decimal                                     1.00    270.9±5.22ns        ? ?/sec      1.00    270.1±3.71ns        ? ?/sec
to_string/to_string/large_int                                         1.00    158.0±3.33ns        ? ?/sec      1.00    157.8±2.37ns        ? ?/sec
to_string/to_string/medium_decimal                                    1.00    104.2±1.49ns        ? ?/sec      1.00    104.3±1.07ns        ? ?/sec
to_string/to_string/medium_int                                        1.01     94.3±4.00ns        ? ?/sec      1.00     93.6±0.62ns        ? ?/sec
to_string/to_string/negative                                          1.00    149.1±2.22ns        ? ?/sec      1.00    149.8±3.91ns        ? ?/sec
to_string/to_string/small_decimal                                     1.00     75.1±3.79ns        ? ?/sec      1.00     74.7±1.37ns        ? ?/sec
to_string/to_string/small_int                                         1.00     70.3±0.54ns        ? ?/sec      1.00     70.3±1.06ns        ? ?/sec

Compared against main branch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
@codecov

codecov Bot commented May 1, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 88.16%. Comparing base (052f0fa) to head (4fa066b).
⚠️ Report is 3 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main       #9   +/-   ##
=======================================
  Coverage   88.16%   88.16%           
=======================================
  Files           4        4           
  Lines        2365     2365           
=======================================
  Hits         2085     2085           
  Misses        280      280           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@philippemnoel
philippemnoel merged commit cc11d1b into main May 1, 2026
14 checks passed
@philippemnoel
philippemnoel deleted the dependabot/github_actions/github-actions-dependencies-2501b77b27 branch May 1, 2026 18:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant