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

Update dependency @google-cloud/error-reporting to v0.5.1 - autoclosed #866

Closed
wants to merge 2 commits into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 10, 2018

This PR contains the following updates:

Package Type Update Change References
@​google-cloud/error-reporting dependencies minor 0.2.3 -> 0.5.1 source

Release Notes

googleapis/nodejs-error-reporting

v0.5.1

Compare Source

This release picks up an updated dependency for @google-cloud/common to fix typescript compile issue for some users (e.g. #​155).

Commits

v0.5.0

Compare Source

Breaking Changes

  • Drop support for Node v4.x.x
  • Add support for Node v10.x.x

Changes

  • Update dependency versions

v0.4.0

Compare Source

This release adds support for Hapi 17.

Commits

  • feat: support Hapi17 (#​89) 70e1c74
  • chore: re-enable noImplicitAny (#​107) 0ed82f5
  • chore: update to TypeScript 2.8 (#​106) f945f72
  • chore: re-enable gts check (#​105) 7e29c42
  • chore: update koa server to use Date.now() (#​104) a48e1c1

v0.3.2

Compare Source

This release is being made to address an issue where releases v0.3.0 and v0.3.1 did not contain a build directory.

Commits

  • chore: run CI as non-root user (#​100) a22c981

v0.3.1

Compare Source

This release fixes an issue where version 0.3.0 of this module did not contain the build directory.

Commits

  • fix: fix the build dir missing from releases (#​98) c8495f0

v0.3.0

Compare Source

The codebase has been translated to Typescript. As a result, type definitions are included with this module to support Typescript workflows.

Breaking Changes

  • The exports of the modules have changed. The default export of the module was previously a reference to the ErrorReporting constructor. For better compatibility with ES6 modules, this has been modified, and there is no default export, but exports a property named ErrorReporting.
// OLD CODE
const ErrorReporting = require('@​google-cloud/error-reporting');

// NEW CODE (Node 6+)
const {ErrorReporting} = require('@​google-cloud/error-reporting');
// NEW Code (Node 4)
const ErrorReporting = require('@​google-cloud/error-reporting').ErrorReporting;

// If you are using ES6 style imports via TypeScript or Babel, you can use es6 style:
import {ErrorReporting} from '@​google-cloud/error-reporting';
  • As a result of translating the codebase to use proper ES6 classes, the new keyword is now required when creating a new ErrorReporting object.
// OLD CODE
const errors = ErrorReporting(config);

// NEW CODE
const errors = new ErrorReporting(config);

Commits

  • fix(package): update @​google-cloud/common to version 0.17.0 (#​82) 6605707
  • chore: simplify index.ts (#​80) 9bb2eea
  • fix: potential fix of repo-tools permission error (#​93) 911c0bc
  • fix: fix express installation test (#​92) 16f78cd
  • chore(package): update @​types/is to version 0.0.19 (#​91) fe67b08
  • chore(package): update @​types/mocha to version 5.0.0 (#​83) 8892962
  • chore: replace var with let and const (#​88) 0904c40
  • chore: convert test servers to TypeScript (#​87) 7fcf6d4
  • chore: update error-reporting to use import statements (#​86) 6b58117
  • Remove use strict (#​85) a91e660
  • chore: enable building utils files (#​84) da857f0
  • chore: rename test files to *.ts (#​46) bd8ef13
  • fix: fix a failure in the installation tests (#​74) 94fbc5e
  • chore: setup nighty build in CircleCI (#​77) e430de9
  • chore: install tests print output on failure (#​75) fe34282
  • chore: update README to reflect the new API (#​76) 9da09a0
  • chore: unignore package-lock.json and yarn.lock (#​72) f2e2dd3
  • chore(package): update proxyquire to version 2.0.0 (#​69) 10c0005
  • feat: add installation tests (#​60) dec8b9a
  • chore(package): update js-green-licenses to version 0.5.0 (#​70) da3794d
  • chore: removing node7 job from CircleCI (#​65) 10f17d5
  • chore(package): update @​types/node to version 9.4.0 (#​52) 2037e0b
  • fix(package): update @​google-cloud/common to version 0.16.0 (#​54) 1d68cf5
  • chore(package): update eslint-plugin-node to version 6.0.0 (#​53) acdbcf6
  • Fixing vulnerability reported by snyk (#​51) a38845d
  • chore(package): update mocha to version 5.0.0 (#​48) 549bff5
  • chore(package): update js-green-licenses to version 0.4.0 (#​47) 91a4db1
  • chore: license check in posttest (#​26) b75f12f
  • chore: fix the samples tests (#​39) 4875464
  • chore: re-enable gts check (#​37) 763f35e
  • chore: replace var with const or let (#​36) a9a9cb5
  • chore: enable noImplicitAny and noImplicitThis (#​34) 20daf28
  • chore: Add type annotations (#​32) 6889e91
  • chore: Use import syntax (#​31) 67767f9
  • chore: Use export syntax instead of module.exports (#​30) 80daac2
  • Remove use strict statements (#​28) f2b2559
  • chore: Specify the working_directory for sys tests (#​29) 00e7272
  • chore: Use class syntax in src (#​27) 6a15ea1
  • Ensure compilation occurs before sys/samples tests (#​25) 23473db
  • chore: Rename src files to *.ts (#​22) efc0691
  • chore: Use gts with allowJs: true (#​21) 9913f3d
  • chore: Rename .appveyor.yaml to *.yml (#​20) bd3db3c
  • chore: Fix circleci to match the other googleapis (#​19) 95f1bed
  • Complete code migration (#​18) 8c67eed
  • Merge remote-tracking branch 'dpe/master' 8185925
  • Remove unused values (#​2669) 66c9f6f

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.


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 10, 2018
@renovate renovate bot force-pushed the renovate/google-cloud-error-reporting-0.x branch 12 times, most recently from 1235dfa to a1ce314 Compare November 13, 2018 02:40
@renovate renovate bot force-pushed the renovate/google-cloud-error-reporting-0.x branch from a1ce314 to 32f6298 Compare November 13, 2018 17:46
@renovate renovate bot changed the title fix(deps): update dependency @google-cloud/error-reporting to v0.5.1 Update dependency @google-cloud/error-reporting to v0.5.1 Nov 13, 2018
@renovate renovate bot force-pushed the renovate/google-cloud-error-reporting-0.x branch 4 times, most recently from bfe80f1 to 6966294 Compare November 14, 2018 04:42
@renovate renovate bot force-pushed the renovate/google-cloud-error-reporting-0.x branch from 6966294 to dc3f4e1 Compare November 14, 2018 04:55
@renovate
Copy link
Contributor Author

renovate bot commented Nov 14, 2018

PR has been edited

👷 This PR has received other commits, so Renovate will stop updating it to avoid conflicts or other problems. If you wish to abandon your changes and have Renovate start over then you can add the label rebase to this PR and Renovate will reset/recreate it.

@fhinkel fhinkel added the kokoro:run Add this label to force Kokoro to re-run the tests. label Nov 14, 2018
@kokoro-team kokoro-team removed the kokoro:run Add this label to force Kokoro to re-run the tests. label Nov 14, 2018
Copy link
Contributor

@fhinkel fhinkel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Error reporting tests don't pass when updating error-reporting.

@fhinkel fhinkel mentioned this pull request Nov 14, 2018
@renovate renovate bot changed the title Update dependency @google-cloud/error-reporting to v0.5.1 Update dependency @google-cloud/error-reporting to v0.5.1 - autoclosed Nov 16, 2018
@renovate renovate bot closed this Nov 16, 2018
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