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

merge master into pubsub-hp #1591

Merged
merged 26 commits into from
Feb 7, 2017
Merged

merge master into pubsub-hp #1591

merged 26 commits into from
Feb 7, 2017

Commits on Dec 9, 2016

  1. Update version to 0.8.1-SNAPSHOT (#1467)

    Also, update versions in README to 0.8.0
    garrettjonesgoogle authored Dec 9, 2016
    Configuration menu
    Copy the full SHA
    bb99a20 View commit details
    Browse the repository at this point in the history
  2. Add link to Maven Central for maven-central badge. (#1468)

    Used to link to the image, which wasn't super useful.
    tswast authored and garrettjonesgoogle committed Dec 9, 2016
    Configuration menu
    Copy the full SHA
    b85e1cc View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2016

  1. fix more races in pubsub tests

    Previously BlockingProcessStreamReader has a terminate() method,
    used to tell the Reader to stop reading from the emulator process.
    
    This causes an inter-process race.
    If the Reader stops before reading emulator's output,
    the emulator process will hang as it tries to write to stdout/stderr
    as there's no one to read from the other side of the pipe.
    
    Since there is no way to safely stop the Reader,
    this commit deletes the method and its associated test.
    
    Additionally, the timeout for LocalSystemTest is increased to 3 minutes,
    since the emulator, somehow, consistently takes just longer than a
    minute to shut down.
    pongad committed Dec 12, 2016
    Configuration menu
    Copy the full SHA
    9a308a2 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1473 from pongad/fix-race

    fix more races in pubsub tests
    pongad authored Dec 12, 2016
    Configuration menu
    Copy the full SHA
    15c9e23 View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2017

  1. Regenerating SPI layer (#1501)

    * Converting Error Reporting and Monitoring to use resource name types
    * Removing formatX/parseX methods from pubsub, converting usage of the
      same to resource name types
    * New methods in Logging and PubSub
    garrettjonesgoogle authored Jan 5, 2017
    Configuration menu
    Copy the full SHA
    0611949 View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2017

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

Commits on Jan 9, 2017

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

Commits on Jan 10, 2017

  1. Fix code snippet (wrong method name) in README.md

    Original code snippet in _"Querying data"_ section: 
    
    `..while (!queryResponse.jobComplete()) {..`
    
    This results in a compile error: 
    
    _"Cannot resolve method jobComplete()"_
    
    The correct method is `jobCompleted()`
    Graham Polley authored Jan 10, 2017
    Configuration menu
    Copy the full SHA
    d884fc0 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1517 from polleyg/patch-1

    Fix code snippet (wrong method name) in README.md
    tswast authored Jan 10, 2017
    Configuration menu
    Copy the full SHA
    a12b4e7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    424d5b5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d1e1c85 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2017

  1. Allow path in URIs passed to newFileSystem (#1470)

    * This makes it easier for users who start with a URI describing a full
    path to get a FileSystem that can work with that path, since they no
    longer have to needlessly remove the path from the URI.
    
    Note that Oracle's description of newFileSystem [1] puts no restriction
    on the passed URI.
    
    [1]
    https://docs.oracle.com/javase/7/docs/api/java/nio/file/FileSystems.html#newFileSystem(java.net.URI,%20java.util.Map)
    jean-philippe-martin authored and garrettjonesgoogle committed Jan 12, 2017
    Configuration menu
    Copy the full SHA
    824ad77 View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2017

  1. Preventing logging re-entrance at FINE level (#1523)

    * Preventing logging re-entrance at FINE level
    
    Also:
    * Reducing the scope of synchronized blocks
    * Removing logger exclusions except for Http2FrameLogger
    garrettjonesgoogle authored Jan 13, 2017
    Configuration menu
    Copy the full SHA
    d4d494d View commit details
    Browse the repository at this point in the history
  2. Add a PathMatcher for CloudStorageFileSystem (#1469)

    Add a test, as well.
    We reuse the default PathMatcher since it does a fine job of globbing files.
    jean-philippe-martin authored and garrettjonesgoogle committed Jan 13, 2017
    Configuration menu
    Copy the full SHA
    f495c23 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2017

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

Commits on Jan 19, 2017

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

Commits on Jan 27, 2017

  1. BigQuery: Add support to FormatOptions for AVRO

    #1441
    
    Added new constant in FormatOptions, and a corresponding factory method. Updated test cases. Confirmed that AVRO does not require special treatment (like CSV does), so no additional changes are required.
    vam-google committed Jan 27, 2017
    Configuration menu
    Copy the full SHA
    7b6e5c6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6d193de View commit details
    Browse the repository at this point in the history
  3. BigQuery: Add support to FormatOptions for AVRO

    #1441
    
    Added new constant in FormatOptions and a corresponding factory method. Updated test cases. Confirmed that AVRO does not require special treatment (like CSV does), so no additional changes are required.
    vam-google committed Jan 27, 2017
    Configuration menu
    Copy the full SHA
    1643cf1 View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2017

  1. Merge pull request #1576 from vam-google/master

    BigQuery: Add support to FormatOptions for AVRO
    
    #1441
    
    Added new constant in FormatOptions and a corresponding factory method. Updated test cases. Confirmed that AVRO does not require special treatment (like CSV does), so no additional changes are required.
    vam-google authored Jan 28, 2017
    Configuration menu
    Copy the full SHA
    da93da7 View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2017

  1. use RpcFuture and remove old BundlingSettings (#1572)

    * use RpcFuture and remove old BundlingSettings
    pongad authored Jan 30, 2017
    Configuration menu
    Copy the full SHA
    cc6796a View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2017

  1. Release 0.8.2

    Note: This version was accidentally released to Sonatype because of
    experimenting with deployment commands, combined with the fact that
    autoReleaseAfterClose is set to true. Since releases can't be taken
    back, we might as well own up to the release and push the code
    forward.
    garrettjonesgoogle committed Feb 1, 2017
    Configuration menu
    Copy the full SHA
    e54f2fa View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a7dcdab View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    30fd42d View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2017

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

Commits on Feb 6, 2017

  1. get tests to compile and pass

    pongad committed Feb 6, 2017
    Configuration menu
    Copy the full SHA
    00df00b View commit details
    Browse the repository at this point in the history