Skip to content

npm repo version out of sync with git tags #2045

@fbreton-jacques

Description

@fbreton-jacques

Installing the latest version (0.47.0) using npm, the code is missing some fixes that were made before to that release.

One example mismatch is in pubsub/src/subscription.js, line 735, looks like this when installed form npm :

if (self.activeRequest_ && self.activeRequest_.cancel) {
        self.activeRequest_.cancel();
      }

According to git, it was changed to

if (self.activeRequest_ && self.activeRequest_.abort) {
        self.activeRequest_.abort();
      }

The commit e92454e added this change.

Metadata

Metadata

Labels

coretype: questionRequest for information or clarification. Not an issue.

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions