MCPcopy Create free account
hub / github.com/nodejs/node / GetLatestRelease

Method GetLatestRelease

deps/v8/tools/release/common_includes.py:566–576  ·  view source on GitHub ↗

The latest release is the git hash of the latest tagged version. This revision should be rolled into chromium.

(self)

Source from the content-addressed store, hash-verified

564 return version
565
566 def GetLatestRelease(self):
567 """The latest release is the git hash of the latest tagged version.
568
569 This revision should be rolled into chromium.
570 """
571 latest_version = self.GetLatestVersion()
572
573 # The latest release.
574 latest_hash = self.GitLog(n=1, format="%H", branch=latest_version)
575 assert latest_hash
576 return latest_hash
577
578 def GetLatestReleaseBase(self, version=None):
579 """The latest release base is the latest revision that is covered in the

Callers

nothing calls this directly

Calls 2

GetLatestVersionMethod · 0.95
GitLogMethod · 0.80

Tested by

no test coverage detected