MCPcopy Create free account
hub / github.com/apache/solr / ChangeEntry

Class ChangeEntry

dev-tools/scripts/changes2logchange.py:159–173  ·  view source on GitHub ↗

Represents a single changelog entry.

Source from the content-addressed store, hash-verified

157
158@dataclass
159class ChangeEntry:
160 """Represents a single changelog entry."""
161 title: str
162 change_type: str
163 authors: List[Author] = field(default_factory=list)
164 links: List[Link] = field(default_factory=list)
165
166 def to_dict(self):
167 """Convert to dictionary for YAML serialization."""
168 return {
169 "title": self.title,
170 "type": self.change_type,
171 "authors": [author.to_dict() for author in self.authors],
172 "links": [link.to_dict() for link in self.links],
173 }
174
175
176class AuthorParser:

Callers 2

_parse_single_entryMethod · 0.70
parse_entry_lineMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…