github-repository-provider 7.25.53 → 7.25.54

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -125,6 +125,8 @@ Returns **[Promise](https://developer.mozilla.org/docs/Web/JavaScript/Reference/
125
125
 
126
126
  * `sha` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)**
127
127
 
128
+ Returns **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** sha
129
+
128
130
  ### tree
129
131
 
130
132
  * **See**: <https://developer.github.com/v3/git/trees/>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-repository-provider",
3
- "version": "7.25.53",
3
+ "version": "7.25.54",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -31,7 +31,7 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "content-entry": "^4.1.9",
34
- "fetch-link-util": "^1.0.6",
34
+ "fetch-link-util": "^1.0.7",
35
35
  "fetch-rate-limit-util": "^2.4.10",
36
36
  "matching-iterator": "^2.0.3",
37
37
  "node-fetch": "^3.2.3",
@@ -113,12 +113,12 @@ export class GithubBranch extends Branch {
113
113
  /**
114
114
  * {@link https://developer.github.com/v3/git/commits/#get-a-commit}
115
115
  * @param {string} sha
116
+ * @return {string} sha
116
117
  */
117
118
  async baseTreeSha(sha) {
118
119
  if (this._baseTreeSha) {
119
120
  const r = this._baseTreeSha.get(sha);
120
121
  if (r) {
121
- console.log("HIT", sha, r);
122
122
  return r;
123
123
  }
124
124
  } else {