Open
Conversation
- Add full Java validator compilation pipeline (Java → PIR → UPLC → Blueprint) with library source support and stdlib auto-discovery - Add Java validator test execution with param/datum/redeemer encoding and ScriptContext building via ScenarioContextBuilder - Add editor intelligence: Java autocomplete, method parameter hints (SignatureHelpProvider), hover docs, and go-to-definition for user-defined records/sealed interfaces - Add expression evaluation endpoint (/api/eval) with PlaygroundEvaluator - Add Java example validators (SimpleSpending, VestingValidator, MintingPolicy) - Add dual-tab editor (Validator / Library) with library source integration - Disable JRL language support from playground (Java-only) - Remove JrlCompiler dependency from all controllers - Remove transpile endpoint and JRL examples - Add production hardening: - Input validation with max-length checks (InputValidator) - Error message sanitization (no stack trace leaks to client) - Rate limiter X-Forwarded-For trust only behind proxy (JULC_BEHIND_PROXY) - Configurable CORS origins (JULC_CORS_ORIGINS env var) - Path traversal guard for native image static file serving - Request logging middleware with compilation duration - Enhanced /api/health endpoint with sandbox availability - AbortController for frontend auto-check race conditions - Frontend error states for failed API calls (examples, scenarios) - Proper 408/429 error feedback in UI - Cache LibrarySourceResolver.scanClasspathSources() at startup - Fix RFC 1918 range check in RateLimiter (172.16-31 not 172.16-39) - Fix editor tab subscription leak (move cleanup to onDestroy) - Raise MAX_REQUEST_SIZE from 64KB to 256KB - Update env var prefix from JRL_ to JULC_ (with JRL_ fallback) - Update HTML title to "JuLC Playground" - 26 backend tests (all passing): controllers, sandbox, rate limiter Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…er to JulcPlaygroundServer
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.
Summary
What's New
Java Compilation Pipeline
Editor Intelligence
Production Hardening
Compiler: Implicit Stdlib Imports