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

Provide AMQP 1.0 binding with fe2o3-amqp #188

Open
wants to merge 31 commits into
base: main
Choose a base branch
from

Commits on Aug 26, 2022

  1. impl conversion btwn AmqpMessage & AmqpCloudEvent

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    24c30b5 View commit details
    Browse the repository at this point in the history
  2. implemented From<Event> for AmqpCloudEvent

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    8b7e2a2 View commit details
    Browse the repository at this point in the history
  3. added udf to handle extensions

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    4017ffc View commit details
    Browse the repository at this point in the history
  4. initial impl of deserializers

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    e516489 View commit details
    Browse the repository at this point in the history
  5. removed unused imports

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    64693d1 View commit details
    Browse the repository at this point in the history
  6. removed AmqpCloudEvent

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    f9b5058 View commit details
    Browse the repository at this point in the history
  7. Revert "removed AmqpCloudEvent"

    This reverts commit 1214976.
    
    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    73e1f62 View commit details
    Browse the repository at this point in the history
  8. replace format with header_prefix

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    90f84e3 View commit details
    Browse the repository at this point in the history
  9. impl From<AmqpMessage> for AmqpCloudEvent

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    73ff402 View commit details
    Browse the repository at this point in the history
  10. renamed to AmqpBinding

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    6e90ddb View commit details
    Browse the repository at this point in the history
  11. renamed to EventMessage

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    508976c View commit details
    Browse the repository at this point in the history
  12. removed prefix from extension name

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    832098c View commit details
    Browse the repository at this point in the history
  13. added amqp example

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    3d835a6 View commit details
    Browse the repository at this point in the history
  14. removed unused type alias

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    880da69 View commit details
    Browse the repository at this point in the history
  15. fixed example

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    b193012 View commit details
    Browse the repository at this point in the history
  16. treat missing cloutEvents prefix as extension

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    55c5c8f View commit details
    Browse the repository at this point in the history
  17. prefix extension values like standard attr values

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    8739e9d View commit details
    Browse the repository at this point in the history
  18. updated example

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    22a88e8 View commit details
    Browse the repository at this point in the history
  19. added assertions in example

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    1188f17 View commit details
    Browse the repository at this point in the history
  20. updated docs

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    f7d3b86 View commit details
    Browse the repository at this point in the history
  21. updated mod level doc

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    c26131f View commit details
    Browse the repository at this point in the history
  22. updated mod level doc

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    c477db4 View commit details
    Browse the repository at this point in the history
  23. cargo fmt

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    d8df9c0 View commit details
    Browse the repository at this point in the history
  24. fixed cargo fmt check and clippy warnings

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    2ab34e4 View commit details
    Browse the repository at this point in the history
  25. Show feature gated bindings in documentaion (cloudevents#187)

    * show feature gated bindings in docsrs
    
    * moved crate root docsrs feature
    
    * fixed cargo fmt check
    
    * removed files that should go with another PR
    
    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    730b94e View commit details
    Browse the repository at this point in the history
  26. fixed doctest

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    0436209 View commit details
    Browse the repository at this point in the history
  27. cargo fix --all && cargo fmt --all

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    f623f15 View commit details
    Browse the repository at this point in the history
  28. Merge branch 'main' into amqp-binding

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    a2e1daa View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2022

  1. updated fe2o3-amqp to latest version

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 28, 2022
    Configuration menu
    Copy the full SHA
    18385a6 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2022

  1. updated fe2o3-amqp-types

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Aug 30, 2022
    Configuration menu
    Copy the full SHA
    26b41f1 View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2022

  1. updated AMQP deps

    Signed-off-by: minghuaw <[email protected]>
    minghuaw committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    695abf4 View commit details
    Browse the repository at this point in the history