107 wires and counting
$ status: archived — this briefing has stopped; the archive stays readable. browse live briefings →

$ status

wire 2026-07-27
stories 10

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

SPRING FIXES STALE PROPERTY ACCESS BUG, ELASTICSEARCH CUTS JSON OVERHEAD

By RepoJournal · Filed · About Spring · Composed from the cited sources · methodology

Spring Framework plugged a SpEL evaluation context bug that could serve stale cached properties between expression evaluations, while Spring Data Elasticsearch eliminated wasteful intermediate JSON serialization in search hit field conversion.

Sam Brannen landed a critical fix in Spring Framework addressing a PropertyAccessor caching issue in the SpEL Indexer [1]. The bug allowed cached accessors to persist across EvaluationContext changes, potentially serving stale data if the same expression ran against different contexts. The fix aligns the Indexer with existing safety checks in PropertyOrFieldReference, closing a gap in expression evaluation consistency. Over on Spring Data Elasticsearch, 014-code optimized DocumentAdapters by converting JSON-P values directly to Java objects instead of rendering to intermediate JSON strings and parsing them back [2]. This eliminates the round-trip overhead while keeping parser-backed fields as regular Map, List, String, Number, Boolean, and null values without leaking JsonValue implementations [3]. Spring Boot completed documentation cleanup around the deprecated HttpMessageConverters class [4] [5], updating multiple reference pages to point users toward Spring Framework's HttpMessageConverters as the replacement path.

Action items

References

  1. [1] Do not reuse cached PropertyAccessor in Indexer without checking EvaluationContext ↗ spring-projects/spring-framework
  2. [2] Optimize DocumentAdapters field conversion ↗ spring-projects/spring-data-elasticsearch
  3. [3] Optimize DocumentAdapters field conversion. ↗ spring-projects/spring-data-elasticsearch
  4. [4] Merge pull request #51124 from MacAlsandair ↗ spring-projects/spring-boot
  5. [5] Document alternative to deprecated HttpMessageConverters ↗ spring-projects/spring-boot

Quick answers

What shipped in Spring on July 27, 2026?
Spring Framework plugged a SpEL evaluation context bug that could serve stale cached properties between expression evaluations, while Spring Data Elasticsearch eliminated wasteful intermediate JSON serialization in search hit field conversion. In total, 8 commits and 2 pull requests landed.
Who contributed to Spring on July 27, 2026?
4 developers shipped this update, including 014-code, Sam Brannen, Stéphane Nicoll, and Alexander Makarov.
What were the notable Spring updates?
Do not reuse cached PropertyAccessor in Indexer without checking EvaluationContext, Optimize DocumentAdapters field conversion, and Optimize DocumentAdapters field conversion.