1
1
import nv from '@pkgjs/nv' ;
2
- import auth from './auth.js' ;
3
- import Request from './request.js' ;
4
2
import fs from 'node:fs' ;
5
- import { runSync } from './run.js' ;
6
3
import path from 'node:path' ;
7
-
8
- export const PLACEHOLDERS = {
9
- releaseDate : '%RELEASE_DATE%' ,
10
- vulnerabilitiesPRURL : '%VULNERABILITIES_PR_URL%' ,
11
- preReleasePrivate : '%PRE_RELEASE_PRIV%' ,
12
- postReleasePrivate : '%POS_RELEASE_PRIV%' ,
13
- affectedLines : '%AFFECTED_LINES%'
14
- } ;
4
+ import auth from './auth.js' ;
5
+ import Request from './request.js' ;
6
+ import {
7
+ NEXT_SECURITY_RELEASE_BRANCH ,
8
+ NEXT_SECURITY_RELEASE_FOLDER ,
9
+ NEXT_SECURITY_RELEASE_REPOSITORY ,
10
+ PLACEHOLDERS ,
11
+ checkoutOnSecurityReleaseBranch ,
12
+ commitAndPushVulnerabilitiesJSON
13
+ } from './security-release/security-release.js' ;
15
14
16
15
export default class SecurityReleaseSteward {
16
+ repository = NEXT_SECURITY_RELEASE_REPOSITORY ;
17
17
constructor ( cli ) {
18
18
this . cli = cli ;
19
19
}
@@ -28,9 +28,10 @@ export default class SecurityReleaseSteward {
28
28
const req = new Request ( credentials ) ;
29
29
const release = new PrepareSecurityRelease ( req ) ;
30
30
const releaseDate = await release . promptReleaseDate ( cli ) ;
31
- let securityReleasePRUrl = PLACEHOLDERS . vulnerabilitiesPRURL ;
32
31
33
32
const createVulnerabilitiesJSON = await release . promptVulnerabilitiesJSON ( cli ) ;
33
+
34
+ let securityReleasePRUrl ;
34
35
if ( createVulnerabilitiesJSON ) {
35
36
securityReleasePRUrl = await this . createVulnerabilitiesJSON ( req , release , { cli } ) ;
36
37
}
@@ -47,7 +48,7 @@ export default class SecurityReleaseSteward {
47
48
48
49
async createVulnerabilitiesJSON ( req , release , { cli } ) {
49
50
// checkout on the next-security-release branch
50
- release . checkoutOnSecurityReleaseBranch ( cli ) ;
51
+ checkoutOnSecurityReleaseBranch ( cli , this . repository ) ;
51
52
52
53
// choose the reports to include in the security release
53
54
const reports = await release . chooseReports ( cli ) ;
@@ -62,13 +63,14 @@ export default class SecurityReleaseSteward {
62
63
cli . info ( `To push the vulnerabilities.json file run:
63
64
- git add ${ filePath }
64
65
- git commit -m "chore: create vulnerabilities.json for next security release"
65
- - git push -u origin next-security-release
66
+ - git push -u origin ${ NEXT_SECURITY_RELEASE_BRANCH }
66
67
- open a PR on ${ release . repository . owner } /${ release . repository . repo } ` ) ;
67
68
return ;
68
69
} ;
69
70
70
71
// commit and push the vulnerabilities.json file
71
- release . commitAndPushVulnerabilitiesJSON ( filePath , cli ) ;
72
+ const commitMessage = 'chore: create vulnerabilities.json for next security release' ;
73
+ commitAndPushVulnerabilitiesJSON ( filePath , commitMessage , { cli, repository : this . repository } ) ;
72
74
73
75
const createPr = await release . promptCreatePR ( cli ) ;
74
76
@@ -80,13 +82,8 @@ export default class SecurityReleaseSteward {
80
82
}
81
83
82
84
class PrepareSecurityRelease {
83
- repository = {
84
- owner : 'nodejs-private' ,
85
- repo : 'security-release'
86
- } ;
87
-
85
+ repository = NEXT_SECURITY_RELEASE_REPOSITORY ;
88
86
title = 'Next Security Release' ;
89
- nextSecurityReleaseBranch = 'next-security-release' ;
90
87
91
88
constructor ( req , repository ) {
92
89
this . req = req ;
@@ -101,30 +98,6 @@ class PrepareSecurityRelease {
101
98
{ defaultAnswer : true } ) ;
102
99
}
103
100
104
- checkRemote ( cli ) {
105
- const remote = runSync ( 'git' , [ 'ls-remote' , '--get-url' , 'origin' ] ) . trim ( ) ;
106
- const { owner, repo } = this . repository ;
107
- const securityReleaseOrigin = [
108
- `https://github.com/${ owner } /${ repo } .git` ,
109
- `[email protected] :${ owner } /${ repo } .git`
110
- ] ;
111
-
112
- if ( ! securityReleaseOrigin . includes ( remote ) ) {
113
- cli . error ( `Wrong repository! It should be ${ securityReleaseOrigin } ` ) ;
114
- process . exit ( 1 ) ;
115
- }
116
- }
117
-
118
- commitAndPushVulnerabilitiesJSON ( filePath , cli ) {
119
- this . checkRemote ( cli ) ;
120
-
121
- runSync ( 'git' , [ 'add' , filePath ] ) ;
122
- const commitMessage = 'chore: create vulnerabilities.json for next security release' ;
123
- runSync ( 'git' , [ 'commit' , '-m' , commitMessage ] ) ;
124
- runSync ( 'git' , [ 'push' , '-u' , 'origin' , 'next-security-release' ] ) ;
125
- cli . ok ( `Pushed commit: ${ commitMessage } to ${ this . nextSecurityReleaseBranch } ` ) ;
126
- }
127
-
128
101
getSecurityIssueTemplate ( ) {
129
102
return fs . readFileSync (
130
103
new URL (
@@ -160,7 +133,7 @@ class PrepareSecurityRelease {
160
133
{ defaultAnswer : true } ) ;
161
134
}
162
135
163
- buildIssue ( releaseDate , securityReleasePRUrl ) {
136
+ buildIssue ( releaseDate , securityReleasePRUrl = PLACEHOLDERS . vulnerabilitiesPRURL ) {
164
137
const template = this . getSecurityIssueTemplate ( ) ;
165
138
const content = template . replace ( PLACEHOLDERS . releaseDate , releaseDate )
166
139
. replace ( PLACEHOLDERS . vulnerabilitiesPRURL , securityReleasePRUrl ) ;
@@ -224,24 +197,13 @@ class PrepareSecurityRelease {
224
197
return summaries ?. [ 0 ] . attributes ?. content ;
225
198
}
226
199
227
- checkoutOnSecurityReleaseBranch ( cli ) {
228
- this . checkRemote ( cli ) ;
229
- const currentBranch = runSync ( 'git' , [ 'branch' , '--show-current' ] ) . trim ( ) ;
230
- cli . info ( `Current branch: ${ currentBranch } ` ) ;
231
-
232
- if ( currentBranch !== this . nextSecurityReleaseBranch ) {
233
- runSync ( 'git' , [ 'checkout' , '-B' , this . nextSecurityReleaseBranch ] ) ;
234
- cli . ok ( `Checkout on branch: ${ this . nextSecurityReleaseBranch } ` ) ;
235
- } ;
236
- }
237
-
238
200
async createVulnerabilitiesJSON ( reports , { cli } ) {
239
201
cli . separator ( 'Creating vulnerabilities.json...' ) ;
240
202
const file = JSON . stringify ( {
241
203
reports
242
204
} , null , 2 ) ;
243
205
244
- const folderPath = path . join ( process . cwd ( ) , 'security-release' , 'next-security-release' ) ;
206
+ const folderPath = path . join ( process . cwd ( ) , NEXT_SECURITY_RELEASE_FOLDER ) ;
245
207
try {
246
208
await fs . accessSync ( folderPath ) ;
247
209
} catch ( error ) {
0 commit comments