You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 11, 2026. It is now read-only.
The problem is that the resolution for google-gax in the package.json is 3.2.2, so people (like me), who bumped the lib from 10.1.x to 10.1.5 and later, still have the google-gax dependency installed with the version 3.2.2.
And when the lib is exporting this module.exports = factory(require("google-gax/build/src/protobuf").protobufMinimal);, it throws an error because it does not exist as it is only available in google-gax 3.3.0 and after.
Hi 👋 There is an issue with the pinned version of google-gax dependency.
Environment details
@google-cloud/loggingversion: 10.8.0Steps to reproduce
The problem is that the resolution for google-gax in the package.json is 3.2.2, so people (like me), who bumped the lib from 10.1.x to 10.1.5 and later, still have the google-gax dependency installed with the version 3.2.2.
And when the lib is exporting this
module.exports = factory(require("google-gax/build/src/protobuf").protobufMinimal);, it throws an error because it does not exist as it is only available in google-gax 3.3.0 and after.