Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multiple FromParts in handlers #1999

Merged
merged 6 commits into from
Nov 18, 2022
Merged

Multiple FromParts in handlers #1999

merged 6 commits into from
Nov 18, 2022

Commits on Nov 17, 2022

  1. Multiple FromParts in handlers

    Handlers can have up to 8 extensions:
    ```
    pub async fn handler(
        input: input::Input,
        ext0: Extension<...>,
        ext1: Extension<...>,
        ext2: Extension<...>,
        ext3: Extension<...>,
        ext4: Extension<...>,
        ext5: Extension<...>,
        ext6: Extension<...>,
        ext7: Extension<...>,
    ) -> Result<output::Output, error::Error> { ... }
    ```
    
    Signed-off-by: Daniele Ahmed <ahmeddan@amazon.de>
    Co-authored-by: Harry Barber <hlbarber@amazon.co.uk>
    2 people authored and Daniele Ahmed committed Nov 17, 2022
    Configuration menu
    Copy the full SHA
    8ea673c View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2022

  1. Address comments

    Signed-off-by: Daniele Ahmed <ahmeddan@amazon.de>
    82marbag authored and Daniele Ahmed committed Nov 18, 2022
    Configuration menu
    Copy the full SHA
    ced56b7 View commit details
    Browse the repository at this point in the history
  2. Add CHANGELOG entry

    Signed-off-by: Daniele Ahmed <ahmeddan@amazon.de>
    82marbag authored and Daniele Ahmed committed Nov 18, 2022
    Configuration menu
    Copy the full SHA
    1f42065 View commit details
    Browse the repository at this point in the history
  3. Update CHANGELOG.next.toml

    Co-authored-by: Luca Palmieri <20745048+LukeMathWalker@users.noreply.github.com>
    82marbag and LukeMathWalker authored Nov 18, 2022
    Configuration menu
    Copy the full SHA
    91320a7 View commit details
    Browse the repository at this point in the history
  4. Revert CHANGELOG entry

    Signed-off-by: Daniele Ahmed <ahmeddan@amazon.de>
    82marbag authored and Daniele Ahmed committed Nov 18, 2022
    Configuration menu
    Copy the full SHA
    4fdc1d1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    06b5d57 View commit details
    Browse the repository at this point in the history