repository-provider 36.0.13 → 36.0.15

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/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (C) 2017-2025 by arlac77
1
+ Copyright (C) 2017-2026 by arlac77
2
2
 
3
3
  Permission to use, copy, modify, and/or distribute this software for any
4
4
  purpose with or without fee is hereby granted.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repository-provider",
3
- "version": "36.0.13",
3
+ "version": "36.0.15",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -35,18 +35,18 @@
35
35
  "dependencies": {
36
36
  "content-entry": "^14.2.7",
37
37
  "matching-iterator": "^2.1.5",
38
- "pacc": "^6.5.0"
38
+ "pacc": "^6.7.2"
39
39
  },
40
40
  "devDependencies": {
41
41
  "ava": "^6.4.1",
42
- "browser-ava": "^2.3.47",
42
+ "browser-ava": "^2.3.49",
43
43
  "c8": "^10.1.3",
44
44
  "documentation": "^14.0.3",
45
45
  "repository-provider-test-support": "^5.0.8",
46
46
  "semantic-release": "^25.0.2"
47
47
  },
48
48
  "engines": {
49
- "node": ">=24.11.1"
49
+ "node": ">=24.12.0"
50
50
  },
51
51
  "repository": {
52
52
  "type": "git",
@@ -99,6 +99,7 @@ export class BaseProvider extends BaseObject {
99
99
  * @param {Object} options additional options
100
100
  * @param {string} [options.instanceIdentifier] name of the provider instance
101
101
  * @param {string} [options.description]
102
+ * @param {MessageDestination} [options.messageDestination]
102
103
  * @param {Object} env taken from process.env
103
104
  * @return {BaseProvider|undefined} newly created provider or undefined if options are not sufficient to construct a provider
104
105
  */