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 - deprecated #783

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 23, 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 Oct 23, 2018
@renovate renovate bot force-pushed the renovate/google-cloud-error-reporting-0.x branch from 1de8c21 to 8280095 Compare October 23, 2018 12:01
@renovate renovate bot force-pushed the renovate/google-cloud-error-reporting-0.x branch from 8280095 to 16a8b15 Compare October 27, 2018 20:20
@renovate
Copy link
Contributor Author

renovate bot commented Oct 29, 2018

Renovate Ignore Notification

As this PR has been closed unmerged, Renovate will now ignore this update (0.5.1). You will still receive a PR once a newer version is released, so if you wish to permanently ignore this dependency, please add it to the ignoreDeps array of your renovate config.

If this PR was closed by mistake or you changed your mind, you can simply rename this PR and you will soon get a fresh replacement PR opened.

@renovate renovate bot deleted the renovate/google-cloud-error-reporting-0.x branch October 29, 2018 18:20
@kweinmeister kweinmeister changed the title Update dependency @google-cloud/error-reporting to v0.5.1 Update dependency @google-cloud/error-reporting to v0.5.1 - deprecated Jan 27, 2023
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.

2 participants