|
1 | 1 | 'use strict';
|
2 | 2 |
|
3 | 3 | const path = require('path');
|
4 |
| -const fs = require('fs').promises; |
| 4 | +const { promises: fs } = require('fs'); |
5 | 5 | const semver = require('semver');
|
6 | 6 | const replace = require('replace-in-file');
|
7 | 7 |
|
8 | 8 | const { getMergedConfig } = require('./config');
|
9 | 9 | const { runAsync, runSync } = require('./run');
|
10 | 10 | const { writeJson, readJson } = require('./file');
|
| 11 | +const { |
| 12 | + getUnmarkedDeprecations, |
| 13 | + updateDeprecations |
| 14 | +} = require('./deprecations'); |
11 | 15 |
|
12 | 16 | const isWindows = process.platform === 'win32';
|
13 | 17 |
|
@@ -113,6 +117,26 @@ class ReleasePreparation {
|
113 | 117 | await this.updateREPLACEMEs();
|
114 | 118 | cli.stopSpinner('Updated REPLACEME items in docs');
|
115 | 119 |
|
| 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 | + |
116 | 140 | // Fetch date to use in release commit & changelogs.
|
117 | 141 | const todayDate = new Date().toISOString().split('T')[0];
|
118 | 142 | this.date = await cli.prompt('Enter release date in YYYY-MM-DD format:',
|
|
0 commit comments