@@ -9,10 +9,6 @@ import { runAsync, runSync } from './run.js';
9
9
import { writeJson , readJson } from './file.js' ;
10
10
import Request from './request.js' ;
11
11
import auth from './auth.js' ;
12
- import {
13
- getUnmarkedDeprecations ,
14
- updateDeprecations
15
- } from './deprecations.js' ;
16
12
import {
17
13
getEOLDate ,
18
14
getStartLTSBlurb ,
@@ -279,26 +275,6 @@ export default class ReleasePreparation {
279
275
await this . updateREPLACEMEs ( ) ;
280
276
cli . stopSpinner ( 'Updated REPLACEME items in docs' ) ;
281
277
282
- // Check for and maybe assign any unmarked deprecations in the codebase.
283
- const unmarkedDeprecations = await getUnmarkedDeprecations ( ) ;
284
- const unmarkedDepCount = unmarkedDeprecations . length ;
285
- if ( unmarkedDepCount > 0 ) {
286
- if ( unmarkedDepCount === 1 ) {
287
- cli . startSpinner (
288
- 'Assigning deprecation number to DEPOXXX item' ) ;
289
- await updateDeprecations ( unmarkedDeprecations ) ;
290
- cli . stopSpinner ( 'Assigned deprecation numbers to DEPOXXX items' ) ;
291
- } else {
292
- cli . warn (
293
- 'More than one unmarked DEPOXXX item - manual resolution required.' ) ;
294
-
295
- await cli . prompt (
296
- `Finished updating ${ unmarkedDepCount } unmarked DEPOXXX items?` ,
297
- { defaultAnswer : false } ) ;
298
- cli . stopSpinner ( `Finished updating ${ unmarkedDepCount } DEPOXXX items` ) ;
299
- }
300
- }
301
-
302
278
// Fetch date to use in release commit & changelogs.
303
279
const todayDate = new Date ( ) . toISOString ( ) . split ( 'T' ) [ 0 ] ;
304
280
this . date = await cli . prompt ( 'Enter release date in YYYY-MM-DD format:' ,
0 commit comments