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.4.0
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.4.1
Choose a head ref
  • 12 commits
  • 37 files changed
  • 12 contributors

Commits on Jan 20, 2021

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

Commits on Jan 21, 2021

  1. Better example code for google protos (#542)

    * Better example code for google protos
    
    * Try fix windows build
    
    * Try fix windows build
    
    * Remove generated code in repo
    liufuyang authored Jan 21, 2021
    Configuration menu
    Copy the full SHA
    729308b View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2021

  1. Fix helloworld tutorial. (#546)

    updated tutorial to use tokio 1.x.
    16yuki0702 authored Feb 2, 2021
    Configuration menu
    Copy the full SHA
    07d2f98 View commit details
    Browse the repository at this point in the history
  2. Update tokio dependencies in tutorials to be compatible with tonic 0.4 (

    #549)
    
    Bumps routeguide tutorial dependency to tokio 1.0 for compatability with
    tonic 0.4. Also adds required rt-multi-thread feature and drops unused
    and now unsupported stream feature.
    
    Signed-off-by: hasheddan <georgedanielmangum@gmail.com>
    hasheddan authored Feb 2, 2021
    Configuration menu
    Copy the full SHA
    cb9ed18 View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2021

  1. fix: Depend on at least tower 0.4.4 (#554)

    In tower 0.4.0 we missed a couple of re-exports that tonic 0.4.0 depends
    on. So tonic really depends on tower at least version 0.4.1. Since
    specifying your tower depedency as 0.4 means you might get 0.4.0, you
    might get build errors when updating tonic. Such as [#553] and [#552].
    
    This fixes that by bumping tonic's dependency on tower to 0.4.4. That
    means users will get at least tower version 0.4.4, but semver compatible
    updates are still allowed.
    
    Fixes #553
    
    [#553]: #553
    [#552]: #552
    davidpdrsn authored Feb 12, 2021
    Configuration menu
    Copy the full SHA
    ca3b9a1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4f5e160 View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2021

  1. chore: add FromStr for Endpoint (#558)

    This is particularly handy when combined with `clap::value_t`.
    
    Here's demo of it working with Clap:
    
    ```bash
    cargo +stable init --bin tonic-demo
    cd tonic-demo
    cat <<-EOF >> Cargo.toml
      clap = "*"
      tonic = { path = "../hyperium/tonic/tonic" }
    EOF
    cat <<-EOF > src/main.rs
        use clap::{value_t, App, Arg};
        use tonic::transport::Endpoint;
        fn main() {
            let matches = App::new("tonic-demo")
                .arg(Arg::with_name("host"))
                .get_matches();
            let x = value_t!(matches.value_of("host"), Endpoint);
            println!("{:?}", x);
        }
    EOF
    cargo +stable run -- https://127.0.0.1:443
    ```
    
    Signed-off-by: Ana Hobden <operator@hoverbear.org>
    Hoverbear authored Feb 13, 2021
    Configuration menu
    Copy the full SHA
    f49d4bd View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2021

  1. feat: Implement gRPC Reflection Service (#340)

    Co-authored-by: Samani G. Gikandi <samani@gojulas.com>
    jen20 and sgg authored Feb 16, 2021
    Configuration menu
    Copy the full SHA
    c54f247 View commit details
    Browse the repository at this point in the history

Commits on Feb 17, 2021

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

Commits on Feb 23, 2021

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

Commits on Mar 11, 2021

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

Commits on Mar 16, 2021

  1. Prepare 0.4.1 release (#580)

    davidpdrsn authored Mar 16, 2021
    Configuration menu
    Copy the full SHA
    7889c7f View commit details
    Browse the repository at this point in the history
Loading