File tree 4 files changed +14
-6
lines changed
4 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
docker :
15
15
image : gcr.io/cloud-devrel-public-resources/owlbot-nodejs:latest
16
- digest : sha256:b9e4584a1fe3c749e3c37c92497b13dce653b2e694f0261f0610eb0e15941357
17
- # created: 2022-05-05T21:08:42.530332893Z
16
+ digest : sha256:ddb19a6df6c1fa081bc99fb29658f306dd64668bc26f75d1353b28296f3a78e6
17
+ # created: 2022-06-07T21:18:30.024751809Z
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ branchProtectionRules:
3
3
isAdminEnforced : true
4
4
requiredApprovingReviewCount : 1
5
5
requiresCodeOwnerReviews : true
6
- requiresStrictStatusChecks : false
6
+ requiresStrictStatusChecks : true
7
7
requiredStatusCheckContexts :
8
8
- " ci/kokoro: Samples test"
9
9
- " ci/kokoro: System test"
@@ -15,3 +15,10 @@ branchProtectionRules:
15
15
- cla/google
16
16
- windows
17
17
- OwlBot Post Processor
18
+ permissionRules :
19
+ - team : yoshi-admins
20
+ permission : admin
21
+ - team : jsteam-admins
22
+ permission : admin
23
+ - team : jsteam
24
+ permission : push
Original file line number Diff line number Diff line change 51
51
"@types/sinon" : " ^10.0.0" ,
52
52
"@types/tmp" : " 0.2.3" ,
53
53
"@types/uuid" : " ^8.0.0" ,
54
+ "abort-controller" : " ^3.0.0" ,
54
55
"assert" : " ^2.0.0" ,
55
56
"browserify" : " ^17.0.0" ,
56
57
"c8" : " ^7.0.0" ,
86
87
"webpack-cli" : " ^4.0.0"
87
88
},
88
89
"dependencies" : {
89
- "abort-controller" : " ^3.0.0" ,
90
90
"extend" : " ^3.0.2" ,
91
91
"https-proxy-agent" : " ^5.0.0" ,
92
92
"is-stream" : " ^2.0.0" ,
Original file line number Diff line number Diff line change 11
11
// See the License for the specific language governing permissions and
12
12
// limitations under the License.
13
13
14
- import { AbortSignal } from 'abort-controller' ;
15
14
import { Agent } from 'http' ;
16
15
import { URL } from 'url' ;
17
16
@@ -100,7 +99,9 @@ export interface GaxiosOptions {
100
99
validateStatus ?: ( status : number ) => boolean ;
101
100
retryConfig ?: RetryConfig ;
102
101
retry ?: boolean ;
103
- signal ?: AbortSignal ;
102
+ // Should be instance of https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal
103
+ // interface. Left as 'any' due to incompatibility between spec and abort-controller.
104
+ signal ?: any ;
104
105
size ?: number ;
105
106
/**
106
107
* Implementation of `fetch` to use when making the API call. By default,
You can’t perform that action at this time.
0 commit comments