Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: hyperium/tonic
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.1.0-alpha.4
Choose a base ref
...
head repository: hyperium/tonic
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.1.0-alpha.5
Choose a head ref
  • 9 commits
  • 54 files changed
  • 5 contributors

Commits on Oct 23, 2019

  1. Configuration menu
    Copy the full SHA
    eea3c0f View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2019

  1. Configuration menu
    Copy the full SHA
    af5754b View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2019

  1. Configuration menu
    Copy the full SHA
    4bb087b View commit details
    Browse the repository at this point in the history
  2. fix(codec): Remove custom content-type (#104)

    This removes custom content-types in favor of
    just using `application/grpc`. There is some
    confusion around the specification but most
    grpc implementations ignore the `+` and
    anything after.
    LucioFranco authored Oct 29, 2019
    Configuration menu
    Copy the full SHA
    a17049f View commit details
    Browse the repository at this point in the history
  3. feat(transport): Add service multiplexing/routing (#99)

    * feat(transport): Add service multiplexing/routing
    
    This change introduces a new "router" built on top of
    `transport::Server` that allows one to run multiple
    gRPC services on the same socket.
    
    ```rust
    Server::builder()
        .add_service(greeter)
        .add_service(echo)
        .serve(addr)
        .await?;
    ```
    
    There is also a new `multiplex` example showcasing
    server side service multiplexing and client side
    service multiplexing.
    
    BREAKING CHANGES: `Server::serve` is now crate private
    and all services must be added via `Server::add_service`.
    Codegen also returns just a `Service` now instead of a
    `MakeService` pair.
    
    Closes #29
    
    Signed-off-by: Lucio Franco luciofranco14@gmail.com
    LucioFranco authored Oct 29, 2019
    Configuration menu
    Copy the full SHA
    5b4f468 View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2019

  1. Configuration menu
    Copy the full SHA
    3ce61d9 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2019

  1. chore: Add cargo-hack to check features (#105)

    * chore: Add `cargo-hack` to check features
    
    Signed-off-by: Lucio Franco <luciofranco14@gmail.com>
    
    * Update .github/workflows/CI.yml
    
    Co-Authored-By: Taiki Endo <te316e89@gmail.com>
    LucioFranco and taiki-e authored Oct 31, 2019
    Configuration menu
    Copy the full SHA
    108bad0 View commit details
    Browse the repository at this point in the history
  2. feat(transport): Change channel connect to be async (#107)

    This makes it so you can check if the initial connection
    is established. Before this we used reconnect which would
    lazily attempt to connect. So if you were trying to connect
    to a non existant Server you wouldn't find out until after
    you attempted your first RPC. This simplifies everything
    by allowing you connect before creating the RPC client.
    
    BREAKING CHANGE: `Endpoint::channel` was removed in favor of
    an async `Endpoint::connect`.
    LucioFranco authored Oct 31, 2019
    Configuration menu
    Copy the full SHA
    5c2f4db View commit details
    Browse the repository at this point in the history
  3. chore: Prepare alpha.5 release (#108)

    Signed-off-by: Lucio Franco <luciofranco14@gmail.com>
    LucioFranco authored Oct 31, 2019
    Configuration menu
    Copy the full SHA
    3a39b1e View commit details
    Browse the repository at this point in the history
Loading