Commit Graph

1118 Commits

Author SHA1 Message Date
Sam Jp 9dd60cd747 typo fix: visists -> visits (#594) 2017-06-27 10:18:39 -07:00
Janko Marohnić 0eeb3ee9f9 Recover from non-Ranged responses without rewinding
Not all IO objects know how to #rewind themselves. For example, Ruby
pipes (returned by `IO.pipe`) do implement #rewind, but they will throw
an error if you try to call it.

  rd, wr = IO.pipe
  wr.rewind # Errno::ESPIPE: Illegal seek

But we don't need to rewind and overwrite the IO object if we didn't get
the Ranged response we expected, we could instead wait out the content
that has already been downloaded, and start appending again once we
reached where we left off. This is what this commit does.
2017-06-23 11:22:37 +02:00
Sai Cheemalapati e7f64be149 Rename 'gcloud' to 'google-cloud' 2017-06-20 16:06:55 -07:00
Sai Cheemalapati c2cb912592 Release 0.13.0 2017-06-14 10:13:26 -07:00
Sai Cheemalapati 749539e46a Bump version, regen APIs
Revert api_names.yaml to pick up the manual overrides lost in v0.12.0
2017-06-14 10:06:42 -07:00
Sai Cheemalapati ebd954a53c Release 0.12.0 2017-06-02 00:29:57 -07:00
Sai Cheemalapati 3f26743ef7 Bump version, regen APIs
Delete services which are no longer discoverable:
 - adexchangebuyer:v1_3
 - appengine:v1beta4
 - appengine:v1beta5
 - autoscaler:v1beta2
 - classroom:v1beta1
 - cloudkms:v1beta1
 - cloudlatencytest:v2
 - container:v1beta1
 - coordinate:v1
 - datastore:v1beta2
 - datastore:v1beta3
 - deploymentmanager:v2beta2
 - dfareporting:v2_1
 - dfareporting:v2_3
 - dfareporting:v2_5
 - dfareporting:v2_6
 - gan:v1beta1
 - genomics:v1beta2
 - logging:v1beta3
 - manager:v1beta2
 - pubsub:v1beta2
 - tracing:v1

Also include fixes in the gemspec file recommended by the package
script.
2017-06-02 00:27:33 -07:00
Sai Cheemalapati e3792b19d2 Add Hash support to fetch_all (#586)
This commit aligns the behavior of `fetch_all` over map responses with
that of arrays (returning a single collection with all entries).
2017-06-01 23:52:09 -04:00
Steve Bazyl f7c84d1f89 Release 0.11.3 2017-05-26 10:45:38 -06:00
Steve Bazyl 9237ba59cb Bump version, regen APIs 2017-05-26 10:44:32 -06:00
Steve Bazyl b8f6f7c2fe Merge branch 'master' of https://github.com/google/google-api-ruby-client 2017-05-26 10:23:09 -06:00
Steve Bazyl 84f4c7f73e Merge pull request #583 from sqrrrl/master
Allow using v2 error messages + fix to_json signature
2017-05-24 16:43:05 -06:00
Steven Bazyl 6a4e9184e7 Allow using v2 error messages + fix to_json signature to allow arbitrary args 2017-05-19 17:16:22 -06:00
Steve Bazyl 2d8873f170 Merge branch 'master' of https://github.com/google/google-api-ruby-client 2017-05-19 14:30:17 -06:00
Sai Cheemalapati 271f0c86e3 Update README.md (#579) 2017-05-17 14:09:37 -07:00
Sai Cheemalapati 878de38203 Update CHANGELOG.md 2017-05-04 12:39:57 -07:00
Sai Cheemalapati 9a2b1c2534 Release 0.11.2 2017-05-04 12:37:26 -07:00
Sai Cheemalapati 7b5a460934 Regen APIs and bump version
This commit also adds `dfareporting:v2.8`.
2017-05-04 12:35:56 -07:00
Steve Bazyl af0fb4ec56 Release 0.11.1 2017-04-04 14:06:22 -07:00
Steve Bazyl ff5eb3670d Bump version for minor release 2017-04-04 13:47:17 -07:00
Steve Bazyl 28633fb006 Merge branch 'barancw-master' 2017-04-04 12:12:18 -07:00
Steve Bazyl 7c31e8ccb6 Merge branch 'master' of https://github.com/barancw/google-api-ruby-client into barancw-master 2017-04-04 12:11:54 -07:00
Steve Bazyl 1c2cf5d57f Merge pull request #566 from sonots/remove_puts
remove print debug
2017-04-04 12:09:04 -07:00
sonots ed27c6ec07 remove print debug 2017-04-04 17:36:46 +09:00
Steve Bazyl 486e4adef7 Release 0.11.0 2017-04-03 13:53:50 -07:00
Steve Bazyl 2952e9ce27 Update version in readme 2017-04-03 13:45:57 -07:00
Steve Bazyl e3b8c800d6 Regen APIs 2017-04-03 13:18:48 -07:00
Steve Bazyl c645e7d2f8 Merge branch 'sqrrrl-master' 2017-04-03 12:31:33 -07:00
Steve Bazyl 48916bfce7 Merge branch 'master' of https://github.com/sqrrrl/google-api-ruby-client into sqrrrl-master 2017-04-03 12:31:20 -07:00
Steve Bazyl 8ef5c84c78 Merge pull request #564 from google/v0.10
Merge v0.10 branch (now 0.11)
2017-04-03 12:30:21 -07:00
Steve Bazyl e4edc1584e Merge branch 'v0.10' of https://github.com/google/google-api-ruby-client into v0.10 2017-04-03 11:23:16 -07:00
Steve Bazyl 8456aa1d1e Update readme to describe raw json support 2017-04-03 11:20:00 -07:00
Steve Bazyl 4682267161 Move timeouts from request to clientoptions, update migration/changelog 2017-04-03 11:10:54 -07:00
Steve Bazyl 97ff7f4d9a #475, #488 -- allow raw JSON if explicitly requested, fix empty body handling & test cleanup 2017-03-31 15:26:51 -07:00
Steve Bazyl 489378db58 Ensure content length when empty body, hook up httpclient to logger when debugging 2017-03-31 14:59:07 -07:00
Steve Bazyl aed2936248 Add test for #509 - setting proxy url as string 2017-03-31 13:12:59 -07:00
Steve Bazyl c9e0d52d96 Merge branch 'master' into v0.10 2017-03-31 13:04:01 -07:00
Steve Bazyl 233ee09abc Merge branch 'master' of https://github.com/google/google-api-ruby-client 2017-03-31 13:02:21 -07:00
Steve Bazyl a72bbb9378 Update CHANGELOG.md 2017-03-31 13:00:27 -07:00
Steve Bazyl 628bef8e3a Release 0.10.3 2017-03-31 12:56:52 -07:00
Steve Bazyl 7154133624 Merge branch 'master' of https://github.com/google/google-api-ruby-client 2017-03-31 12:55:52 -07:00
Steve Bazyl 70236aca40 Regen APIs & bump version 2017-03-31 12:53:27 -07:00
Steve Bazyl 51b41edb1c #474 - Clarify that base64 properties are automatically encoded/decoded. 2017-03-31 12:27:30 -07:00
Steve Bazyl bdc903776d Fix inflection for teamdrives, better logging for conflicting names 2017-03-31 11:22:28 -07:00
Steve Bazyl cc80d64a75 Update generator to output conflicting paths when duplicate name generated 2017-03-30 15:32:02 -07:00
Steve Bazyl 78017a9f39 Enable more APIs & regen 2017-03-30 15:30:51 -07:00
Steve Bazyl ae3eb86208 Delete sync.rb 2017-03-30 13:00:15 -07:00
Steve Bazyl 9efb39e7b8 Clarify versions in readme & migrating guides 2017-03-30 12:39:09 -07:00
Steve Bazyl 5447ddb7c0 Don't normalize unicode in templates (fixed #557 + GCS issues) 2017-03-30 12:33:49 -07:00
Steve Bazyl 75fea23df2 Merge pull request #511 from kohei12/20170101/fix_typo_of_api_names_yaml
Fix typo of api names yaml
2017-03-30 12:32:46 -07:00