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

fix(deps): update dependency @google-cloud/spanner to v2 #956

Merged
merged 1 commit into from
Dec 15, 2018

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 29, 2018

This PR contains the following updates:

Package Type Update Change References
@​google-cloud/spanner dependencies major 1.5.0 -> 2.2.1 source

Release Notes

googleapis/nodejs-spanner

v2.2.1

Compare Source

11-28-2018 10:43 PST

Implementation Changes
  • Update package.json to include the build directory (#​454)

v2.2.0

Compare Source

11-27-2018 09:13 PST

Implementation Changes
  • fix: transaction async error handling that not thrown the full error (#​447)
  • fix(transaction): accept json options in run/runStream (#​446)
  • refactor(transaction): error handling (#​360)
  • refactor(ts): enable noImplicitThis in the tsconfig (#​411)
  • refactor(ts): use import/export for local files (#​408)
  • refactor(ts): add type packages for many things (#​406)
  • refactor(ts): convert tests to typescript (#​404)
  • refactor(typescript): rename src and system-test files to *.ts (#​402)
  • refactor(typescript): perform initial TypeScript conversion (#​384)
  • fix: Only run mutations inside of a transaction. (#​361)
New Features
  • feat(session): add label support (#​373)
Dependencies
Documentation
  • docs(samples): updated samples code to use async await (#​385)
  • Add Cloud Spanner DML/PDML samples. (#​366)
Internal / Testing Changes
  • chore: add synth.metadata
  • test: fix broken tests (#​441)
  • refactor(samples): convert ava tests to mocha (#​400)
  • chore: update eslintignore config (#​433)
  • chore(build): fix lint rules and build for generated code (#​430)
  • chore: drop contributors from multiple places (#​427)
  • chore: use latest npm on Windows (#​425)
  • fix: update source location for synth (#​422)
  • fix: re-enable linting and formatting (#​420)
  • chore: improve typescript config and types (#​417)
  • chore: update CircleCI config (#​416)
  • chore: run gts fix (#​413)
  • chore: remove old issue template (#​397)
  • chore: update issue templates (#​401)
  • build: run tests on node11 (#​395)
  • chores(build): do not collect sponge.xml from windows builds (#​389)
  • chores(build): run codecov on continuous builds (#​386)
  • chore: update new issue template (#​382)
  • fix(tests): use unique label for tests (#​367)
  • build: fix codecov uploading on Kokoro (#​372)
  • build(kokoro): test with spanner key (#​364)

v2.1.0

Compare Source

Implementation Changes
  • chore: use arrow functions (#​359)
  • fix: change exists to return false on error code 5 (#​353)
  • Switch to let/const (#​328)
  • Minor: wrap the inner error on retried transactions and return when deadline exceeded (#​309)
  • chore: convert index to es6 class (#​306)
  • Fix p-retry is accepting function not object/promise (#​312)
New Features
  • feat: dml/pdml support (#​348)
  • feat(table): drop method and additional error handling to delete (#​358)
  • feat(PartialResultStream): emit raw responses as event (#​357)
  • feat(transaction): add backup backoff delay (#​350)
Dependencies
  • chore(deps): update dependency eslint-plugin-prettier to v3 (#​351)
  • fix(deps): update dependency @​google-cloud/common-grpc to ^0.9.0 (#​339)
  • fix(deps): update dependency google-gax to ^0.20.0 (#​327)
  • fix(deps): update dependency delay to v4 (#​322)
  • fix: upgrade to the latest common-grpc (#​320)
  • fix(deps): update dependency google-auth-library to v2 (#​319)
  • fix(deps): update dependency p-queue to v3 (#​317)
  • chore(deps): update dependency nyc to v13 (#​314)
Documentation
  • docs: add typedefs for commit timestamp (#​356)
  • docs: various jsdoc fixes (#​352)
Internal / Testing Changes
  • chore: update auto-generated config (#​362)
  • chore: change queries to return expected values (#​355)
  • Update CI config (#​354)
  • chore: make sure workloadb benchmark runs properly (#​349)
  • test: Add delay for system test. (#​16)
  • Update QuickStart to use "new" syntax for creating Spanner client. (#​344)
  • test: remove appveyor config (#​342)
  • Update CI config (#​341)
  • Fix the failing lint rules (#​338)
  • Enable prefer-const in the eslint config (#​337)
  • soften assertion in system tests (#​335)
  • Update protos and comments (#​334)
  • fix string comparison in system test (#​333)
  • Enable no-var in eslint (#​331)
  • Add synth templates (#​330)
  • test: throw on deprecation (#​279)
  • Retry npm install in CI (#​323)
  • Re-generate library using /synth.py (#​316)
  • Fix color highlighting in CHANGELOG.md (#​313)
  • Update sample dependency @​google-cloud/spanner to v2 (#​310)
  • Re-generate library using /synth.py (#​308)

v2.0.0

Compare Source

Breaking Changes
  • Drop support for Node.js v4.x.x and v9.x.x (#​226)

  • Use es style imports (#​302)
    The import syntax for this library has changed to be es module compliant.

Old code
const spanner = require('@​google-cloud/spanner')();
// or
const Spanner = require('@​google-cloud/spanner');
const spanner = new Spanner();
New code
const {Spanner} = require('@​google-cloud/spanner');
const spanner = new Spanner();
New Features
  • add runTransactionAsync method (#​294)

    const {Spanner} = require('@​google-cloud/spanner');
    const spanner = new Spanner();
    
    const instance = spanner.instance('my-instance');
    const database = instance.database('my-database');
    
    await database.runTransactionAsync(async (transaction) => {
        const [rows] = await transaction.run('SELECT * FROM MyTable');
        const data = rows.map(row => row.thing);
        await transaction.commit();
        return data;
    }).then(data => {
      // ...
    });
  • feature(database): make session pool hot swappable (#​243)

Implementation Changes
  • feat: use es style imports (#​302)
  • fix: perform type check on grpc value (#​300)
  • chore: use es classes in a few places (#​297)
  • chore: do not use npm ci (#​292)
  • chore: split the common module (#​289)
  • test: fix strict equal assertions (#​287)
  • chore: ignore package-lock.json (#​286)
  • chore: use let and const (#​283)
  • chore: update renovate config (#​281)
  • Re-generate library using /synth.py (#​282)
  • chore: use assert.deepStrictEqual instead of assert.deepEqual (#​274)
  • chore: require node 8 for samples (#​273)
  • test: use strictEqual in tests (#​267)
  • use node_library not not internal generate method (#​247)
  • Configure Renovate (#​239)
  • fix: drop support for node.js 4.x and 9.x (#​226)
Dependencies
  • fix(deps): update dependency google-gax to ^0.19.0 (#​298)
  • chore(deps): update dependency eslint-config-prettier to v3 (#​295)
  • fix(deps): update dependency google-gax to ^0.18.0 (#​278)
  • chore(deps): update dependency eslint-plugin-node to v7 (#​266)
  • refactor: update auth library, common-grpc (#​256)
  • fix(deps): update dependency yargs to v12 (#​254)
  • chore(deps): update dependency yargs to v12 (#​252)
  • chore(deps): update dependency sinon to v6.0.1 (#​250)
  • chore(package): update eslint to version 5.0.0 (#​240)
  • chore: update sample lockfiles (#​246)
  • Update to support google-gax v0.17 (#​244)
  • fix(package): update @​google-cloud/common-grpc to version 0.7.1 (#​235)
  • refactor: drop dependency on safe-buffer (#​232)
  • refactor: remove dependency generic-pool (#​231)
  • refactor: drop dependency on lodash.flatten (#​233)
  • refactor: remove array-uniq as dependency (#​227)
  • refactor: remove string-obj-format (#​229)
  • refactor: remove methmeth as a dependency (#​228)
  • chore: upgrade several dependencies (#​221)
Internal / Testing Changes
  • chore: move mocha options to mocha.opts (#​272)
  • refactor: drop repo-tool as an exec wrapper (#​248)
  • fix: update linking for samples (#​242)
  • Adding Spanner STRUCT param samples (#​219)

Renovate configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever PR is stale, or if you modify the PR title to begin with "rebase!".

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot. View repository job log here.

@googlebot googlebot added the cla: yes This human has signed the Contributor License Agreement. label Nov 29, 2018
@renovate renovate bot force-pushed the renovate/google-cloud-spanner-2.x branch 11 times, most recently from 2090665 to 635ca3c Compare November 30, 2018 15:36
@fhinkel fhinkel mentioned this pull request Nov 30, 2018
@renovate renovate bot force-pushed the renovate/google-cloud-spanner-2.x branch 9 times, most recently from e109738 to 8f6efac Compare December 7, 2018 23:54
@renovate renovate bot force-pushed the renovate/google-cloud-spanner-2.x branch 5 times, most recently from f80f291 to 5d979da Compare December 10, 2018 23:13
@renovate renovate bot changed the title Update dependency @google-cloud/spanner to v2 fix(deps): update dependency @google-cloud/spanner to v2 Dec 11, 2018
@renovate renovate bot force-pushed the renovate/google-cloud-spanner-2.x branch 2 times, most recently from 762996c to 11c84d3 Compare December 11, 2018 22:05
@renovate renovate bot force-pushed the renovate/google-cloud-spanner-2.x branch 23 times, most recently from e516f99 to c80a75e Compare December 15, 2018 01:28
@renovate renovate bot force-pushed the renovate/google-cloud-spanner-2.x branch from c80a75e to 3fe84ae Compare December 15, 2018 01:30
@fhinkel fhinkel added the kokoro:run Add this label to force Kokoro to re-run the tests. label Dec 15, 2018
@kokoro-team kokoro-team removed the kokoro:run Add this label to force Kokoro to re-run the tests. label Dec 15, 2018
@fhinkel fhinkel merged commit 40a7f9a into master Dec 15, 2018
@fhinkel fhinkel deleted the renovate/google-cloud-spanner-2.x branch December 15, 2018 01:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cla: yes This human has signed the Contributor License Agreement.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants