Skip to content

fix(deps): update rust crate worker to 0.8.0#4

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch
Open

fix(deps): update rust crate worker to 0.8.0#4
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented Feb 24, 2023

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change
worker dependencies minor 0.0.120.8.0

Release Notes

cloudflare/workers-rs (worker)

v0.8.5

Compare Source

What's Changed

Full Changelog: cloudflare/workers-rs@v0.8.4...v0.8.5

v0.8.4

Compare Source

What's Changed

New Contributors

Full Changelog: cloudflare/workers-rs@v0.8.3...v0.8.4

v0.8.3

Compare Source

What's Changed

New Contributors

Full Changelog: cloudflare/workers-rs@v0.8.0...v0.8.2

v0.8.2

Compare Source

v0.8.1

Compare Source

What's Changed

Full Changelog: cloudflare/workers-rs@v0.8.0...v0.8.1

v0.8.0

Compare Source

What's Changed

New Contributors

Full Changelog: cloudflare/workers-rs@v0.7.5...v0.8.0

v0.7.5

Compare Source

What's Changed

New Contributors

Full Changelog: cloudflare/workers-rs@v0.7.4...v0.7.5

v0.7.4

Compare Source

What's Changed

Full Changelog: cloudflare/workers-rs@v0.7.3...v0.7.4

v0.7.3

Compare Source

What's Changed

New Contributors

Full Changelog: cloudflare/workers-rs@v0.7.2...v0.7.3

v0.7.2

Compare Source

What's Changed

New Contributors

Full Changelog: cloudflare/workers-rs@v0.7.1...v0.7.2

v0.7.1

Compare Source

What's Changed

Full Changelog: cloudflare/workers-rs@v0.7.0...v0.7.1

v0.7.0

Compare Source

For users not updating to this version, make sure to use cargo install worker-build@0.1.14, as the latest 0.7 will no longer work with older versions of the worker library.

Breaking Changes

  • Durable object storage.get now returns an option to handle missing entries instead of an error (#​859)
  • The DurableObject trait now needs to be explicitly imported and won't be brought into scope automatically, which was stopping multiple durable objects in the same file from working correctly (#​872)
  • As of version worker@0.7.0 and worker-build@0.7.0, these toolchains now are majorly versioned together and will throw when using unexpected versions. Attempting to use worker@0.6 with worker-build@0.7.0 will throw an error. It is instead recommended to lock the version of worker-build to the expected semver via cargo install worker-build@^0.7.

Deprecations

  • worker-kv is no longer published, and is instead available as worker::kv
  • data() and get_env() on RouteContext for instead using these fields directly

Features

Bug Fixes & Refactoring

New Contributors

Full Changelog: cloudflare/workers-rs@v0.6.7...v0.7.0

v0.6.7

Compare Source

What's Changed

New Contributors

Full Changelog: cloudflare/workers-rs@v0.6.6...v0.6.7

v0.6.6

Compare Source

Features

New Contributors

Full Changelog: cloudflare/workers-rs@v0.6.5...v0.6.6

v0.6.5

Compare Source

Fixes

Full Changelog: cloudflare/workers-rs@v0.6.4...v0.6.5

v0.6.4

Compare Source

Fixes

Full Changelog: cloudflare/workers-rs@v0.6.3...v0.6.4

v0.6.3

Compare Source

Features

Bug Fixes

Full Changelog: cloudflare/workers-rs@v0.6.2...v0.6.3

v0.6.2

Compare Source

Features

Fixes

  • Fix "hiding a lifetime that's elided elsewhere is confusing" warnings on the Nightly compiler by @​jakubadamw in #​795

New Contributors

Full Changelog: cloudflare/workers-rs@v0.6.1...v0.6.2

v0.6.1

Compare Source

Features

Fixes

New Contributors

Full Changelog: cloudflare/workers-rs@v0.6.0...v0.6.1

v0.6.0

Compare Source

Breaking Changes

Features

Bug Fixes

New Contributors

Full Changelog: cloudflare/workers-rs@v0.5.0...v0.6.0

v0.5.0

Compare Source

What's Changed

Full Changelog: cloudflare/workers-rs@v0.4.2...v0.5.0

v0.4.2

Compare Source

What's Changed

New Contributors

Full Changelog: cloudflare/workers-rs@v0.4.1...v0.4.2

v0.4.1

Compare Source

What's Changed

Full Changelog: cloudflare/workers-rs@v0.4.0...v0.4.1

v0.4.0

Compare Source

What's Changed

[!CAUTION]
Breaking: Make R2 Object::size return u64 by @​lkolbly in #​625

New Contributors

Full Changelog: cloudflare/workers-rs@v0.3.4...v0.4.0

v0.3.4

Compare Source

What's Changed

  • Fix breaking change in js-sys / web-sys. Remove HeaderExt and AbortSignalExt by @​kflansburg in #​621

Full Changelog: cloudflare/workers-rs@v0.3.3...v0.3.4

v0.3.3

Compare Source

What's Changed

New Contributors

Full Changelog: cloudflare/workers-rs@v0.3.2...v0.3.3

v0.3.2

Compare Source

What's Changed

Full Changelog: cloudflare/workers-rs@v0.3.1...v0.3.2

v0.3.1

Compare Source

What's Changed

New Contributors

Full Changelog: cloudflare/workers-rs@v0.3.0...v0.3.1

v0.3.0

Compare Source

What's Changed

[!TIP]
You can now get started in seconds by running cargo generate cloudflare/workers-rs!

[!TIP]
You can now use Workers Hyperdrive to speed up connections to your SQL database using tokio-postgres. Check out our updated example.

[!CAUTION]
Rust 1.75 or greater is now required due to use of impl Trait in trait method return type.

[!CAUTION]
In order to support range requests larger than 4GB, worker_sys::R2Range now accepts f64 instead of u32. worker::Range options have changed to make the functionality more clear and now accept u64 instead of u32.

[!CAUTION]
This change removes ResponseInit, which is replaced by an idiomatic ResponseBuilder pattern, all other APIs should remain unchanged. In addition, the encodeBody property is now available to support returning pre-compressed data.

New Contributors

Full Changelog: cloudflare/workers-rs@v0.2.0...v0.3.0

v0.2.0

Compare Source

What's Changed

R2 Improvements
API Flexibility

[!NOTE]
These changes should not be breaking: they should only expand the set of request, response, and error types supported by the event macro:

  • The error type returned can now be any type which implements Into<Box<dyn std::error::Error>> (including worker::Error).
  • Introduces FromRequest trait, and handler request type can be any type that implements this trait. Implementations are provided for web_sys::Request, worker::Request, and http::Request<worker::Body>.
  • Introduces IntoResponse trait, and handler response type can be any type that implements this trait. Implementations are provided for web_sys::Response, worker::Response, and http::Response<B> where B: http_body::Body.
Workers RPC
General
  • chore(deps): bump rustls from 0.22.3 to 0.22.4 by @​dependabot in #​553
  • 🤽 worker-sys Make all methods catch: this greatly improves error reporting for exceptions which originate in JavaScript by @​Jasper-Bekkers in #​546

[!CAUTION]
Making worker-sys methods catch changes them all to return Result. worker crate APIs should not have breaking changes, but if you use worker-sys APIs directly (including some user-facing APIs such as D1ExecResult), then you may need update your code to handle this change.

New Contributors

Full Changelog: cloudflare/workers-rs@v0.1.0...v0.2.0

v0.1.0

Compare Source

New Versioning Pattern

We will be using 0.x.y as our version pattern going forward so that we can better use semantic versioning. Minor version (x) changes will be used to indicate breaking changes, and patch version (y) changes will indicate non-breaking changes. We will continue be using 0 for our major version.

What's Changed

Sockets
Binary Size
  • Make chrono-tz an optional dependency. This dependency was found to be a major contributor to binary size. By @​kflansburg in #​520

[!CAUTION]
Breaking: You will now need the timezone feature to access Cf.timezone.

[!CAUTION]
Breaking: You will now need axum feature to have From<worker::Response> for http::Response<axum::body::Body>

D1
  • Introduce methods on D1PreparedStatement to access D1PreparedStatementSys and raw JsValue query results, by @​dakom in #​521
HTTP
  • More flexible fetch handler signature allowing any type implementing From<web_sys::Request> for request argument by @​dakom in #​525
Other Fixes
Dependabot

New Contributors

  • [@&#82

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM (* 0-3 * * *)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot changed the title fix(deps): update rust crate worker to 0.0.13 fix(deps): update rust crate worker to 0.0.14 Mar 16, 2023
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 8a0ecec to 825b238 Compare March 16, 2023 09:37
@renovate renovate Bot changed the title fix(deps): update rust crate worker to 0.0.14 fix(deps): update rust crate worker to 0.0.15 Mar 30, 2023
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 825b238 to 2c06d6a Compare March 30, 2023 18:01
@renovate renovate Bot changed the title fix(deps): update rust crate worker to 0.0.15 fix(deps): update rust crate worker to 0.0.16 Apr 17, 2023
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 2c06d6a to 3e3049d Compare April 17, 2023 12:37
@renovate renovate Bot changed the title fix(deps): update rust crate worker to 0.0.16 fix(deps): update rust crate worker to 0.0.17 Jun 2, 2023
@renovate renovate Bot changed the title fix(deps): update rust crate worker to 0.0.17 fix(deps): update rust crate worker to 0.0.18 Aug 8, 2023
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from c4ca32a to a9f8369 Compare August 8, 2023 23:17
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from a9f8369 to e9ac36c Compare April 1, 2024 20:52
@renovate renovate Bot changed the title fix(deps): update rust crate worker to 0.0.18 fix(deps): update rust crate worker to 0.0.24 Apr 1, 2024
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from e9ac36c to eba4da5 Compare April 4, 2024 22:43
@renovate renovate Bot changed the title fix(deps): update rust crate worker to 0.0.24 fix(deps): update rust crate worker to 0.1.0 Apr 4, 2024
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from eba4da5 to ff39d2b Compare April 29, 2024 01:14
@renovate renovate Bot changed the title fix(deps): update rust crate worker to 0.1.0 fix(deps): update rust crate worker to 0.2.0 Apr 29, 2024
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from ff39d2b to 4f2141b Compare May 19, 2024 14:18
@renovate renovate Bot changed the title fix(deps): update rust crate worker to 0.2.0 fix(deps): update rust crate worker to 0.3.0 May 19, 2024
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 4f2141b to fc9e68a Compare September 13, 2024 21:51
@renovate renovate Bot changed the title fix(deps): update rust crate worker to 0.3.0 fix(deps): update rust crate worker to 0.4.0 Sep 13, 2024
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from fc9e68a to 0e2528b Compare December 11, 2024 21:49
@renovate renovate Bot changed the title fix(deps): update rust crate worker to 0.4.0 fix(deps): update rust crate worker to 0.5.0 Dec 11, 2024
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 0e2528b to 618e268 Compare June 19, 2025 19:53
@renovate renovate Bot changed the title fix(deps): update rust crate worker to 0.5.0 fix(deps): update rust crate worker to 0.6.0 Jun 19, 2025
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 618e268 to dbb6f2f Compare July 25, 2025 03:26
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from dbb6f2f to 22479dd Compare August 10, 2025 14:13
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 6f33784 to 64b5ce3 Compare September 19, 2025 02:31
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 9e41f33 to 1b14754 Compare September 25, 2025 14:49
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 1b14754 to 9e70304 Compare October 28, 2025 03:12
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 9e70304 to 187ea6a Compare November 25, 2025 05:49
@renovate renovate Bot changed the title fix(deps): update rust crate worker to 0.6.0 fix(deps): update rust crate worker to 0.7.0 Nov 25, 2025
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 187ea6a to c583fd6 Compare December 1, 2025 09:03
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from c583fd6 to 7566732 Compare December 10, 2025 11:03
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 7566732 to 52ec529 Compare December 20, 2025 22:41
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 52ec529 to 2c80b98 Compare December 31, 2025 16:50
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 4324577 to 4926953 Compare January 15, 2026 21:40
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 4926953 to 71dc0a9 Compare February 2, 2026 19:41
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 71dc0a9 to 191a79f Compare February 12, 2026 17:48
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 191a79f to 1af63f0 Compare February 25, 2026 06:02
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 1af63f0 to c1e9e4a Compare March 13, 2026 15:13
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from c1e9e4a to 887b696 Compare April 11, 2026 01:36
@renovate renovate Bot changed the title fix(deps): update rust crate worker to 0.7.0 fix(deps): update rust crate worker to 0.8.0 Apr 11, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 887b696 to 53af7e1 Compare April 17, 2026 20:32
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 53af7e1 to 03ae533 Compare May 9, 2026 01:28
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 03ae533 to 0d593b9 Compare May 18, 2026 17:08
@renovate renovate Bot changed the title fix(deps): update rust crate worker to 0.8.0 fix(deps): update all non-major dependencies to 0.8.0 Jun 2, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 0d593b9 to b52d89e Compare June 9, 2026 05:31
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from b52d89e to c8ea20a Compare June 13, 2026 00:37
@renovate renovate Bot changed the title fix(deps): update all non-major dependencies to 0.8.0 fix(deps): update all non-major dependencies Jun 22, 2026
@renovate renovate Bot changed the title fix(deps): update all non-major dependencies fix(deps): update rust crate worker to 0.8.0 Jun 25, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants