Skip to content

Commit

Permalink
Merge branch 'main' of github.com:googleapis/nodejs-bigquery into fea…
Browse files Browse the repository at this point in the history
…t_partial_metadata_projection

updating changes on main branch
  • Loading branch information
loferris committed Aug 11, 2023
2 parents 6fc9bf3 + 6f04f39 commit 04953b5
Show file tree
Hide file tree
Showing 10 changed files with 31 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/.OwlBot.lock.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
# limitations under the License.
docker:
image: gcr.io/cloud-devrel-public-resources/owlbot-nodejs:latest
digest: sha256:ef104a520c849ffde60495342ecf099dfb6256eab0fbd173228f447bc73d1aa9
# created: 2023-07-10T21:36:52.433664553Z
digest: sha256:e08f9a3757808cdaf7a377e962308c65c4d7eff12db206d4fae702dd50d43430
# created: 2023-08-03T18:46:14.719706948Z
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@

[1]: https://www.npmjs.com/package/@google-cloud/bigquery?activeTab=versions

## [7.1.1](https://github.com/googleapis/nodejs-bigquery/compare/v7.1.0...v7.1.1) (2023-08-03)


### Bug Fixes

* Node release schedule link ([#1241](https://github.com/googleapis/nodejs-bigquery/issues/1241)) ([3bcb08a](https://github.com/googleapis/nodejs-bigquery/commit/3bcb08a20d53eeb9ac4deeb86d495185438bf77b))
* Update @types/big.js ([8d16fae](https://github.com/googleapis/nodejs-bigquery/commit/8d16fae555591e9b406d63bd5cb2818be778ebdc))

## [7.1.0](https://github.com/googleapis/nodejs-bigquery/compare/v7.0.0...v7.1.0) (2023-08-01)


### Features

* Support and optionally parse JSON field ([#1229](https://github.com/googleapis/nodejs-bigquery/issues/1229)) ([cd11447](https://github.com/googleapis/nodejs-bigquery/commit/cd114470150cd58dffd4a7c511021eac19ab94d5))
* Support create/list datasets on a different project ([#1230](https://github.com/googleapis/nodejs-bigquery/issues/1230)) ([86c63fb](https://github.com/googleapis/nodejs-bigquery/commit/86c63fb7079b2fb5b70bae13ed20267cebb3c99d))

## [7.0.0](https://github.com/googleapis/nodejs-bigquery/compare/v6.2.1...v7.0.0) (2023-07-31)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ also contains samples.

## Supported Node.js Versions

Our client libraries follow the [Node.js release schedule](https://nodejs.org/en/about/releases/).
Our client libraries follow the [Node.js release schedule](https://github.com/nodejs/release#release-schedule).
Libraries are compatible with all current _active_ and _maintenance_ versions of
Node.js.
If you are using an end-of-life version of Node.js, we recommend that you update
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@google-cloud/bigquery",
"description": "Google BigQuery Client Library for Node.js",
"version": "7.0.0",
"version": "7.1.1",
"license": "Apache-2.0",
"author": "Google LLC",
"engines": {
Expand Down Expand Up @@ -48,10 +48,10 @@
"precompile": "gts clean"
},
"dependencies": {
"@google-cloud/common": "^4.0.0",
"@google-cloud/paginator": "^4.0.0",
"@google-cloud/common": "^5.0.0",
"@google-cloud/paginator": "^5.0.0",
"@google-cloud/precise-date": "^3.0.1",
"@google-cloud/promisify": "^3.0.0",
"@google-cloud/promisify": "^4.0.0",
"arrify": "^2.0.1",
"big.js": "^6.0.0",
"duplexify": "^4.0.0",
Expand All @@ -62,7 +62,7 @@
},
"devDependencies": {
"@google-cloud/storage": "^6.0.0",
"@types/big.js": "^6.0.0",
"@types/big.js": "^6.2.0",
"@types/extend": "^3.0.1",
"@types/is": "0.0.22",
"@types/mocha": "^9.0.0",
Expand Down
4 changes: 2 additions & 2 deletions samples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
"test": "mocha --timeout 200000"
},
"dependencies": {
"@google-cloud/bigquery": "^7.0.0",
"@google-cloud/bigquery": "^7.1.1",
"@google-cloud/storage": "^6.0.0",
"google-auth-library": "^9.0.0",
"readline-promise": "^1.0.4",
"yargs": "^17.0.0"
},
"devDependencies": {
"@google-cloud/datacatalog": "^3.0.0",
"@google-cloud/datacatalog": "^4.0.0",
"chai": "^4.2.0",
"mocha": "^8.0.0",
"proxyquire": "^2.1.3",
Expand Down
2 changes: 1 addition & 1 deletion src/bigquery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import {paginator, ResourceStream} from '@google-cloud/paginator';
import {promisifyAll} from '@google-cloud/promisify';
import {PreciseDate} from '@google-cloud/precise-date';
import arrify = require('arrify');
import {Big} from 'big.js';
import * as Big from 'big.js';
import * as extend from 'extend';
import * as is from 'is';
import * as uuid from 'uuid';
Expand Down
2 changes: 1 addition & 1 deletion src/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import {
import {paginator, ResourceStream} from '@google-cloud/paginator';
import {promisifyAll} from '@google-cloud/promisify';
import arrify = require('arrify');
import Big from 'big.js';
import * as Big from 'big.js';
import * as extend from 'extend';
import {once} from 'events';
import * as fs from 'fs';
Expand Down
2 changes: 1 addition & 1 deletion system-test/bigquery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
import {Storage} from '@google-cloud/storage';
import * as assert from 'assert';
import {describe, it, before, after} from 'mocha';
import Big from 'big.js';
import * as Big from 'big.js';
import * as fs from 'fs';
import * as uuid from 'uuid';
import {Readable} from 'stream';
Expand Down
2 changes: 1 addition & 1 deletion test/bigquery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import * as pfy from '@google-cloud/promisify';
import arrify = require('arrify');
import * as assert from 'assert';
import {describe, it, after, afterEach, before, beforeEach} from 'mocha';
import Big from 'big.js';
import * as Big from 'big.js';
import * as extend from 'extend';
import * as proxyquire from 'proxyquire';
import * as sinon from 'sinon';
Expand Down
2 changes: 1 addition & 1 deletion test/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import {File} from '@google-cloud/storage';
import arrify = require('arrify');
import * as assert from 'assert';
import {describe, it, afterEach, beforeEach, before, after} from 'mocha';
import Big from 'big.js';
import * as Big from 'big.js';
import {EventEmitter} from 'events';
import * as extend from 'extend';
import * as proxyquire from 'proxyquire';
Expand Down

0 comments on commit 04953b5

Please sign in to comment.