Skip to content

@google-cloud/bigquery v0.12.0

Compare
Choose a tag to compare
@lukesneeringer lukesneeringer released this 27 Dec 18:11
· 544 commits to master since this release

release level

⚠️ Breaking Changes!

  • The import and export methods have been renamed to use the verbs load and extract (#39)
    • This is to provide consistency with the BigQuery API documentation and other languages' library implementations.
  • Renamed all start- methods. This also encompasses the renames in the previous item. (#42)
    • The startQuery method on the base object:
      - BigQuery#startQuery
      + BigQuery#createQueryJob
    • The job creation methods on the table object:
      - BigQuery/table#startCopy
      + BigQuery/table#createCopyJob
      - BigQuery/table#startCopyFrom
      + BigQuery/table#createCopyFromJob
      - BigQuery/table#startExport
      + BigQuery/table#createExtractJob
      - BigQuery/table#startImport
      + BigQuery/table#createLoadJob

Documentation

  • Redirect developers to use the startQuery method if they need manual pagination. (#38)
  • Improved documentation for manual pagination. (#44)

Implementation Details

  • Change to a new linter (ESLint) and code style formatter (prettify).
  • Update docs to use JSDoc 3.