Skip to content

Tooling to remove a version #4841

@timotheeguerin

Description

@timotheeguerin

Add a new tool that is able to remove a version from a spec and update the annotations to carry over to the next version

model Foo {
  a: string;

  @added(Versions.v2)
  b: string;
  @added(Versions.v3)
  c: string;
}

and if we remove v2 the spec would update to

model Foo {
  a: string;

  @added(Versions.v3)
  b: string;
  @added(Versions.v3)
  c: string;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    design:neededA design request has been raised that needs a proposalideIssues for VS, VSCode, Monaco, etc.lib:versioningtriaged:core

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions