Skip to content

chore(main): release 4.0.0 #718

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,6 +4,17 @@

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

## [4.0.0](https://github.com/googleapis/nodejs-error-reporting/compare/v3.0.5...v4.0.0) (2024-06-19)


### ⚠ BREAKING CHANGES

* upgrade to Node 14 ([#715](https://github.com/googleapis/nodejs-error-reporting/issues/715))

### Miscellaneous Chores

* Upgrade to Node 14 ([#715](https://github.com/googleapis/nodejs-error-reporting/issues/715)) ([3b76387](https://github.com/googleapis/nodejs-error-reporting/commit/3b763879091d5844dc5f46831680f202a7e79f14))

## [3.0.5](https://github.com/googleapis/nodejs-error-reporting/compare/v3.0.4...v3.0.5) (2022-12-02)


2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@google-cloud/error-reporting",
"description": "Error Reporting Client Library for Node.js",
"version": "3.0.5",
"version": "4.0.0",
"license": "Apache-2.0",
"author": "Google Inc.",
"engines": {

Unchanged files with check annotations Beta

}
}
// eslint-disable-next-line node/no-missing-require

Check failure on line 110 in system-test/error-reporting.ts

GitHub Actions / lint

Definition for rule 'node/no-missing-require' was not found
const env = new InstancedEnv({
projectId: process.env.GCLOUD_TESTS_PROJECT_ID,
keyFilename: process.env.GCLOUD_TESTS_KEY,
if (!shouldRun()) {
console.log('Skipping error-reporting system tests');
// eslint-disable-next-line no-process-exit
process.exit(1);

Check failure on line 150 in system-test/error-reporting.ts

GitHub Actions / lint

Don't use process.exit(); throw an error instead
}
describe('Request/Response lifecycle mocking', () => {
);
});
it.skip('Should correctly publish an error that is null', async function (this: any) {

Check warning on line 683 in system-test/error-reporting.ts

GitHub Actions / lint

Unexpected any. Specify a different type
this.timeout(TIMEOUT);
await verifyReporting(
null,
// node v0.12 compatibility
if (!EventEmitter.prototype.listenerCount) {
EventEmitter.prototype.listenerCount = function (this, eventName) {
// eslint-disable-next-line node/no-deprecated-api

Check failure on line 27 in test/unit/interfaces/restify.ts

GitHub Actions / lint

Definition for rule 'node/no-deprecated-api' was not found
return EventEmitter.listenerCount(this, eventName as string);

Check failure on line 28 in test/unit/interfaces/restify.ts

GitHub Actions / lint

'events.EventEmitter.listenerCount' was deprecated since v4.0.0. Use 'events.EventEmitter#listenerCount()' instead
};
}