release: 2026-06-23#772
Merged
Merged
Conversation
TypeAnnotation could surface JET's internal `AbstractBindingState` for
inferred `const` globals in script-mode files. In loop bodies, that also
made downstream annotations collapse to `Union{}` instead of using the
global's inferred binding type.
Teach `ASTTypeAnnotator` to unwrap `AbstractBindingState` loads to the
stored binding type while preserving maybe-undefined effects. Static
method-signature evaluation also unwraps only binding states that carry
a `Core.Const` value, because that path needs an actual runtime value.
Added a focused `test_TypeAnnotation` regression for a
virtualprocess-style context module containing an
`AbstractBindingState`, and updated `CHANGELOG.md`.
Co-Authored-By: GPT-5.5 <noreply@openai.com>
Fix the editor configuration examples so they can be copied directly. The VSCode and Zed snippets include comments, while the Neovim snippet accidentally used JSON array syntax in a Lua table. Mark the commented settings examples as `jsonc` and replace the Neovim `patterns = [...]` form with Lua table braces. No tests were run because this only updates documentation examples.
…#771) Type annotations for parametric method signatures could leave free `TypeVar`s in slot argument types. In code such as `f(a::Vector{T}) where {T}`, calls like `length(a)` then inferred as `Any` instead of `Int`, causing the type-annotated view to regress. Preserve `TypeVar` identity while statically evaluating lowered signature svecs, so `argtypes` and `sparams` share the same objects. Signature types are then closed with the shortest applicable `where`-order sparam prefix, matching the unspecialized `code_typed` slot view while avoiding free `TypeVar`s. Adds regression coverage for `Vector{T}`, dependent bounds, diagonal signatures, and mixed bare/nested static-parameter signatures. Fixes #768. Co-authored-by: GPT-5.5 <noreply@openai.com>
Claude Code does not support `.agents/skills`/`AGENTS.md` natively, unfortunately.
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 releases version
2026-06-23.Checklist
release / Test JETLS.jl with release environmentrelease / test_app / Test jetls serverelease / test_app / Test jetls checkrelease / test_app / Test jetls schemarelease / check_schemas / Check schemas are up to datePost-merge
releases/2026-06-23branch can be deleted after merging