Skip to content
This repository was archived by the owner on Dec 23, 2023. It is now read-only.
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: census-instrumentation/opencensus-java
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.28.3
Choose a base ref
...
head repository: census-instrumentation/opencensus-java
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.29.0
Choose a head ref
  • 13 commits
  • 57 files changed
  • 7 contributors

Commits on Oct 15, 2020

  1. Update grpc sample (#2058)

    * update grpc sample
    aabmass authored Oct 15, 2020
    Configuration menu
    Copy the full SHA
    446e9bd View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2020

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

Commits on Oct 21, 2020

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

Commits on Oct 22, 2020

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

Commits on Dec 8, 2020

  1. Bump jetty.version in /examples (#2067)

    Bumps `jetty.version` from 9.4.17.v20190418 to 9.4.35.v20201120.
    
    Updates `jetty-client` from 9.4.17.v20190418 to 9.4.35.v20201120
    - [Release notes](https://github.com/eclipse/jetty.project/releases)
    - [Commits](jetty/jetty.project@jetty-9.4.17.v20190418...jetty-9.4.35.v20201120)
    
    Updates `jetty-server` from 9.4.17.v20190418 to 9.4.35.v20201120
    - [Release notes](https://github.com/eclipse/jetty.project/releases)
    - [Commits](jetty/jetty.project@jetty-9.4.17.v20190418...jetty-9.4.35.v20201120)
    
    Updates `jetty-servlet` from 9.4.17.v20190418 to 9.4.35.v20201120
    - [Release notes](https://github.com/eclipse/jetty.project/releases)
    - [Commits](jetty/jetty.project@jetty-9.4.17.v20190418...jetty-9.4.35.v20201120)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Dec 8, 2020
    Configuration menu
    Copy the full SHA
    6123b84 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2021

  1. Fix time skew exceptions crashing disruptor thread (#2071)

    * Add a fix to metric views when a time skew is detected rather than crashing the application/thread.
    * Add test for time-rewind issues, and fix problems discovered.
    jsuereth authored Jan 11, 2021
    Configuration menu
    Copy the full SHA
    e3bf35f View commit details
    Browse the repository at this point in the history
  2. Mark ContextUtils as public (but deprecated) (#2072)

    * Mark ContextUtils as public (but deprecated) to fix bincompat issues with 0.17.x->0.18.x
    * Add an access mechanism for grpc context and update deprecation denotation.
    jsuereth authored Jan 11, 2021
    Configuration menu
    Copy the full SHA
    7ddc4cc View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2021

  1. Forward-fix things from 0.28.x branch (#2075)

    * Update signing plugin to allow GPG agent usage.
    
    * Add missing changelogs into master.
    
    * Update release versions for all readme and build files.
    jsuereth authored Jan 15, 2021
    Configuration menu
    Copy the full SHA
    3d7f0b5 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2021

  1. Add github action PR build (#2078)

    * Add a set of github action workflows to migrate off travis.   Just three for testing right now.
    
    * More GHA fixes.
    
    * Fix build.
    
    * one more fix.
    
    * Remove Java11 as it won't work iwthout massive changes/dropping Java7 support, likely.
    jsuereth authored Jul 20, 2021
    Configuration menu
    Copy the full SHA
    402cb16 View commit details
    Browse the repository at this point in the history
  2. Bump jetty-server from 9.4.35.v20201120 to 9.4.41.v20210516 in /examp…

    …les (#2077)
    
    Bumps [jetty-server](https://github.com/eclipse/jetty.project) from 9.4.35.v20201120 to 9.4.41.v20210516.
    - [Release notes](https://github.com/eclipse/jetty.project/releases)
    - [Commits](jetty/jetty.project@jetty-9.4.35.v20201120...jetty-9.4.41.v20210516)
    
    ---
    updated-dependencies:
    - dependency-name: org.eclipse.jetty:jetty-server
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jul 20, 2021
    Configuration menu
    Copy the full SHA
    4f217b4 View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2021

  1. Fix flaky LinkTest (#2082)

    LinkTest has recently been having flaky failures. It turns out that the
    `link_ToString()` test relied on hash ordering. The failing assertion
    only passed when a copy of the `HashMap` had the same `toString()` as
    the original map. If copying the map changed the iteration order, the
    test would fail.
    
    This entire test function is questionable, however, as it is testing the
    `toString()` method on an `AutoValue`. This is problematic, because
    `AutoValue` specifies its `toString()` as "returning a useful (but
    unspecified) string representation of the instance" (see
    https://github.com/google/auto/blob/master/value/userguide/index.md#whats-going-on-here).
    As such, it could make sense to remove this test altogether. This change
    does not remove the test, because it's operating under the assumption
    that the test is wanted.
    
    This change fixes the test by checking that every entry in the map is
    contained in the `link.toString()`. This means that the order of the
    entries in the `link.toString()` is no longer important. Note that if
    `Link` is changed to use a different map implementation not based on
    `AbstractMap` that does not similarly guarantee its `toString()`, this
    test may break, although the previous assert would also break in such a
    situation.
    
    Tested:
     - I tested this change by running LinkTest 100 times to verify that
       the flaky failure went away.
    Quincunx271 authored Nov 29, 2021
    Configuration menu
    Copy the full SHA
    5f9a0fa View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2021

  1. Update and weaken Log4J2 dependency (#2085)

    * Use the more recent 2.15.0 as baseline
    * For the published package, express a provided dependency
      rather than actually pulling in Log4J2 ourselves
    punya authored Dec 11, 2021
    Configuration menu
    Copy the full SHA
    4852502 View commit details
    Browse the repository at this point in the history
Loading