github-repository-provider 8.0.11 → 8.0.13

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
@@ -1,6 +1,6 @@
1
1
  [![npm](https://img.shields.io/npm/v/github-repository-provider.svg)](https://www.npmjs.com/package/github-repository-provider)
2
2
  [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
3
- [![Open Bundle](https://bundlejs.com/badge-light.svg)](https://bundlejs.com/?q=github-repository-provider)
3
+ [![bundlejs](https://deno.bundlejs.com/?q=github-repository-provider\&badge=detailed)](https://bundlejs.com/?q=github-repository-provider)
4
4
  [![downloads](http://img.shields.io/npm/dm/github-repository-provider.svg?style=flat-square)](https://npmjs.org/package/github-repository-provider)
5
5
  [![GitHub Issues](https://img.shields.io/github/issues/arlac77/github-repository-provider.svg?style=flat-square)](https://github.com/arlac77/github-repository-provider/issues)
6
6
  [![Build Status](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2Farlac77%2Fgithub-repository-provider%2Fbadge\&style=flat)](https://actions-badge.atrox.dev/arlac77/github-repository-provider/goto)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-repository-provider",
3
- "version": "8.0.11",
3
+ "version": "8.0.13",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -34,20 +34,20 @@
34
34
  "fetch-rate-limit-util": "^4.0.2",
35
35
  "matching-iterator": "^2.0.11",
36
36
  "one-time-execution-method": "^3.0.6",
37
- "repository-provider": "^32.7.3"
37
+ "repository-provider": "^32.7.10"
38
38
  },
39
39
  "devDependencies": {
40
40
  "ava": "^5.2.0",
41
41
  "c8": "^7.13.0",
42
42
  "documentation": "^14.0.1",
43
- "etag-cache-leveldb": "^2.0.1",
43
+ "etag-cache-leveldb": "^2.0.2",
44
44
  "leveldown": "^6.1.1",
45
45
  "levelup": "^5.1.1",
46
- "repository-provider-test-support": "^2.3.1",
47
- "semantic-release": "^21.0.1"
46
+ "repository-provider-test-support": "^2.3.2",
47
+ "semantic-release": "^21.0.2"
48
48
  },
49
49
  "engines": {
50
- "node": ">=18.15.0"
50
+ "node": ">=18.16.0"
51
51
  },
52
52
  "repository": {
53
53
  "type": "git",
@@ -9,9 +9,7 @@ export class GithubPullRequest extends PullRequest {
9
9
  * All valid merge methods.
10
10
  * @return {Set<string>} valid merge methods
11
11
  */
12
- static get validMergeMethods() {
13
- return new Set(["MERGE", "SQUASH", "REBASE"]);
14
- }
12
+ static validMergeMethods = new Set(["MERGE", "SQUASH", "REBASE"]);
15
13
 
16
14
  static get attributeMapping() {
17
15
  return {