Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TypeScript 5.1 Iteration Plan #53031

Closed
DanielRosenwasser opened this issue Feb 28, 2023 · 41 comments
Closed

TypeScript 5.1 Iteration Plan #53031

DanielRosenwasser opened this issue Feb 28, 2023 · 41 comments
Labels
Planning Iteration plans and roadmapping

Comments

@DanielRosenwasser
Copy link
Member

DanielRosenwasser commented Feb 28, 2023

This document outlines our focused tasks for TypeScript 5.1. It minimally indicates intent to investigate tasks or contribute to an implementation. Nothing is set in stone, but we will strive to complete these tasks in a reasonable timeframe.

Date Event
March 16th TypeScript 5.0 Release
April 14th Create 5.1 Beta (5.1.0) Build for Testing
April 18th TypeScript 5.1 Beta Release
May 12th Create 5.1 RC (5.1.1) Build for Testing
May 18th TypeScript 5.1 RC Release
May 26th Create 5.1 Final (5.1.2) Build for Testing
May 30th TypeScript 5.1 Final Release 🚀
gantt
    dateFormat  YYYY-MM-DD
    TypeScript 5.0 Stabilization Period : 2023-02-24, 2023-03-10
    TypeScript 5.1 Beta Development : 2023-02-27, 2023-04-14
    TypeScript 5.1 RC Development : 2023-04-14, 2023-05-12
    TypeScript 5.1 Stabilization Period : 2023-05-12, 2023-05-26
todayMarker stroke-width:5px,stroke:#0f0,opacity:0.5

Compiler

Language Service

Performance

Infrastructure

Website

@DanielRosenwasser DanielRosenwasser added the Planning Iteration plans and roadmapping label Feb 28, 2023
@DanielRosenwasser DanielRosenwasser pinned this issue Feb 28, 2023
@DanielRosenwasser
Copy link
Member Author

The previous Iteration Plan for TypeScript 5.0 is available here.

@minecrawler
Copy link

minecrawler commented Mar 1, 2023

How possible is it to investigate #13219 for release 5.1? This feature with 1200+ likes has been open since 2016.

While I understand that a full implementation of all throws clauses in all interfaces is breaking too much and may be a lot of manual work, just implementing support for this proposal for library authors and application developers may be enough. Once it sees adoption, adding support for core JS calls in a later release will be a lot smoother and could until then even be done using third-party or opt-in type declarations hosted on NPM.

/**
 * @description
 *   Example function for demonstrating typed throws.
 *   The function throws for values > 0.5
 * @param seed Optional static number 0..1 to use for throw demonstration
 * @return Seed used for evaluation
 * @throws String with a user-readable error message
 */
function foo(seed?: number): number throws string {
  const num = seed ?? Math.random();
  if (num > 0.5) {
    throw `Threshold: ${num.toString()}!`;
  } else {
    return num;
  }
}

// Example without throws-declaration:
try {
  const result = await fetch('https://github.com');
  //...
} catch(e: unknown) {
  if (!(e instanceof TypeError)) return;
  // e is now of type TypeError

  console.error(e.message);
}

// Example with throws-declaration:
try {
  console.log(foo());
} catch(e: string) {
  console.error(e);
}

// Example with throws-declaration, but not compiling:
try {
  console.log(foo());
} catch(e: TypeError) {// Error: Type "TypeError" is never thrown in try-block. Possible types include "string" or "unknown"!
  console.error(e);
}

@alpharder
Copy link

Please fix this #9619 issue existing from 2016

@RyanCavanaugh
Copy link
Member

FYI, how long an issue has been open is not really an input to the prioritization process. Otherwise C++ would have a garbage collector, since people have been asking for it since 1986.

@alpharder
Copy link

FYI, how long an issue has been open is not really an input to the prioritization process. Otherwise C++ would have a garbage collector, since people have been asking for it since 1986.

I understand and agree with your point, but it’s too generic and unrelated to what I asked for. With all respect, asking C++ to become GC’ed is incomparable to asking TS built-in types to support ECMAScript spec.

@RyanCavanaugh
Copy link
Member

My point is just that, within a few years of using a programming language, one can conceive of probably 90% of the possible features you could ever add to that language. The fact that the vast majority of as-yet-unadded features date to ca.2016 is an unremarkable facet in light of TS being somewhat widely used starting in 2013.

@minecrawler
Copy link

@RyanCavanaugh

FYI, how long an issue has been open is not really an input to the prioritization process. Otherwise C++ would have a garbage collector, since people have been asking for it since 1986.

Yes, but it's not about the age and what's in line, but about if the amount of input is enough to warrant further inspection and maybe even inclusion. Your mentioning of C++ GCs doesn't answer my question! Can we pls stay on topic: What's next for TS, is typing for throws a candidate? If not, what's missing and what steps can we take to make progress!?

@DaSchTour
Copy link

There are also issues that are even older and have a lot of duplicates and are still not solved. I would love to see #299 fixed. It's even a three digit number.

But actually I doubt that it will ever be fixed.

@kevinbarabash
Copy link

Is there any chance that #19139 could be considered for inclusion in 5.1 or maybe 5.2? 🙏

@fatcerberus
Copy link

TypeScript 5.1. 5 + 1 = 6. 6 is half of 12. There are 12 eggs in a dozen. TS 5.1 beta is coming out 2 days after easter. 12 + 2 = 14, but the Easter bunny will steal 1 egg so therefore there will be 13 eggs. A baker's dozen. But also 13 is an unlucky number. So TS 5.1 will be very unlucky for bakers and therefore should implement typing for all bread-related code to prevent bakers from losing their jobs

...okay, that's enough of that

@xiBread
Copy link

xiBread commented Mar 2, 2023

Did someone say bread 👀

@reverofevil
Copy link

@minecrawler

@ahejlsberg gave a very clear reasoning of why throws is not going to become a part of the language: because in order for those to work, you have to specify how higher-order functions handle throws from their functional arguments, and he doesn't think adding these annotations to every .d.ts on DefinitelyTyped is viable.

If anyone also remembers the interview and still has a link at hand, please, share.

@reverofevil
Copy link

how long an issue has been open is not really an input to the prioritization process

I should mention that C++ is developed by a committee, and the choice of features to be or not to be developed is done in the open. While there are Iteration Plans regularly posted here and even logs of Design Meetings, reasons behind feature discussion and implementation are completely opaque.

For example, JSX factories ticket was not only discussed previously, but also implemented. Then it was closed after 3 years without any review because it was "old". So in which situations age matters and in which it doesn't? Were JSX factories important in 2019, became unimportant afterwards, and then suddenly became important again in 2023? Well, we don't know anything about it.

@minecrawler
Copy link

@polkovnikov-ph

in order for those to work, you have to specify how higher-order functions handle throws from their functional arguments, and he doesn't think adding these annotations to every .d.ts on DefinitelyTyped is viable.

I'm not sure that would be a problem. At least not for now, since the request is just about implementing support, not about adding typing. Adding typing may or may not be a later step, which may even be handled by the community entirely. But it needs support first.

Also, if the TS Team at MS has strong arguments against typed throws, then instead of keeping the issue open it's time to close it with the reason as a final comment. The current state and workflow is just very frustrating; and every question for how I or others from the community can help is met with silence or unrelated comments. Which, again, adds to the frustration.

In a nutshell, since I care about having properly typed interfaces (error propagation is an interface), I want this feature and I wonder if support may be included in this iteration, or if there is a blocker or roadmap for later on.

@reverofevil
Copy link

Imagine you have

const f = (): void throws never => {
    [1, 2, 3].forEach(i => {
        if (i === 2) {
            throw 42;
        }
    })
};

In order for the check to work, you have to specify that forEach doesn't consume any of those errors inside of it. The type would have to be roughly

interface Array<T> {
    forEach<U>(callback: (value: T, index: number) => void throws U): void throws U;
}

and the "support" would at least need to have these annotations in all standard libraries, not to mention massive overhead of specifying these types. Worse, this feature is viral, so if you have a library that exposed checked exceptions in its API, all the code written with that library would have to implement checked exceptions too.

Worse, the catch part is sketchy too. Unlike Java, JS doesn't check runtime type of the exception. catch (e: T) only can specify the full type of exception. Not only these types will easily become unwieldy by listing all the possible exception in a union, but would also break with updates of third-party libraries, and would have to always list things such as stack overflow exception that can happen literally at any function call.

Also the interview mentioned a few other points on why this might not be a good idea:

  • similar features were implemented in C++ and Java, and in neither case it ended up with more stable code;
  • the catch { /* do nothing*/ } people are everywhere.

While I would definitely want to see this feature in TS (indeed, it can even be abused to type React's useContext), it would likely bring several-year long disrepair to the whole ecosystem.

met with silence

The silence itself is not a problem, it usually means people are working. In fact, newly opened tickets get triaged in only a day, which means developers are actually engaged with this bug tracker. The problem is that we have no idea where in backlog those tickets are, and even if there is any backlog at all.

@minecrawler
Copy link

I think for this iteration, our discussion is off topic, so maybe it would be better to bring it back to the original issue! (see my answer over there)

@oles
Copy link

oles commented Mar 17, 2023

Grats on the 5.0 release! Great to see better ESM support and finally --allowImportingTsExtensions ❤️

If this is the place to come with suggestions - my team and I would really like to see #32063 implemented, as we're using JSON Schema - and are currently working around that issue by defining them in TypeScript files ✌️

@AliMD
Copy link

AliMD commented Mar 30, 2023

Hoping for a day when there will be no more news about JSX/TSX

@DanielRosenwasser
Copy link
Member Author

As a heads up, we are pushing out each release out by about a week or so. That means expect:

  • the beta on April 18
  • the RC on May 18
  • the Stable release on May 30

@xiBread
Copy link

xiBread commented Apr 19, 2023

With Async ERM having reached stage 3, is the plan to implement it in this release with normal ERM or later as initially planned?

@DanielRosenwasser
Copy link
Member Author

While we're championing the explicit resource management proposal, the implementation work did not make it in time for TypeScript 5.1, so we'll likely have it for TypeScript 5.2.

@DanielRosenwasser
Copy link
Member Author

Oh and also - TypeScript 5.1 Beta is out everyone!

@WORMSS
Copy link

WORMSS commented Apr 19, 2023

@DanielRosenwasser the "iteration plan" on your 5.1 Beta document doesn't point to THIS iteration plan, but the iteration plan for 4.8

@danielrentz
Copy link

Hi! The roadmap page is still outdated.

@DanielRosenwasser
Copy link
Member Author

@WORMSS thanks for the correction, @danielrentz I'll look into the feature roadmap soon.

@rahul-kamat
Copy link

Hey! Could you guys tag a v5.1-rc branch? With git tag, I only see up to v5.1-beta. We want to test out the release candidate at Google :)

@DanielRosenwasser
Copy link
Member Author

@typescript-bot bump release-5.1

@typescript-bot
Copy link
Collaborator

Heya @DanielRosenwasser, I've started to update the version number on release-5.1 to 5.1.2 for you. Here's the link to my best guess at the log.

@DanielRosenwasser
Copy link
Member Author

DanielRosenwasser commented May 30, 2023

Fun updates

  1. We need to bring in some last-minute changes and will release either tomorrow or the day after.
  2. We will probably be running with version 5.1.3 instead of 5.1.2 due to a bunch of hacky tsserver tests that we will try to fix in the future.

@DanielRosenwasser
Copy link
Member Author

@typescript-bot bump release-5.1

@typescript-bot
Copy link
Collaborator

Heya @DanielRosenwasser, I've started to update the version number on release-5.1 to 5.1.4 for you. Here's the link to my best guess at the log.

@DanielRosenwasser
Copy link
Member Author

@typescript-bot bump release-5.1

@typescript-bot
Copy link
Collaborator

Heya @DanielRosenwasser, I've started to update the version number on release-5.1 to 5.1.5 for you. Here's the link to my best guess at the log.

@DanielRosenwasser
Copy link
Member Author

Whoops, I guess we're just skipping TypeScript 5.1.4 and jumping to 5.1.5. 😅

@ChrisMBarr
Copy link

Lol, and the release notes say "intentionally skipped"

@luxaritas
Copy link

As a quick note, the 5.1.5 release description links to the 5.1.5 milestone for a list of fixes, which contains nothing (the fixes are instead in the 5.1.4 milestone)

@DanielRosenwasser
Copy link
Member Author

@luxaritas fixed thanks!

@DanielRosenwasser
Copy link
Member Author

@typescript-bot bump release-5.1

@typescript-bot
Copy link
Collaborator

Heya @DanielRosenwasser, I've started to update the version number on release-5.1 to 5.1.6 for you. Here's the link to my best guess at the log.

Akatsuki230 pushed a commit to Akatsuki230/ml-website that referenced this issue Aug 7, 2023
<p>This PR was automatically created by Snyk using the credentials of a
real user.</p><br /><h3>Snyk has created this PR to upgrade typescript
from 5.0.3 to 5.1.6.</h3>

:information_source: Keep your dependencies up-to-date. This makes it
easier to fix existing vulnerabilities and to more quickly identify and
fix newly disclosed vulnerabilities when they affect your project.
<hr/>

- The recommended version is **79 versions** ahead of your current
version.
- The recommended version was released **a month ago**, on 2023-06-28.


<details>
<summary><b>Release notes</b></summary>
<br/>
  <details>
    <summary>Package name: <b>typescript</b></summary>
    <ul>
      <li>
<b>5.1.6</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.1.6">2023-06-28</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-1/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.0%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.1%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.2%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.2 (Stable)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.3%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.3 (Stable)</a>.</li>
<li>(5.1.4 <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/issues/53031#issuecomment-1610038922"
data-hovercard-type="issue"
data-hovercard-url="/microsoft/TypeScript/issues/53031/hovercard">intentionally
skipped</a>)</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.5%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.5 (Stable)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.6%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.6 (Stable)</a>.</li>
</ul>
<p>Downloads are available on <a
href="https://www.npmjs.com/package/typescript"
rel="nofollow">npm</a></p>
      </li>
      <li>
<b>5.1.5</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.1.5">2023-06-27</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-1/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.0%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.1%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.2%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.2 (Stable)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.3%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.3 (Stable)</a>.</li>
<li>(5.1.4 <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/issues/53031#issuecomment-1610038922"
data-hovercard-type="issue"
data-hovercard-url="/microsoft/TypeScript/issues/53031/hovercard">intentionally
skipped</a>)</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.5%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.5 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a href="https://www.npmjs.com/package/typescript"
rel="nofollow">npm</a></li>
<li><a
href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild"
rel="nofollow">NuGet package</a></li>
</ul>
      </li>
      <li>
<b>5.1.3</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.1.3">2023-06-01</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-1/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.0%22+is%3Aclosed+">fixed
issues query for Typescript 5.1.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.1%22+is%3Aclosed+">fixed
issues query for Typescript 5.1.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.3%22+is%3Aclosed+">fixed
issues query for Typescript 5.1.3 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a
href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild"
rel="nofollow">NuGet package</a></li>
</ul>
      </li>
      <li>
        <b>5.1.1-rc</b> - 2023-05-18
      </li>
      <li>
        <b>5.1.0-dev.20230515</b> - 2023-05-15
      </li>
      <li>
        <b>5.1.0-dev.20230514</b> - 2023-05-14
      </li>
      <li>
        <b>5.1.0-dev.20230513</b> - 2023-05-13
      </li>
      <li>
        <b>5.1.0-dev.20230512</b> - 2023-05-12
      </li>
      <li>
        <b>5.1.0-dev.20230511</b> - 2023-05-11
      </li>
      <li>
        <b>5.1.0-dev.20230510</b> - 2023-05-10
      </li>
      <li>
        <b>5.1.0-dev.20230509</b> - 2023-05-09
      </li>
      <li>
        <b>5.1.0-dev.20230508</b> - 2023-05-08
      </li>
      <li>
        <b>5.1.0-dev.20230507</b> - 2023-05-07
      </li>
      <li>
        <b>5.1.0-dev.20230506</b> - 2023-05-06
      </li>
      <li>
        <b>5.1.0-dev.20230502</b> - 2023-05-02
      </li>
      <li>
        <b>5.1.0-dev.20230501</b> - 2023-05-01
      </li>
      <li>
        <b>5.1.0-dev.20230430</b> - 2023-04-30
      </li>
      <li>
        <b>5.1.0-dev.20230429</b> - 2023-04-29
      </li>
      <li>
        <b>5.1.0-dev.20230428</b> - 2023-04-28
      </li>
      <li>
        <b>5.1.0-dev.20230427</b> - 2023-04-27
      </li>
      <li>
        <b>5.1.0-dev.20230426</b> - 2023-04-26
      </li>
      <li>
        <b>5.1.0-dev.20230425</b> - 2023-04-25
      </li>
      <li>
        <b>5.1.0-dev.20230424</b> - 2023-04-24
      </li>
      <li>
        <b>5.1.0-dev.20230423</b> - 2023-04-23
      </li>
      <li>
        <b>5.1.0-dev.20230422</b> - 2023-04-22
      </li>
      <li>
        <b>5.1.0-dev.20230421</b> - 2023-04-21
      </li>
      <li>
        <b>5.1.0-dev.20230420</b> - 2023-04-20
      </li>
      <li>
        <b>5.1.0-dev.20230419</b> - 2023-04-19
      </li>
      <li>
        <b>5.1.0-dev.20230418</b> - 2023-04-18
      </li>
      <li>
        <b>5.1.0-dev.20230417</b> - 2023-04-17
      </li>
      <li>
        <b>5.1.0-dev.20230416</b> - 2023-04-16
      </li>
      <li>
        <b>5.1.0-dev.20230415</b> - 2023-04-15
      </li>
      <li>
        <b>5.1.0-dev.20230414</b> - 2023-04-14
      </li>
      <li>
        <b>5.1.0-dev.20230413</b> - 2023-04-13
      </li>
      <li>
        <b>5.1.0-dev.20230412</b> - 2023-04-12
      </li>
      <li>
        <b>5.1.0-dev.20230411</b> - 2023-04-11
      </li>
      <li>
        <b>5.1.0-dev.20230410</b> - 2023-04-10
      </li>
      <li>
        <b>5.1.0-dev.20230409</b> - 2023-04-09
      </li>
      <li>
        <b>5.1.0-dev.20230408</b> - 2023-04-08
      </li>
      <li>
        <b>5.1.0-dev.20230407</b> - 2023-04-07
      </li>
      <li>
        <b>5.1.0-dev.20230406</b> - 2023-04-06
      </li>
      <li>
        <b>5.1.0-dev.20230405</b> - 2023-04-05
      </li>
      <li>
        <b>5.1.0-dev.20230404</b> - 2023-04-04
      </li>
      <li>
        <b>5.1.0-dev.20230403</b> - 2023-04-03
      </li>
      <li>
        <b>5.1.0-dev.20230402</b> - 2023-04-02
      </li>
      <li>
        <b>5.1.0-dev.20230401</b> - 2023-04-01
      </li>
      <li>
        <b>5.1.0-dev.20230331</b> - 2023-03-31
      </li>
      <li>
        <b>5.1.0-dev.20230330</b> - 2023-03-30
      </li>
      <li>
        <b>5.1.0-dev.20230329</b> - 2023-03-29
      </li>
      <li>
        <b>5.1.0-dev.20230328</b> - 2023-03-28
      </li>
      <li>
        <b>5.1.0-dev.20230327</b> - 2023-03-27
      </li>
      <li>
        <b>5.1.0-dev.20230326</b> - 2023-03-26
      </li>
      <li>
        <b>5.1.0-dev.20230325</b> - 2023-03-25
      </li>
      <li>
        <b>5.1.0-dev.20230324</b> - 2023-03-24
      </li>
      <li>
        <b>5.1.0-dev.20230323</b> - 2023-03-23
      </li>
      <li>
        <b>5.1.0-dev.20230322</b> - 2023-03-22
      </li>
      <li>
        <b>5.1.0-dev.20230321</b> - 2023-03-21
      </li>
      <li>
        <b>5.1.0-dev.20230320</b> - 2023-03-20
      </li>
      <li>
        <b>5.1.0-dev.20230319</b> - 2023-03-19
      </li>
      <li>
        <b>5.1.0-dev.20230318</b> - 2023-03-18
      </li>
      <li>
        <b>5.1.0-dev.20230317</b> - 2023-03-17
      </li>
      <li>
        <b>5.1.0-dev.20230316</b> - 2023-03-16
      </li>
      <li>
        <b>5.1.0-dev.20230315</b> - 2023-03-15
      </li>
      <li>
        <b>5.1.0-dev.20230313</b> - 2023-03-13
      </li>
      <li>
        <b>5.1.0-dev.20230312</b> - 2023-03-12
      </li>
      <li>
        <b>5.1.0-dev.20230311</b> - 2023-03-11
      </li>
      <li>
        <b>5.1.0-dev.20230310</b> - 2023-03-10
      </li>
      <li>
        <b>5.1.0-dev.20230309</b> - 2023-03-09
      </li>
      <li>
        <b>5.1.0-dev.20230308</b> - 2023-03-08
      </li>
      <li>
        <b>5.1.0-dev.20230307</b> - 2023-03-07
      </li>
      <li>
        <b>5.1.0-dev.20230306</b> - 2023-03-06
      </li>
      <li>
        <b>5.1.0-dev.20230305</b> - 2023-03-05
      </li>
      <li>
        <b>5.1.0-dev.20230304</b> - 2023-03-04
      </li>
      <li>
        <b>5.1.0-dev.20230303</b> - 2023-03-03
      </li>
      <li>
        <b>5.1.0-dev.20230302</b> - 2023-03-02
      </li>
      <li>
        <b>5.1.0-dev.20230301</b> - 2023-03-01
      </li>
      <li>
        <b>5.1.0-dev.20230227</b> - 2023-02-27
      </li>
      <li>
        <b>5.1.0-beta</b> - 2023-04-18
      </li>
      <li>
<b>5.0.4</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.0.4">2023-04-07</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-0/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.0%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.1%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.2%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.2 (Stable)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.3%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.3 (Stable)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.4%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.4 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a href="https://www.npmjs.com/package/typescript"
rel="nofollow">npm</a></li>
<li><a
href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild"
rel="nofollow">NuGet package</a></li>
</ul>
      </li>
      <li>
<b>5.0.3</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.0.3">2023-03-30</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-0/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.0%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.1%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.2%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.2 (Stable)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.3%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.3 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a href="https://www.npmjs.com/package/typescript"
rel="nofollow">npm</a></li>
<li><a
href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild"
rel="nofollow">NuGet package</a></li>
</ul>
      </li>
    </ul>
from <a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/releases">typescript
GitHub release notes</a>
  </details>
</details>
<hr/>

**Note:** *You are seeing this because you or someone else with access
to this repository has authorized Snyk to open upgrade PRs.*

For more information: <img
src="https://api.segment.io/v1/pixel/track?data=eyJ3cml0ZUtleSI6InJyWmxZcEdHY2RyTHZsb0lYd0dUcVg4WkFRTnNCOUEwIiwiYW5vbnltb3VzSWQiOiJiN2Y4MjRkYS01ZTk3LTQyYmQtYmRkMi01NGY0YTQ2YWJlYTEiLCJldmVudCI6IlBSIHZpZXdlZCIsInByb3BlcnRpZXMiOnsicHJJZCI6ImI3ZjgyNGRhLTVlOTctNDJiZC1iZGQyLTU0ZjRhNDZhYmVhMSJ9fQ=="
width="0" height="0"/>

🧐 [View latest project
report](https://app.snyk.io/org/mldkyt/project/3ccd7b12-4b33-4fd0-b25e-55cacf6ab277?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)

🛠 [Adjust upgrade PR
settings](https://app.snyk.io/org/mldkyt/project/3ccd7b12-4b33-4fd0-b25e-55cacf6ab277/settings/integration?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)

🔕 [Ignore this dependency or unsubscribe from future upgrade
PRs](https://app.snyk.io/org/mldkyt/project/3ccd7b12-4b33-4fd0-b25e-55cacf6ab277/settings/integration?pkg&#x3D;typescript&amp;utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr#auto-dep-upgrades)

<!---
(snyk:metadata:{"prId":"b7f824da-5e97-42bd-bdd2-54f4a46abea1","prPublicId":"b7f824da-5e97-42bd-bdd2-54f4a46abea1","dependencies":[{"name":"typescript","from":"5.0.3","to":"5.1.6"}],"packageManager":"npm","type":"auto","projectUrl":"https://app.snyk.io/org/mldkyt/project/3ccd7b12-4b33-4fd0-b25e-55cacf6ab277?utm_source=github&utm_medium=referral&page=upgrade-pr","projectPublicId":"3ccd7b12-4b33-4fd0-b25e-55cacf6ab277","env":"prod","prType":"upgrade","vulns":[],"issuesToFix":[],"upgrade":[],"upgradeInfo":{"versionsDiff":79,"publishedDate":"2023-06-28T23:08:38.755Z"},"templateVariants":[],"hasFixes":false,"isMajorUpgrade":false,"isBreakingChange":false,"priorityScoreList":[]})
--->
@DanielRosenwasser DanielRosenwasser unpinned this issue Aug 24, 2023
Woodpile37 added a commit to Woodpile37/EIPs that referenced this issue Oct 5, 2023
<p>This PR was automatically created by Snyk using the credentials of a
real user.</p><br /><h3>Snyk has created this PR to upgrade typescript
from 4.9.5 to 5.2.2.</h3>

:information_source: Keep your dependencies up-to-date. This makes it
easier to fix existing vulnerabilities and to more quickly identify and
fix newly disclosed vulnerabilities when they affect your project.
<hr/>

*Warning:* This is a major version upgrade, and may be a breaking
change.
- The recommended version is **282 versions** ahead of your current
version.
- The recommended version was released **a month ago**, on 2023-08-24.


<details>
<summary><b>Release notes</b></summary>
<br/>
  <details>
    <summary>Package name: <b>typescript</b></summary>
    <ul>
      <li>
<b>5.2.2</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.2.2">2023-08-24</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-2/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.2.0%22+is%3Aclosed+">fixed
issues query for Typescript 5.2.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.2.1%22+is%3Aclosed+">fixed
issues query for Typescript 5.2.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.2.2%22+is%3Aclosed+">fixed
issues query for Typescript 5.2.2 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a
href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild"
rel="nofollow">NuGet package</a></li>
</ul>
      </li>
      <li>
        <b>5.2.1-rc</b> - 2023-08-09
      </li>
      <li>
        <b>5.2.0-dev.20230807</b> - 2023-08-07
      </li>
      <li>
        <b>5.2.0-dev.20230806</b> - 2023-08-06
      </li>
      <li>
        <b>5.2.0-dev.20230805</b> - 2023-08-05
      </li>
      <li>
        <b>5.2.0-dev.20230804</b> - 2023-08-04
      </li>
      <li>
        <b>5.2.0-dev.20230803</b> - 2023-08-03
      </li>
      <li>
        <b>5.2.0-dev.20230802</b> - 2023-08-02
      </li>
      <li>
        <b>5.2.0-dev.20230801</b> - 2023-08-01
      </li>
      <li>
        <b>5.2.0-dev.20230731</b> - 2023-07-31
      </li>
      <li>
        <b>5.2.0-dev.20230730</b> - 2023-07-30
      </li>
      <li>
        <b>5.2.0-dev.20230729</b> - 2023-07-29
      </li>
      <li>
        <b>5.2.0-dev.20230728</b> - 2023-07-28
      </li>
      <li>
        <b>5.2.0-dev.20230727</b> - 2023-07-27
      </li>
      <li>
        <b>5.2.0-dev.20230726</b> - 2023-07-26
      </li>
      <li>
        <b>5.2.0-dev.20230725</b> - 2023-07-25
      </li>
      <li>
        <b>5.2.0-dev.20230724</b> - 2023-07-24
      </li>
      <li>
        <b>5.2.0-dev.20230723</b> - 2023-07-23
      </li>
      <li>
        <b>5.2.0-dev.20230722</b> - 2023-07-22
      </li>
      <li>
        <b>5.2.0-dev.20230721</b> - 2023-07-21
      </li>
      <li>
        <b>5.2.0-dev.20230720</b> - 2023-07-20
      </li>
      <li>
        <b>5.2.0-dev.20230719</b> - 2023-07-19
      </li>
      <li>
        <b>5.2.0-dev.20230718</b> - 2023-07-18
      </li>
      <li>
        <b>5.2.0-dev.20230717</b> - 2023-07-17
      </li>
      <li>
        <b>5.2.0-dev.20230716</b> - 2023-07-16
      </li>
      <li>
        <b>5.2.0-dev.20230715</b> - 2023-07-15
      </li>
      <li>
        <b>5.2.0-dev.20230714</b> - 2023-07-14
      </li>
      <li>
        <b>5.2.0-dev.20230713</b> - 2023-07-13
      </li>
      <li>
        <b>5.2.0-dev.20230712</b> - 2023-07-12
      </li>
      <li>
        <b>5.2.0-dev.20230711</b> - 2023-07-11
      </li>
      <li>
        <b>5.2.0-dev.20230710</b> - 2023-07-10
      </li>
      <li>
        <b>5.2.0-dev.20230709</b> - 2023-07-09
      </li>
      <li>
        <b>5.2.0-dev.20230708</b> - 2023-07-08
      </li>
      <li>
        <b>5.2.0-dev.20230707</b> - 2023-07-07
      </li>
      <li>
        <b>5.2.0-dev.20230706</b> - 2023-07-06
      </li>
      <li>
        <b>5.2.0-dev.20230705</b> - 2023-07-05
      </li>
      <li>
        <b>5.2.0-dev.20230704</b> - 2023-07-04
      </li>
      <li>
        <b>5.2.0-dev.20230703</b> - 2023-07-03
      </li>
      <li>
        <b>5.2.0-dev.20230702</b> - 2023-07-02
      </li>
      <li>
        <b>5.2.0-dev.20230701</b> - 2023-07-01
      </li>
      <li>
        <b>5.2.0-dev.20230630</b> - 2023-06-30
      </li>
      <li>
        <b>5.2.0-dev.20230629</b> - 2023-06-29
      </li>
      <li>
        <b>5.2.0-dev.20230628</b> - 2023-06-28
      </li>
      <li>
        <b>5.2.0-dev.20230627</b> - 2023-06-27
      </li>
      <li>
        <b>5.2.0-dev.20230626</b> - 2023-06-26
      </li>
      <li>
        <b>5.2.0-dev.20230625</b> - 2023-06-25
      </li>
      <li>
        <b>5.2.0-dev.20230624</b> - 2023-06-24
      </li>
      <li>
        <b>5.2.0-dev.20230623</b> - 2023-06-23
      </li>
      <li>
        <b>5.2.0-dev.20230622</b> - 2023-06-22
      </li>
      <li>
        <b>5.2.0-dev.20230621</b> - 2023-06-21
      </li>
      <li>
        <b>5.2.0-dev.20230620</b> - 2023-06-20
      </li>
      <li>
        <b>5.2.0-dev.20230619</b> - 2023-06-19
      </li>
      <li>
        <b>5.2.0-dev.20230618</b> - 2023-06-18
      </li>
      <li>
        <b>5.2.0-dev.20230617</b> - 2023-06-17
      </li>
      <li>
        <b>5.2.0-dev.20230616</b> - 2023-06-16
      </li>
      <li>
        <b>5.2.0-dev.20230615</b> - 2023-06-15
      </li>
      <li>
        <b>5.2.0-dev.20230614</b> - 2023-06-14
      </li>
      <li>
        <b>5.2.0-dev.20230613</b> - 2023-06-13
      </li>
      <li>
        <b>5.2.0-dev.20230612</b> - 2023-06-12
      </li>
      <li>
        <b>5.2.0-dev.20230611</b> - 2023-06-11
      </li>
      <li>
        <b>5.2.0-dev.20230610</b> - 2023-06-10
      </li>
      <li>
        <b>5.2.0-dev.20230609</b> - 2023-06-09
      </li>
      <li>
        <b>5.2.0-dev.20230608</b> - 2023-06-08
      </li>
      <li>
        <b>5.2.0-dev.20230607</b> - 2023-06-07
      </li>
      <li>
        <b>5.2.0-dev.20230606</b> - 2023-06-06
      </li>
      <li>
        <b>5.2.0-dev.20230605</b> - 2023-06-05
      </li>
      <li>
        <b>5.2.0-dev.20230604</b> - 2023-06-04
      </li>
      <li>
        <b>5.2.0-dev.20230603</b> - 2023-06-03
      </li>
      <li>
        <b>5.2.0-dev.20230602</b> - 2023-06-02
      </li>
      <li>
        <b>5.2.0-dev.20230601</b> - 2023-06-01
      </li>
      <li>
        <b>5.2.0-dev.20230531</b> - 2023-05-31
      </li>
      <li>
        <b>5.2.0-dev.20230530</b> - 2023-05-30
      </li>
      <li>
        <b>5.2.0-dev.20230529</b> - 2023-05-29
      </li>
      <li>
        <b>5.2.0-dev.20230528</b> - 2023-05-28
      </li>
      <li>
        <b>5.2.0-dev.20230527</b> - 2023-05-27
      </li>
      <li>
        <b>5.2.0-dev.20230526</b> - 2023-05-26
      </li>
      <li>
        <b>5.2.0-dev.20230524</b> - 2023-05-24
      </li>
      <li>
        <b>5.2.0-dev.20230523</b> - 2023-05-23
      </li>
      <li>
        <b>5.2.0-dev.20230522</b> - 2023-05-22
      </li>
      <li>
        <b>5.2.0-dev.20230521</b> - 2023-05-21
      </li>
      <li>
        <b>5.2.0-dev.20230520</b> - 2023-05-20
      </li>
      <li>
        <b>5.2.0-dev.20230519</b> - 2023-05-19
      </li>
      <li>
        <b>5.2.0-dev.20230518</b> - 2023-05-18
      </li>
      <li>
        <b>5.2.0-dev.20230517</b> - 2023-05-17
      </li>
      <li>
        <b>5.2.0-dev.20230516</b> - 2023-05-16
      </li>
      <li>
        <b>5.2.0-beta</b> - 2023-06-30
      </li>
      <li>
<b>5.1.6</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.1.6">2023-06-28</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-1/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.0%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.1%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.2%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.2 (Stable)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.3%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.3 (Stable)</a>.</li>
<li>(5.1.4 <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/issues/53031#issuecomment-1610038922"
data-hovercard-type="issue"
data-hovercard-url="/microsoft/TypeScript/issues/53031/hovercard">intentionally
skipped</a>)</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.5%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.5 (Stable)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.6%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.6 (Stable)</a>.</li>
</ul>
<p>Downloads are available on <a
href="https://www.npmjs.com/package/typescript"
rel="nofollow">npm</a></p>
      </li>
      <li>
<b>5.1.5</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.1.5">2023-06-27</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-1/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.0%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.1%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.2%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.2 (Stable)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.3%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.3 (Stable)</a>.</li>
<li>(5.1.4 <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/issues/53031#issuecomment-1610038922"
data-hovercard-type="issue"
data-hovercard-url="/microsoft/TypeScript/issues/53031/hovercard">intentionally
skipped</a>)</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.5%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.5 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a href="https://www.npmjs.com/package/typescript"
rel="nofollow">npm</a></li>
<li><a
href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild"
rel="nofollow">NuGet package</a></li>
</ul>
      </li>
      <li>
<b>5.1.3</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.1.3">2023-06-01</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-1/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.0%22+is%3Aclosed+">fixed
issues query for Typescript 5.1.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.1%22+is%3Aclosed+">fixed
issues query for Typescript 5.1.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.3%22+is%3Aclosed+">fixed
issues query for Typescript 5.1.3 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a
href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild"
rel="nofollow">NuGet package</a></li>
</ul>
      </li>
      <li>
        <b>5.1.1-rc</b> - 2023-05-18
      </li>
      <li>
        <b>5.1.0-dev.20230515</b> - 2023-05-15
      </li>
      <li>
        <b>5.1.0-dev.20230514</b> - 2023-05-14
      </li>
      <li>
        <b>5.1.0-dev.20230513</b> - 2023-05-13
      </li>
      <li>
        <b>5.1.0-dev.20230512</b> - 2023-05-12
      </li>
      <li>
        <b>5.1.0-dev.20230511</b> - 2023-05-11
      </li>
      <li>
        <b>5.1.0-dev.20230510</b> - 2023-05-10
      </li>
      <li>
        <b>5.1.0-dev.20230509</b> - 2023-05-09
      </li>
      <li>
        <b>5.1.0-dev.20230508</b> - 2023-05-08
      </li>
      <li>
        <b>5.1.0-dev.20230507</b> - 2023-05-07
      </li>
      <li>
        <b>5.1.0-dev.20230506</b> - 2023-05-06
      </li>
      <li>
        <b>5.1.0-dev.20230502</b> - 2023-05-02
      </li>
      <li>
        <b>5.1.0-dev.20230501</b> - 2023-05-01
      </li>
      <li>
        <b>5.1.0-dev.20230430</b> - 2023-04-30
      </li>
      <li>
        <b>5.1.0-dev.20230429</b> - 2023-04-29
      </li>
      <li>
        <b>5.1.0-dev.20230428</b> - 2023-04-28
      </li>
      <li>
        <b>5.1.0-dev.20230427</b> - 2023-04-27
      </li>
      <li>
        <b>5.1.0-dev.20230426</b> - 2023-04-26
      </li>
      <li>
        <b>5.1.0-dev.20230425</b> - 2023-04-25
      </li>
      <li>
        <b>5.1.0-dev.20230424</b> - 2023-04-24
      </li>
      <li>
        <b>5.1.0-dev.20230423</b> - 2023-04-23
      </li>
      <li>
        <b>5.1.0-dev.20230422</b> - 2023-04-22
      </li>
      <li>
        <b>5.1.0-dev.20230421</b> - 2023-04-21
      </li>
      <li>
        <b>5.1.0-dev.20230420</b> - 2023-04-20
      </li>
      <li>
        <b>5.1.0-dev.20230419</b> - 2023-04-19
      </li>
      <li>
        <b>5.1.0-dev.20230418</b> - 2023-04-18
      </li>
      <li>
        <b>5.1.0-dev.20230417</b> - 2023-04-17
      </li>
      <li>
        <b>5.1.0-dev.20230416</b> - 2023-04-16
      </li>
      <li>
        <b>5.1.0-dev.20230415</b> - 2023-04-15
      </li>
      <li>
        <b>5.1.0-dev.20230414</b> - 2023-04-14
      </li>
      <li>
        <b>5.1.0-dev.20230413</b> - 2023-04-13
      </li>
      <li>
        <b>5.1.0-dev.20230412</b> - 2023-04-12
      </li>
      <li>
        <b>5.1.0-dev.20230411</b> - 2023-04-11
      </li>
      <li>
        <b>5.1.0-dev.20230410</b> - 2023-04-10
      </li>
      <li>
        <b>5.1.0-dev.20230409</b> - 2023-04-09
      </li>
      <li>
        <b>5.1.0-dev.20230408</b> - 2023-04-08
      </li>
      <li>
        <b>5.1.0-dev.20230407</b> - 2023-04-07
      </li>
      <li>
        <b>5.1.0-dev.20230406</b> - 2023-04-06
      </li>
      <li>
        <b>5.1.0-dev.20230405</b> - 2023-04-05
      </li>
      <li>
        <b>5.1.0-dev.20230404</b> - 2023-04-04
      </li>
      <li>
        <b>5.1.0-dev.20230403</b> - 2023-04-03
      </li>
      <li>
        <b>5.1.0-dev.20230402</b> - 2023-04-02
      </li>
      <li>
        <b>5.1.0-dev.20230401</b> - 2023-04-01
      </li>
      <li>
        <b>5.1.0-dev.20230331</b> - 2023-03-31
      </li>
      <li>
        <b>5.1.0-dev.20230330</b> - 2023-03-30
      </li>
      <li>
        <b>5.1.0-dev.20230329</b> - 2023-03-29
      </li>
      <li>
        <b>5.1.0-dev.20230328</b> - 2023-03-28
      </li>
      <li>
        <b>5.1.0-dev.20230327</b> - 2023-03-27
      </li>
      <li>
        <b>5.1.0-dev.20230326</b> - 2023-03-26
      </li>
      <li>
        <b>5.1.0-dev.20230325</b> - 2023-03-25
      </li>
      <li>
        <b>5.1.0-dev.20230324</b> - 2023-03-24
      </li>
      <li>
        <b>5.1.0-dev.20230323</b> - 2023-03-23
      </li>
      <li>
        <b>5.1.0-dev.20230322</b> - 2023-03-22
      </li>
      <li>
        <b>5.1.0-dev.20230321</b> - 2023-03-21
      </li>
      <li>
        <b>5.1.0-dev.20230320</b> - 2023-03-20
      </li>
      <li>
        <b>5.1.0-dev.20230319</b> - 2023-03-19
      </li>
      <li>
        <b>5.1.0-dev.20230318</b> - 2023-03-18
      </li>
      <li>
        <b>5.1.0-dev.20230317</b> - 2023-03-17
      </li>
      <li>
        <b>5.1.0-dev.20230316</b> - 2023-03-16
      </li>
      <li>
        <b>5.1.0-dev.20230315</b> - 2023-03-15
      </li>
      <li>
        <b>5.1.0-dev.20230313</b> - 2023-03-13
      </li>
      <li>
        <b>5.1.0-dev.20230312</b> - 2023-03-12
      </li>
      <li>
        <b>5.1.0-dev.20230311</b> - 2023-03-11
      </li>
      <li>
        <b>5.1.0-dev.20230310</b> - 2023-03-10
      </li>
      <li>
        <b>5.1.0-dev.20230309</b> - 2023-03-09
      </li>
      <li>
        <b>5.1.0-dev.20230308</b> - 2023-03-08
      </li>
      <li>
        <b>5.1.0-dev.20230307</b> - 2023-03-07
      </li>
      <li>
        <b>5.1.0-dev.20230306</b> - 2023-03-06
      </li>
      <li>
        <b>5.1.0-dev.20230305</b> - 2023-03-05
      </li>
      <li>
        <b>5.1.0-dev.20230304</b> - 2023-03-04
      </li>
      <li>
        <b>5.1.0-dev.20230303</b> - 2023-03-03
      </li>
      <li>
        <b>5.1.0-dev.20230302</b> - 2023-03-02
      </li>
      <li>
        <b>5.1.0-dev.20230301</b> - 2023-03-01
      </li>
      <li>
        <b>5.1.0-dev.20230227</b> - 2023-02-27
      </li>
      <li>
        <b>5.1.0-beta</b> - 2023-04-18
      </li>
      <li>
<b>5.0.4</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.0.4">2023-04-07</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-0/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.0%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.1%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.2%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.2 (Stable)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.3%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.3 (Stable)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.4%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.4 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a href="https://www.npmjs.com/package/typescript"
rel="nofollow">npm</a></li>
<li><a
href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild"
rel="nofollow">NuGet package</a></li>
</ul>
      </li>
      <li>
<b>5.0.3</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.0.3">2023-03-30</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-0/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.0%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.1%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.2%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.2 (Stable)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.3%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.3 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a href="https://www.npmjs.com/package/typescript"
rel="nofollow">npm</a></li>
<li><a
href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild"
rel="nofollow">NuGet package</a></li>
</ul>
      </li>
      <li>
        <b>5.0.2</b> - 2023-03-16
      </li>
      <li>
        <b>5.0.1-rc</b> - 2023-03-01
      </li>
      <li>
        <b>5.0.0-dev.20230226</b> - 2023-02-26
      </li>
      <li>
        <b>5.0.0-dev.20230225</b> - 2023-02-25
      </li>
      <li>
        <b>5.0.0-dev.20230224</b> - 2023-02-24
      </li>
      <li>
        <b>5.0.0-dev.20230223</b> - 2023-02-23
      </li>
      <li>
        <b>5.0.0-dev.20230222</b> - 2023-02-22
      </li>
      <li>
        <b>5.0.0-dev.20230221</b> - 2023-02-21
      </li>
      <li>
        <b>5.0.0-dev.20230220</b> - 2023-02-20
      </li>
      <li>
        <b>5.0.0-dev.20230219</b> - 2023-02-19
      </li>
      <li>
        <b>5.0.0-dev.20230218</b> - 2023-02-18
      </li>
      <li>
        <b>5.0.0-dev.20230217</b> - 2023-02-17
      </li>
      <li>
        <b>5.0.0-dev.20230216</b> - 2023-02-16
      </li>
      <li>
        <b>5.0.0-dev.20230215</b> - 2023-02-15
      </li>
      <li>
        <b>5.0.0-dev.20230214</b> - 2023-02-14
      </li>
      <li>
        <b>5.0.0-dev.20230213</b> - 2023-02-13
      </li>
      <li>
        <b>5.0.0-dev.20230212</b> - 2023-02-12
      </li>
      <li>
        <b>5.0.0-dev.20230211</b> - 2023-02-11
      </li>
      <li>
        <b>5.0.0-dev.20230210</b> - 2023-02-10
      </li>
      <li>
        <b>5.0.0-dev.20230209</b> - 2023-02-09
      </li>
      <li>
        <b>5.0.0-dev.20230208</b> - 2023-02-08
      </li>
      <li>
        <b>5.0.0-dev.20230207</b> - 2023-02-07
      </li>
      <li>
        <b>5.0.0-dev.20230206</b> - 2023-02-06
      </li>
      <li>
        <b>5.0.0-dev.20230205</b> - 2023-02-05
      </li>
      <li>
        <b>5.0.0-dev.20230204</b> - 2023-02-04
      </li>
      <li>
        <b>5.0.0-dev.20230203</b> - 2023-02-03
      </li>
      <li>
        <b>5.0.0-dev.20230202</b> - 2023-02-02
      </li>
      <li>
        <b>5.0.0-dev.20230201</b> - 2023-02-01
      </li>
      <li>
        <b>5.0.0-dev.20230131</b> - 2023-01-31
      </li>
      <li>
        <b>5.0.0-dev.20230130</b> - 2023-01-30
      </li>
      <li>
        <b>5.0.0-dev.20230129</b> - 2023-01-29
      </li>
      <li>
        <b>5.0.0-dev.20230128</b> - 2023-01-28
      </li>
      <li>
        <b>5.0.0-dev.20230127</b> - 2023-01-27
      </li>
      <li>
        <b>5.0.0-dev.20230126</b> - 2023-01-26
      </li>
      <li>
        <b>5.0.0-dev.20230125</b> - 2023-01-25
      </li>
      <li>
        <b>5.0.0-dev.20230123</b> - 2023-01-23
      </li>
      <li>
        <b>5.0.0-dev.20230122</b> - 2023-01-22
      </li>
      <li>
        <b>5.0.0-dev.20230121</b> - 2023-01-21
      </li>
      <li>
        <b>5.0.0-dev.20230120</b> - 2023-01-20
      </li>
      <li>
        <b>5.0.0-dev.20230119</b> - 2023-01-19
      </li>
      <li>
        <b>5.0.0-dev.20230118</b> - 2023-01-18
      </li>
      <li>
        <b>5.0.0-dev.20230117</b> - 2023-01-17
      </li>
      <li>
        <b>5.0.0-dev.20230116</b> - 2023-01-16
      </li>
      <li>
        <b>5.0.0-dev.20230115</b> - 2023-01-15
      </li>
      <li>
        <b>5.0.0-dev.20230114</b> - 2023-01-14
      </li>
      <li>
        <b>5.0.0-dev.20230113</b> - 2023-01-13
      </li>
      <li>
        <b>5.0.0-dev.20230112</b> - 2023-01-12
      </li>
      <li>
        <b>5.0.0-dev.20230111</b> - 2023-01-11
      </li>
      <li>
        <b>5.0.0-dev.20230110</b> - 2023-01-10
      </li>
      <li>
        <b>5.0.0-dev.20230109</b> - 2023-01-09
      </li>
      <li>
        <b>5.0.0-dev.20230108</b> - 2023-01-08
      </li>
      <li>
        <b>5.0.0-dev.20230107</b> - 2023-01-07
      </li>
      <li>
        <b>5.0.0-dev.20230106</b> - 2023-01-06
      </li>
      <li>
        <b>5.0.0-dev.20230105</b> - 2023-01-05
      </li>
      <li>
        <b>5.0.0-dev.20230104</b> - 2023-01-04
      </li>
      <li>
        <b>5.0.0-dev.20230103</b> - 2023-01-03
      </li>
      <li>
        <b>5.0.0-dev.20230102</b> - 2023-01-02
      </li>
      <li>
        <b>5.0.0-dev.20230101</b> - 2023-01-01
      </li>
      <li>
        <b>5.0.0-dev.20221231</b> - 2022-12-31
      </li>
      <li>
        <b>5.0.0-dev.20221230</b> - 2022-12-30
      </li>
      <li>
        <b>5.0.0-dev.20221229</b> - 2022-12-29
      </li>
      <li>
        <b>5.0.0-dev.20221228</b> - 2022-12-28
      </li>
      <li>
        <b>5.0.0-dev.20221227</b> - 2022-12-27
      </li>
      <li>
        <b>5.0.0-dev.20221226</b> - 2022-12-26
      </li>
      <li>
        <b>5.0.0-dev.20221225</b> - 2022-12-25
      </li>
      <li>
        <b>5.0.0-dev.20221224</b> - 2022-12-24
      </li>
      <li>
        <b>5.0.0-dev.20221223</b> - 2022-12-23
      </li>
      <li>
        <b>5.0.0-dev.20221222</b> - 2022-12-22
      </li>
      <li>
        <b>5.0.0-dev.20221221</b> - 2022-12-21
      </li>
      <li>
        <b>5.0.0-dev.20221220</b> - 2022-12-20
      </li>
      <li>
        <b>5.0.0-dev.20221219</b> - 2022-12-19
      </li>
      <li>
        <b>5.0.0-dev.20221218</b> - 2022-12-18
      </li>
      <li>
        <b>5.0.0-dev.20221217</b> - 2022-12-17
      </li>
      <li>
        <b>5.0.0-dev.20221216</b> - 2022-12-16
      </li>
      <li>
        <b>5.0.0-dev.20221215</b> - 2022-12-15
      </li>
      <li>
        <b>5.0.0-dev.20221214</b> - 2022-12-14
      </li>
      <li>
        <b>5.0.0-dev.20221213</b> - 2022-12-13
      </li>
      <li>
        <b>5.0.0-dev.20221212</b> - 2022-12-12
      </li>
      <li>
        <b>5.0.0-dev.20221211</b> - 2022-12-11
      </li>
      <li>
        <b>5.0.0-dev.20221210</b> - 2022-12-10
      </li>
      <li>
        <b>5.0.0-dev.20221209</b> - 2022-12-09
      </li>
      <li>
        <b>5.0.0-dev.20221208</b> - 2022-12-08
      </li>
      <li>
        <b>5.0.0-dev.20221207</b> - 2022-12-07
      </li>
      <li>
        <b>5.0.0-dev.20221206</b> - 2022-12-06
      </li>
      <li>
        <b>5.0.0-dev.20221205</b> - 2022-12-05
      </li>
      <li>
        <b>5.0.0-dev.20221204</b> - 2022-12-04
      </li>
      <li>
        <b>5.0.0-dev.20221203</b> - 2022-12-03
      </li>
      <li>
        <b>5.0.0-dev.20221202</b> - 2022-12-02
      </li>
      <li>
        <b>5.0.0-dev.20221201</b> - 2022-12-01
      </li>
      <li>
        <b>5.0.0-dev.20221130</b> - 2022-11-30
      </li>
      <li>
        <b>5.0.0-dev.20221129</b> - 2022-11-29
      </li>
      <li>
        <b>5.0.0-dev.20221128</b> - 2022-11-28
      </li>
      <li>
        <b>5.0.0-dev.20221127</b> - 2022-11-27
      </li>
      <li>
        <b>5.0.0-dev.20221126</b> - 2022-11-26
      </li>
      <li>
        <b>5.0.0-dev.20221125</b> - 2022-11-25
      </li>
      <li>
        <b>5.0.0-dev.20221124</b> - 2022-11-24
      </li>
      <li>
        <b>5.0.0-dev.20221123</b> - 2022-11-23
      </li>
      <li>
        <b>5.0.0-dev.20221122</b> - 2022-11-22
      </li>
      <li>
        <b>5.0.0-dev.20221121</b> - 2022-11-21
      </li>
      <li>
        <b>5.0.0-dev.20221120</b> - 2022-11-20
      </li>
      <li>
        <b>5.0.0-dev.20221119</b> - 2022-11-19
      </li>
      <li>
        <b>5.0.0-dev.20221118</b> - 2022-11-18
      </li>
      <li>
        <b>5.0.0-dev.20221117</b> - 2022-11-17
      </li>
      <li>
        <b>5.0.0-dev.20221116</b> - 2022-11-16
      </li>
      <li>
        <b>5.0.0-dev.20221115</b> - 2022-11-15
      </li>
      <li>
        <b>5.0.0-dev.20221114</b> - 2022-11-14
      </li>
      <li>
        <b>5.0.0-dev.20221113</b> - 2022-11-13
      </li>
      <li>
        <b>5.0.0-dev.20221112</b> - 2022-11-12
      </li>
      <li>
        <b>5.0.0-dev.20221111</b> - 2022-11-11
      </li>
      <li>
        <b>5.0.0-dev.20221110</b> - 2022-11-10
      </li>
      <li>
        <b>5.0.0-dev.20221109</b> - 2022-11-09
      </li>
      <li>
        <b>5.0.0-dev.20221108</b> - 2022-11-08
      </li>
      <li>
        <b>5.0.0-dev.20221103</b> - 2022-11-03
      </li>
      <li>
        <b>5.0.0-dev.20221102</b> - 2022-11-02
      </li>
      <li>
        <b>5.0.0-dev.20221101</b> - 2022-11-01
      </li>
      <li>
        <b>5.0.0-beta</b> - 2023-01-26
      </li>
      <li>
        <b>4.9.5</b> - 2023-01-30
      </li>
    </ul>
from <a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/releases">typescript
GitHub release notes</a>
  </details>
</details>
<hr/>

**Note:** *You are seeing this because you or someone else with access
to this repository has authorized Snyk to open upgrade PRs.*

For more information: <img
src="https://api.segment.io/v1/pixel/track?data=eyJ3cml0ZUtleSI6InJyWmxZcEdHY2RyTHZsb0lYd0dUcVg4WkFRTnNCOUEwIiwiYW5vbnltb3VzSWQiOiIwZDhjYWYyZS1kNzIwLTQ5YzAtODZjMS1lNjlmMjA0ZmQ0MmYiLCJldmVudCI6IlBSIHZpZXdlZCIsInByb3BlcnRpZXMiOnsicHJJZCI6IjBkOGNhZjJlLWQ3MjAtNDljMC04NmMxLWU2OWYyMDRmZDQyZiJ9fQ=="
width="0" height="0"/>

🧐 [View latest project
report](https://app.snyk.io/org/woodpile37/project/f0dcf1c9-ecf1-445b-bc07-e8f73c595f54?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)

🛠 [Adjust upgrade PR
settings](https://app.snyk.io/org/woodpile37/project/f0dcf1c9-ecf1-445b-bc07-e8f73c595f54/settings/integration?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)

🔕 [Ignore this dependency or unsubscribe from future upgrade
PRs](https://app.snyk.io/org/woodpile37/project/f0dcf1c9-ecf1-445b-bc07-e8f73c595f54/settings/integration?pkg&#x3D;typescript&amp;utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr#auto-dep-upgrades)

<!---
(snyk:metadata:{"prId":"0d8caf2e-d720-49c0-86c1-e69f204fd42f","prPublicId":"0d8caf2e-d720-49c0-86c1-e69f204fd42f","dependencies":[{"name":"typescript","from":"4.9.5","to":"5.2.2"}],"packageManager":"npm","type":"auto","projectUrl":"https://app.snyk.io/org/woodpile37/project/f0dcf1c9-ecf1-445b-bc07-e8f73c595f54?utm_source=github&utm_medium=referral&page=upgrade-pr","projectPublicId":"f0dcf1c9-ecf1-445b-bc07-e8f73c595f54","env":"prod","prType":"upgrade","vulns":[],"issuesToFix":[],"upgrade":[],"upgradeInfo":{"versionsDiff":282,"publishedDate":"2023-08-24T16:38:15.233Z"},"templateVariants":[],"hasFixes":false,"isMajorUpgrade":true,"isBreakingChange":true,"priorityScoreList":[]})
--->
Woodpile37 added a commit to Woodpile37/EIPs that referenced this issue Oct 6, 2023
<p>This PR was automatically created by Snyk using the credentials of a
real user.</p><br /><h3>Snyk has created this PR to upgrade typescript
from 4.9.5 to 5.2.2.</h3>

:information_source: Keep your dependencies up-to-date. This makes it
easier to fix existing vulnerabilities and to more quickly identify and
fix newly disclosed vulnerabilities when they affect your project.
<hr/>

*Warning:* This is a major version upgrade, and may be a breaking
change.
- The recommended version is **282 versions** ahead of your current
version.
- The recommended version was released **a month ago**, on 2023-08-24.


<details>
<summary><b>Release notes</b></summary>
<br/>
  <details>
    <summary>Package name: <b>typescript</b></summary>
    <ul>
      <li>
<b>5.2.2</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.2.2">2023-08-24</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-2/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.2.0%22+is%3Aclosed+">fixed
issues query for Typescript 5.2.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.2.1%22+is%3Aclosed+">fixed
issues query for Typescript 5.2.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.2.2%22+is%3Aclosed+">fixed
issues query for Typescript 5.2.2 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a
href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild"
rel="nofollow">NuGet package</a></li>
</ul>
      </li>
      <li>
        <b>5.2.1-rc</b> - 2023-08-09
      </li>
      <li>
        <b>5.2.0-dev.20230807</b> - 2023-08-07
      </li>
      <li>
        <b>5.2.0-dev.20230806</b> - 2023-08-06
      </li>
      <li>
        <b>5.2.0-dev.20230805</b> - 2023-08-05
      </li>
      <li>
        <b>5.2.0-dev.20230804</b> - 2023-08-04
      </li>
      <li>
        <b>5.2.0-dev.20230803</b> - 2023-08-03
      </li>
      <li>
        <b>5.2.0-dev.20230802</b> - 2023-08-02
      </li>
      <li>
        <b>5.2.0-dev.20230801</b> - 2023-08-01
      </li>
      <li>
        <b>5.2.0-dev.20230731</b> - 2023-07-31
      </li>
      <li>
        <b>5.2.0-dev.20230730</b> - 2023-07-30
      </li>
      <li>
        <b>5.2.0-dev.20230729</b> - 2023-07-29
      </li>
      <li>
        <b>5.2.0-dev.20230728</b> - 2023-07-28
      </li>
      <li>
        <b>5.2.0-dev.20230727</b> - 2023-07-27
      </li>
      <li>
        <b>5.2.0-dev.20230726</b> - 2023-07-26
      </li>
      <li>
        <b>5.2.0-dev.20230725</b> - 2023-07-25
      </li>
      <li>
        <b>5.2.0-dev.20230724</b> - 2023-07-24
      </li>
      <li>
        <b>5.2.0-dev.20230723</b> - 2023-07-23
      </li>
      <li>
        <b>5.2.0-dev.20230722</b> - 2023-07-22
      </li>
      <li>
        <b>5.2.0-dev.20230721</b> - 2023-07-21
      </li>
      <li>
        <b>5.2.0-dev.20230720</b> - 2023-07-20
      </li>
      <li>
        <b>5.2.0-dev.20230719</b> - 2023-07-19
      </li>
      <li>
        <b>5.2.0-dev.20230718</b> - 2023-07-18
      </li>
      <li>
        <b>5.2.0-dev.20230717</b> - 2023-07-17
      </li>
      <li>
        <b>5.2.0-dev.20230716</b> - 2023-07-16
      </li>
      <li>
        <b>5.2.0-dev.20230715</b> - 2023-07-15
      </li>
      <li>
        <b>5.2.0-dev.20230714</b> - 2023-07-14
      </li>
      <li>
        <b>5.2.0-dev.20230713</b> - 2023-07-13
      </li>
      <li>
        <b>5.2.0-dev.20230712</b> - 2023-07-12
      </li>
      <li>
        <b>5.2.0-dev.20230711</b> - 2023-07-11
      </li>
      <li>
        <b>5.2.0-dev.20230710</b> - 2023-07-10
      </li>
      <li>
        <b>5.2.0-dev.20230709</b> - 2023-07-09
      </li>
      <li>
        <b>5.2.0-dev.20230708</b> - 2023-07-08
      </li>
      <li>
        <b>5.2.0-dev.20230707</b> - 2023-07-07
      </li>
      <li>
        <b>5.2.0-dev.20230706</b> - 2023-07-06
      </li>
      <li>
        <b>5.2.0-dev.20230705</b> - 2023-07-05
      </li>
      <li>
        <b>5.2.0-dev.20230704</b> - 2023-07-04
      </li>
      <li>
        <b>5.2.0-dev.20230703</b> - 2023-07-03
      </li>
      <li>
        <b>5.2.0-dev.20230702</b> - 2023-07-02
      </li>
      <li>
        <b>5.2.0-dev.20230701</b> - 2023-07-01
      </li>
      <li>
        <b>5.2.0-dev.20230630</b> - 2023-06-30
      </li>
      <li>
        <b>5.2.0-dev.20230629</b> - 2023-06-29
      </li>
      <li>
        <b>5.2.0-dev.20230628</b> - 2023-06-28
      </li>
      <li>
        <b>5.2.0-dev.20230627</b> - 2023-06-27
      </li>
      <li>
        <b>5.2.0-dev.20230626</b> - 2023-06-26
      </li>
      <li>
        <b>5.2.0-dev.20230625</b> - 2023-06-25
      </li>
      <li>
        <b>5.2.0-dev.20230624</b> - 2023-06-24
      </li>
      <li>
        <b>5.2.0-dev.20230623</b> - 2023-06-23
      </li>
      <li>
        <b>5.2.0-dev.20230622</b> - 2023-06-22
      </li>
      <li>
        <b>5.2.0-dev.20230621</b> - 2023-06-21
      </li>
      <li>
        <b>5.2.0-dev.20230620</b> - 2023-06-20
      </li>
      <li>
        <b>5.2.0-dev.20230619</b> - 2023-06-19
      </li>
      <li>
        <b>5.2.0-dev.20230618</b> - 2023-06-18
      </li>
      <li>
        <b>5.2.0-dev.20230617</b> - 2023-06-17
      </li>
      <li>
        <b>5.2.0-dev.20230616</b> - 2023-06-16
      </li>
      <li>
        <b>5.2.0-dev.20230615</b> - 2023-06-15
      </li>
      <li>
        <b>5.2.0-dev.20230614</b> - 2023-06-14
      </li>
      <li>
        <b>5.2.0-dev.20230613</b> - 2023-06-13
      </li>
      <li>
        <b>5.2.0-dev.20230612</b> - 2023-06-12
      </li>
      <li>
        <b>5.2.0-dev.20230611</b> - 2023-06-11
      </li>
      <li>
        <b>5.2.0-dev.20230610</b> - 2023-06-10
      </li>
      <li>
        <b>5.2.0-dev.20230609</b> - 2023-06-09
      </li>
      <li>
        <b>5.2.0-dev.20230608</b> - 2023-06-08
      </li>
      <li>
        <b>5.2.0-dev.20230607</b> - 2023-06-07
      </li>
      <li>
        <b>5.2.0-dev.20230606</b> - 2023-06-06
      </li>
      <li>
        <b>5.2.0-dev.20230605</b> - 2023-06-05
      </li>
      <li>
        <b>5.2.0-dev.20230604</b> - 2023-06-04
      </li>
      <li>
        <b>5.2.0-dev.20230603</b> - 2023-06-03
      </li>
      <li>
        <b>5.2.0-dev.20230602</b> - 2023-06-02
      </li>
      <li>
        <b>5.2.0-dev.20230601</b> - 2023-06-01
      </li>
      <li>
        <b>5.2.0-dev.20230531</b> - 2023-05-31
      </li>
      <li>
        <b>5.2.0-dev.20230530</b> - 2023-05-30
      </li>
      <li>
        <b>5.2.0-dev.20230529</b> - 2023-05-29
      </li>
      <li>
        <b>5.2.0-dev.20230528</b> - 2023-05-28
      </li>
      <li>
        <b>5.2.0-dev.20230527</b> - 2023-05-27
      </li>
      <li>
        <b>5.2.0-dev.20230526</b> - 2023-05-26
      </li>
      <li>
        <b>5.2.0-dev.20230524</b> - 2023-05-24
      </li>
      <li>
        <b>5.2.0-dev.20230523</b> - 2023-05-23
      </li>
      <li>
        <b>5.2.0-dev.20230522</b> - 2023-05-22
      </li>
      <li>
        <b>5.2.0-dev.20230521</b> - 2023-05-21
      </li>
      <li>
        <b>5.2.0-dev.20230520</b> - 2023-05-20
      </li>
      <li>
        <b>5.2.0-dev.20230519</b> - 2023-05-19
      </li>
      <li>
        <b>5.2.0-dev.20230518</b> - 2023-05-18
      </li>
      <li>
        <b>5.2.0-dev.20230517</b> - 2023-05-17
      </li>
      <li>
        <b>5.2.0-dev.20230516</b> - 2023-05-16
      </li>
      <li>
        <b>5.2.0-beta</b> - 2023-06-30
      </li>
      <li>
<b>5.1.6</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.1.6">2023-06-28</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-1/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.0%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.1%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.2%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.2 (Stable)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.3%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.3 (Stable)</a>.</li>
<li>(5.1.4 <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/issues/53031#issuecomment-1610038922"
data-hovercard-type="issue"
data-hovercard-url="/microsoft/TypeScript/issues/53031/hovercard">intentionally
skipped</a>)</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.5%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.5 (Stable)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.6%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.6 (Stable)</a>.</li>
</ul>
<p>Downloads are available on <a
href="https://www.npmjs.com/package/typescript"
rel="nofollow">npm</a></p>
      </li>
      <li>
<b>5.1.5</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.1.5">2023-06-27</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-1/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.0%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.1%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.2%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.2 (Stable)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.3%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.3 (Stable)</a>.</li>
<li>(5.1.4 <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/issues/53031#issuecomment-1610038922"
data-hovercard-type="issue"
data-hovercard-url="/microsoft/TypeScript/issues/53031/hovercard">intentionally
skipped</a>)</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.5%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.5 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a href="https://www.npmjs.com/package/typescript"
rel="nofollow">npm</a></li>
<li><a
href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild"
rel="nofollow">NuGet package</a></li>
</ul>
      </li>
      <li>
<b>5.1.3</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.1.3">2023-06-01</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-1/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.0%22+is%3Aclosed+">fixed
issues query for Typescript 5.1.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.1%22+is%3Aclosed+">fixed
issues query for Typescript 5.1.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.3%22+is%3Aclosed+">fixed
issues query for Typescript 5.1.3 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a
href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild"
rel="nofollow">NuGet package</a></li>
</ul>
      </li>
      <li>
        <b>5.1.1-rc</b> - 2023-05-18
      </li>
      <li>
        <b>5.1.0-dev.20230515</b> - 2023-05-15
      </li>
      <li>
        <b>5.1.0-dev.20230514</b> - 2023-05-14
      </li>
      <li>
        <b>5.1.0-dev.20230513</b> - 2023-05-13
      </li>
      <li>
        <b>5.1.0-dev.20230512</b> - 2023-05-12
      </li>
      <li>
        <b>5.1.0-dev.20230511</b> - 2023-05-11
      </li>
      <li>
        <b>5.1.0-dev.20230510</b> - 2023-05-10
      </li>
      <li>
        <b>5.1.0-dev.20230509</b> - 2023-05-09
      </li>
      <li>
        <b>5.1.0-dev.20230508</b> - 2023-05-08
      </li>
      <li>
        <b>5.1.0-dev.20230507</b> - 2023-05-07
      </li>
      <li>
        <b>5.1.0-dev.20230506</b> - 2023-05-06
      </li>
      <li>
        <b>5.1.0-dev.20230502</b> - 2023-05-02
      </li>
      <li>
        <b>5.1.0-dev.20230501</b> - 2023-05-01
      </li>
      <li>
        <b>5.1.0-dev.20230430</b> - 2023-04-30
      </li>
      <li>
        <b>5.1.0-dev.20230429</b> - 2023-04-29
      </li>
      <li>
        <b>5.1.0-dev.20230428</b> - 2023-04-28
      </li>
      <li>
        <b>5.1.0-dev.20230427</b> - 2023-04-27
      </li>
      <li>
        <b>5.1.0-dev.20230426</b> - 2023-04-26
      </li>
      <li>
        <b>5.1.0-dev.20230425</b> - 2023-04-25
      </li>
      <li>
        <b>5.1.0-dev.20230424</b> - 2023-04-24
      </li>
      <li>
        <b>5.1.0-dev.20230423</b> - 2023-04-23
      </li>
      <li>
        <b>5.1.0-dev.20230422</b> - 2023-04-22
      </li>
      <li>
        <b>5.1.0-dev.20230421</b> - 2023-04-21
      </li>
      <li>
        <b>5.1.0-dev.20230420</b> - 2023-04-20
      </li>
      <li>
        <b>5.1.0-dev.20230419</b> - 2023-04-19
      </li>
      <li>
        <b>5.1.0-dev.20230418</b> - 2023-04-18
      </li>
      <li>
        <b>5.1.0-dev.20230417</b> - 2023-04-17
      </li>
      <li>
        <b>5.1.0-dev.20230416</b> - 2023-04-16
      </li>
      <li>
        <b>5.1.0-dev.20230415</b> - 2023-04-15
      </li>
      <li>
        <b>5.1.0-dev.20230414</b> - 2023-04-14
      </li>
      <li>
        <b>5.1.0-dev.20230413</b> - 2023-04-13
      </li>
      <li>
        <b>5.1.0-dev.20230412</b> - 2023-04-12
      </li>
      <li>
        <b>5.1.0-dev.20230411</b> - 2023-04-11
      </li>
      <li>
        <b>5.1.0-dev.20230410</b> - 2023-04-10
      </li>
      <li>
        <b>5.1.0-dev.20230409</b> - 2023-04-09
      </li>
      <li>
        <b>5.1.0-dev.20230408</b> - 2023-04-08
      </li>
      <li>
        <b>5.1.0-dev.20230407</b> - 2023-04-07
      </li>
      <li>
        <b>5.1.0-dev.20230406</b> - 2023-04-06
      </li>
      <li>
        <b>5.1.0-dev.20230405</b> - 2023-04-05
      </li>
      <li>
        <b>5.1.0-dev.20230404</b> - 2023-04-04
      </li>
      <li>
        <b>5.1.0-dev.20230403</b> - 2023-04-03
      </li>
      <li>
        <b>5.1.0-dev.20230402</b> - 2023-04-02
      </li>
      <li>
        <b>5.1.0-dev.20230401</b> - 2023-04-01
      </li>
      <li>
        <b>5.1.0-dev.20230331</b> - 2023-03-31
      </li>
      <li>
        <b>5.1.0-dev.20230330</b> - 2023-03-30
      </li>
      <li>
        <b>5.1.0-dev.20230329</b> - 2023-03-29
      </li>
      <li>
        <b>5.1.0-dev.20230328</b> - 2023-03-28
      </li>
      <li>
        <b>5.1.0-dev.20230327</b> - 2023-03-27
      </li>
      <li>
        <b>5.1.0-dev.20230326</b> - 2023-03-26
      </li>
      <li>
        <b>5.1.0-dev.20230325</b> - 2023-03-25
      </li>
      <li>
        <b>5.1.0-dev.20230324</b> - 2023-03-24
      </li>
      <li>
        <b>5.1.0-dev.20230323</b> - 2023-03-23
      </li>
      <li>
        <b>5.1.0-dev.20230322</b> - 2023-03-22
      </li>
      <li>
        <b>5.1.0-dev.20230321</b> - 2023-03-21
      </li>
      <li>
        <b>5.1.0-dev.20230320</b> - 2023-03-20
      </li>
      <li>
        <b>5.1.0-dev.20230319</b> - 2023-03-19
      </li>
      <li>
        <b>5.1.0-dev.20230318</b> - 2023-03-18
      </li>
      <li>
        <b>5.1.0-dev.20230317</b> - 2023-03-17
      </li>
      <li>
        <b>5.1.0-dev.20230316</b> - 2023-03-16
      </li>
      <li>
        <b>5.1.0-dev.20230315</b> - 2023-03-15
      </li>
      <li>
        <b>5.1.0-dev.20230313</b> - 2023-03-13
      </li>
      <li>
        <b>5.1.0-dev.20230312</b> - 2023-03-12
      </li>
      <li>
        <b>5.1.0-dev.20230311</b> - 2023-03-11
      </li>
      <li>
        <b>5.1.0-dev.20230310</b> - 2023-03-10
      </li>
      <li>
        <b>5.1.0-dev.20230309</b> - 2023-03-09
      </li>
      <li>
        <b>5.1.0-dev.20230308</b> - 2023-03-08
      </li>
      <li>
        <b>5.1.0-dev.20230307</b> - 2023-03-07
      </li>
      <li>
        <b>5.1.0-dev.20230306</b> - 2023-03-06
      </li>
      <li>
        <b>5.1.0-dev.20230305</b> - 2023-03-05
      </li>
      <li>
        <b>5.1.0-dev.20230304</b> - 2023-03-04
      </li>
      <li>
        <b>5.1.0-dev.20230303</b> - 2023-03-03
      </li>
      <li>
        <b>5.1.0-dev.20230302</b> - 2023-03-02
      </li>
      <li>
        <b>5.1.0-dev.20230301</b> - 2023-03-01
      </li>
      <li>
        <b>5.1.0-dev.20230227</b> - 2023-02-27
      </li>
      <li>
        <b>5.1.0-beta</b> - 2023-04-18
      </li>
      <li>
<b>5.0.4</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.0.4">2023-04-07</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-0/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.0%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.1%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.2%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.2 (Stable)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.3%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.3 (Stable)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.4%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.4 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a href="https://www.npmjs.com/package/typescript"
rel="nofollow">npm</a></li>
<li><a
href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild"
rel="nofollow">NuGet package</a></li>
</ul>
      </li>
      <li>
<b>5.0.3</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.0.3">2023-03-30</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-0/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.0%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.1%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.2%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.2 (Stable)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.0.3%22+is%3Aclosed+">fixed
issues query for Typescript v5.0.3 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a href="https://www.npmjs.com/package/typescript"
rel="nofollow">npm</a></li>
<li><a
href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild"
rel="nofollow">NuGet package</a></li>
</ul>
      </li>
      <li>
        <b>5.0.2</b> - 2023-03-16
      </li>
      <li>
        <b>5.0.1-rc</b> - 2023-03-01
      </li>
      <li>
        <b>5.0.0-dev.20230226</b> - 2023-02-26
      </li>
      <li>
        <b>5.0.0-dev.20230225</b> - 2023-02-25
      </li>
      <li>
        <b>5.0.0-dev.20230224</b> - 2023-02-24
      </li>
      <li>
        <b>5.0.0-dev.20230223</b> - 2023-02-23
      </li>
      <li>
        <b>5.0.0-dev.20230222</b> - 2023-02-22
      </li>
      <li>
        <b>5.0.0-dev.20230221</b> - 2023-02-21
      </li>
      <li>
        <b>5.0.0-dev.20230220</b> - 2023-02-20
      </li>
      <li>
        <b>5.0.0-dev.20230219</b> - 2023-02-19
      </li>
      <li>
        <b>5.0.0-dev.20230218</b> - 2023-02-18
      </li>
      <li>
        <b>5.0.0-dev.20230217</b> - 2023-02-17
      </li>
      <li>
        <b>5.0.0-dev.20230216</b> - 2023-02-16
      </li>
      <li>
        <b>5.0.0-dev.20230215</b> - 2023-02-15
      </li>
      <li>
        <b>5.0.0-dev.20230214</b> - 2023-02-14
      </li>
      <li>
        <b>5.0.0-dev.20230213</b> - 2023-02-13
      </li>
      <li>
        <b>5.0.0-dev.20230212</b> - 2023-02-12
      </li>
      <li>
        <b>5.0.0-dev.20230211</b> - 2023-02-11
      </li>
      <li>
        <b>5.0.0-dev.20230210</b> - 2023-02-10
      </li>
      <li>
        <b>5.0.0-dev.20230209</b> - 2023-02-09
      </li>
      <li>
        <b>5.0.0-dev.20230208</b> - 2023-02-08
      </li>
      <li>
        <b>5.0.0-dev.20230207</b> - 2023-02-07
      </li>
      <li>
        <b>5.0.0-dev.20230206</b> - 2023-02-06
      </li>
      <li>
        <b>5.0.0-dev.20230205</b> - 2023-02-05
      </li>
      <li>
        <b>5.0.0-dev.20230204</b> - 2023-02-04
      </li>
      <li>
        <b>5.0.0-dev.20230203</b> - 2023-02-03
      </li>
      <li>
        <b>5.0.0-dev.20230202</b> - 2023-02-02
      </li>
      <li>
        <b>5.0.0-dev.20230201</b> - 2023-02-01
      </li>
      <li>
        <b>5.0.0-dev.20230131</b> - 2023-01-31
      </li>
      <li>
        <b>5.0.0-dev.20230130</b> - 2023-01-30
      </li>
      <li>
        <b>5.0.0-dev.20230129</b> - 2023-01-29
      </li>
      <li>
        <b>5.0.0-dev.20230128</b> - 2023-01-28
      </li>
      <li>
        <b>5.0.0-dev.20230127</b> - 2023-01-27
      </li>
      <li>
        <b>5.0.0-dev.20230126</b> - 2023-01-26
      </li>
      <li>
        <b>5.0.0-dev.20230125</b> - 2023-01-25
      </li>
      <li>
        <b>5.0.0-dev.20230123</b> - 2023-01-23
      </li>
      <li>
        <b>5.0.0-dev.20230122</b> - 2023-01-22
      </li>
      <li>
        <b>5.0.0-dev.20230121</b> - 2023-01-21
      </li>
      <li>
        <b>5.0.0-dev.20230120</b> - 2023-01-20
      </li>
      <li>
        <b>5.0.0-dev.20230119</b> - 2023-01-19
      </li>
      <li>
        <b>5.0.0-dev.20230118</b> - 2023-01-18
      </li>
      <li>
        <b>5.0.0-dev.20230117</b> - 2023-01-17
      </li>
      <li>
        <b>5.0.0-dev.20230116</b> - 2023-01-16
      </li>
      <li>
        <b>5.0.0-dev.20230115</b> - 2023-01-15
      </li>
      <li>
        <b>5.0.0-dev.20230114</b> - 2023-01-14
      </li>
      <li>
        <b>5.0.0-dev.20230113</b> - 2023-01-13
      </li>
      <li>
        <b>5.0.0-dev.20230112</b> - 2023-01-12
      </li>
      <li>
        <b>5.0.0-dev.20230111</b> - 2023-01-11
      </li>
      <li>
        <b>5.0.0-dev.20230110</b> - 2023-01-10
      </li>
      <li>
        <b>5.0.0-dev.20230109</b> - 2023-01-09
      </li>
      <li>
        <b>5.0.0-dev.20230108</b> - 2023-01-08
      </li>
      <li>
        <b>5.0.0-dev.20230107</b> - 2023-01-07
      </li>
      <li>
        <b>5.0.0-dev.20230106</b> - 2023-01-06
      </li>
      <li>
        <b>5.0.0-dev.20230105</b> - 2023-01-05
      </li>
      <li>
        <b>5.0.0-dev.20230104</b> - 2023-01-04
      </li>
      <li>
        <b>5.0.0-dev.20230103</b> - 2023-01-03
      </li>
      <li>
        <b>5.0.0-dev.20230102</b> - 2023-01-02
      </li>
      <li>
        <b>5.0.0-dev.20230101</b> - 2023-01-01
      </li>
      <li>
        <b>5.0.0-dev.20221231</b> - 2022-12-31
      </li>
      <li>
        <b>5.0.0-dev.20221230</b> - 2022-12-30
      </li>
      <li>
        <b>5.0.0-dev.20221229</b> - 2022-12-29
      </li>
      <li>
        <b>5.0.0-dev.20221228</b> - 2022-12-28
      </li>
      <li>
        <b>5.0.0-dev.20221227</b> - 2022-12-27
      </li>
      <li>
        <b>5.0.0-dev.20221226</b> - 2022-12-26
      </li>
      <li>
        <b>5.0.0-dev.20221225</b> - 2022-12-25
      </li>
      <li>
        <b>5.0.0-dev.20221224</b> - 2022-12-24
      </li>
      <li>
        <b>5.0.0-dev.20221223</b> - 2022-12-23
      </li>
      <li>
        <b>5.0.0-dev.20221222</b> - 2022-12-22
      </li>
      <li>
        <b>5.0.0-dev.20221221</b> - 2022-12-21
      </li>
      <li>
        <b>5.0.0-dev.20221220</b> - 2022-12-20
      </li>
      <li>
        <b>5.0.0-dev.20221219</b> - 2022-12-19
      </li>
      <li>
        <b>5.0.0-dev.20221218</b> - 2022-12-18
      </li>
      <li>
        <b>5.0.0-dev.20221217</b> - 2022-12-17
      </li>
      <li>
        <b>5.0.0-dev.20221216</b> - 2022-12-16
      </li>
      <li>
        <b>5.0.0-dev.20221215</b> - 2022-12-15
      </li>
      <li>
        <b>5.0.0-dev.20221214</b> - 2022-12-14
      </li>
      <li>
        <b>5.0.0-dev.20221213</b> - 2022-12-13
      </li>
      <li>
        <b>5.0.0-dev.20221212</b> - 2022-12-12
      </li>
      <li>
        <b>5.0.0-dev.20221211</b> - 2022-12-11
      </li>
      <li>
        <b>5.0.0-dev.20221210</b> - 2022-12-10
      </li>
      <li>
        <b>5.0.0-dev.20221209</b> - 2022-12-09
      </li>
      <li>
        <b>5.0.0-dev.20221208</b> - 2022-12-08
      </li>
      <li>
        <b>5.0.0-dev.20221207</b> - 2022-12-07
      </li>
      <li>
        <b>5.0.0-dev.20221206</b> - 2022-12-06
      </li>
      <li>
        <b>5.0.0-dev.20221205</b> - 2022-12-05
      </li>
      <li>
        <b>5.0.0-dev.20221204</b> - 2022-12-04
      </li>
      <li>
        <b>5.0.0-dev.20221203</b> - 2022-12-03
      </li>
      <li>
        <b>5.0.0-dev.20221202</b> - 2022-12-02
      </li>
      <li>
        <b>5.0.0-dev.20221201</b> - 2022-12-01
      </li>
      <li>
        <b>5.0.0-dev.20221130</b> - 2022-11-30
      </li>
      <li>
        <b>5.0.0-dev.20221129</b> - 2022-11-29
      </li>
      <li>
        <b>5.0.0-dev.20221128</b> - 2022-11-28
      </li>
      <li>
        <b>5.0.0-dev.20221127</b> - 2022-11-27
      </li>
      <li>
        <b>5.0.0-dev.20221126</b> - 2022-11-26
      </li>
      <li>
        <b>5.0.0-dev.20221125</b> - 2022-11-25
      </li>
      <li>
        <b>5.0.0-dev.20221124</b> - 2022-11-24
      </li>
      <li>
        <b>5.0.0-dev.20221123</b> - 2022-11-23
      </li>
      <li>
        <b>5.0.0-dev.20221122</b> - 2022-11-22
      </li>
      <li>
        <b>5.0.0-dev.20221121</b> - 2022-11-21
      </li>
      <li>
        <b>5.0.0-dev.20221120</b> - 2022-11-20
      </li>
      <li>
        <b>5.0.0-dev.20221119</b> - 2022-11-19
      </li>
      <li>
        <b>5.0.0-dev.20221118</b> - 2022-11-18
      </li>
      <li>
        <b>5.0.0-dev.20221117</b> - 2022-11-17
      </li>
      <li>
        <b>5.0.0-dev.20221116</b> - 2022-11-16
      </li>
      <li>
        <b>5.0.0-dev.20221115</b> - 2022-11-15
      </li>
      <li>
        <b>5.0.0-dev.20221114</b> - 2022-11-14
      </li>
      <li>
        <b>5.0.0-dev.20221113</b> - 2022-11-13
      </li>
      <li>
        <b>5.0.0-dev.20221112</b> - 2022-11-12
      </li>
      <li>
        <b>5.0.0-dev.20221111</b> - 2022-11-11
      </li>
      <li>
        <b>5.0.0-dev.20221110</b> - 2022-11-10
      </li>
      <li>
        <b>5.0.0-dev.20221109</b> - 2022-11-09
      </li>
      <li>
        <b>5.0.0-dev.20221108</b> - 2022-11-08
      </li>
      <li>
        <b>5.0.0-dev.20221103</b> - 2022-11-03
      </li>
      <li>
        <b>5.0.0-dev.20221102</b> - 2022-11-02
      </li>
      <li>
        <b>5.0.0-dev.20221101</b> - 2022-11-01
      </li>
      <li>
        <b>5.0.0-beta</b> - 2023-01-26
      </li>
      <li>
        <b>4.9.5</b> - 2023-01-30
      </li>
    </ul>
from <a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/releases">typescript
GitHub release notes</a>
  </details>
</details>
<hr/>

**Note:** *You are seeing this because you or someone else with access
to this repository has authorized Snyk to open upgrade PRs.*

For more information: <img
src="https://api.segment.io/v1/pixel/track?data=eyJ3cml0ZUtleSI6InJyWmxZcEdHY2RyTHZsb0lYd0dUcVg4WkFRTnNCOUEwIiwiYW5vbnltb3VzSWQiOiI0YTk1N2FkZi02NzUzLTQxYzUtOTIyZC1kY2QzMzE1ZmQyZDAiLCJldmVudCI6IlBSIHZpZXdlZCIsInByb3BlcnRpZXMiOnsicHJJZCI6IjRhOTU3YWRmLTY3NTMtNDFjNS05MjJkLWRjZDMzMTVmZDJkMCJ9fQ=="
width="0" height="0"/>

🧐 [View latest project
report](https://app.snyk.io/org/woodpile37/project/54f17531-02f0-4aa3-bc64-84e2a1c220af?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)

🛠 [Adjust upgrade PR
settings](https://app.snyk.io/org/woodpile37/project/54f17531-02f0-4aa3-bc64-84e2a1c220af/settings/integration?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)

🔕 [Ignore this dependency or unsubscribe from future upgrade
PRs](https://app.snyk.io/org/woodpile37/project/54f17531-02f0-4aa3-bc64-84e2a1c220af/settings/integration?pkg&#x3D;typescript&amp;utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr#auto-dep-upgrades)

<!---
(snyk:metadata:{"prId":"4a957adf-6753-41c5-922d-dcd3315fd2d0","prPublicId":"4a957adf-6753-41c5-922d-dcd3315fd2d0","dependencies":[{"name":"typescript","from":"4.9.5","to":"5.2.2"}],"packageManager":"npm","type":"auto","projectUrl":"https://app.snyk.io/org/woodpile37/project/54f17531-02f0-4aa3-bc64-84e2a1c220af?utm_source=github&utm_medium=referral&page=upgrade-pr","projectPublicId":"54f17531-02f0-4aa3-bc64-84e2a1c220af","env":"prod","prType":"upgrade","vulns":[],"issuesToFix":[],"upgrade":[],"upgradeInfo":{"versionsDiff":282,"publishedDate":"2023-08-24T16:38:15.233Z"},"templateVariants":[],"hasFixes":false,"isMajorUpgrade":true,"isBreakingChange":true,"priorityScoreList":[]})
--->
Woodpile37 added a commit to Woodpile37/EIPs that referenced this issue Nov 4, 2023
<p>This PR was automatically created by Snyk using the credentials of a
real user.</p><br /><h3>Snyk has created this PR to upgrade typescript
from 4.9.5 to 5.2.2.</h3>

:information_source: Keep your dependencies up-to-date. This makes it
easier to fix existing vulnerabilities and to more quickly identify and
fix newly disclosed vulnerabilities when they affect your project.
<hr/>

*Warning:* This is a major version upgrade, and may be a breaking
change.
- The recommended version is **282 versions** ahead of your current
version.
- The recommended version was released **2 months ago**, on 2023-08-24.


<details>
<summary><b>Release notes</b></summary>
<br/>
  <details>
    <summary>Package name: <b>typescript</b></summary>
    <ul>
      <li>
<b>5.2.2</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.2.2">2023-08-24</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-2/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.2.0%22+is%3Aclosed+">fixed
issues query for Typescript 5.2.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.2.1%22+is%3Aclosed+">fixed
issues query for Typescript 5.2.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.2.2%22+is%3Aclosed+">fixed
issues query for Typescript 5.2.2 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a
href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild"
rel="nofollow">NuGet package</a></li>
</ul>
      </li>
      <li>
        <b>5.2.1-rc</b> - 2023-08-09
      </li>
      <li>
        <b>5.2.0-dev.20230807</b> - 2023-08-07
      </li>
      <li>
        <b>5.2.0-dev.20230806</b> - 2023-08-06
      </li>
      <li>
        <b>5.2.0-dev.20230805</b> - 2023-08-05
      </li>
      <li>
        <b>5.2.0-dev.20230804</b> - 2023-08-04
      </li>
      <li>
        <b>5.2.0-dev.20230803</b> - 2023-08-03
      </li>
      <li>
        <b>5.2.0-dev.20230802</b> - 2023-08-02
      </li>
      <li>
        <b>5.2.0-dev.20230801</b> - 2023-08-01
      </li>
      <li>
        <b>5.2.0-dev.20230731</b> - 2023-07-31
      </li>
      <li>
        <b>5.2.0-dev.20230730</b> - 2023-07-30
      </li>
      <li>
        <b>5.2.0-dev.20230729</b> - 2023-07-29
      </li>
      <li>
        <b>5.2.0-dev.20230728</b> - 2023-07-28
      </li>
      <li>
        <b>5.2.0-dev.20230727</b> - 2023-07-27
      </li>
      <li>
        <b>5.2.0-dev.20230726</b> - 2023-07-26
      </li>
      <li>
        <b>5.2.0-dev.20230725</b> - 2023-07-25
      </li>
      <li>
        <b>5.2.0-dev.20230724</b> - 2023-07-24
      </li>
      <li>
        <b>5.2.0-dev.20230723</b> - 2023-07-23
      </li>
      <li>
        <b>5.2.0-dev.20230722</b> - 2023-07-22
      </li>
      <li>
        <b>5.2.0-dev.20230721</b> - 2023-07-21
      </li>
      <li>
        <b>5.2.0-dev.20230720</b> - 2023-07-20
      </li>
      <li>
        <b>5.2.0-dev.20230719</b> - 2023-07-19
      </li>
      <li>
        <b>5.2.0-dev.20230718</b> - 2023-07-18
      </li>
      <li>
        <b>5.2.0-dev.20230717</b> - 2023-07-17
      </li>
      <li>
        <b>5.2.0-dev.20230716</b> - 2023-07-16
      </li>
      <li>
        <b>5.2.0-dev.20230715</b> - 2023-07-15
      </li>
      <li>
        <b>5.2.0-dev.20230714</b> - 2023-07-14
      </li>
      <li>
        <b>5.2.0-dev.20230713</b> - 2023-07-13
      </li>
      <li>
        <b>5.2.0-dev.20230712</b> - 2023-07-12
      </li>
      <li>
        <b>5.2.0-dev.20230711</b> - 2023-07-11
      </li>
      <li>
        <b>5.2.0-dev.20230710</b> - 2023-07-10
      </li>
      <li>
        <b>5.2.0-dev.20230709</b> - 2023-07-09
      </li>
      <li>
        <b>5.2.0-dev.20230708</b> - 2023-07-08
      </li>
      <li>
        <b>5.2.0-dev.20230707</b> - 2023-07-07
      </li>
      <li>
        <b>5.2.0-dev.20230706</b> - 2023-07-06
      </li>
      <li>
        <b>5.2.0-dev.20230705</b> - 2023-07-05
      </li>
      <li>
        <b>5.2.0-dev.20230704</b> - 2023-07-04
      </li>
      <li>
        <b>5.2.0-dev.20230703</b> - 2023-07-03
      </li>
      <li>
        <b>5.2.0-dev.20230702</b> - 2023-07-02
      </li>
      <li>
        <b>5.2.0-dev.20230701</b> - 2023-07-01
      </li>
      <li>
        <b>5.2.0-dev.20230630</b> - 2023-06-30
      </li>
      <li>
        <b>5.2.0-dev.20230629</b> - 2023-06-29
      </li>
      <li>
        <b>5.2.0-dev.20230628</b> - 2023-06-28
      </li>
      <li>
        <b>5.2.0-dev.20230627</b> - 2023-06-27
      </li>
      <li>
        <b>5.2.0-dev.20230626</b> - 2023-06-26
      </li>
      <li>
        <b>5.2.0-dev.20230625</b> - 2023-06-25
      </li>
      <li>
        <b>5.2.0-dev.20230624</b> - 2023-06-24
      </li>
      <li>
        <b>5.2.0-dev.20230623</b> - 2023-06-23
      </li>
      <li>
        <b>5.2.0-dev.20230622</b> - 2023-06-22
      </li>
      <li>
        <b>5.2.0-dev.20230621</b> - 2023-06-21
      </li>
      <li>
        <b>5.2.0-dev.20230620</b> - 2023-06-20
      </li>
      <li>
        <b>5.2.0-dev.20230619</b> - 2023-06-19
      </li>
      <li>
        <b>5.2.0-dev.20230618</b> - 2023-06-18
      </li>
      <li>
        <b>5.2.0-dev.20230617</b> - 2023-06-17
      </li>
      <li>
        <b>5.2.0-dev.20230616</b> - 2023-06-16
      </li>
      <li>
        <b>5.2.0-dev.20230615</b> - 2023-06-15
      </li>
      <li>
        <b>5.2.0-dev.20230614</b> - 2023-06-14
      </li>
      <li>
        <b>5.2.0-dev.20230613</b> - 2023-06-13
      </li>
      <li>
        <b>5.2.0-dev.20230612</b> - 2023-06-12
      </li>
      <li>
        <b>5.2.0-dev.20230611</b> - 2023-06-11
      </li>
      <li>
        <b>5.2.0-dev.20230610</b> - 2023-06-10
      </li>
      <li>
        <b>5.2.0-dev.20230609</b> - 2023-06-09
      </li>
      <li>
        <b>5.2.0-dev.20230608</b> - 2023-06-08
      </li>
      <li>
        <b>5.2.0-dev.20230607</b> - 2023-06-07
      </li>
      <li>
        <b>5.2.0-dev.20230606</b> - 2023-06-06
      </li>
      <li>
        <b>5.2.0-dev.20230605</b> - 2023-06-05
      </li>
      <li>
        <b>5.2.0-dev.20230604</b> - 2023-06-04
      </li>
      <li>
        <b>5.2.0-dev.20230603</b> - 2023-06-03
      </li>
      <li>
        <b>5.2.0-dev.20230602</b> - 2023-06-02
      </li>
      <li>
        <b>5.2.0-dev.20230601</b> - 2023-06-01
      </li>
      <li>
        <b>5.2.0-dev.20230531</b> - 2023-05-31
      </li>
      <li>
        <b>5.2.0-dev.20230530</b> - 2023-05-30
      </li>
      <li>
        <b>5.2.0-dev.20230529</b> - 2023-05-29
      </li>
      <li>
        <b>5.2.0-dev.20230528</b> - 2023-05-28
      </li>
      <li>
        <b>5.2.0-dev.20230527</b> - 2023-05-27
      </li>
      <li>
        <b>5.2.0-dev.20230526</b> - 2023-05-26
      </li>
      <li>
        <b>5.2.0-dev.20230524</b> - 2023-05-24
      </li>
      <li>
        <b>5.2.0-dev.20230523</b> - 2023-05-23
      </li>
      <li>
        <b>5.2.0-dev.20230522</b> - 2023-05-22
      </li>
      <li>
        <b>5.2.0-dev.20230521</b> - 2023-05-21
      </li>
      <li>
        <b>5.2.0-dev.20230520</b> - 2023-05-20
      </li>
      <li>
        <b>5.2.0-dev.20230519</b> - 2023-05-19
      </li>
      <li>
        <b>5.2.0-dev.20230518</b> - 2023-05-18
      </li>
      <li>
        <b>5.2.0-dev.20230517</b> - 2023-05-17
      </li>
      <li>
        <b>5.2.0-dev.20230516</b> - 2023-05-16
      </li>
      <li>
        <b>5.2.0-beta</b> - 2023-06-30
      </li>
      <li>
<b>5.1.6</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.1.6">2023-06-28</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-1/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.0%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.1%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.2%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.2 (Stable)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.3%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.3 (Stable)</a>.</li>
<li>(5.1.4 <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/issues/53031#issuecomment-1610038922"
data-hovercard-type="issue"
data-hovercard-url="/microsoft/TypeScript/issues/53031/hovercard">intentionally
skipped</a>)</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.5%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.5 (Stable)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.6%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.6 (Stable)</a>.</li>
</ul>
<p>Downloads are available on <a
href="https://www.npmjs.com/package/typescript"
rel="nofollow">npm</a></p>
      </li>
      <li>
<b>5.1.5</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.1.5">2023-06-27</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-1/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.0%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.1%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.2%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.2 (Stable)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.3%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.3 (Stable)</a>.</li>
<li>(5.1.4 <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/issues/53031#issuecomment-1610038922"
data-hovercard-type="issue"
data-hovercard-url="/microsoft/TypeScript/issues/53031/hovercard">intentionally
skipped</a>)</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.5%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.5 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a href="https://www.npmjs.com/package/typescript"
rel="nofollow">npm</a></li>
<li><a
href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild"
rel="nofollow">NuGet package</a></li>
</ul>
      </li>
      <li>
<b>5.1.3</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.1.3">2023-06-01</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-1/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.0%22+is%3Aclosed+">fixed
issues query for Typescript 5.1.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.1%22+is%3Aclosed+">fixed
issues query for Typescript 5.1.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.3%22+is%3Aclosed+">fixed
issues query for Typescript 5.1.3 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a
href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild"
rel="nofollow">NuGet package</a></li>
</ul>
      </li>
      <li>
        <b>5.1.1-rc</b> - 2023-05-18
      </li>
      <li>
        <b>5.1.0-dev.20230515</b> - 2023-05-15
      </li>
      <li>
        <b>5.1.0-dev.20230514</b> - 2023-05-14
      </li>
      <li>
        <b>5.1.0-dev.20230513</b> - 2023-05-13
      </li>
      <li>
        <b>5.1.0-dev.20230512</b> - 2023-05-12
      </li>
      <li>
        <b>5.1.0-dev.20230511</b> - 2023-05-11
      </li>
      <li>
        <b>5.1.0-dev.20230510</b> - 2023-05-10
      </li>
      <li>
        <b>5.1.0-dev.20230509</b> - 2023-05-09
      </li>
      <li>
        <b>5.1.0-dev.20230508</b> - 2023-05-08
      </li>
      <li>
        <b>5.1.0-dev.20230507</b> - 2023-05-07
      </li>
      <li>
        <b>5.1.0-dev.20230506</b> - 2023-05-06
      </li>
      <li>
        <b>5.1.0-dev.20230502</b> - 2023-05-02
      </li>
      <li>
        <b>5.1.0-dev.20230501</b> - 2023-05-01
      </li>
      <li>
        <b>5.1.0-dev.20230430</b> - 2023-04-30
      </li>
      <li>
        <b>5.1.0-dev.20230429</b> - 2023-04-29
      </li>
      <li>
        <b>5.1.0-dev.20230428</b> - 2023-04-28
      </li>
      <li>
        <b>5.1.0-dev.20230427</b> - 2023-04-27
      </li>
      <li>
        <b>5.1.0-dev.20230426</b> - 2023-04-26
      </li>
      <li>
        <b>5.1.0-dev.20230425</b> - 2023-04-25
      </li>
      <li>
        <b>5.1.0-dev.20230424</b> - 2023-04-24
      </li>
      <li>
        <b>5.1.0-dev.20230423</b> - 2023-04-23
      </li>
      <li>
        <b>5.1.0-dev.20230422</b> - 2023-04-22
      </li>
      <li>
        <b>5.1.0-dev.20230421</b> - 2023-04-21
      </li>
      <li>
        <b>5.1.0-dev.20230420</b> - 2023-04-20
      </li>
      <li>
        <b>5.1.0-dev.20230419</b> - 2023-04-19
      </li>
      <li>
        <b>5.1.0-dev.20230418</b> - 2023-04-18
      </li>
      <li>
        <b>5.1.0-dev.20230417</b> - 2023-04-17
      </li>
      <li>
        <b>5.1.0-dev.20230416</b> - 2023-04-16
      </li>
      <li>
        <b>5.1.0-dev.20230415</b> - 2023-04-15
      </li>
      <li>
        <b>5.1.0-dev.20230414</b> - 2023-04-14
      </li>
      <li>
        <b>5.1.0-dev.20230413</b> - 2023-04-13
      </li>
      <li>
        <b>5.1.0-dev.20230412</b> - 2023-04-12
      </li>
      <li>
        <b>5.1.0-dev.20230411</b> - 2023-04-11
      </li>
      <li>
        <b>5.1.0-dev.20230410</b> - 2023-04-10
      </li>
      <li>
        <b>5.1.0-dev.20230409</b> - 2023-04-09
      </li>
      <li>
        <b>5.1.0-dev.20230408</b> - 2023-04-08
      </li>
      <li>
        <b>5.1.0-dev.20230407</b> - 2023-04-07
      </li>
      <li>
        <b>5.1.0-dev.20230406</b> - 2023-04-06
      </li>
      <li>
        <b>5.1.0-dev.20230405</b> - 2023-04-05
      </li>
      <li>
        <b>5.1.0-dev.20230404</b> - 2023-04-04
      </li>
      <li>
        <b>5.1.0-dev.20230403</b> - 2023-04-03
      </li>
      <li>
        <b>5.1.0-dev.20230402</b> - 2023-04-02
      </li>
      <li>
        <b>5.1.0-dev.20230401</b> - 2023-04-01
      </li>
      <li>
        <b>5.1.0-dev.20230331</b> - 2023-03-31
      </li>
      <li>
        <b>5.1.0-dev.20230330</b> - 2023-03-30
      </li>
      <li>
        <b>5.1.0-dev.20230329</b> - 2023-03-29
      </li>
      <li>
        <b>5.1.0-dev.20230328</b> - 2023-03-28
      </li>
      <li>
        <b>5.1.0-dev.20230327</b> - 2023-03-27
      </li>
      <li>
        <b>5.1.0-dev.20230326</b> - 2023-03-26
      </li>
      <li>
        <b>5.1.0-dev.20230325</b> - 2023-03-25
      </li>
      <li>
        <b>5.1.0-dev.20230324</b> - 2023-03-24
      </li>
      <li>
        <b>5.1.0-dev.20230323</b> - 2023-03-23
      </li>
      <li>
        <b>5.1.0-dev.20230322</b> - 2023-03-22
      </li>
      <li>
        <b>5.1.0-dev.20230321</b> - 2023-03-21
      </li>
      <li>
        <b>5.1.0-dev.20230320</b> - 2023-03-20
      </li>
      <li>
        <b>5.1.0-dev.20230319</b> - 2023-03-19
      </li>
      <li>
        <b>5.1.0-dev.20230318</b> - 2023-03-18
      </li>
      <li>
        <b>5.1.0-dev.20230317</b> - 2023-03-17
      </li>
      <li>
        <b>5.1.0-dev.20230316</b> - 2023-03-16
      </li>
      <li>
        <b>5.1.0-dev.20230315</b> - 2023-03-15
      </li>
      <li>
        <b>5.1.0-dev.20230313</b> - 2023-03-13
      </li>
      <li>
        <b>5.1.0-dev.20230312</b> - 2023-03-12
      </li>
      <li>
        <b>5.1.0-dev.20230311</b> - 2023-03-11
      </li>
      <li>
        <b>5.1.0-dev.20230310</b> - 2023-03-10
      </li>
      <li>
        <b>5.1.0-dev.20230309</b> - 2023-03-09
      </li>
      <li>
        <b>5.1.0-dev.20230308</b> - 2023-03-08
      </li>
      <li>
        <b>5.1.0-dev.20230307</b> - 2023-03-07
      </li>
      <li>
        <b>5.1.0-dev.20230306</b> - 2023-03-06
      </li>
      <li>
        <b>5.1.0-dev.20230305</b> - 2023-03-05
      </li>
      <li>
        <b>5.1.0-dev.20230304</b> - 2023-03-04
      </li>
      <li>
        <b>5.1.0-dev.20230303</b> - 2023-03-03
      </li>
      <li>
        <b>5.1.0-dev.20230302</b> - 2023-03-02
      </li>
      <li>
        <b>5.1.0-dev.20230301</b> - 2023-03-01
      </li>
      <li>
        <b>5.1.0-dev.20230227</b> - 2023-02-27
      </li>
      <li>
        <b>5.1.0-beta</b> - 2023-04-18
      </li>
      <li>
        <b>5.0.4</b> - 2023-04-07
      </li>
      <li>
        <b>5.0.3</b> - 2023-03-30
      </li>
      <li>
        <b>5.0.2</b> - 2023-03-16
      </li>
      <li>
        <b>5.0.1-rc</b> - 2023-03-01
      </li>
      <li>
        <b>5.0.0-dev.20230226</b> - 2023-02-26
      </li>
      <li>
        <b>5.0.0-dev.20230225</b> - 2023-02-25
      </li>
      <li>
        <b>5.0.0-dev.20230224</b> - 2023-02-24
      </li>
      <li>
        <b>5.0.0-dev.20230223</b> - 2023-02-23
      </li>
      <li>
        <b>5.0.0-dev.20230222</b> - 2023-02-22
      </li>
      <li>
        <b>5.0.0-dev.20230221</b> - 2023-02-21
      </li>
      <li>
        <b>5.0.0-dev.20230220</b> - 2023-02-20
      </li>
      <li>
        <b>5.0.0-dev.20230219</b> - 2023-02-19
      </li>
      <li>
        <b>5.0.0-dev.20230218</b> - 2023-02-18
      </li>
      <li>
        <b>5.0.0-dev.20230217</b> - 2023-02-17
      </li>
      <li>
        <b>5.0.0-dev.20230216</b> - 2023-02-16
      </li>
      <li>
        <b>5.0.0-dev.20230215</b> - 2023-02-15
      </li>
      <li>
        <b>5.0.0-dev.20230214</b> - 2023-02-14
      </li>
      <li>
        <b>5.0.0-dev.20230213</b> - 2023-02-13
      </li>
      <li>
        <b>5.0.0-dev.20230212</b> - 2023-02-12
      </li>
      <li>
        <b>5.0.0-dev.20230211</b> - 2023-02-11
      </li>
      <li>
        <b>5.0.0-dev.20230210</b> - 2023-02-10
      </li>
      <li>
        <b>5.0.0-dev.20230209</b> - 2023-02-09
      </li>
      <li>
        <b>5.0.0-dev.20230208</b> - 2023-02-08
      </li>
      <li>
        <b>5.0.0-dev.20230207</b> - 2023-02-07
      </li>
      <li>
        <b>5.0.0-dev.20230206</b> - 2023-02-06
      </li>
      <li>
        <b>5.0.0-dev.20230205</b> - 2023-02-05
      </li>
      <li>
        <b>5.0.0-dev.20230204</b> - 2023-02-04
      </li>
      <li>
        <b>5.0.0-dev.20230203</b> - 2023-02-03
      </li>
      <li>
        <b>5.0.0-dev.20230202</b> - 2023-02-02
      </li>
      <li>
        <b>5.0.0-dev.20230201</b> - 2023-02-01
      </li>
      <li>
        <b>5.0.0-dev.20230131</b> - 2023-01-31
      </li>
      <li>
        <b>5.0.0-dev.20230130</b> - 2023-01-30
      </li>
      <li>
        <b>5.0.0-dev.20230129</b> - 2023-01-29
      </li>
      <li>
        <b>5.0.0-dev.20230128</b> - 2023-01-28
      </li>
      <li>
        <b>5.0.0-dev.20230127</b> - 2023-01-27
      </li>
      <li>
        <b>5.0.0-dev.20230126</b> - 2023-01-26
      </li>
      <li>
        <b>5.0.0-dev.20230125</b> - 2023-01-25
      </li>
      <li>
        <b>5.0.0-dev.20230123</b> - 2023-01-23
      </li>
      <li>
        <b>5.0.0-dev.20230122</b> - 2023-01-22
      </li>
      <li>
        <b>5.0.0-dev.20230121</b> - 2023-01-21
      </li>
      <li>
        <b>5.0.0-dev.20230120</b> - 2023-01-20
      </li>
      <li>
        <b>5.0.0-dev.20230119</b> - 2023-01-19
      </li>
      <li>
        <b>5.0.0-dev.20230118</b> - 2023-01-18
      </li>
      <li>
        <b>5.0.0-dev.20230117</b> - 2023-01-17
      </li>
      <li>
        <b>5.0.0-dev.20230116</b> - 2023-01-16
      </li>
      <li>
        <b>5.0.0-dev.20230115</b> - 2023-01-15
      </li>
      <li>
        <b>5.0.0-dev.20230114</b> - 2023-01-14
      </li>
      <li>
        <b>5.0.0-dev.20230113</b> - 2023-01-13
      </li>
      <li>
        <b>5.0.0-dev.20230112</b> - 2023-01-12
      </li>
      <li>
        <b>5.0.0-dev.20230111</b> - 2023-01-11
      </li>
      <li>
        <b>5.0.0-dev.20230110</b> - 2023-01-10
      </li>
      <li>
        <b>5.0.0-dev.20230109</b> - 2023-01-09
      </li>
      <li>
        <b>5.0.0-dev.20230108</b> - 2023-01-08
      </li>
      <li>
        <b>5.0.0-dev.20230107</b> - 2023-01-07
      </li>
      <li>
        <b>5.0.0-dev.20230106</b> - 2023-01-06
      </li>
      <li>
        <b>5.0.0-dev.20230105</b> - 2023-01-05
      </li>
      <li>
        <b>5.0.0-dev.20230104</b> - 2023-01-04
      </li>
      <li>
        <b>5.0.0-dev.20230103</b> - 2023-01-03
      </li>
      <li>
        <b>5.0.0-dev.20230102</b> - 2023-01-02
      </li>
      <li>
        <b>5.0.0-dev.20230101</b> - 2023-01-01
      </li>
      <li>
        <b>5.0.0-dev.20221231</b> - 2022-12-31
      </li>
      <li>
        <b>5.0.0-dev.20221230</b> - 2022-12-30
      </li>
      <li>
        <b>5.0.0-dev.20221229</b> - 2022-12-29
      </li>
      <li>
        <b>5.0.0-dev.20221228</b> - 2022-12-28
      </li>
      <li>
        <b>5.0.0-dev.20221227</b> - 2022-12-27
      </li>
      <li>
        <b>5.0.0-dev.20221226</b> - 2022-12-26
      </li>
      <li>
        <b>5.0.0-dev.20221225</b> - 2022-12-25
      </li>
      <li>
        <b>5.0.0-dev.20221224</b> - 2022-12-24
      </li>
      <li>
        <b>5.0.0-dev.20221223</b> - 2022-12-23
      </li>
      <li>
        <b>5.0.0-dev.20221222</b> - 2022-12-22
      </li>
      <li>
        <b>5.0.0-dev.20221221</b> - 2022-12-21
      </li>
      <li>
        <b>5.0.0-dev.20221220</b> - 2022-12-20
      </li>
      <li>
        <b>5.0.0-dev.20221219</b> - 2022-12-19
      </li>
      <li>
        <b>5.0.0-dev.20221218</b> - 2022-12-18
      </li>
      <li>
        <b>5.0.0-dev.20221217</b> - 2022-12-17
      </li>
      <li>
        <b>5.0.0-dev.20221216</b> - 2022-12-16
      </li>
      <li>
        <b>5.0.0-dev.20221215</b> - 2022-12-15
      </li>
      <li>
        <b>5.0.0-dev.20221214</b> - 2022-12-14
      </li>
      <li>
        <b>5.0.0-dev.20221213</b> - 2022-12-13
      </li>
      <li>
        <b>5.0.0-dev.20221212</b> - 2022-12-12
      </li>
      <li>
        <b>5.0.0-dev.20221211</b> - 2022-12-11
      </li>
      <li>
        <b>5.0.0-dev.20221210</b> - 2022-12-10
      </li>
      <li>
        <b>5.0.0-dev.20221209</b> - 2022-12-09
      </li>
      <li>
        <b>5.0.0-dev.20221208</b> - 2022-12-08
      </li>
      <li>
        <b>5.0.0-dev.20221207</b> - 2022-12-07
      </li>
      <li>
        <b>5.0.0-dev.20221206</b> - 2022-12-06
      </li>
      <li>
        <b>5.0.0-dev.20221205</b> - 2022-12-05
      </li>
      <li>
        <b>5.0.0-dev.20221204</b> - 2022-12-04
      </li>
      <li>
        <b>5.0.0-dev.20221203</b> - 2022-12-03
      </li>
      <li>
        <b>5.0.0-dev.20221202</b> - 2022-12-02
      </li>
      <li>
        <b>5.0.0-dev.20221201</b> - 2022-12-01
      </li>
      <li>
        <b>5.0.0-dev.20221130</b> - 2022-11-30
      </li>
      <li>
        <b>5.0.0-dev.20221129</b> - 2022-11-29
      </li>
      <li>
        <b>5.0.0-dev.20221128</b> - 2022-11-28
      </li>
      <li>
        <b>5.0.0-dev.20221127</b> - 2022-11-27
      </li>
      <li>
        <b>5.0.0-dev.20221126</b> - 2022-11-26
      </li>
      <li>
        <b>5.0.0-dev.20221125</b> - 2022-11-25
      </li>
      <li>
        <b>5.0.0-dev.20221124</b> - 2022-11-24
      </li>
      <li>
        <b>5.0.0-dev.20221123</b> - 2022-11-23
      </li>
      <li>
        <b>5.0.0-dev.20221122</b> - 2022-11-22
      </li>
      <li>
        <b>5.0.0-dev.20221121</b> - 2022-11-21
      </li>
      <li>
        <b>5.0.0-dev.20221120</b> - 2022-11-20
      </li>
      <li>
        <b>5.0.0-dev.20221119</b> - 2022-11-19
      </li>
      <li>
        <b>5.0.0-dev.20221118</b> - 2022-11-18
      </li>
      <li>
        <b>5.0.0-dev.20221117</b> - 2022-11-17
      </li>
      <li>
        <b>5.0.0-dev.20221116</b> - 2022-11-16
      </li>
      <li>
        <b>5.0.0-dev.20221115</b> - 2022-11-15
      </li>
      <li>
        <b>5.0.0-dev.20221114</b> - 2022-11-14
      </li>
      <li>
        <b>5.0.0-dev.20221113</b> - 2022-11-13
      </li>
      <li>
        <b>5.0.0-dev.20221112</b> - 2022-11-12
      </li>
      <li>
        <b>5.0.0-dev.20221111</b> - 2022-11-11
      </li>
      <li>
        <b>5.0.0-dev.20221110</b> - 2022-11-10
      </li>
      <li>
        <b>5.0.0-dev.20221109</b> - 2022-11-09
      </li>
      <li>
        <b>5.0.0-dev.20221108</b> - 2022-11-08
      </li>
      <li>
        <b>5.0.0-dev.20221103</b> - 2022-11-03
      </li>
      <li>
        <b>5.0.0-dev.20221102</b> - 2022-11-02
      </li>
      <li>
        <b>5.0.0-dev.20221101</b> - 2022-11-01
      </li>
      <li>
        <b>5.0.0-beta</b> - 2023-01-26
      </li>
      <li>
        <b>4.9.5</b> - 2023-01-30
      </li>
    </ul>
from <a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/releases">typescript
GitHub release notes</a>
  </details>
</details>
<hr/>

**Note:** *You are seeing this because you or someone else with access
to this repository has authorized Snyk to open upgrade PRs.*

For more information: <img
src="https://api.segment.io/v1/pixel/track?data=eyJ3cml0ZUtleSI6InJyWmxZcEdHY2RyTHZsb0lYd0dUcVg4WkFRTnNCOUEwIiwiYW5vbnltb3VzSWQiOiI1YTM5N2E2MS1hMjhmLTQzYzctYjQ1ZS05ZDc5M2E5ZjM4MTEiLCJldmVudCI6IlBSIHZpZXdlZCIsInByb3BlcnRpZXMiOnsicHJJZCI6IjVhMzk3YTYxLWEyOGYtNDNjNy1iNDVlLTlkNzkzYTlmMzgxMSJ9fQ=="
width="0" height="0"/>

🧐 [View latest project
report](https://app.snyk.io/org/woodpile37/project/00499b6f-a68a-4427-bb51-4ce7ae484e12?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)

🛠 [Adjust upgrade PR
settings](https://app.snyk.io/org/woodpile37/project/00499b6f-a68a-4427-bb51-4ce7ae484e12/settings/integration?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)

🔕 [Ignore this dependency or unsubscribe from future upgrade
PRs](https://app.snyk.io/org/woodpile37/project/00499b6f-a68a-4427-bb51-4ce7ae484e12/settings/integration?pkg&#x3D;typescript&amp;utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr#auto-dep-upgrades)

<!---
(snyk:metadata:{"prId":"5a397a61-a28f-43c7-b45e-9d793a9f3811","prPublicId":"5a397a61-a28f-43c7-b45e-9d793a9f3811","dependencies":[{"name":"typescript","from":"4.9.5","to":"5.2.2"}],"packageManager":"npm","type":"auto","projectUrl":"https://app.snyk.io/org/woodpile37/project/00499b6f-a68a-4427-bb51-4ce7ae484e12?utm_source=github&utm_medium=referral&page=upgrade-pr","projectPublicId":"00499b6f-a68a-4427-bb51-4ce7ae484e12","env":"prod","prType":"upgrade","vulns":[],"issuesToFix":[],"upgrade":[],"upgradeInfo":{"versionsDiff":282,"publishedDate":"2023-08-24T16:38:15.233Z"},"templateVariants":[],"hasFixes":false,"isMajorUpgrade":true,"isBreakingChange":true,"priorityScoreList":[]})
--->
Woodpile37 added a commit to Woodpile37/EIPs that referenced this issue Nov 14, 2023
<p>This PR was automatically created by Snyk using the credentials of a
real user.</p><br /><h3>Snyk has created this PR to upgrade typescript
from 4.9.5 to 5.2.2.</h3>

:information_source: Keep your dependencies up-to-date. This makes it
easier to fix existing vulnerabilities and to more quickly identify and
fix newly disclosed vulnerabilities when they affect your project.
<hr/>

*Warning:* This is a major version upgrade, and may be a breaking
change.
- The recommended version is **282 versions** ahead of your current
version.
- The recommended version was released **2 months ago**, on 2023-08-24.


<details>
<summary><b>Release notes</b></summary>
<br/>
  <details>
    <summary>Package name: <b>typescript</b></summary>
    <ul>
      <li>
<b>5.2.2</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.2.2">2023-08-24</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-2/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.2.0%22+is%3Aclosed+">fixed
issues query for Typescript 5.2.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.2.1%22+is%3Aclosed+">fixed
issues query for Typescript 5.2.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.2.2%22+is%3Aclosed+">fixed
issues query for Typescript 5.2.2 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a
href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild"
rel="nofollow">NuGet package</a></li>
</ul>
      </li>
      <li>
        <b>5.2.1-rc</b> - 2023-08-09
      </li>
      <li>
        <b>5.2.0-dev.20230807</b> - 2023-08-07
      </li>
      <li>
        <b>5.2.0-dev.20230806</b> - 2023-08-06
      </li>
      <li>
        <b>5.2.0-dev.20230805</b> - 2023-08-05
      </li>
      <li>
        <b>5.2.0-dev.20230804</b> - 2023-08-04
      </li>
      <li>
        <b>5.2.0-dev.20230803</b> - 2023-08-03
      </li>
      <li>
        <b>5.2.0-dev.20230802</b> - 2023-08-02
      </li>
      <li>
        <b>5.2.0-dev.20230801</b> - 2023-08-01
      </li>
      <li>
        <b>5.2.0-dev.20230731</b> - 2023-07-31
      </li>
      <li>
        <b>5.2.0-dev.20230730</b> - 2023-07-30
      </li>
      <li>
        <b>5.2.0-dev.20230729</b> - 2023-07-29
      </li>
      <li>
        <b>5.2.0-dev.20230728</b> - 2023-07-28
      </li>
      <li>
        <b>5.2.0-dev.20230727</b> - 2023-07-27
      </li>
      <li>
        <b>5.2.0-dev.20230726</b> - 2023-07-26
      </li>
      <li>
        <b>5.2.0-dev.20230725</b> - 2023-07-25
      </li>
      <li>
        <b>5.2.0-dev.20230724</b> - 2023-07-24
      </li>
      <li>
        <b>5.2.0-dev.20230723</b> - 2023-07-23
      </li>
      <li>
        <b>5.2.0-dev.20230722</b> - 2023-07-22
      </li>
      <li>
        <b>5.2.0-dev.20230721</b> - 2023-07-21
      </li>
      <li>
        <b>5.2.0-dev.20230720</b> - 2023-07-20
      </li>
      <li>
        <b>5.2.0-dev.20230719</b> - 2023-07-19
      </li>
      <li>
        <b>5.2.0-dev.20230718</b> - 2023-07-18
      </li>
      <li>
        <b>5.2.0-dev.20230717</b> - 2023-07-17
      </li>
      <li>
        <b>5.2.0-dev.20230716</b> - 2023-07-16
      </li>
      <li>
        <b>5.2.0-dev.20230715</b> - 2023-07-15
      </li>
      <li>
        <b>5.2.0-dev.20230714</b> - 2023-07-14
      </li>
      <li>
        <b>5.2.0-dev.20230713</b> - 2023-07-13
      </li>
      <li>
        <b>5.2.0-dev.20230712</b> - 2023-07-12
      </li>
      <li>
        <b>5.2.0-dev.20230711</b> - 2023-07-11
      </li>
      <li>
        <b>5.2.0-dev.20230710</b> - 2023-07-10
      </li>
      <li>
        <b>5.2.0-dev.20230709</b> - 2023-07-09
      </li>
      <li>
        <b>5.2.0-dev.20230708</b> - 2023-07-08
      </li>
      <li>
        <b>5.2.0-dev.20230707</b> - 2023-07-07
      </li>
      <li>
        <b>5.2.0-dev.20230706</b> - 2023-07-06
      </li>
      <li>
        <b>5.2.0-dev.20230705</b> - 2023-07-05
      </li>
      <li>
        <b>5.2.0-dev.20230704</b> - 2023-07-04
      </li>
      <li>
        <b>5.2.0-dev.20230703</b> - 2023-07-03
      </li>
      <li>
        <b>5.2.0-dev.20230702</b> - 2023-07-02
      </li>
      <li>
        <b>5.2.0-dev.20230701</b> - 2023-07-01
      </li>
      <li>
        <b>5.2.0-dev.20230630</b> - 2023-06-30
      </li>
      <li>
        <b>5.2.0-dev.20230629</b> - 2023-06-29
      </li>
      <li>
        <b>5.2.0-dev.20230628</b> - 2023-06-28
      </li>
      <li>
        <b>5.2.0-dev.20230627</b> - 2023-06-27
      </li>
      <li>
        <b>5.2.0-dev.20230626</b> - 2023-06-26
      </li>
      <li>
        <b>5.2.0-dev.20230625</b> - 2023-06-25
      </li>
      <li>
        <b>5.2.0-dev.20230624</b> - 2023-06-24
      </li>
      <li>
        <b>5.2.0-dev.20230623</b> - 2023-06-23
      </li>
      <li>
        <b>5.2.0-dev.20230622</b> - 2023-06-22
      </li>
      <li>
        <b>5.2.0-dev.20230621</b> - 2023-06-21
      </li>
      <li>
        <b>5.2.0-dev.20230620</b> - 2023-06-20
      </li>
      <li>
        <b>5.2.0-dev.20230619</b> - 2023-06-19
      </li>
      <li>
        <b>5.2.0-dev.20230618</b> - 2023-06-18
      </li>
      <li>
        <b>5.2.0-dev.20230617</b> - 2023-06-17
      </li>
      <li>
        <b>5.2.0-dev.20230616</b> - 2023-06-16
      </li>
      <li>
        <b>5.2.0-dev.20230615</b> - 2023-06-15
      </li>
      <li>
        <b>5.2.0-dev.20230614</b> - 2023-06-14
      </li>
      <li>
        <b>5.2.0-dev.20230613</b> - 2023-06-13
      </li>
      <li>
        <b>5.2.0-dev.20230612</b> - 2023-06-12
      </li>
      <li>
        <b>5.2.0-dev.20230611</b> - 2023-06-11
      </li>
      <li>
        <b>5.2.0-dev.20230610</b> - 2023-06-10
      </li>
      <li>
        <b>5.2.0-dev.20230609</b> - 2023-06-09
      </li>
      <li>
        <b>5.2.0-dev.20230608</b> - 2023-06-08
      </li>
      <li>
        <b>5.2.0-dev.20230607</b> - 2023-06-07
      </li>
      <li>
        <b>5.2.0-dev.20230606</b> - 2023-06-06
      </li>
      <li>
        <b>5.2.0-dev.20230605</b> - 2023-06-05
      </li>
      <li>
        <b>5.2.0-dev.20230604</b> - 2023-06-04
      </li>
      <li>
        <b>5.2.0-dev.20230603</b> - 2023-06-03
      </li>
      <li>
        <b>5.2.0-dev.20230602</b> - 2023-06-02
      </li>
      <li>
        <b>5.2.0-dev.20230601</b> - 2023-06-01
      </li>
      <li>
        <b>5.2.0-dev.20230531</b> - 2023-05-31
      </li>
      <li>
        <b>5.2.0-dev.20230530</b> - 2023-05-30
      </li>
      <li>
        <b>5.2.0-dev.20230529</b> - 2023-05-29
      </li>
      <li>
        <b>5.2.0-dev.20230528</b> - 2023-05-28
      </li>
      <li>
        <b>5.2.0-dev.20230527</b> - 2023-05-27
      </li>
      <li>
        <b>5.2.0-dev.20230526</b> - 2023-05-26
      </li>
      <li>
        <b>5.2.0-dev.20230524</b> - 2023-05-24
      </li>
      <li>
        <b>5.2.0-dev.20230523</b> - 2023-05-23
      </li>
      <li>
        <b>5.2.0-dev.20230522</b> - 2023-05-22
      </li>
      <li>
        <b>5.2.0-dev.20230521</b> - 2023-05-21
      </li>
      <li>
        <b>5.2.0-dev.20230520</b> - 2023-05-20
      </li>
      <li>
        <b>5.2.0-dev.20230519</b> - 2023-05-19
      </li>
      <li>
        <b>5.2.0-dev.20230518</b> - 2023-05-18
      </li>
      <li>
        <b>5.2.0-dev.20230517</b> - 2023-05-17
      </li>
      <li>
        <b>5.2.0-dev.20230516</b> - 2023-05-16
      </li>
      <li>
        <b>5.2.0-beta</b> - 2023-06-30
      </li>
      <li>
<b>5.1.6</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.1.6">2023-06-28</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-1/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.0%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.1%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.2%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.2 (Stable)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.3%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.3 (Stable)</a>.</li>
<li>(5.1.4 <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/issues/53031#issuecomment-1610038922"
data-hovercard-type="issue"
data-hovercard-url="/microsoft/TypeScript/issues/53031/hovercard">intentionally
skipped</a>)</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.5%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.5 (Stable)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.6%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.6 (Stable)</a>.</li>
</ul>
<p>Downloads are available on <a
href="https://www.npmjs.com/package/typescript"
rel="nofollow">npm</a></p>
      </li>
      <li>
<b>5.1.5</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.1.5">2023-06-27</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-1/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.0%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.1%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.2%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.2 (Stable)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.3%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.3 (Stable)</a>.</li>
<li>(5.1.4 <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/issues/53031#issuecomment-1610038922"
data-hovercard-type="issue"
data-hovercard-url="/microsoft/TypeScript/issues/53031/hovercard">intentionally
skipped</a>)</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.5%22+is%3Aclosed+">fixed
issues query for Typescript v5.1.5 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a href="https://www.npmjs.com/package/typescript"
rel="nofollow">npm</a></li>
<li><a
href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild"
rel="nofollow">NuGet package</a></li>
</ul>
      </li>
      <li>
<b>5.1.3</b> - <a
href="https://snyk.io/redirect/github/microsoft/TypeScript/releases/tag/v5.1.3">2023-06-01</a></br><p>For
release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-1/"
rel="nofollow">release announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.0%22+is%3Aclosed+">fixed
issues query for Typescript 5.1.0 (Beta)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.1%22+is%3Aclosed+">fixed
issues query for Typescript 5.1.1 (RC)</a>.</li>
<li><a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.1.3%22+is%3Aclosed+">fixed
issues query for Typescript 5.1.3 (Stable)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a
href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild"
rel="nofollow">NuGet package</a></li>
</ul>
      </li>
      <li>
        <b>5.1.1-rc</b> - 2023-05-18
      </li>
      <li>
        <b>5.1.0-dev.20230515</b> - 2023-05-15
      </li>
      <li>
        <b>5.1.0-dev.20230514</b> - 2023-05-14
      </li>
      <li>
        <b>5.1.0-dev.20230513</b> - 2023-05-13
      </li>
      <li>
        <b>5.1.0-dev.20230512</b> - 2023-05-12
      </li>
      <li>
        <b>5.1.0-dev.20230511</b> - 2023-05-11
      </li>
      <li>
        <b>5.1.0-dev.20230510</b> - 2023-05-10
      </li>
      <li>
        <b>5.1.0-dev.20230509</b> - 2023-05-09
      </li>
      <li>
        <b>5.1.0-dev.20230508</b> - 2023-05-08
      </li>
      <li>
        <b>5.1.0-dev.20230507</b> - 2023-05-07
      </li>
      <li>
        <b>5.1.0-dev.20230506</b> - 2023-05-06
      </li>
      <li>
        <b>5.1.0-dev.20230502</b> - 2023-05-02
      </li>
      <li>
        <b>5.1.0-dev.20230501</b> - 2023-05-01
      </li>
      <li>
        <b>5.1.0-dev.20230430</b> - 2023-04-30
      </li>
      <li>
        <b>5.1.0-dev.20230429</b> - 2023-04-29
      </li>
      <li>
        <b>5.1.0-dev.20230428</b> - 2023-04-28
      </li>
      <li>
        <b>5.1.0-dev.20230427</b> - 2023-04-27
      </li>
      <li>
        <b>5.1.0-dev.20230426</b> - 2023-04-26
      </li>
      <li>
        <b>5.1.0-dev.20230425</b> - 2023-04-25
      </li>
      <li>
        <b>5.1.0-dev.20230424</b> - 2023-04-24
      </li>
      <li>
        <b>5.1.0-dev.20230423</b> - 2023-04-23
      </li>
      <li>
        <b>5.1.0-dev.20230422</b> - 2023-04-22
      </li>
      <li>
        <b>5.1.0-dev.20230421</b> - 2023-04-21
      </li>
      <li>
        <b>5.1.0-dev.20230420</b> - 2023-04-20
      </li>
      <li>
        <b>5.1.0-dev.20230419</b> - 2023-04-19
      </li>
      <li>
        <b>5.1.0-dev.20230418</b> - 2023-04-18
      </li>
      <li>
        <b>5.1.0-dev.20230417</b> - 2023-04-17
      </li>
      <li>
        <b>5.1.0-dev.20230416</b> - 2023-04-16
      </li>
      <li>
        <b>5.1.0-dev.20230415</b> - 2023-04-15
      </li>
      <li>
        <b>5.1.0-dev.20230414</b> - 2023-04-14
      </li>
      <li>
        <b>5.1.0-dev.20230413</b> - 2023-04-13
      </li>
      <li>
        <b>5.1.0-dev.20230412</b> - 2023-04-12
      </li>
      <li>
        <b>5.1.0-dev.20230411</b> - 2023-04-11
      </li>
      <li>
        <b>5.1.0-dev.20230410</b> - 2023-04-10
      </li>
      <li>
        <b>5.1.0-dev.20230409</b> - 2023-04-09
      </li>
      <li>
        <b>5.1.0-dev.20230408</b> - 2023-04-08
      </li>
      <li>
        <b>5.1.0-dev.20230407</b> - 2023-04-07
      </li>
      <li>
        <b>5.1.0-dev.20230406</b> - 2023-04-06
      </li>
      <li>
        <b>5.1.0-dev.20230405</b> - 2023-04-05
      </li>
      <li>
        <b>5.1.0-dev.20230404</b> - 2023-04-04
      </li>
      <li>
        <b>5.1.0-dev.20230403</b> - 2023-04-03
      </li>
      <li>
        <b>5.1.0-dev.20230402</b> - 2023-04-02
      </li>
      <li>
        <b>5.1.0-dev.20230401</b> - 2023-04-01
      </li>
      <li>
        <b>5.1.0-dev.20230331</b> - 2023-03-31
      </li>
      <li>
        <b>5.1.0-dev.20230330</b> - 2023-03-30
      </li>
      <li>
        <b>5.1.0-dev.20230329</b> - 2023-03-29
      </li>
      <li>
        <b>5.1.0-dev.20230328</b> - 2023-03-28
      </li>
      <li>
        <b>5.1.0-dev.20230327</b> - 2023-03-27
      </li>
      <li>
        <b>5.1.0-dev.20230326</b> - 2023-03-26
      </li>
      <li>
        <b>5.1.0-dev.20230325</b> - 2023-03-25
      </li>
      <li>
        <b>5.1.0-dev.20230324</b> - 2023-03-24
      </li>
      <li>
        <b>5.1.0-dev.20230323</b> - 2023-03-23
      </li>
      <li>
        <b>5.1.0-dev.20230322</b> - 2023-03-22
      </li>
      <li>
        <b>5.1.0-dev.20230321</b> - 2023-03-21
      </li>
      <li>
        <b>5.1.0-dev.20230320</b> - 2023-03-20
      </li>
      <li>
        <b>5.1.0-dev.20230319</b> - 2023-03-19
      </li>
      <li>
        <b>5.1.0-dev.20230318</b> - 2023-03-18
      </li>
      <li>
        <b>5.1.0-dev.20230317</b> - 2023-03-17
      </li>
      <li>
        <b>5.1.0-dev.20230316</b> - 2023-03-16
      </li>
      <li>
        <b>5.1.0-dev.20230315</b> - 2023-03-15
      </li>
      <li>
        <b>5.1.0-dev.20230313</b> - 2023-03-13
      </li>
      <li>
        <b>5.1.0-dev.20230312</b> - 2023-03-12
      </li>
      <li>
        <b>5.1.0-dev.20230311</b> - 2023-03-11
      </li>
      <li>
        <b>5.1.0-dev.20230310</b> - 2023-03-10
      </li>
      <li>
        <b>5.1.0-dev.20230309</b> - 2023-03-09
      </li>
      <li>
        <b>5.1.0-dev.20230308</b> - 2023-03-08
      </li>
      <li>
        <b>5.1.0-dev.20230307</b> - 2023-03-07
      </li>
      <li>
        <b>5.1.0-dev.20230306</b> - 2023-03-06
      </li>
      <li>
        <b>5.1.0-dev.20230305</b> - 2023-03-05
      </li>
      <li>
        <b>5.1.0-dev.20230304</b> - 2023-03-04
      </li>
      <li>
        <b>5.1.0-dev.20230303</b> - 2023-03-03
      </li>
      <li>
        <b>5.1.0-dev.20230302</b> - 2023-03-02
      </li>
      <li>
        <b>5.1.0-dev.20230301</b> - 2023-03-01
      </li>
      <li>
        <b>5.1.0-dev.20230227</b> - 2023-02-27
      </li>
      <li>
        <b>5.1.0-beta</b> - 2023-04-18
      </li>
      <li>
        <b>5.0.4</b> - 2023-04-07
      </li>
      <li>
        <b>5.0.3</b> - 2023-03-30
      </li>
      <li>
        <b>5.0.2</b> - 2023-03-16
      </li>
      <li>
        <b>5.0.1-rc</b> - 2023-03-01
      </li>
      <li>
        <b>5.0.0-dev.20230226</b> - 2023-02-26
      </li>
      <li>
        <b>5.0.0-dev.20230225</b> - 2023-02-25
      </li>
      <li>
        <b>5.0.0-dev.20230224</b> - 2023-02-24
      </li>
      <li>
        <b>5.0.0-dev.20230223</b> - 2023-02-23
      </li>
      <li>
        <b>5.0.0-dev.20230222</b> - 2023-02-22
      </li>
      <li>
        <b>5.0.0-dev.20230221</b> - 2023-02-21
      </li>
      <li>
        <b>5.0.0-dev.20230220</b> - 2023-02-20
      </li>
      <li>
        <b>5.0.0-dev.20230219</b> - 2023-02-19
      </li>
      <li>
        <b>5.0.0-dev.20230218</b> - 2023-02-18
      </li>
      <li>
        <b>5.0.0-dev.20230217</b> - 2023-02-17
      </li>
      <li>
        <b>5.0.0-dev.20230216</b> - 2023-02-16
      </li>
      <li>
        <b>5.0.0-dev.20230215</b> - 2023-02-15
      </li>
      <li>
        <b>5.0.0-dev.20230214</b> - 2023-02-14
      </li>
      <li>
        <b>5.0.0-dev.20230213</b> - 2023-02-13
      </li>
      <li>
        <b>5.0.0-dev.20230212</b> - 2023-02-12
      </li>
      <li>
        <b>5.0.0-dev.20230211</b> - 2023-02-11
      </li>
      <li>
        <b>5.0.0-dev.20230210</b> - 2023-02-10
      </li>
      <li>
        <b>5.0.0-dev.20230209</b> - 2023-02-09
      </li>
      <li>
        <b>5.0.0-dev.20230208</b> - 2023-02-08
      </li>
      <li>
        <b>5.0.0-dev.20230207</b> - 2023-02-07
      </li>
      <li>
        <b>5.0.0-dev.20230206</b> - 2023-02-06
      </li>
      <li>
        <b>5.0.0-dev.20230205</b> - 2023-02-05
      </li>
      <li>
        <b>5.0.0-dev.20230204</b> - 2023-02-04
      </li>
      <li>
        <b>5.0.0-dev.20230203</b> - 2023-02-03
      </li>
      <li>
        <b>5.0.0-dev.20230202</b> - 2023-02-02
      </li>
      <li>
        <b>5.0.0-dev.20230201</b> - 2023-02-01
      </li>
      <li>
        <b>5.0.0-dev.20230131</b> - 2023-01-31
      </li>
      <li>
        <b>5.0.0-dev.20230130</b> - 2023-01-30
      </li>
      <li>
        <b>5.0.0-dev.20230129</b> - 2023-01-29
      </li>
      <li>
        <b>5.0.0-dev.20230128</b> - 2023-01-28
      </li>
      <li>
        <b>5.0.0-dev.20230127</b> - 2023-01-27
      </li>
      <li>
        <b>5.0.0-dev.20230126</b> - 2023-01-26
      </li>
      <li>
        <b>5.0.0-dev.20230125</b> - 2023-01-25
      </li>
      <li>
        <b>5.0.0-dev.20230123</b> - 2023-01-23
      </li>
      <li>
        <b>5.0.0-dev.20230122</b> - 2023-01-22
      </li>
      <li>
        <b>5.0.0-dev.20230121</b> - 2023-01-21
      </li>
      <li>
        <b>5.0.0-dev.20230120</b> - 2023-01-20
      </li>
      <li>
        <b>5.0.0-dev.20230119</b> - 2023-01-19
      </li>
      <li>
        <b>5.0.0-dev.20230118</b> - 2023-01-18
      </li>
      <li>
        <b>5.0.0-dev.20230117</b> - 2023-01-17
      </li>
      <li>
        <b>5.0.0-dev.20230116</b> - 2023-01-16
      </li>
      <li>
        <b>5.0.0-dev.20230115</b> - 2023-01-15
      </li>
      <li>
        <b>5.0.0-dev.20230114</b> - 2023-01-14
      </li>
      <li>
        <b>5.0.0-dev.20230113</b> - 2023-01-13
      </li>
      <li>
        <b>5.0.0-dev.20230112</b> - 2023-01-12
      </li>
      <li>
        <b>5.0.0-dev.20230111</b> - 2023-01-11
      </li>
      <li>
        <b>5.0.0-dev.20230110</b> - 2023-01-10
      </li>
      <li>
        <b>5.0.0-dev.20230109</b> - 2023-01-09
      </li>
      <li>
        <b>5.0.0-dev.20230108</b> - 2023-01-08
      </li>
      <li>
        <b>5.0.0-dev.20230107</b> - 2023-01-07
      </li>
      <li>
        <b>5.0.0-dev.20230106</b> - 2023-01-06
      </li>
      <li>
        <b>5.0.0-dev.20230105</b> - 2023-01-05
      </li>
      <li>
        <b>5.0.0-dev.20230104</b> - 2023-01-04
      </li>
      <li>
        <b>5.0.0-dev.20230103</b> - 2023-01-03
      </li>
      <li>
        <b>5.0.0-dev.20230102</b> - 2023-01-02
      </li>
      <li>
        <b>5.0.0-dev.20230101</b> - 2023-01-01
      </li>
      <li>
        <b>5.0.0-dev.20221231</b> - 2022-12-31
      </li>
      <li>
        <b>5.0.0-dev.20221230</b> - 2022-12-30
      </li>
      <li>
        <b>5.0.0-dev.20221229</b> - 2022-12-29
      </li>
      <li>
        <b>5.0.0-dev.20221228</b> - 2022-12-28
      </li>
      <li>
        <b>5.0.0-dev.20221227</b> - 2022-12-27
      </li>
      <li>
        <b>5.0.0-dev.20221226</b> - 2022-12-26
      </li>
      <li>
        <b>5.0.0-dev.20221225</b> - 2022-12-25
      </li>
      <li>
        <b>5.0.0-dev.20221224</b> - 2022-12-24
      </li>
      <li>
        <b>5.0.0-dev.20221223</b> - 2022-12-23
      </li>
      <li>
        <b>5.0.0-dev.20221222</b> - 2022-12-22
      </li>
      <li>
        <b>5.0.0-dev.20221221</b> - 2022-12-21
      </li>
      <li>
        <b>5.0.0-dev.20221220</b> - 2022-12-20
      </li>
      <li>
        <b>5.0.0-dev.20221219</b> - 2022-12-19
      </li>
      <li>
        <b>5.0.0-dev.20221218</b> - 2022-12-18
      </li>
      <li>
        <b>5.0.0-dev.20221217</b> - 2022-12-17
      </li>
      <li>
        <b>5.0.0-dev.20221216</b> - 2022-12-16
      </li>
      <li>
        <b>5.0.0-dev.20221215</b> - 2022-12-15
      </li>
      <li>
        <b>5.0.0-dev.20221214</b> - 2022-12-14
      </li>
      <li>
        <b>5.0.0-dev.20221213</b> - 2022-12-13
      </li>
      <li>
        <b>5.0.0-dev.20221212</b> - 2022-12-12
      </li>
      <li>
        <b>5.0.0-dev.20221211</b> - 2022-12-11
      </li>
      <li>
        <b>5.0.0-dev.20221210</b> - 2022-12-10
      </li>
      <li>
        <b>5.0.0-dev.20221209</b> - 2022-12-09
      </li>
      <li>
        <b>5.0.0-dev.20221208</b> - 2022-12-08
      </li>
      <li>
        <b>5.0.0-dev.20221207</b> - 2022-12-07
      </li>
      <li>
        <b>5.0.0-dev.20221206</b> - 2022-12-06
      </li>
      <li>
        <b>5.0.0-dev.20221205</b> - 2022-12-05
      </li>
      <li>
        <b>5.0.0-dev.20221204</b> - 2022-12-04
      </li>
      <li>
        <b>5.0.0-dev.20221203</b> - 2022-12-03
      </li>
      <li>
        <b>5.0.0-dev.20221202</b> - 2022-12-02
      </li>
      <li>
        <b>5.0.0-dev.20221201</b> - 2022-12-01
      </li>
      <li>
        <b>5.0.0-dev.20221130</b> - 2022-11-30
      </li>
      <li>
        <b>5.0.0-dev.20221129</b> - 2022-11-29
      </li>
      <li>
        <b>5.0.0-dev.20221128</b> - 2022-11-28
      </li>
      <li>
        <b>5.0.0-dev.20221127</b> - 2022-11-27
      </li>
      <li>
        <b>5.0.0-dev.20221126</b> - 2022-11-26
      </li>
      <li>
        <b>5.0.0-dev.20221125</b> - 2022-11-25
      </li>
      <li>
        <b>5.0.0-dev.20221124</b> - 2022-11-24
      </li>
      <li>
        <b>5.0.0-dev.20221123</b> - 2022-11-23
      </li>
      <li>
        <b>5.0.0-dev.20221122</b> - 2022-11-22
      </li>
      <li>
        <b>5.0.0-dev.20221121</b> - 2022-11-21
      </li>
      <li>
        <b>5.0.0-dev.20221120</b> - 2022-11-20
      </li>
      <li>
        <b>5.0.0-dev.20221119</b> - 2022-11-19
      </li>
      <li>
        <b>5.0.0-dev.20221118</b> - 2022-11-18
      </li>
      <li>
        <b>5.0.0-dev.20221117</b> - 2022-11-17
      </li>
      <li>
        <b>5.0.0-dev.20221116</b> - 2022-11-16
      </li>
      <li>
        <b>5.0.0-dev.20221115</b> - 2022-11-15
      </li>
      <li>
        <b>5.0.0-dev.20221114</b> - 2022-11-14
      </li>
      <li>
        <b>5.0.0-dev.20221113</b> - 2022-11-13
      </li>
      <li>
        <b>5.0.0-dev.20221112</b> - 2022-11-12
      </li>
      <li>
        <b>5.0.0-dev.20221111</b> - 2022-11-11
      </li>
      <li>
        <b>5.0.0-dev.20221110</b> - 2022-11-10
      </li>
      <li>
        <b>5.0.0-dev.20221109</b> - 2022-11-09
      </li>
      <li>
        <b>5.0.0-dev.20221108</b> - 2022-11-08
      </li>
      <li>
        <b>5.0.0-dev.20221103</b> - 2022-11-03
      </li>
      <li>
        <b>5.0.0-dev.20221102</b> - 2022-11-02
      </li>
      <li>
        <b>5.0.0-dev.20221101</b> - 2022-11-01
      </li>
      <li>
        <b>5.0.0-beta</b> - 2023-01-26
      </li>
      <li>
        <b>4.9.5</b> - 2023-01-30
      </li>
    </ul>
from <a
href="https://snyk.io/redirect/github/Microsoft/TypeScript/releases">typescript
GitHub release notes</a>
  </details>
</details>
<hr/>

**Note:** *You are seeing this because you or someone else with access
to this repository has authorized Snyk to open upgrade PRs.*

For more information: <img
src="https://api.segment.io/v1/pixel/track?data=eyJ3cml0ZUtleSI6InJyWmxZcEdHY2RyTHZsb0lYd0dUcVg4WkFRTnNCOUEwIiwiYW5vbnltb3VzSWQiOiIwNjYzZjJmMS01ZTdmLTRlYTAtYmVmZi1kNmNlMGZiYjcyY2IiLCJldmVudCI6IlBSIHZpZXdlZCIsInByb3BlcnRpZXMiOnsicHJJZCI6IjA2NjNmMmYxLTVlN2YtNGVhMC1iZWZmLWQ2Y2UwZmJiNzJjYiJ9fQ=="
width="0" height="0"/>

🧐 [View latest project
report](https://app.snyk.io/org/woodpile37/project/f9f1a542-e77b-401b-9d83-577aad2ba722?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)

🛠 [Adjust upgrade PR
settings](https://app.snyk.io/org/woodpile37/project/f9f1a542-e77b-401b-9d83-577aad2ba722/settings/integration?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)

🔕 [Ignore this dependency or unsubscribe from future upgrade
PRs](https://app.snyk.io/org/woodpile37/project/f9f1a542-e77b-401b-9d83-577aad2ba722/settings/integration?pkg&#x3D;typescript&amp;utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr#auto-dep-upgrades)

<!---
(snyk:metadata:{"prId":"0663f2f1-5e7f-4ea0-beff-d6ce0fbb72cb","prPublicId":"0663f2f1-5e7f-4ea0-beff-d6ce0fbb72cb","dependencies":[{"name":"typescript","from":"4.9.5","to":"5.2.2"}],"packageManager":"npm","type":"auto","projectUrl":"https://app.snyk.io/org/woodpile37/project/f9f1a542-e77b-401b-9d83-577aad2ba722?utm_source=github&utm_medium=referral&page=upgrade-pr","projectPublicId":"f9f1a542-e77b-401b-9d83-577aad2ba722","env":"prod","prType":"upgrade","vulns":[],"issuesToFix":[],"upgrade":[],"upgradeInfo":{"versionsDiff":282,"publishedDate":"2023-08-24T16:38:15.233Z"},"templateVariants":[],"hasFixes":false,"isMajorUpgrade":true,"isBreakingChange":true,"priorityScoreList":[]})
--->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Planning Iteration plans and roadmapping
Projects
None yet
Development

No branches or pull requests