Skip to content
This repository was archived by the owner on Apr 15, 2026. It is now read-only.

0.10.0

Pre-release
Pre-release

Choose a tag to compare

@peterhuene peterhuene released this 15 Jul 05:31
· 197 commits to master since this release
e80ecca

This a pre-release version of Azure Functions for Rust.

Important changes:

  • Implemented support for async Azure Functions 🎉 . #330.
  • Breaking Change: Removed the export! macro. Manual intervention required when migrating from previous versions. See the examples directory for current content of src/functions/mod.rs and src/main.rs. #336.
  • Breaking Change: The Context type is no longer a binding type and cannot be used as a parameter for an Azure Function. Use Context::current to obtain the current function's invocation context. #330.
  • Replaced custom Tower service responsible for setting origin on gRPC requests with tower-request-modifier now that it is published. #337.
  • Updated gRPC protocol definitions to latest out of the Azure Functions Worker Protobuf repository.
  • Updated dependencies.

The project is still very much a work-in-progress and none of the API will be stable until a 1.0.0 release is declared.

For now, the patch level will be used for implementing new features. When a minor version changes, it will indicate that enough work went in to signal getting closer to a 1.0.0 release.

Once 1.0.0 is hit, semantic versioning will be respected.