Skip to content

chore(deps): update dependency ts-morph to v28 - #31385

Merged
ShaneK merged 1 commit into
mainfrom
renovate/ts-morph-28.x
Aug 20, 2026
Merged

chore(deps): update dependency ts-morph to v28#31385
ShaneK merged 1 commit into
mainfrom
renovate/ts-morph-28.x

Conversation

@renovate

@renovate renovate Bot commented Aug 20, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
ts-morph ^25.0.0^28.0.0 age confidence

Release Notes

dsherret/ts-morph (ts-morph)

v28.0.0

Compare Source

What's Changed

Note there are some breaking changes due to TypeScript 6.0. Read more here: https://devblogs.microsoft.com/typescript/announcing-typescript-6-0/

As part of this release, structures can now be printed to a string using the printStructure function.

import { printStructure, StructureKind } from "ts-morph";

const code = printStructure({
  kind: StructureKind.Class,
  name: "MyClass",
  isExported: true,
  properties: [{ name: "myProp", type: "string" }],
  methods: [{
    name: "myMethod",
    parameters: [{ name: "param", type: "number" }],
    returnType: "void",
  }],
});
console.log(code);

Outputs:

export class MyClass {
  myProp: string;

  myMethod(param: number): void {
  }
}

New Contributors

Full Changelog: dsherret/ts-morph@27.0.2...28.0.0

v27.0.2

Compare Source

What's Changed

  • Fixes the npm publish in order to get the fixes in from 27.0.1

Full Changelog: dsherret/ts-morph@27.0.1...27.0.2

v27.0.0

Compare Source

What's Changed

New Contributors

Full Changelog: dsherret/ts-morph@26.0.0...27.0.0

v26.0.0

Compare Source

What's Changed

  • feat: TypeScript 5.8 #​1628
  • fix: Improve comma appending logic to handle nested template literals correctly by @​kingston in #​1630
  • fix(bootstrap): ignore dist-deno folder for npm publish #​1610
  • feat: npm publish with provenance #​1634

New Contributors

Full Changelog: dsherret/ts-morph@25.0.1...26.0.0


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "every weekday before 11am"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Never, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot requested a review from a team as a code owner August 20, 2026 08:26
@renovate
renovate Bot requested a review from OS-jacobbell August 20, 2026 08:26
@vercel

vercel Bot commented Aug 20, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
ionic-framework Ready Ready Preview Aug 20, 2026 8:32am

Request Review

@ShaneK
ShaneK added this pull request to the merge queue Aug 20, 2026
Merged via the queue into main with commit 461fa1b Aug 20, 2026
97 of 99 checks passed
@ShaneK
ShaneK deleted the renovate/ts-morph-28.x branch August 20, 2026 15:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant