Bump rust to 1.98 and several packages - #265

Merged
alexcottner merged 3 commits into
masterfrom
dependabot/cargo/minor-f7a2021ae0
Sep 1, 2026
Merged

Bump rust to 1.98 and several packages#265
alexcottner merged 3 commits into
masterfrom
dependabot/cargo/minor-f7a2021ae0

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubSep 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor group with 7 updates:

PackageFromTo
actix-web4.14.04.15.0
actix-rt2.11.02.13.0
futures0.3.330.3.34
maxminddb0.30.00.30.3
sentry0.49.00.49.2
sentry-actix0.49.00.49.2
ipnet2.12.02.12.1

Updates actix-web from 4.14.0 to 4.15.0

Release notes

Sourced from actix-web's releases.

actix-web: v4.15.0

  • Add Error::add_response_mapper() to allow middleware to modify error-generated responses before they are sent.
  • Remove the experimental experimental-io-uring crate feature.

actix-web: v4.14.1

  • Close idle HTTP/1 keep-alive connections during graceful shutdown and let active connections finish only their current request before closing.
Commits
  • 5723cf4 chore(actix-web): prepare release 4.15.0
  • 7ae209e fix(multipart): include inner error in Payload and Parse display strings (#4186)
  • e5e9911 refactor(web): remove experimental io-uring feature (#4204)
  • dab8c5a add methods for mapping error responses (#2979)
  • 525dfb3 test(router): increase actix-router test coverage (#4196)
  • 9bf4fb2 chore(actix-files): prepare release 0.7.0
  • 3bb0007 refactor(files)!: remove experimental io-uring support (#4198)
  • 5b43241 build(deps): bump futures-core from 0.3.33 to 0.3.34 (#4200)
  • db14111 build(deps): bump rcgen from 0.14.8 to 0.14.9 (#4201)
  • 22a0760 chore: ignore RUSTSEC-2026-0258 (#4203)
  • Additional commits viewable in compare view

Updates actix-rt from 2.11.0 to 2.13.0

Release notes

Sourced from actix-rt's releases.

actix-rt: v2.13.0

  • Add Arbiter::try_new() and Arbiter::try_with_tokio_rt() for fallible Arbiter initialization.

actix-rt: v2.12.0

  • Add SystemRunner::stop_future and SystemRunner::into_parts for awaiting system stop inside block_on.
  • Allow {System, Arbiter}::with_tokio_rt to accept shared Tokio runtimes (e.g. Arc<tokio::runtime::Runtime> or &'static tokio::runtime::Runtime).
  • Remove experimental io-uring support.
  • Minimum supported Rust version (MSRV) is now 1.88.
Commits
  • dc2ee5d chore(actix-rt): prepare release 2.13.0
  • c1d1e91 test: rework arbiter_spawn_failure_does_not_panic_creator
  • e167efa chore: mark unreachable code
  • d1c945a build(deps): bump futures-util from 0.3.33 to 0.3.34 (#949)
  • 05b203d actix-rt: Add fallible Arbiter spawn APIs (try_new & try_with_tokio_rt) (#944)
  • e56afda chore(actix-codec): prepare release 0.5.3
  • 29ca22b perf(codec): improve performance by storing next index (#870)
  • 3539d95 test: cover graceful shutdown of queued connections (#946)
  • 6c90bfe chore(actix-server): prepare release 2.9.1
  • 6cabf4b fix: keep workers alive until graceful stop (#945)
  • Additional commits viewable in compare view

Updates futures from 0.3.33 to 0.3.34

Release notes

Sourced from futures's releases.

0.3.34

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Changelog

Sourced from futures's changelog.

0.3.34 - 2026-08-11

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Commits

Updates maxminddb from 0.30.0 to 0.30.3

Release notes

Sourced from maxminddb's releases.

0.30.3

  • Fixed typed decoding of malformed overflowing extended types to consistently return an InvalidDatabase error.

0.30.2

  • No user-visible changes. This release republishes 0.30.1 because its immutable GitHub release was deleted.
Changelog

Sourced from maxminddb's changelog.

0.30.3 - 2026-08-23

  • Fixed typed decoding of malformed overflowing extended types to consistently return an InvalidDatabase error.

0.30.2 - 2026-08-23

  • No user-visible changes. This release republishes 0.30.1 because its immutable GitHub release was deleted.

0.30.1 - 2026-08-23

  • Fixed malformed extended data types so decoding returns an InvalidDatabase error instead of panicking on u8 overflow. GitHub #122.
  • Added cargo-fuzz targets for standalone data values and public reader operations, including a bounded CI fuzzing job.
Commits

Updates sentry from 0.49.0 to 0.49.2

Release notes

Sourced from sentry's releases.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Changelog

Sourced from sentry's changelog.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

Fixes

  • Corrected disabled tracing semantics: transactions and spans created while tracing is disabled are ignored without generating client reports, while sampling decisions received from upstream traces continue to be propagated in outgoing trace headers. An explicit 0.0 trace sample rate remains distinct from disabled tracing and continues to generate client reports for locally unsampled transactions (#1286).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Commits

Updates sentry-actix from 0.49.0 to 0.49.2

Release notes

Sourced from sentry-actix's releases.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Changelog

Sourced from sentry-actix's changelog.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

Fixes

  • Corrected disabled tracing semantics: transactions and spans created while tracing is disabled are ignored without generating client reports, while sampling decisions received from upstream traces continue to be propagated in outgoing trace headers. An explicit 0.0 trace sample rate remains distinct from disabled tracing and continues to generate client reports for locally unsampled transactions (#1286).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Commits

Updates ipnet from 2.12.0 to 2.12.1

Changelog

Sourced from ipnet's changelog.

Version 2.12.1

  • Fixes bug where Ipv4Subnets(0.0.0.0, u32::MAX-1, 0) and Ipv6Subnets(::, u128::MAX-1, 0) incorrectly included u32::MAX and u128::MAX. See issue #70.
  • Fixes some typos in documentation and error messages
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 minor group with 7 updates:
| Package | From | To |
| --- | --- | --- |
| [actix-web](https://github.com/actix/actix-web) | `4.14.0` | `4.15.0` |
| [actix-rt](https://github.com/actix/actix-net) | `2.11.0` | `2.13.0` |
| [futures](https://github.com/rust-lang/futures-rs) | `0.3.33` | `0.3.34` |
| [maxminddb](https://github.com/oschwald/maxminddb-rust) | `0.30.0` | `0.30.3` |
| [sentry](https://github.com/getsentry/sentry-rust) | `0.49.0` | `0.49.2` |
| [sentry-actix](https://github.com/getsentry/sentry-rust) | `0.49.0` | `0.49.2` |
| [ipnet](https://github.com/krisprice/ipnet) | `2.12.0` | `2.12.1` |
Updates `actix-web` from 4.14.0 to 4.15.0
- [Release notes](https://github.com/actix/actix-web/releases)
- [Changelog](https://github.com/actix/actix-web/blob/main/CHANGES.md)
- [Commits](actix/actix-web@web-v4.14.0...web-v4.15.0)
Updates `actix-rt` from 2.11.0 to 2.13.0
- [Release notes](https://github.com/actix/actix-net/releases)
- [Commits](actix/actix-net@rt-v2.11.0...rt-v2.13.0)
Updates `futures` from 0.3.33 to 0.3.34
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.33...0.3.34)
Updates `maxminddb` from 0.30.0 to 0.30.3
- [Release notes](https://github.com/oschwald/maxminddb-rust/releases)
- [Changelog](https://github.com/oschwald/maxminddb-rust/blob/main/CHANGELOG.md)
- [Commits](oschwald/maxminddb-rust@v0.30.0...v0.30.3)
Updates `sentry` from 0.49.0 to 0.49.2
- [Release notes](https://github.com/getsentry/sentry-rust/releases)
- [Changelog](https://github.com/getsentry/sentry-rust/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-rust@0.49.0...0.49.2)
Updates `sentry-actix` from 0.49.0 to 0.49.2
- [Release notes](https://github.com/getsentry/sentry-rust/releases)
- [Changelog](https://github.com/getsentry/sentry-rust/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-rust@0.49.0...0.49.2)
Updates `ipnet` from 2.12.0 to 2.12.1
- [Release notes](https://github.com/krisprice/ipnet/releases)
- [Changelog](https://github.com/krisprice/ipnet/blob/master/RELEASES.md)
- [Commits](https://github.com/krisprice/ipnet/commits)
---
updated-dependencies:
- dependency-name: actix-web
dependency-version: 4.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: minor
- dependency-name: actix-rt
dependency-version: 2.13.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: minor
- dependency-name: futures
dependency-version: 0.3.34
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: maxminddb
dependency-version: 0.30.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: sentry
dependency-version: 0.49.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: sentry-actix
dependency-version: 0.49.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: ipnet
dependency-version: 2.12.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotBot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 1, 2026
@alexcottner
alexcottner merged commit 5210f8a into masterSep 1, 2026
2 of 3 checks passed
@alexcottner
alexcottner deleted the dependabot/cargo/minor-f7a2021ae0 branch September 1, 2026 15:13
@alexcottneralexcottner changed the title Bump the minor group with 7 updatesBump rust to 1.98 and several packagesSep 1, 2026
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesPull requests that update a dependency filerustPull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@alexcottner
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Add copy buttons to all
 blocks\n(function() {\n function addCopyButtons() {\n document.querySelectorAll('pre code').forEach(function(codeBlock) {\n if (codeBlock.parentElement.hasAttribute('data-copy-added')) return;\n codeBlock.parentElement.setAttribute('data-copy-added', 'true');\n \n var btn = document.createElement('button');\n btn.textContent = 'Copy';\n btn.style.cssText = 'position:absolute;top:4px;right:4px;padding:2px 8px;font-size:11px;background:#4ecdc4;border:none;border-radius:4px;color:#1a1a2e;cursor:pointer;opacity:0.7;transition:opacity 0.2s;';\n btn.onmouseover = function() { this.style.opacity = '1'; };\n btn.onmouseout = function() { this.style.opacity = '0.7'; };\n btn.onclick = function() {\n navigator.clipboard.writeText(codeBlock.textContent).then(function() {\n btn.textContent = 'Copied!';\n setTimeout(function() { btn.textContent = 'Copy'; }, 1500);\n });\n };\n codeBlock.parentElement.style.position = 'relative';\n codeBlock.parentElement.appendChild(btn);\n });\n }\n \n addCopyButtons();\n \n // Re-run on dynamic content\n var observer = new MutationObserver(addCopyButtons);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Add Copy Buttons to Code Blocks");
}
} catch(__e) { console.warn('[Userscript:Add Copy Buttons to Code Blocks]', __e); }
})();
(function(){
try {
var __m = "github.com";
var __re = new RegExp('^' + "github\\.com" + '
Skip to content

Bump rust to 1.98 and several packages - #265

Merged
alexcottner merged 3 commits into
masterfrom
dependabot/cargo/minor-f7a2021ae0
Sep 1, 2026
Merged

Bump rust to 1.98 and several packages#265
alexcottner merged 3 commits into
masterfrom
dependabot/cargo/minor-f7a2021ae0

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubSep 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor group with 7 updates:

PackageFromTo
actix-web4.14.04.15.0
actix-rt2.11.02.13.0
futures0.3.330.3.34
maxminddb0.30.00.30.3
sentry0.49.00.49.2
sentry-actix0.49.00.49.2
ipnet2.12.02.12.1

Updates actix-web from 4.14.0 to 4.15.0

Release notes

Sourced from actix-web's releases.

actix-web: v4.15.0

  • Add Error::add_response_mapper() to allow middleware to modify error-generated responses before they are sent.
  • Remove the experimental experimental-io-uring crate feature.

actix-web: v4.14.1

  • Close idle HTTP/1 keep-alive connections during graceful shutdown and let active connections finish only their current request before closing.
Commits
  • 5723cf4 chore(actix-web): prepare release 4.15.0
  • 7ae209e fix(multipart): include inner error in Payload and Parse display strings (#4186)
  • e5e9911 refactor(web): remove experimental io-uring feature (#4204)
  • dab8c5a add methods for mapping error responses (#2979)
  • 525dfb3 test(router): increase actix-router test coverage (#4196)
  • 9bf4fb2 chore(actix-files): prepare release 0.7.0
  • 3bb0007 refactor(files)!: remove experimental io-uring support (#4198)
  • 5b43241 build(deps): bump futures-core from 0.3.33 to 0.3.34 (#4200)
  • db14111 build(deps): bump rcgen from 0.14.8 to 0.14.9 (#4201)
  • 22a0760 chore: ignore RUSTSEC-2026-0258 (#4203)
  • Additional commits viewable in compare view

Updates actix-rt from 2.11.0 to 2.13.0

Release notes

Sourced from actix-rt's releases.

actix-rt: v2.13.0

  • Add Arbiter::try_new() and Arbiter::try_with_tokio_rt() for fallible Arbiter initialization.

actix-rt: v2.12.0

  • Add SystemRunner::stop_future and SystemRunner::into_parts for awaiting system stop inside block_on.
  • Allow {System, Arbiter}::with_tokio_rt to accept shared Tokio runtimes (e.g. Arc<tokio::runtime::Runtime> or &'static tokio::runtime::Runtime).
  • Remove experimental io-uring support.
  • Minimum supported Rust version (MSRV) is now 1.88.
Commits
  • dc2ee5d chore(actix-rt): prepare release 2.13.0
  • c1d1e91 test: rework arbiter_spawn_failure_does_not_panic_creator
  • e167efa chore: mark unreachable code
  • d1c945a build(deps): bump futures-util from 0.3.33 to 0.3.34 (#949)
  • 05b203d actix-rt: Add fallible Arbiter spawn APIs (try_new & try_with_tokio_rt) (#944)
  • e56afda chore(actix-codec): prepare release 0.5.3
  • 29ca22b perf(codec): improve performance by storing next index (#870)
  • 3539d95 test: cover graceful shutdown of queued connections (#946)
  • 6c90bfe chore(actix-server): prepare release 2.9.1
  • 6cabf4b fix: keep workers alive until graceful stop (#945)
  • Additional commits viewable in compare view

Updates futures from 0.3.33 to 0.3.34

Release notes

Sourced from futures's releases.

0.3.34

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Changelog

Sourced from futures's changelog.

0.3.34 - 2026-08-11

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Commits

Updates maxminddb from 0.30.0 to 0.30.3

Release notes

Sourced from maxminddb's releases.

0.30.3

  • Fixed typed decoding of malformed overflowing extended types to consistently return an InvalidDatabase error.

0.30.2

  • No user-visible changes. This release republishes 0.30.1 because its immutable GitHub release was deleted.
Changelog

Sourced from maxminddb's changelog.

0.30.3 - 2026-08-23

  • Fixed typed decoding of malformed overflowing extended types to consistently return an InvalidDatabase error.

0.30.2 - 2026-08-23

  • No user-visible changes. This release republishes 0.30.1 because its immutable GitHub release was deleted.

0.30.1 - 2026-08-23

  • Fixed malformed extended data types so decoding returns an InvalidDatabase error instead of panicking on u8 overflow. GitHub #122.
  • Added cargo-fuzz targets for standalone data values and public reader operations, including a bounded CI fuzzing job.
Commits

Updates sentry from 0.49.0 to 0.49.2

Release notes

Sourced from sentry's releases.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Changelog

Sourced from sentry's changelog.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

Fixes

  • Corrected disabled tracing semantics: transactions and spans created while tracing is disabled are ignored without generating client reports, while sampling decisions received from upstream traces continue to be propagated in outgoing trace headers. An explicit 0.0 trace sample rate remains distinct from disabled tracing and continues to generate client reports for locally unsampled transactions (#1286).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Commits

Updates sentry-actix from 0.49.0 to 0.49.2

Release notes

Sourced from sentry-actix's releases.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Changelog

Sourced from sentry-actix's changelog.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

Fixes

  • Corrected disabled tracing semantics: transactions and spans created while tracing is disabled are ignored without generating client reports, while sampling decisions received from upstream traces continue to be propagated in outgoing trace headers. An explicit 0.0 trace sample rate remains distinct from disabled tracing and continues to generate client reports for locally unsampled transactions (#1286).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Commits

Updates ipnet from 2.12.0 to 2.12.1

Changelog

Sourced from ipnet's changelog.

Version 2.12.1

  • Fixes bug where Ipv4Subnets(0.0.0.0, u32::MAX-1, 0) and Ipv6Subnets(::, u128::MAX-1, 0) incorrectly included u32::MAX and u128::MAX. See issue #70.
  • Fixes some typos in documentation and error messages
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 minor group with 7 updates:
| Package | From | To |
| --- | --- | --- |
| [actix-web](https://github.com/actix/actix-web) | `4.14.0` | `4.15.0` |
| [actix-rt](https://github.com/actix/actix-net) | `2.11.0` | `2.13.0` |
| [futures](https://github.com/rust-lang/futures-rs) | `0.3.33` | `0.3.34` |
| [maxminddb](https://github.com/oschwald/maxminddb-rust) | `0.30.0` | `0.30.3` |
| [sentry](https://github.com/getsentry/sentry-rust) | `0.49.0` | `0.49.2` |
| [sentry-actix](https://github.com/getsentry/sentry-rust) | `0.49.0` | `0.49.2` |
| [ipnet](https://github.com/krisprice/ipnet) | `2.12.0` | `2.12.1` |
Updates `actix-web` from 4.14.0 to 4.15.0
- [Release notes](https://github.com/actix/actix-web/releases)
- [Changelog](https://github.com/actix/actix-web/blob/main/CHANGES.md)
- [Commits](actix/actix-web@web-v4.14.0...web-v4.15.0)
Updates `actix-rt` from 2.11.0 to 2.13.0
- [Release notes](https://github.com/actix/actix-net/releases)
- [Commits](actix/actix-net@rt-v2.11.0...rt-v2.13.0)
Updates `futures` from 0.3.33 to 0.3.34
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.33...0.3.34)
Updates `maxminddb` from 0.30.0 to 0.30.3
- [Release notes](https://github.com/oschwald/maxminddb-rust/releases)
- [Changelog](https://github.com/oschwald/maxminddb-rust/blob/main/CHANGELOG.md)
- [Commits](oschwald/maxminddb-rust@v0.30.0...v0.30.3)
Updates `sentry` from 0.49.0 to 0.49.2
- [Release notes](https://github.com/getsentry/sentry-rust/releases)
- [Changelog](https://github.com/getsentry/sentry-rust/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-rust@0.49.0...0.49.2)
Updates `sentry-actix` from 0.49.0 to 0.49.2
- [Release notes](https://github.com/getsentry/sentry-rust/releases)
- [Changelog](https://github.com/getsentry/sentry-rust/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-rust@0.49.0...0.49.2)
Updates `ipnet` from 2.12.0 to 2.12.1
- [Release notes](https://github.com/krisprice/ipnet/releases)
- [Changelog](https://github.com/krisprice/ipnet/blob/master/RELEASES.md)
- [Commits](https://github.com/krisprice/ipnet/commits)
---
updated-dependencies:
- dependency-name: actix-web
dependency-version: 4.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: minor
- dependency-name: actix-rt
dependency-version: 2.13.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: minor
- dependency-name: futures
dependency-version: 0.3.34
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: maxminddb
dependency-version: 0.30.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: sentry
dependency-version: 0.49.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: sentry-actix
dependency-version: 0.49.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: ipnet
dependency-version: 2.12.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotBot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 1, 2026
@alexcottner
alexcottner merged commit 5210f8a into masterSep 1, 2026
2 of 3 checks passed
@alexcottner
alexcottner deleted the dependabot/cargo/minor-f7a2021ae0 branch September 1, 2026 15:13
@alexcottneralexcottner changed the title Bump the minor group with 7 updatesBump rust to 1.98 and several packagesSep 1, 2026
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesPull requests that update a dependency filerustPull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@alexcottner
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Force GitHub README to respect dark mode\n(function() {\n var style = document.createElement('style');\n style.textContent = '\n .markdown-body {\n color-scheme: dark light;\n }\n .markdown-body pre { background: #161b22 !important; }\n .markdown-body code { background: rgba(110, 118, 129, 0.4) !important; }\n .markdown-body table th, .markdown-body table td { border-color: #30363d !important; }\n .markdown-body img { background: #0d1117; }\n .markdown-body blockquote { border-left-color: #8b949e; }\n .markdown-body hr { border-color: #30363d; }\n ';\n document.head.appendChild(style);\n})();", "GitHub Dark Mode README Fix"); } } catch(__e) { console.warn('[Userscript:GitHub Dark Mode README Fix]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

Bump rust to 1.98 and several packages - #265

Merged
alexcottner merged 3 commits into
masterfrom
dependabot/cargo/minor-f7a2021ae0
Sep 1, 2026
Merged

Bump rust to 1.98 and several packages#265
alexcottner merged 3 commits into
masterfrom
dependabot/cargo/minor-f7a2021ae0

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubSep 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor group with 7 updates:

PackageFromTo
actix-web4.14.04.15.0
actix-rt2.11.02.13.0
futures0.3.330.3.34
maxminddb0.30.00.30.3
sentry0.49.00.49.2
sentry-actix0.49.00.49.2
ipnet2.12.02.12.1

Updates actix-web from 4.14.0 to 4.15.0

Release notes

Sourced from actix-web's releases.

actix-web: v4.15.0

  • Add Error::add_response_mapper() to allow middleware to modify error-generated responses before they are sent.
  • Remove the experimental experimental-io-uring crate feature.

actix-web: v4.14.1

  • Close idle HTTP/1 keep-alive connections during graceful shutdown and let active connections finish only their current request before closing.
Commits
  • 5723cf4 chore(actix-web): prepare release 4.15.0
  • 7ae209e fix(multipart): include inner error in Payload and Parse display strings (#4186)
  • e5e9911 refactor(web): remove experimental io-uring feature (#4204)
  • dab8c5a add methods for mapping error responses (#2979)
  • 525dfb3 test(router): increase actix-router test coverage (#4196)
  • 9bf4fb2 chore(actix-files): prepare release 0.7.0
  • 3bb0007 refactor(files)!: remove experimental io-uring support (#4198)
  • 5b43241 build(deps): bump futures-core from 0.3.33 to 0.3.34 (#4200)
  • db14111 build(deps): bump rcgen from 0.14.8 to 0.14.9 (#4201)
  • 22a0760 chore: ignore RUSTSEC-2026-0258 (#4203)
  • Additional commits viewable in compare view

Updates actix-rt from 2.11.0 to 2.13.0

Release notes

Sourced from actix-rt's releases.

actix-rt: v2.13.0

  • Add Arbiter::try_new() and Arbiter::try_with_tokio_rt() for fallible Arbiter initialization.

actix-rt: v2.12.0

  • Add SystemRunner::stop_future and SystemRunner::into_parts for awaiting system stop inside block_on.
  • Allow {System, Arbiter}::with_tokio_rt to accept shared Tokio runtimes (e.g. Arc<tokio::runtime::Runtime> or &'static tokio::runtime::Runtime).
  • Remove experimental io-uring support.
  • Minimum supported Rust version (MSRV) is now 1.88.
Commits
  • dc2ee5d chore(actix-rt): prepare release 2.13.0
  • c1d1e91 test: rework arbiter_spawn_failure_does_not_panic_creator
  • e167efa chore: mark unreachable code
  • d1c945a build(deps): bump futures-util from 0.3.33 to 0.3.34 (#949)
  • 05b203d actix-rt: Add fallible Arbiter spawn APIs (try_new & try_with_tokio_rt) (#944)
  • e56afda chore(actix-codec): prepare release 0.5.3
  • 29ca22b perf(codec): improve performance by storing next index (#870)
  • 3539d95 test: cover graceful shutdown of queued connections (#946)
  • 6c90bfe chore(actix-server): prepare release 2.9.1
  • 6cabf4b fix: keep workers alive until graceful stop (#945)
  • Additional commits viewable in compare view

Updates futures from 0.3.33 to 0.3.34

Release notes

Sourced from futures's releases.

0.3.34

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Changelog

Sourced from futures's changelog.

0.3.34 - 2026-08-11

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Commits

Updates maxminddb from 0.30.0 to 0.30.3

Release notes

Sourced from maxminddb's releases.

0.30.3

  • Fixed typed decoding of malformed overflowing extended types to consistently return an InvalidDatabase error.

0.30.2

  • No user-visible changes. This release republishes 0.30.1 because its immutable GitHub release was deleted.
Changelog

Sourced from maxminddb's changelog.

0.30.3 - 2026-08-23

  • Fixed typed decoding of malformed overflowing extended types to consistently return an InvalidDatabase error.

0.30.2 - 2026-08-23

  • No user-visible changes. This release republishes 0.30.1 because its immutable GitHub release was deleted.

0.30.1 - 2026-08-23

  • Fixed malformed extended data types so decoding returns an InvalidDatabase error instead of panicking on u8 overflow. GitHub #122.
  • Added cargo-fuzz targets for standalone data values and public reader operations, including a bounded CI fuzzing job.
Commits

Updates sentry from 0.49.0 to 0.49.2

Release notes

Sourced from sentry's releases.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Changelog

Sourced from sentry's changelog.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

Fixes

  • Corrected disabled tracing semantics: transactions and spans created while tracing is disabled are ignored without generating client reports, while sampling decisions received from upstream traces continue to be propagated in outgoing trace headers. An explicit 0.0 trace sample rate remains distinct from disabled tracing and continues to generate client reports for locally unsampled transactions (#1286).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Commits

Updates sentry-actix from 0.49.0 to 0.49.2

Release notes

Sourced from sentry-actix's releases.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Changelog

Sourced from sentry-actix's changelog.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

Fixes

  • Corrected disabled tracing semantics: transactions and spans created while tracing is disabled are ignored without generating client reports, while sampling decisions received from upstream traces continue to be propagated in outgoing trace headers. An explicit 0.0 trace sample rate remains distinct from disabled tracing and continues to generate client reports for locally unsampled transactions (#1286).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Commits

Updates ipnet from 2.12.0 to 2.12.1

Changelog

Sourced from ipnet's changelog.

Version 2.12.1

  • Fixes bug where Ipv4Subnets(0.0.0.0, u32::MAX-1, 0) and Ipv6Subnets(::, u128::MAX-1, 0) incorrectly included u32::MAX and u128::MAX. See issue #70.
  • Fixes some typos in documentation and error messages
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 minor group with 7 updates:
| Package | From | To |
| --- | --- | --- |
| [actix-web](https://github.com/actix/actix-web) | `4.14.0` | `4.15.0` |
| [actix-rt](https://github.com/actix/actix-net) | `2.11.0` | `2.13.0` |
| [futures](https://github.com/rust-lang/futures-rs) | `0.3.33` | `0.3.34` |
| [maxminddb](https://github.com/oschwald/maxminddb-rust) | `0.30.0` | `0.30.3` |
| [sentry](https://github.com/getsentry/sentry-rust) | `0.49.0` | `0.49.2` |
| [sentry-actix](https://github.com/getsentry/sentry-rust) | `0.49.0` | `0.49.2` |
| [ipnet](https://github.com/krisprice/ipnet) | `2.12.0` | `2.12.1` |
Updates `actix-web` from 4.14.0 to 4.15.0
- [Release notes](https://github.com/actix/actix-web/releases)
- [Changelog](https://github.com/actix/actix-web/blob/main/CHANGES.md)
- [Commits](actix/actix-web@web-v4.14.0...web-v4.15.0)
Updates `actix-rt` from 2.11.0 to 2.13.0
- [Release notes](https://github.com/actix/actix-net/releases)
- [Commits](actix/actix-net@rt-v2.11.0...rt-v2.13.0)
Updates `futures` from 0.3.33 to 0.3.34
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.33...0.3.34)
Updates `maxminddb` from 0.30.0 to 0.30.3
- [Release notes](https://github.com/oschwald/maxminddb-rust/releases)
- [Changelog](https://github.com/oschwald/maxminddb-rust/blob/main/CHANGELOG.md)
- [Commits](oschwald/maxminddb-rust@v0.30.0...v0.30.3)
Updates `sentry` from 0.49.0 to 0.49.2
- [Release notes](https://github.com/getsentry/sentry-rust/releases)
- [Changelog](https://github.com/getsentry/sentry-rust/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-rust@0.49.0...0.49.2)
Updates `sentry-actix` from 0.49.0 to 0.49.2
- [Release notes](https://github.com/getsentry/sentry-rust/releases)
- [Changelog](https://github.com/getsentry/sentry-rust/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-rust@0.49.0...0.49.2)
Updates `ipnet` from 2.12.0 to 2.12.1
- [Release notes](https://github.com/krisprice/ipnet/releases)
- [Changelog](https://github.com/krisprice/ipnet/blob/master/RELEASES.md)
- [Commits](https://github.com/krisprice/ipnet/commits)
---
updated-dependencies:
- dependency-name: actix-web
dependency-version: 4.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: minor
- dependency-name: actix-rt
dependency-version: 2.13.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: minor
- dependency-name: futures
dependency-version: 0.3.34
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: maxminddb
dependency-version: 0.30.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: sentry
dependency-version: 0.49.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: sentry-actix
dependency-version: 0.49.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: ipnet
dependency-version: 2.12.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotBot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 1, 2026
@alexcottner
alexcottner merged commit 5210f8a into masterSep 1, 2026
2 of 3 checks passed
@alexcottner
alexcottner deleted the dependabot/cargo/minor-f7a2021ae0 branch September 1, 2026 15:13
@alexcottneralexcottner changed the title Bump the minor group with 7 updatesBump rust to 1.98 and several packagesSep 1, 2026
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesPull requests that update a dependency filerustPull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@alexcottner
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Highlight search terms from Google/DuckDuckGo/Bing referrer\n(function() {\n var ref = document.referrer;\n var terms = [];\n \n if (ref.includes('google.com') || ref.includes('duckduckgo.com') || ref.includes('bing.com')) {\n var url = new URL(ref);\n var q = url.searchParams.get('q') || url.searchParams.get('p');\n if (q) {\n terms = q.split(/\\s+/).filter(function(t) { return t.length > 2; });\n }\n }\n \n if (terms.length === 0) return;\n \n var style = document.createElement('style');\n style.textContent = '.userscript-highlight { background: #fbbf24; color: #1a1a2e; padding: 1px 3px; border-radius: 2px; }';\n document.head.appendChild(style);\n \n function highlight(node) {\n if (node.nodeType === 3) { // text node\n var text = node.textContent;\n var found = false;\n terms.forEach(function(term) {\n var regex = new RegExp('(' + term.replace(/[.*+?^${}()|[\\]\\\\]/g, '\\\\') + ')', 'gi');\n if (regex.test(text)) {\n found = true;\n var frag = document.createDocumentFragment();\n var parts = text.split(regex);\n parts.forEach(function(part, i) {\n if (i % 2 === 0) {\n frag.appendChild(document.createTextNode(part));\n } else {\n var span = document.createElement('span');\n span.className = 'userscript-highlight';\n span.textContent = part;\n frag.appendChild(span);\n }\n });\n node.parentNode.replaceChild(frag, node);\n }\n });\n } else if (node.nodeType === 1 && node.childNodes) { // element\n var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT'];\n if (!skipTags.includes(node.tagName)) {\n Array.from(node.childNodes).forEach(highlight);\n }\n }\n }\n \n highlight(document.body);\n \n // Re-highlight on dynamic content\n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1 || node.nodeType === 3) highlight(node);\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Highlight Search Terms"); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

Bump rust to 1.98 and several packages - #265

Merged
alexcottner merged 3 commits into
masterfrom
dependabot/cargo/minor-f7a2021ae0
Sep 1, 2026
Merged

Bump rust to 1.98 and several packages#265
alexcottner merged 3 commits into
masterfrom
dependabot/cargo/minor-f7a2021ae0

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubSep 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor group with 7 updates:

PackageFromTo
actix-web4.14.04.15.0
actix-rt2.11.02.13.0
futures0.3.330.3.34
maxminddb0.30.00.30.3
sentry0.49.00.49.2
sentry-actix0.49.00.49.2
ipnet2.12.02.12.1

Updates actix-web from 4.14.0 to 4.15.0

Release notes

Sourced from actix-web's releases.

actix-web: v4.15.0

  • Add Error::add_response_mapper() to allow middleware to modify error-generated responses before they are sent.
  • Remove the experimental experimental-io-uring crate feature.

actix-web: v4.14.1

  • Close idle HTTP/1 keep-alive connections during graceful shutdown and let active connections finish only their current request before closing.
Commits
  • 5723cf4 chore(actix-web): prepare release 4.15.0
  • 7ae209e fix(multipart): include inner error in Payload and Parse display strings (#4186)
  • e5e9911 refactor(web): remove experimental io-uring feature (#4204)
  • dab8c5a add methods for mapping error responses (#2979)
  • 525dfb3 test(router): increase actix-router test coverage (#4196)
  • 9bf4fb2 chore(actix-files): prepare release 0.7.0
  • 3bb0007 refactor(files)!: remove experimental io-uring support (#4198)
  • 5b43241 build(deps): bump futures-core from 0.3.33 to 0.3.34 (#4200)
  • db14111 build(deps): bump rcgen from 0.14.8 to 0.14.9 (#4201)
  • 22a0760 chore: ignore RUSTSEC-2026-0258 (#4203)
  • Additional commits viewable in compare view

Updates actix-rt from 2.11.0 to 2.13.0

Release notes

Sourced from actix-rt's releases.

actix-rt: v2.13.0

  • Add Arbiter::try_new() and Arbiter::try_with_tokio_rt() for fallible Arbiter initialization.

actix-rt: v2.12.0

  • Add SystemRunner::stop_future and SystemRunner::into_parts for awaiting system stop inside block_on.
  • Allow {System, Arbiter}::with_tokio_rt to accept shared Tokio runtimes (e.g. Arc<tokio::runtime::Runtime> or &'static tokio::runtime::Runtime).
  • Remove experimental io-uring support.
  • Minimum supported Rust version (MSRV) is now 1.88.
Commits
  • dc2ee5d chore(actix-rt): prepare release 2.13.0
  • c1d1e91 test: rework arbiter_spawn_failure_does_not_panic_creator
  • e167efa chore: mark unreachable code
  • d1c945a build(deps): bump futures-util from 0.3.33 to 0.3.34 (#949)
  • 05b203d actix-rt: Add fallible Arbiter spawn APIs (try_new & try_with_tokio_rt) (#944)
  • e56afda chore(actix-codec): prepare release 0.5.3
  • 29ca22b perf(codec): improve performance by storing next index (#870)
  • 3539d95 test: cover graceful shutdown of queued connections (#946)
  • 6c90bfe chore(actix-server): prepare release 2.9.1
  • 6cabf4b fix: keep workers alive until graceful stop (#945)
  • Additional commits viewable in compare view

Updates futures from 0.3.33 to 0.3.34

Release notes

Sourced from futures's releases.

0.3.34

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Changelog

Sourced from futures's changelog.

0.3.34 - 2026-08-11

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Commits

Updates maxminddb from 0.30.0 to 0.30.3

Release notes

Sourced from maxminddb's releases.

0.30.3

  • Fixed typed decoding of malformed overflowing extended types to consistently return an InvalidDatabase error.

0.30.2

  • No user-visible changes. This release republishes 0.30.1 because its immutable GitHub release was deleted.
Changelog

Sourced from maxminddb's changelog.

0.30.3 - 2026-08-23

  • Fixed typed decoding of malformed overflowing extended types to consistently return an InvalidDatabase error.

0.30.2 - 2026-08-23

  • No user-visible changes. This release republishes 0.30.1 because its immutable GitHub release was deleted.

0.30.1 - 2026-08-23

  • Fixed malformed extended data types so decoding returns an InvalidDatabase error instead of panicking on u8 overflow. GitHub #122.
  • Added cargo-fuzz targets for standalone data values and public reader operations, including a bounded CI fuzzing job.
Commits

Updates sentry from 0.49.0 to 0.49.2

Release notes

Sourced from sentry's releases.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Changelog

Sourced from sentry's changelog.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

Fixes

  • Corrected disabled tracing semantics: transactions and spans created while tracing is disabled are ignored without generating client reports, while sampling decisions received from upstream traces continue to be propagated in outgoing trace headers. An explicit 0.0 trace sample rate remains distinct from disabled tracing and continues to generate client reports for locally unsampled transactions (#1286).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Commits

Updates sentry-actix from 0.49.0 to 0.49.2

Release notes

Sourced from sentry-actix's releases.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Changelog

Sourced from sentry-actix's changelog.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

Fixes

  • Corrected disabled tracing semantics: transactions and spans created while tracing is disabled are ignored without generating client reports, while sampling decisions received from upstream traces continue to be propagated in outgoing trace headers. An explicit 0.0 trace sample rate remains distinct from disabled tracing and continues to generate client reports for locally unsampled transactions (#1286).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Commits

Updates ipnet from 2.12.0 to 2.12.1

Changelog

Sourced from ipnet's changelog.

Version 2.12.1

  • Fixes bug where Ipv4Subnets(0.0.0.0, u32::MAX-1, 0) and Ipv6Subnets(::, u128::MAX-1, 0) incorrectly included u32::MAX and u128::MAX. See issue #70.
  • Fixes some typos in documentation and error messages
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 minor group with 7 updates:
| Package | From | To |
| --- | --- | --- |
| [actix-web](https://github.com/actix/actix-web) | `4.14.0` | `4.15.0` |
| [actix-rt](https://github.com/actix/actix-net) | `2.11.0` | `2.13.0` |
| [futures](https://github.com/rust-lang/futures-rs) | `0.3.33` | `0.3.34` |
| [maxminddb](https://github.com/oschwald/maxminddb-rust) | `0.30.0` | `0.30.3` |
| [sentry](https://github.com/getsentry/sentry-rust) | `0.49.0` | `0.49.2` |
| [sentry-actix](https://github.com/getsentry/sentry-rust) | `0.49.0` | `0.49.2` |
| [ipnet](https://github.com/krisprice/ipnet) | `2.12.0` | `2.12.1` |
Updates `actix-web` from 4.14.0 to 4.15.0
- [Release notes](https://github.com/actix/actix-web/releases)
- [Changelog](https://github.com/actix/actix-web/blob/main/CHANGES.md)
- [Commits](actix/actix-web@web-v4.14.0...web-v4.15.0)
Updates `actix-rt` from 2.11.0 to 2.13.0
- [Release notes](https://github.com/actix/actix-net/releases)
- [Commits](actix/actix-net@rt-v2.11.0...rt-v2.13.0)
Updates `futures` from 0.3.33 to 0.3.34
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.33...0.3.34)
Updates `maxminddb` from 0.30.0 to 0.30.3
- [Release notes](https://github.com/oschwald/maxminddb-rust/releases)
- [Changelog](https://github.com/oschwald/maxminddb-rust/blob/main/CHANGELOG.md)
- [Commits](oschwald/maxminddb-rust@v0.30.0...v0.30.3)
Updates `sentry` from 0.49.0 to 0.49.2
- [Release notes](https://github.com/getsentry/sentry-rust/releases)
- [Changelog](https://github.com/getsentry/sentry-rust/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-rust@0.49.0...0.49.2)
Updates `sentry-actix` from 0.49.0 to 0.49.2
- [Release notes](https://github.com/getsentry/sentry-rust/releases)
- [Changelog](https://github.com/getsentry/sentry-rust/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-rust@0.49.0...0.49.2)
Updates `ipnet` from 2.12.0 to 2.12.1
- [Release notes](https://github.com/krisprice/ipnet/releases)
- [Changelog](https://github.com/krisprice/ipnet/blob/master/RELEASES.md)
- [Commits](https://github.com/krisprice/ipnet/commits)
---
updated-dependencies:
- dependency-name: actix-web
dependency-version: 4.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: minor
- dependency-name: actix-rt
dependency-version: 2.13.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: minor
- dependency-name: futures
dependency-version: 0.3.34
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: maxminddb
dependency-version: 0.30.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: sentry
dependency-version: 0.49.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: sentry-actix
dependency-version: 0.49.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: ipnet
dependency-version: 2.12.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotBot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 1, 2026
@alexcottner
alexcottner merged commit 5210f8a into masterSep 1, 2026
2 of 3 checks passed
@alexcottner
alexcottner deleted the dependabot/cargo/minor-f7a2021ae0 branch September 1, 2026 15:13
@alexcottneralexcottner changed the title Bump the minor group with 7 updatesBump rust to 1.98 and several packagesSep 1, 2026
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesPull requests that update a dependency filerustPull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@alexcottner
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Strip utm_, fbclid, gclid, etc. from all links on page\n(function() {\n var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content',\n 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid',\n 'ref', 'ref_src', 'source', 'medium', 'campaign'];\n \n function cleanUrl(url) {\n try {\n var u = new URL(url, window.location.origin);\n var changed = false;\n trackingParams.forEach(function(p) {\n if (u.searchParams.has(p)) {\n u.searchParams.delete(p);\n changed = true;\n }\n });\n return changed ? u.toString() : url;\n } catch (e) {\n return url;\n }\n }\n \n function cleanLinks() {\n document.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n \n cleanLinks();\n \n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1) {\n if (node.tagName === 'A') cleanLinks();\n node.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Remove Tracking Parameters from Links"); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + '
Skip to content

Bump rust to 1.98 and several packages - #265

Merged
alexcottner merged 3 commits into
masterfrom
dependabot/cargo/minor-f7a2021ae0
Sep 1, 2026
Merged

Bump rust to 1.98 and several packages#265
alexcottner merged 3 commits into
masterfrom
dependabot/cargo/minor-f7a2021ae0

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubSep 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor group with 7 updates:

PackageFromTo
actix-web4.14.04.15.0
actix-rt2.11.02.13.0
futures0.3.330.3.34
maxminddb0.30.00.30.3
sentry0.49.00.49.2
sentry-actix0.49.00.49.2
ipnet2.12.02.12.1

Updates actix-web from 4.14.0 to 4.15.0

Release notes

Sourced from actix-web's releases.

actix-web: v4.15.0

  • Add Error::add_response_mapper() to allow middleware to modify error-generated responses before they are sent.
  • Remove the experimental experimental-io-uring crate feature.

actix-web: v4.14.1

  • Close idle HTTP/1 keep-alive connections during graceful shutdown and let active connections finish only their current request before closing.
Commits
  • 5723cf4 chore(actix-web): prepare release 4.15.0
  • 7ae209e fix(multipart): include inner error in Payload and Parse display strings (#4186)
  • e5e9911 refactor(web): remove experimental io-uring feature (#4204)
  • dab8c5a add methods for mapping error responses (#2979)
  • 525dfb3 test(router): increase actix-router test coverage (#4196)
  • 9bf4fb2 chore(actix-files): prepare release 0.7.0
  • 3bb0007 refactor(files)!: remove experimental io-uring support (#4198)
  • 5b43241 build(deps): bump futures-core from 0.3.33 to 0.3.34 (#4200)
  • db14111 build(deps): bump rcgen from 0.14.8 to 0.14.9 (#4201)
  • 22a0760 chore: ignore RUSTSEC-2026-0258 (#4203)
  • Additional commits viewable in compare view

Updates actix-rt from 2.11.0 to 2.13.0

Release notes

Sourced from actix-rt's releases.

actix-rt: v2.13.0

  • Add Arbiter::try_new() and Arbiter::try_with_tokio_rt() for fallible Arbiter initialization.

actix-rt: v2.12.0

  • Add SystemRunner::stop_future and SystemRunner::into_parts for awaiting system stop inside block_on.
  • Allow {System, Arbiter}::with_tokio_rt to accept shared Tokio runtimes (e.g. Arc<tokio::runtime::Runtime> or &'static tokio::runtime::Runtime).
  • Remove experimental io-uring support.
  • Minimum supported Rust version (MSRV) is now 1.88.
Commits
  • dc2ee5d chore(actix-rt): prepare release 2.13.0
  • c1d1e91 test: rework arbiter_spawn_failure_does_not_panic_creator
  • e167efa chore: mark unreachable code
  • d1c945a build(deps): bump futures-util from 0.3.33 to 0.3.34 (#949)
  • 05b203d actix-rt: Add fallible Arbiter spawn APIs (try_new & try_with_tokio_rt) (#944)
  • e56afda chore(actix-codec): prepare release 0.5.3
  • 29ca22b perf(codec): improve performance by storing next index (#870)
  • 3539d95 test: cover graceful shutdown of queued connections (#946)
  • 6c90bfe chore(actix-server): prepare release 2.9.1
  • 6cabf4b fix: keep workers alive until graceful stop (#945)
  • Additional commits viewable in compare view

Updates futures from 0.3.33 to 0.3.34

Release notes

Sourced from futures's releases.

0.3.34

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Changelog

Sourced from futures's changelog.

0.3.34 - 2026-08-11

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Commits

Updates maxminddb from 0.30.0 to 0.30.3

Release notes

Sourced from maxminddb's releases.

0.30.3

  • Fixed typed decoding of malformed overflowing extended types to consistently return an InvalidDatabase error.

0.30.2

  • No user-visible changes. This release republishes 0.30.1 because its immutable GitHub release was deleted.
Changelog

Sourced from maxminddb's changelog.

0.30.3 - 2026-08-23

  • Fixed typed decoding of malformed overflowing extended types to consistently return an InvalidDatabase error.

0.30.2 - 2026-08-23

  • No user-visible changes. This release republishes 0.30.1 because its immutable GitHub release was deleted.

0.30.1 - 2026-08-23

  • Fixed malformed extended data types so decoding returns an InvalidDatabase error instead of panicking on u8 overflow. GitHub #122.
  • Added cargo-fuzz targets for standalone data values and public reader operations, including a bounded CI fuzzing job.
Commits

Updates sentry from 0.49.0 to 0.49.2

Release notes

Sourced from sentry's releases.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Changelog

Sourced from sentry's changelog.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

Fixes

  • Corrected disabled tracing semantics: transactions and spans created while tracing is disabled are ignored without generating client reports, while sampling decisions received from upstream traces continue to be propagated in outgoing trace headers. An explicit 0.0 trace sample rate remains distinct from disabled tracing and continues to generate client reports for locally unsampled transactions (#1286).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Commits

Updates sentry-actix from 0.49.0 to 0.49.2

Release notes

Sourced from sentry-actix's releases.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Changelog

Sourced from sentry-actix's changelog.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

Fixes

  • Corrected disabled tracing semantics: transactions and spans created while tracing is disabled are ignored without generating client reports, while sampling decisions received from upstream traces continue to be propagated in outgoing trace headers. An explicit 0.0 trace sample rate remains distinct from disabled tracing and continues to generate client reports for locally unsampled transactions (#1286).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Commits

Updates ipnet from 2.12.0 to 2.12.1

Changelog

Sourced from ipnet's changelog.

Version 2.12.1

  • Fixes bug where Ipv4Subnets(0.0.0.0, u32::MAX-1, 0) and Ipv6Subnets(::, u128::MAX-1, 0) incorrectly included u32::MAX and u128::MAX. See issue #70.
  • Fixes some typos in documentation and error messages
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 minor group with 7 updates:
| Package | From | To |
| --- | --- | --- |
| [actix-web](https://github.com/actix/actix-web) | `4.14.0` | `4.15.0` |
| [actix-rt](https://github.com/actix/actix-net) | `2.11.0` | `2.13.0` |
| [futures](https://github.com/rust-lang/futures-rs) | `0.3.33` | `0.3.34` |
| [maxminddb](https://github.com/oschwald/maxminddb-rust) | `0.30.0` | `0.30.3` |
| [sentry](https://github.com/getsentry/sentry-rust) | `0.49.0` | `0.49.2` |
| [sentry-actix](https://github.com/getsentry/sentry-rust) | `0.49.0` | `0.49.2` |
| [ipnet](https://github.com/krisprice/ipnet) | `2.12.0` | `2.12.1` |
Updates `actix-web` from 4.14.0 to 4.15.0
- [Release notes](https://github.com/actix/actix-web/releases)
- [Changelog](https://github.com/actix/actix-web/blob/main/CHANGES.md)
- [Commits](actix/actix-web@web-v4.14.0...web-v4.15.0)
Updates `actix-rt` from 2.11.0 to 2.13.0
- [Release notes](https://github.com/actix/actix-net/releases)
- [Commits](actix/actix-net@rt-v2.11.0...rt-v2.13.0)
Updates `futures` from 0.3.33 to 0.3.34
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.33...0.3.34)
Updates `maxminddb` from 0.30.0 to 0.30.3
- [Release notes](https://github.com/oschwald/maxminddb-rust/releases)
- [Changelog](https://github.com/oschwald/maxminddb-rust/blob/main/CHANGELOG.md)
- [Commits](oschwald/maxminddb-rust@v0.30.0...v0.30.3)
Updates `sentry` from 0.49.0 to 0.49.2
- [Release notes](https://github.com/getsentry/sentry-rust/releases)
- [Changelog](https://github.com/getsentry/sentry-rust/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-rust@0.49.0...0.49.2)
Updates `sentry-actix` from 0.49.0 to 0.49.2
- [Release notes](https://github.com/getsentry/sentry-rust/releases)
- [Changelog](https://github.com/getsentry/sentry-rust/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-rust@0.49.0...0.49.2)
Updates `ipnet` from 2.12.0 to 2.12.1
- [Release notes](https://github.com/krisprice/ipnet/releases)
- [Changelog](https://github.com/krisprice/ipnet/blob/master/RELEASES.md)
- [Commits](https://github.com/krisprice/ipnet/commits)
---
updated-dependencies:
- dependency-name: actix-web
dependency-version: 4.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: minor
- dependency-name: actix-rt
dependency-version: 2.13.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: minor
- dependency-name: futures
dependency-version: 0.3.34
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: maxminddb
dependency-version: 0.30.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: sentry
dependency-version: 0.49.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: sentry-actix
dependency-version: 0.49.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: ipnet
dependency-version: 2.12.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotBot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 1, 2026
@alexcottner
alexcottner merged commit 5210f8a into masterSep 1, 2026
2 of 3 checks passed
@alexcottner
alexcottner deleted the dependabot/cargo/minor-f7a2021ae0 branch September 1, 2026 15:13
@alexcottneralexcottner changed the title Bump the minor group with 7 updatesBump rust to 1.98 and several packagesSep 1, 2026
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesPull requests that update a dependency filerustPull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@alexcottner
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Auto-enable theater mode on YouTube\n(function() {\n function tryTheater() {\n var btn = document.querySelector('button[aria-label=\"Theater mode\"], ytd-player #player button[title=\"Theater mode\"]');\n if (btn && !btn.classList.contains('activated')) {\n btn.click();\n }\n }\n \n // Try immediately\n tryTheater();\n \n // Try after navigation (SPA)\n var lastUrl = location.href;\n setInterval(function() {\n if (location.href !== lastUrl) {\n lastUrl = location.href;\n setTimeout(tryTheater, 500);\n }\n }, 1000);\n \n // Also try on player load\n var observer = new MutationObserver(tryTheater);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "YouTube Theater Mode Default"); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

Bump rust to 1.98 and several packages - #265

Merged
alexcottner merged 3 commits into
masterfrom
dependabot/cargo/minor-f7a2021ae0
Sep 1, 2026
Merged

Bump rust to 1.98 and several packages#265
alexcottner merged 3 commits into
masterfrom
dependabot/cargo/minor-f7a2021ae0

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubSep 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor group with 7 updates:

PackageFromTo
actix-web4.14.04.15.0
actix-rt2.11.02.13.0
futures0.3.330.3.34
maxminddb0.30.00.30.3
sentry0.49.00.49.2
sentry-actix0.49.00.49.2
ipnet2.12.02.12.1

Updates actix-web from 4.14.0 to 4.15.0

Release notes

Sourced from actix-web's releases.

actix-web: v4.15.0

  • Add Error::add_response_mapper() to allow middleware to modify error-generated responses before they are sent.
  • Remove the experimental experimental-io-uring crate feature.

actix-web: v4.14.1

  • Close idle HTTP/1 keep-alive connections during graceful shutdown and let active connections finish only their current request before closing.
Commits
  • 5723cf4 chore(actix-web): prepare release 4.15.0
  • 7ae209e fix(multipart): include inner error in Payload and Parse display strings (#4186)
  • e5e9911 refactor(web): remove experimental io-uring feature (#4204)
  • dab8c5a add methods for mapping error responses (#2979)
  • 525dfb3 test(router): increase actix-router test coverage (#4196)
  • 9bf4fb2 chore(actix-files): prepare release 0.7.0
  • 3bb0007 refactor(files)!: remove experimental io-uring support (#4198)
  • 5b43241 build(deps): bump futures-core from 0.3.33 to 0.3.34 (#4200)
  • db14111 build(deps): bump rcgen from 0.14.8 to 0.14.9 (#4201)
  • 22a0760 chore: ignore RUSTSEC-2026-0258 (#4203)
  • Additional commits viewable in compare view

Updates actix-rt from 2.11.0 to 2.13.0

Release notes

Sourced from actix-rt's releases.

actix-rt: v2.13.0

  • Add Arbiter::try_new() and Arbiter::try_with_tokio_rt() for fallible Arbiter initialization.

actix-rt: v2.12.0

  • Add SystemRunner::stop_future and SystemRunner::into_parts for awaiting system stop inside block_on.
  • Allow {System, Arbiter}::with_tokio_rt to accept shared Tokio runtimes (e.g. Arc<tokio::runtime::Runtime> or &'static tokio::runtime::Runtime).
  • Remove experimental io-uring support.
  • Minimum supported Rust version (MSRV) is now 1.88.
Commits
  • dc2ee5d chore(actix-rt): prepare release 2.13.0
  • c1d1e91 test: rework arbiter_spawn_failure_does_not_panic_creator
  • e167efa chore: mark unreachable code
  • d1c945a build(deps): bump futures-util from 0.3.33 to 0.3.34 (#949)
  • 05b203d actix-rt: Add fallible Arbiter spawn APIs (try_new & try_with_tokio_rt) (#944)
  • e56afda chore(actix-codec): prepare release 0.5.3
  • 29ca22b perf(codec): improve performance by storing next index (#870)
  • 3539d95 test: cover graceful shutdown of queued connections (#946)
  • 6c90bfe chore(actix-server): prepare release 2.9.1
  • 6cabf4b fix: keep workers alive until graceful stop (#945)
  • Additional commits viewable in compare view

Updates futures from 0.3.33 to 0.3.34

Release notes

Sourced from futures's releases.

0.3.34

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Changelog

Sourced from futures's changelog.

0.3.34 - 2026-08-11

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Commits

Updates maxminddb from 0.30.0 to 0.30.3

Release notes

Sourced from maxminddb's releases.

0.30.3

  • Fixed typed decoding of malformed overflowing extended types to consistently return an InvalidDatabase error.

0.30.2

  • No user-visible changes. This release republishes 0.30.1 because its immutable GitHub release was deleted.
Changelog

Sourced from maxminddb's changelog.

0.30.3 - 2026-08-23

  • Fixed typed decoding of malformed overflowing extended types to consistently return an InvalidDatabase error.

0.30.2 - 2026-08-23

  • No user-visible changes. This release republishes 0.30.1 because its immutable GitHub release was deleted.

0.30.1 - 2026-08-23

  • Fixed malformed extended data types so decoding returns an InvalidDatabase error instead of panicking on u8 overflow. GitHub #122.
  • Added cargo-fuzz targets for standalone data values and public reader operations, including a bounded CI fuzzing job.
Commits

Updates sentry from 0.49.0 to 0.49.2

Release notes

Sourced from sentry's releases.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Changelog

Sourced from sentry's changelog.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

Fixes

  • Corrected disabled tracing semantics: transactions and spans created while tracing is disabled are ignored without generating client reports, while sampling decisions received from upstream traces continue to be propagated in outgoing trace headers. An explicit 0.0 trace sample rate remains distinct from disabled tracing and continues to generate client reports for locally unsampled transactions (#1286).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Commits

Updates sentry-actix from 0.49.0 to 0.49.2

Release notes

Sourced from sentry-actix's releases.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Changelog

Sourced from sentry-actix's changelog.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

Fixes

  • Corrected disabled tracing semantics: transactions and spans created while tracing is disabled are ignored without generating client reports, while sampling decisions received from upstream traces continue to be propagated in outgoing trace headers. An explicit 0.0 trace sample rate remains distinct from disabled tracing and continues to generate client reports for locally unsampled transactions (#1286).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Commits

Updates ipnet from 2.12.0 to 2.12.1

Changelog

Sourced from ipnet's changelog.

Version 2.12.1

  • Fixes bug where Ipv4Subnets(0.0.0.0, u32::MAX-1, 0) and Ipv6Subnets(::, u128::MAX-1, 0) incorrectly included u32::MAX and u128::MAX. See issue #70.
  • Fixes some typos in documentation and error messages
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 minor group with 7 updates:
| Package | From | To |
| --- | --- | --- |
| [actix-web](https://github.com/actix/actix-web) | `4.14.0` | `4.15.0` |
| [actix-rt](https://github.com/actix/actix-net) | `2.11.0` | `2.13.0` |
| [futures](https://github.com/rust-lang/futures-rs) | `0.3.33` | `0.3.34` |
| [maxminddb](https://github.com/oschwald/maxminddb-rust) | `0.30.0` | `0.30.3` |
| [sentry](https://github.com/getsentry/sentry-rust) | `0.49.0` | `0.49.2` |
| [sentry-actix](https://github.com/getsentry/sentry-rust) | `0.49.0` | `0.49.2` |
| [ipnet](https://github.com/krisprice/ipnet) | `2.12.0` | `2.12.1` |
Updates `actix-web` from 4.14.0 to 4.15.0
- [Release notes](https://github.com/actix/actix-web/releases)
- [Changelog](https://github.com/actix/actix-web/blob/main/CHANGES.md)
- [Commits](actix/actix-web@web-v4.14.0...web-v4.15.0)
Updates `actix-rt` from 2.11.0 to 2.13.0
- [Release notes](https://github.com/actix/actix-net/releases)
- [Commits](actix/actix-net@rt-v2.11.0...rt-v2.13.0)
Updates `futures` from 0.3.33 to 0.3.34
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.33...0.3.34)
Updates `maxminddb` from 0.30.0 to 0.30.3
- [Release notes](https://github.com/oschwald/maxminddb-rust/releases)
- [Changelog](https://github.com/oschwald/maxminddb-rust/blob/main/CHANGELOG.md)
- [Commits](oschwald/maxminddb-rust@v0.30.0...v0.30.3)
Updates `sentry` from 0.49.0 to 0.49.2
- [Release notes](https://github.com/getsentry/sentry-rust/releases)
- [Changelog](https://github.com/getsentry/sentry-rust/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-rust@0.49.0...0.49.2)
Updates `sentry-actix` from 0.49.0 to 0.49.2
- [Release notes](https://github.com/getsentry/sentry-rust/releases)
- [Changelog](https://github.com/getsentry/sentry-rust/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-rust@0.49.0...0.49.2)
Updates `ipnet` from 2.12.0 to 2.12.1
- [Release notes](https://github.com/krisprice/ipnet/releases)
- [Changelog](https://github.com/krisprice/ipnet/blob/master/RELEASES.md)
- [Commits](https://github.com/krisprice/ipnet/commits)
---
updated-dependencies:
- dependency-name: actix-web
dependency-version: 4.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: minor
- dependency-name: actix-rt
dependency-version: 2.13.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: minor
- dependency-name: futures
dependency-version: 0.3.34
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: maxminddb
dependency-version: 0.30.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: sentry
dependency-version: 0.49.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: sentry-actix
dependency-version: 0.49.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: ipnet
dependency-version: 2.12.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotBot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 1, 2026
@alexcottner
alexcottner merged commit 5210f8a into masterSep 1, 2026
2 of 3 checks passed
@alexcottner
alexcottner deleted the dependabot/cargo/minor-f7a2021ae0 branch September 1, 2026 15:13
@alexcottneralexcottner changed the title Bump the minor group with 7 updatesBump rust to 1.98 and several packagesSep 1, 2026
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesPull requests that update a dependency filerustPull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@alexcottner
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Remove or un-stick sticky/fixed headers that block content\n(function() {\n function unstick() {\n document.querySelectorAll('header, nav, [role=\"banner\"], .header, .navbar, .sticky, .fixed-top, [style*=\"position: fixed\"], [style*=\"position:sticky\"]').forEach(function(el) {\n if (el.style.position === 'fixed' || el.style.position === 'sticky' || \n getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') {\n el.style.position = 'static';\n el.style.top = 'auto';\n el.style.zIndex = 'auto';\n }\n });\n }\n \n unstick();\n \n var observer = new MutationObserver(unstick);\n observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] });\n})();", "Kill Sticky Headers"); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

Bump rust to 1.98 and several packages - #265

Merged
alexcottner merged 3 commits into
masterfrom
dependabot/cargo/minor-f7a2021ae0
Sep 1, 2026
Merged

Bump rust to 1.98 and several packages#265
alexcottner merged 3 commits into
masterfrom
dependabot/cargo/minor-f7a2021ae0

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubSep 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor group with 7 updates:

PackageFromTo
actix-web4.14.04.15.0
actix-rt2.11.02.13.0
futures0.3.330.3.34
maxminddb0.30.00.30.3
sentry0.49.00.49.2
sentry-actix0.49.00.49.2
ipnet2.12.02.12.1

Updates actix-web from 4.14.0 to 4.15.0

Release notes

Sourced from actix-web's releases.

actix-web: v4.15.0

  • Add Error::add_response_mapper() to allow middleware to modify error-generated responses before they are sent.
  • Remove the experimental experimental-io-uring crate feature.

actix-web: v4.14.1

  • Close idle HTTP/1 keep-alive connections during graceful shutdown and let active connections finish only their current request before closing.
Commits
  • 5723cf4 chore(actix-web): prepare release 4.15.0
  • 7ae209e fix(multipart): include inner error in Payload and Parse display strings (#4186)
  • e5e9911 refactor(web): remove experimental io-uring feature (#4204)
  • dab8c5a add methods for mapping error responses (#2979)
  • 525dfb3 test(router): increase actix-router test coverage (#4196)
  • 9bf4fb2 chore(actix-files): prepare release 0.7.0
  • 3bb0007 refactor(files)!: remove experimental io-uring support (#4198)
  • 5b43241 build(deps): bump futures-core from 0.3.33 to 0.3.34 (#4200)
  • db14111 build(deps): bump rcgen from 0.14.8 to 0.14.9 (#4201)
  • 22a0760 chore: ignore RUSTSEC-2026-0258 (#4203)
  • Additional commits viewable in compare view

Updates actix-rt from 2.11.0 to 2.13.0

Release notes

Sourced from actix-rt's releases.

actix-rt: v2.13.0

  • Add Arbiter::try_new() and Arbiter::try_with_tokio_rt() for fallible Arbiter initialization.

actix-rt: v2.12.0

  • Add SystemRunner::stop_future and SystemRunner::into_parts for awaiting system stop inside block_on.
  • Allow {System, Arbiter}::with_tokio_rt to accept shared Tokio runtimes (e.g. Arc<tokio::runtime::Runtime> or &'static tokio::runtime::Runtime).
  • Remove experimental io-uring support.
  • Minimum supported Rust version (MSRV) is now 1.88.
Commits
  • dc2ee5d chore(actix-rt): prepare release 2.13.0
  • c1d1e91 test: rework arbiter_spawn_failure_does_not_panic_creator
  • e167efa chore: mark unreachable code
  • d1c945a build(deps): bump futures-util from 0.3.33 to 0.3.34 (#949)
  • 05b203d actix-rt: Add fallible Arbiter spawn APIs (try_new & try_with_tokio_rt) (#944)
  • e56afda chore(actix-codec): prepare release 0.5.3
  • 29ca22b perf(codec): improve performance by storing next index (#870)
  • 3539d95 test: cover graceful shutdown of queued connections (#946)
  • 6c90bfe chore(actix-server): prepare release 2.9.1
  • 6cabf4b fix: keep workers alive until graceful stop (#945)
  • Additional commits viewable in compare view

Updates futures from 0.3.33 to 0.3.34

Release notes

Sourced from futures's releases.

0.3.34

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Changelog

Sourced from futures's changelog.

0.3.34 - 2026-08-11

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Commits

Updates maxminddb from 0.30.0 to 0.30.3

Release notes

Sourced from maxminddb's releases.

0.30.3

  • Fixed typed decoding of malformed overflowing extended types to consistently return an InvalidDatabase error.

0.30.2

  • No user-visible changes. This release republishes 0.30.1 because its immutable GitHub release was deleted.
Changelog

Sourced from maxminddb's changelog.

0.30.3 - 2026-08-23

  • Fixed typed decoding of malformed overflowing extended types to consistently return an InvalidDatabase error.

0.30.2 - 2026-08-23

  • No user-visible changes. This release republishes 0.30.1 because its immutable GitHub release was deleted.

0.30.1 - 2026-08-23

  • Fixed malformed extended data types so decoding returns an InvalidDatabase error instead of panicking on u8 overflow. GitHub #122.
  • Added cargo-fuzz targets for standalone data values and public reader operations, including a bounded CI fuzzing job.
Commits

Updates sentry from 0.49.0 to 0.49.2

Release notes

Sourced from sentry's releases.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Changelog

Sourced from sentry's changelog.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

Fixes

  • Corrected disabled tracing semantics: transactions and spans created while tracing is disabled are ignored without generating client reports, while sampling decisions received from upstream traces continue to be propagated in outgoing trace headers. An explicit 0.0 trace sample rate remains distinct from disabled tracing and continues to generate client reports for locally unsampled transactions (#1286).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Commits

Updates sentry-actix from 0.49.0 to 0.49.2

Release notes

Sourced from sentry-actix's releases.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Changelog

Sourced from sentry-actix's changelog.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

Fixes

  • Corrected disabled tracing semantics: transactions and spans created while tracing is disabled are ignored without generating client reports, while sampling decisions received from upstream traces continue to be propagated in outgoing trace headers. An explicit 0.0 trace sample rate remains distinct from disabled tracing and continues to generate client reports for locally unsampled transactions (#1286).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Commits

Updates ipnet from 2.12.0 to 2.12.1

Changelog

Sourced from ipnet's changelog.

Version 2.12.1

  • Fixes bug where Ipv4Subnets(0.0.0.0, u32::MAX-1, 0) and Ipv6Subnets(::, u128::MAX-1, 0) incorrectly included u32::MAX and u128::MAX. See issue #70.
  • Fixes some typos in documentation and error messages
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 minor group with 7 updates:
| Package | From | To |
| --- | --- | --- |
| [actix-web](https://github.com/actix/actix-web) | `4.14.0` | `4.15.0` |
| [actix-rt](https://github.com/actix/actix-net) | `2.11.0` | `2.13.0` |
| [futures](https://github.com/rust-lang/futures-rs) | `0.3.33` | `0.3.34` |
| [maxminddb](https://github.com/oschwald/maxminddb-rust) | `0.30.0` | `0.30.3` |
| [sentry](https://github.com/getsentry/sentry-rust) | `0.49.0` | `0.49.2` |
| [sentry-actix](https://github.com/getsentry/sentry-rust) | `0.49.0` | `0.49.2` |
| [ipnet](https://github.com/krisprice/ipnet) | `2.12.0` | `2.12.1` |
Updates `actix-web` from 4.14.0 to 4.15.0
- [Release notes](https://github.com/actix/actix-web/releases)
- [Changelog](https://github.com/actix/actix-web/blob/main/CHANGES.md)
- [Commits](actix/actix-web@web-v4.14.0...web-v4.15.0)
Updates `actix-rt` from 2.11.0 to 2.13.0
- [Release notes](https://github.com/actix/actix-net/releases)
- [Commits](actix/actix-net@rt-v2.11.0...rt-v2.13.0)
Updates `futures` from 0.3.33 to 0.3.34
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.33...0.3.34)
Updates `maxminddb` from 0.30.0 to 0.30.3
- [Release notes](https://github.com/oschwald/maxminddb-rust/releases)
- [Changelog](https://github.com/oschwald/maxminddb-rust/blob/main/CHANGELOG.md)
- [Commits](oschwald/maxminddb-rust@v0.30.0...v0.30.3)
Updates `sentry` from 0.49.0 to 0.49.2
- [Release notes](https://github.com/getsentry/sentry-rust/releases)
- [Changelog](https://github.com/getsentry/sentry-rust/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-rust@0.49.0...0.49.2)
Updates `sentry-actix` from 0.49.0 to 0.49.2
- [Release notes](https://github.com/getsentry/sentry-rust/releases)
- [Changelog](https://github.com/getsentry/sentry-rust/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-rust@0.49.0...0.49.2)
Updates `ipnet` from 2.12.0 to 2.12.1
- [Release notes](https://github.com/krisprice/ipnet/releases)
- [Changelog](https://github.com/krisprice/ipnet/blob/master/RELEASES.md)
- [Commits](https://github.com/krisprice/ipnet/commits)
---
updated-dependencies:
- dependency-name: actix-web
dependency-version: 4.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: minor
- dependency-name: actix-rt
dependency-version: 2.13.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: minor
- dependency-name: futures
dependency-version: 0.3.34
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: maxminddb
dependency-version: 0.30.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: sentry
dependency-version: 0.49.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: sentry-actix
dependency-version: 0.49.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: ipnet
dependency-version: 2.12.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotBot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 1, 2026
@alexcottner
alexcottner merged commit 5210f8a into masterSep 1, 2026
2 of 3 checks passed
@alexcottner
alexcottner deleted the dependabot/cargo/minor-f7a2021ae0 branch September 1, 2026 15:13
@alexcottneralexcottner changed the title Bump the minor group with 7 updatesBump rust to 1.98 and several packagesSep 1, 2026
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesPull requests that update a dependency filerustPull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@alexcottner
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Universal Dark Mode - works on any site\n(function() {\n var enabled = true;\n \n function applyDarkMode() {\n if (!enabled) return;\n \n // Create style element if it doesn't exist\n var style = document.getElementById('universal-dark-mode-style');\n if (!style) {\n style = document.createElement('style');\n style.id = 'universal-dark-mode-style';\n document.head.appendChild(style);\n }\n \n // Dark mode CSS - inverts colors but preserves images/video\n style.textContent = '\n /* Invert everything except media */\n html {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #1a1a2e !important;\n }\n \n /* Restore images, videos, iframes, canvas */\n img, video, iframe, canvas, svg, picture, [style*=\"background-image\"] {\n filter: invert(1) hue-rotate(180deg) !important;\n }\n \n /* Preserve specific elements that should not be inverted */\n .no-dark-mode, .no-dark-mode *,\n [data-theme=\"light\"], [data-theme=\"light\"],\n .ace_editor, .ace_editor *,\n .CodeMirror, .CodeMirror *,\n .monaco-editor, .monaco-editor *,\n .markdown-body pre, .markdown-body pre *,\n .highlight, .highlight *,\n pre code, pre code * {\n filter: none !important;\n }\n \n /* Fix common UI elements */\n .modal, .popup, .dropdown-menu, .tooltip, .popover {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #2d2d44 !important;\n border-color: #444 !important;\n }\n \n /* Scrollbars */\n ::-webkit-scrollbar { background: #1a1a2e !important; }\n ::-webkit-scrollbar-thumb { background: #444 !important; }\n ::-webkit-scrollbar-thumb:hover { background: #555 !important; }\n \n /* Selection */\n ::selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ::-moz-selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ';\n }\n \n function removeDarkMode() {\n var style = document.getElementById('universal-dark-mode-style');\n if (style) style.remove();\n }\n \n // Toggle with Alt+Shift+D\n document.addEventListener('keydown', function(e) {\n if (e.altKey && e.shiftKey && e.key === 'D') {\n e.preventDefault();\n enabled = !enabled;\n if (enabled) {\n applyDarkMode();\n console.log('[Universal Dark Mode] Enabled');\n } else {\n removeDarkMode();\n console.log('[Universal Dark Mode] Disabled');\n }\n }\n });\n \n // Apply on load\n applyDarkMode();\n \n // Re-apply on dynamic content\n var observer = new MutationObserver(function(mutations) {\n if (enabled && !document.getElementById('universal-dark-mode-style')) {\n applyDarkMode();\n }\n });\n observer.observe(document.head, { childList: true });\n \n console.log('[Universal Dark Mode] Loaded - Press Alt+Shift+D to toggle');\n})();", "Universal Dark Mode"); } } catch(__e) { console.warn('[Userscript:Universal Dark Mode]', __e); } })(); })();
Skip to content

Bump rust to 1.98 and several packages - #265

Merged
alexcottner merged 3 commits into
masterfrom
dependabot/cargo/minor-f7a2021ae0
Sep 1, 2026
Merged

Bump rust to 1.98 and several packages#265
alexcottner merged 3 commits into
masterfrom
dependabot/cargo/minor-f7a2021ae0

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubSep 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor group with 7 updates:

PackageFromTo
actix-web4.14.04.15.0
actix-rt2.11.02.13.0
futures0.3.330.3.34
maxminddb0.30.00.30.3
sentry0.49.00.49.2
sentry-actix0.49.00.49.2
ipnet2.12.02.12.1

Updates actix-web from 4.14.0 to 4.15.0

Release notes

Sourced from actix-web's releases.

actix-web: v4.15.0

  • Add Error::add_response_mapper() to allow middleware to modify error-generated responses before they are sent.
  • Remove the experimental experimental-io-uring crate feature.

actix-web: v4.14.1

  • Close idle HTTP/1 keep-alive connections during graceful shutdown and let active connections finish only their current request before closing.
Commits
  • 5723cf4 chore(actix-web): prepare release 4.15.0
  • 7ae209e fix(multipart): include inner error in Payload and Parse display strings (#4186)
  • e5e9911 refactor(web): remove experimental io-uring feature (#4204)
  • dab8c5a add methods for mapping error responses (#2979)
  • 525dfb3 test(router): increase actix-router test coverage (#4196)
  • 9bf4fb2 chore(actix-files): prepare release 0.7.0
  • 3bb0007 refactor(files)!: remove experimental io-uring support (#4198)
  • 5b43241 build(deps): bump futures-core from 0.3.33 to 0.3.34 (#4200)
  • db14111 build(deps): bump rcgen from 0.14.8 to 0.14.9 (#4201)
  • 22a0760 chore: ignore RUSTSEC-2026-0258 (#4203)
  • Additional commits viewable in compare view

Updates actix-rt from 2.11.0 to 2.13.0

Release notes

Sourced from actix-rt's releases.

actix-rt: v2.13.0

  • Add Arbiter::try_new() and Arbiter::try_with_tokio_rt() for fallible Arbiter initialization.

actix-rt: v2.12.0

  • Add SystemRunner::stop_future and SystemRunner::into_parts for awaiting system stop inside block_on.
  • Allow {System, Arbiter}::with_tokio_rt to accept shared Tokio runtimes (e.g. Arc<tokio::runtime::Runtime> or &'static tokio::runtime::Runtime).
  • Remove experimental io-uring support.
  • Minimum supported Rust version (MSRV) is now 1.88.
Commits
  • dc2ee5d chore(actix-rt): prepare release 2.13.0
  • c1d1e91 test: rework arbiter_spawn_failure_does_not_panic_creator
  • e167efa chore: mark unreachable code
  • d1c945a build(deps): bump futures-util from 0.3.33 to 0.3.34 (#949)
  • 05b203d actix-rt: Add fallible Arbiter spawn APIs (try_new & try_with_tokio_rt) (#944)
  • e56afda chore(actix-codec): prepare release 0.5.3
  • 29ca22b perf(codec): improve performance by storing next index (#870)
  • 3539d95 test: cover graceful shutdown of queued connections (#946)
  • 6c90bfe chore(actix-server): prepare release 2.9.1
  • 6cabf4b fix: keep workers alive until graceful stop (#945)
  • Additional commits viewable in compare view

Updates futures from 0.3.33 to 0.3.34

Release notes

Sourced from futures's releases.

0.3.34

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Changelog

Sourced from futures's changelog.

0.3.34 - 2026-08-11

  • Preserve cloned waker identity. (#3032)
  • Updato syn to 3. (#3028)
Commits

Updates maxminddb from 0.30.0 to 0.30.3

Release notes

Sourced from maxminddb's releases.

0.30.3

  • Fixed typed decoding of malformed overflowing extended types to consistently return an InvalidDatabase error.

0.30.2

  • No user-visible changes. This release republishes 0.30.1 because its immutable GitHub release was deleted.
Changelog

Sourced from maxminddb's changelog.

0.30.3 - 2026-08-23

  • Fixed typed decoding of malformed overflowing extended types to consistently return an InvalidDatabase error.

0.30.2 - 2026-08-23

  • No user-visible changes. This release republishes 0.30.1 because its immutable GitHub release was deleted.

0.30.1 - 2026-08-23

  • Fixed malformed extended data types so decoding returns an InvalidDatabase error instead of panicking on u8 overflow. GitHub #122.
  • Added cargo-fuzz targets for standalone data values and public reader operations, including a bounded CI fuzzing job.
Commits

Updates sentry from 0.49.0 to 0.49.2

Release notes

Sourced from sentry's releases.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Changelog

Sourced from sentry's changelog.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

Fixes

  • Corrected disabled tracing semantics: transactions and spans created while tracing is disabled are ignored without generating client reports, while sampling decisions received from upstream traces continue to be propagated in outgoing trace headers. An explicit 0.0 trace sample rate remains distinct from disabled tracing and continues to generate client reports for locally unsampled transactions (#1286).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Commits

Updates sentry-actix from 0.49.0 to 0.49.2

Release notes

Sourced from sentry-actix's releases.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Changelog

Sourced from sentry-actix's changelog.

0.49.2

Fixes

  • Fix a bug that prevented the Curl transport from respecting Sentry rate limits (#1279).

Deprecations

  • Deprecated ClientOptions::enable_logs. The option no longer disables manually captured logs (via the logging APIs); it now only disables automatic log capture by the log-capturing integrations (tracing and log with the logs feature). To stop an integration from sending logs, configure it via its own options (#1299).
  • Deprecated ClientOptions::enable_metrics. The option is now a no-op; metrics are always enabled. To stop sending metrics, stop calling the metrics APIs (#1300).

Fixes

  • Corrected disabled tracing semantics: transactions and spans created while tracing is disabled are ignored without generating client reports, while sampling decisions received from upstream traces continue to be propagated in outgoing trace headers. An explicit 0.0 trace sample rate remains distinct from disabled tracing and continues to generate client reports for locally unsampled transactions (#1286).

0.49.1

Fixes

  • Preserve floating-point fields in tracing logs as numeric attributes (#1278).
Commits

Updates ipnet from 2.12.0 to 2.12.1

Changelog

Sourced from ipnet's changelog.

Version 2.12.1

  • Fixes bug where Ipv4Subnets(0.0.0.0, u32::MAX-1, 0) and Ipv6Subnets(::, u128::MAX-1, 0) incorrectly included u32::MAX and u128::MAX. See issue #70.
  • Fixes some typos in documentation and error messages
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 minor group with 7 updates:
| Package | From | To |
| --- | --- | --- |
| [actix-web](https://github.com/actix/actix-web) | `4.14.0` | `4.15.0` |
| [actix-rt](https://github.com/actix/actix-net) | `2.11.0` | `2.13.0` |
| [futures](https://github.com/rust-lang/futures-rs) | `0.3.33` | `0.3.34` |
| [maxminddb](https://github.com/oschwald/maxminddb-rust) | `0.30.0` | `0.30.3` |
| [sentry](https://github.com/getsentry/sentry-rust) | `0.49.0` | `0.49.2` |
| [sentry-actix](https://github.com/getsentry/sentry-rust) | `0.49.0` | `0.49.2` |
| [ipnet](https://github.com/krisprice/ipnet) | `2.12.0` | `2.12.1` |
Updates `actix-web` from 4.14.0 to 4.15.0
- [Release notes](https://github.com/actix/actix-web/releases)
- [Changelog](https://github.com/actix/actix-web/blob/main/CHANGES.md)
- [Commits](actix/actix-web@web-v4.14.0...web-v4.15.0)
Updates `actix-rt` from 2.11.0 to 2.13.0
- [Release notes](https://github.com/actix/actix-net/releases)
- [Commits](actix/actix-net@rt-v2.11.0...rt-v2.13.0)
Updates `futures` from 0.3.33 to 0.3.34
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.33...0.3.34)
Updates `maxminddb` from 0.30.0 to 0.30.3
- [Release notes](https://github.com/oschwald/maxminddb-rust/releases)
- [Changelog](https://github.com/oschwald/maxminddb-rust/blob/main/CHANGELOG.md)
- [Commits](oschwald/maxminddb-rust@v0.30.0...v0.30.3)
Updates `sentry` from 0.49.0 to 0.49.2
- [Release notes](https://github.com/getsentry/sentry-rust/releases)
- [Changelog](https://github.com/getsentry/sentry-rust/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-rust@0.49.0...0.49.2)
Updates `sentry-actix` from 0.49.0 to 0.49.2
- [Release notes](https://github.com/getsentry/sentry-rust/releases)
- [Changelog](https://github.com/getsentry/sentry-rust/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-rust@0.49.0...0.49.2)
Updates `ipnet` from 2.12.0 to 2.12.1
- [Release notes](https://github.com/krisprice/ipnet/releases)
- [Changelog](https://github.com/krisprice/ipnet/blob/master/RELEASES.md)
- [Commits](https://github.com/krisprice/ipnet/commits)
---
updated-dependencies:
- dependency-name: actix-web
dependency-version: 4.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: minor
- dependency-name: actix-rt
dependency-version: 2.13.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: minor
- dependency-name: futures
dependency-version: 0.3.34
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: maxminddb
dependency-version: 0.30.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: sentry
dependency-version: 0.49.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: sentry-actix
dependency-version: 0.49.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
- dependency-name: ipnet
dependency-version: 2.12.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: minor
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotBot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 1, 2026
@alexcottner
alexcottner merged commit 5210f8a into masterSep 1, 2026
2 of 3 checks passed
@alexcottner
alexcottner deleted the dependabot/cargo/minor-f7a2021ae0 branch September 1, 2026 15:13
@alexcottneralexcottner changed the title Bump the minor group with 7 updatesBump rust to 1.98 and several packagesSep 1, 2026
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesPull requests that update a dependency filerustPull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@alexcottner