[ci] release - #535
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
June 26, 2026 15:53
eee7329 to
0591322
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@marko/language-server@3.2.1
Patch Changes
#531
914dddaThanks @DylanPiercey! - Complete the tag name inside a shorthand import string (egimport Foo from "<foo>") the same way an open tag name is completed: suggestions filter and sort on the bare tag name, are prioritized above TypeScript's module-specifier completions, and only add the closing>when it isn't already present.#532
2b7a1baThanks @DylanPiercey! - Stop the TypeScript Server plugin from interfering with other plugins (such as Vue's) in projects that don't use Marko. Because the plugin is injected into the editor's shared TypeScript Server for every workspace, it previously patched the shared language service host even where no Marko files exist, which broke diagnostics, go-to-definition, and rename in.vuefiles. It now stays inert unless the project actually uses Marko.Updated dependencies [
1091b69,6450d18]:@marko/language-tools@2.6.1
Patch Changes
#530
1091b69Thanks @DylanPiercey! - Name the default export of auto-discoverable Marko components (files under acomponents/tagsdirectory) after the tag, so auto-imports readimport MyButton from "..."instead of TypeScript's file-derivedMyButtonMarko(andFooinstead ofindexforfoo/index.marko).#534
6450d18Thanks @DylanPiercey! - Merge a tag's shorthand class names (.foo) with a literalclassattribute (eg<button.btn class="foo"/>) the same way Marko does at compile time, instead of emitting twoclasskeys. This removes the spurious "An object literal cannot have multiple properties with the same name" TypeScript error while still type-checking theclassattribute value against the tag'sclasstype.@marko/ts-plugin@3.1.4
Patch Changes
2b7a1baThanks @DylanPiercey! - Stop the TypeScript Server plugin from interfering with other plugins (such as Vue's) in projects that don't use Marko. Because the plugin is injected into the editor's shared TypeScript Server for every workspace, it previously patched the shared language service host even where no Marko files exist, which broke diagnostics, go-to-definition, and rename in.vuefiles. It now stays inert unless the project actually uses Marko.marko-vscode@3.1.1
Patch Changes
8ee8644Thanks @DylanPiercey! - Add a "Marko: Restart Marko and TS Servers" command, and list the built-in "TypeScript: Reload Project" command in the Command Palette for.markofiles.