Skip to content

Commit 08bc3fc

Browse files
authoredJun 7, 2020
feat: handle unmarked DEP0XXX tags during landing and release (#420)
Adds an additional step in git node land to automatically update any DEP0XXX, DEP0XX1 etc tags in the codebase to incremented new numbers. The release preparation script will also check for unmarked numbers and optionally update them as well.
1 parent 5974797 commit 08bc3fc

File tree

3 files changed

+101
-4
lines changed

3 files changed

+101
-4
lines changed
 

‎lib/deprecations.js

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
'use strict';
2+
3+
const { promises: fs } = require('fs');
4+
const path = require('path');
5+
const replace = require('replace-in-file');
6+
7+
const newDeprecationPattern =
8+
/<\s*a id="DEP0([X]+[0-9]*)+"[^>]*><\s*\/\s*a>/g;
9+
10+
async function getUnmarkedDeprecations() {
11+
const deprecationFilePath = path.resolve('doc', 'api', 'deprecations.md');
12+
const deprecationFile = await fs.readFile(deprecationFilePath, 'utf8');
13+
14+
const unmarkedDeprecations = [
15+
...deprecationFile.matchAll(newDeprecationPattern)
16+
].map(m => m[1]);
17+
18+
return unmarkedDeprecations;
19+
}
20+
21+
async function updateDeprecations(unmarkedDeprecations) {
22+
const deprecationPattern =
23+
/<\s*a id="DEP0([0-9]{3})+"[^>]*><\s*\/\s*a>/g;
24+
25+
const deprecationFilePath = path.resolve('doc', 'api', 'deprecations.md');
26+
const deprecationFile = await fs.readFile(deprecationFilePath, 'utf8');
27+
28+
const deprecationNumbers = [
29+
...deprecationFile.matchAll(deprecationPattern)
30+
].map(m => m[1]).reverse();
31+
32+
// Pull highest deprecation number off the list and increment from there.
33+
let depNumber = parseInt(deprecationNumbers[0]) + 1;
34+
35+
// Loop through each new unmarked deprecation number and replace instances.
36+
for (const unmarked of unmarkedDeprecations) {
37+
await replace({
38+
files: [
39+
'doc/api/*.md',
40+
'lib/**/*.js',
41+
'src/**/*.{h,cc}',
42+
'test/**/*.js'
43+
],
44+
ignore: 'test/common/README.md',
45+
from: new RegExp(`DEP0${unmarked}`, 'g'),
46+
to: `DEP0${depNumber}`
47+
});
48+
49+
depNumber++;
50+
}
51+
}
52+
53+
module.exports = {
54+
updateDeprecations,
55+
getUnmarkedDeprecations
56+
};

‎lib/landing_session.js

+20-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
'use strict';
22

33
const path = require('path');
4+
const {
5+
getUnmarkedDeprecations,
6+
updateDeprecations
7+
} = require('./deprecations');
48

59
const {
610
runAsync, runSync, forceRunAsync
711
} = require('./run');
812
const Session = require('./session');
9-
const {
10-
shortSha
11-
} = require('./utils');
13+
const { shortSha } = require('./utils');
1214

1315
const isWindows = process.platform === 'win32';
1416

@@ -84,6 +86,21 @@ class LandingSession extends Session {
8486
process.exit(1);
8587
}
8688
}
89+
90+
// Check for and maybe assign any unmarked deprecations in the codebase.
91+
const unmarkedDeprecations = await getUnmarkedDeprecations();
92+
const unmarkedDepCount = unmarkedDeprecations.length;
93+
if (unmarkedDepCount > 0) {
94+
cli.startSpinner('Assigning deprecation numbers to DEPOXXX items');
95+
96+
// Update items then stage files and amend the last commit.
97+
await updateDeprecations(unmarkedDeprecations);
98+
await runAsync('git', ['add', 'doc', 'lib', 'src', 'test']);
99+
await runAsync('git', ['commit', '--amend', '--no-edit']);
100+
101+
cli.stopSpinner(`Updated ${unmarkedDepCount} DEPOXXX items in codebase`);
102+
}
103+
87104
cli.ok('Patches applied');
88105
return patch;
89106
}

‎lib/prepare_release.js

+25-1
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
'use strict';
22

33
const path = require('path');
4-
const fs = require('fs').promises;
4+
const { promises: fs } = require('fs');
55
const semver = require('semver');
66
const replace = require('replace-in-file');
77

88
const { getMergedConfig } = require('./config');
99
const { runAsync, runSync } = require('./run');
1010
const { writeJson, readJson } = require('./file');
11+
const {
12+
getUnmarkedDeprecations,
13+
updateDeprecations
14+
} = require('./deprecations');
1115

1216
const isWindows = process.platform === 'win32';
1317

@@ -113,6 +117,26 @@ class ReleasePreparation {
113117
await this.updateREPLACEMEs();
114118
cli.stopSpinner('Updated REPLACEME items in docs');
115119

120+
// Check for and maybe assign any unmarked deprecations in the codebase.
121+
const unmarkedDeprecations = await getUnmarkedDeprecations();
122+
const unmarkedDepCount = unmarkedDeprecations.length;
123+
if (unmarkedDepCount > 0) {
124+
if (unmarkedDepCount === 1) {
125+
cli.startSpinner(
126+
'Assigning deprecation number to DEPOXXX item');
127+
await updateDeprecations(unmarkedDeprecations);
128+
cli.stopSpinner('Assigned deprecation numbers to DEPOXXX items');
129+
} else {
130+
cli.warn(
131+
'More than one unmarked DEPOXXX item - manual resolution required.');
132+
133+
await cli.prompt(
134+
`Finished updating ${unmarkedDepCount} unmarked DEPOXXX items?`,
135+
{ defaultAnswer: false });
136+
cli.stopSpinner(`Finished updating ${unmarkedDepCount} DEPOXXX items`);
137+
}
138+
}
139+
116140
// Fetch date to use in release commit & changelogs.
117141
const todayDate = new Date().toISOString().split('T')[0];
118142
this.date = await cli.prompt('Enter release date in YYYY-MM-DD format:',

0 commit comments

Comments
 (0)
Please sign in to comment.