Skip to content

Commit

Permalink
Release google-cloud-bigquery 1.19.0 (#4809)
Browse files Browse the repository at this point in the history
#### Features

* Add Routine
  * Add Dataset#create_routine
  * Add Argument
  * Update StandardSql classes to expose public initializer
  * Add Data#ddl_target_routine and QueryJob#ddl_target_routine
* Allow row inserts to skip insert_id generation
  * Streaming inserts using an insert_id are not able to be inserted as fast as inserts without an insert_id
  * Add the ability for users to skip insert_id generation in order to speed up the inserts
  * The default behavior continues to generate insert_id values for each row inserted
  * Add yield documentation for Dataset#insert
  • Loading branch information
quartzmo committed Feb 12, 2020
1 parent a5b2c0d commit 9fbc94c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions google-cloud-bigquery/CHANGELOG.md
@@ -1,5 +1,20 @@
# Release History

### 1.19.0 / 2020-02-11

#### Features

* Add Routine
* Add Dataset#create_routine
* Add Argument
* Update StandardSql classes to expose public initializer
* Add Data#ddl_target_routine and QueryJob#ddl_target_routine
* Allow row inserts to skip insert_id generation
* Streaming inserts using an insert_id are not able to be inserted as fast as inserts without an insert_id
* Add the ability for users to skip insert_id generation in order to speed up the inserts
* The default behavior continues to generate insert_id values for each row inserted
* Add yield documentation for Dataset#insert

### 1.18.1 / 2019-12-18

#### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion google-cloud-bigquery/lib/google/cloud/bigquery/version.rb
Expand Up @@ -16,7 +16,7 @@
module Google
module Cloud
module Bigquery
VERSION = "1.18.1".freeze
VERSION = "1.19.0".freeze
end
end
end

0 comments on commit 9fbc94c

Please sign in to comment.