@@ -9,10 +9,6 @@ import { runAsync, runSync } from './run.js';
99import { writeJson , readJson } from './file.js' ;
1010import Request from './request.js' ;
1111import auth from './auth.js' ;
12- import {
13- getUnmarkedDeprecations ,
14- updateDeprecations
15- } from './deprecations.js' ;
1612import {
1713 getEOLDate ,
1814 getStartLTSBlurb ,
@@ -279,26 +275,6 @@ export default class ReleasePreparation {
279275 await this . updateREPLACEMEs ( ) ;
280276 cli . stopSpinner ( 'Updated REPLACEME items in docs' ) ;
281277
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-
302278 // Fetch date to use in release commit & changelogs.
303279 const todayDate = new Date ( ) . toISOString ( ) . split ( 'T' ) [ 0 ] ;
304280 this . date = await cli . prompt ( 'Enter release date in YYYY-MM-DD format:' ,
0 commit comments