The version 0.3.0 is not covered by your current version range.
If you donāt accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.
It might be worth looking into these changes and trying to get this project onto the latest version of @google-cloud/error-reporting.
If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you donāt have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.
Release Notesv0.3.0
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 CODEconstErrorReporting=require('@google-cloud/error-reporting');
// NEW CODE (Node 6+)const {ErrorReporting} =require('@google-cloud/error-reporting');
// NEW Code (Node 4)constErrorReporting=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 CODEconsterrors=ErrorReporting(config);
// NEW CODEconsterrors=newErrorReporting(config);
Commits
fix(package): update @google-cloud/common to version 0.17.0 (#82) 6605707
FAQ and help
There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those donāt help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).
āļø Greenkeeperās updated Terms of Service will come into effect on April 6th, 2018.
Version 0.3.0 of @google-cloud/error-reporting was just published.
The version 0.3.0 is not covered by your current version range.
If you donāt accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.
It might be worth looking into these changes and trying to get this project onto the latest version of @google-cloud/error-reporting.
If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you donāt have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.
Release Notes
v0.3.0The codebase has been translated to Typescript. As a result, type definitions are included with this module to support Typescript workflows.
Breaking Changes
ErrorReporting
constructor. For better compatibility with ES6 modules, this has been modified, and there is no default export, but exports a property namedErrorReporting
.new
keyword is now required when creating a newErrorReporting
object.Commits
6605707
index.ts
(#80)9bb2eea
911c0bc
16f78cd
fe67b08
8892962
var
withlet
andconst
(#88)0904c40
7fcf6d4
error-reporting
to use import statements (#86)6b58117
use strict
(#85)a91e660
da857f0
*.ts
(#46)bd8ef13
94fbc5e
e430de9
fe34282
9da09a0
f2e2dd3
10c0005
dec8b9a
da3794d
10f17d5
2037e0b
1d68cf5
acdbcf6
a38845d
549bff5
91a4db1
b75f12f
4875464
gts check
(#37)763f35e
var
withconst
orlet
(#36)a9a9cb5
noImplicitAny
andnoImplicitThis
(#34)20daf28
6889e91
import
syntax (#31)67767f9
export
syntax instead ofmodule.exports
(#30)80daac2
use strict
statements (#28)f2b2559
00e7272
src
(#27)6a15ea1
23473db
*.ts
(#22)efc0691
gts
withallowJs: true
(#21)9913f3d
.appveyor.yaml
to*.yml
(#20)bd3db3c
95f1bed
8c67eed
8185925
66c9f6f
Commits
The new version differs by 51 commits ahead by 51, behind by 4.
1668544
chore: release v0.3.0 (#95)
6605707
fix(package): update @google-cloud/common to version 0.17.0 (#82)
9bb2eea
chore: simplify
index.ts
(#80)911c0bc
fix: potential fix of repo-tools permission error (#93)
16f78cd
fix: fix express installation test (#92)
fe67b08
chore(package): update @types/is to version 0.0.19 (#91)
8892962
chore(package): update @types/mocha to version 5.0.0 (#83)
0904c40
chore: replace
var
withlet
andconst
(#88)7fcf6d4
chore: convert test servers to TypeScript (#87)
6b58117
chore: update
error-reporting
to use import statements (#86)a91e660
Remove
use strict
(#85)da857f0
chore: enable building utils files (#84)
bd8ef13
chore: rename test files to
*.ts
(#46)94fbc5e
fix: fix a failure in the installation tests (#74)
e430de9
chore: setup nighty build in CircleCI (#77)
There are 51 commits in total.
See the full diff
FAQ and help
There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those donāt help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).Your Greenkeeper bot :palm_tree: