Releases: jcputney/magika-java
Releases · jcputney/magika-java
v0.3.0
Added
- First artifact published to Maven Central as
dev.jcputney:magika-java:0.3.0. - GPG-signed jar / sources / javadoc artifacts (REL-10).
- CycloneDX SBOM attached to the published bundle in JSON + XML format, schema 1.6 (REL-13).
- Sonatype Central Portal publishing pipeline via
central-publishing-maven-plugin0.10.0 (REL-11). maven-release-plugin3.3.1 tag + version-bump flow, triggered manually via therelease.yml
GitHub Actions workflow (workflow_dispatch) gated by a 3-OS verify matrix (REL-12).- Snapshot publishing to GitHub Packages on every push to
main, GPG-signed for signature
continuity with the Central artifacts. README.mdMaven Central badge + Maven/Gradle install snippet (REL-16).
Changed
- GitHub Actions workflow versions bumped to
actions/checkout@v6andactions/setup-java@v5
to match the release pipeline and align with the Node 24 runner runtime.
Notes
- This is the first artifact published to Maven Central. Pre-v0.3 versions (v0.1, v0.2)
shipped as local-install only and are captured in git tag annotations (v0.1,v0.2)
and in the.planning/milestones/archives. No## [0.1.0]/## [0.2.0]sections
appear here by design — seeREADME.md## Breaking changes in v0.2for the v0.1→v0.2
source-break that landed in pre-Central history.
Commit-level Changes
New Features
- refactor(api): rename MagikaPrediction.label to type; drop pre-release breaking-changes note
- Increase builder build time limit to 100ms
- Add Dependabot config for Maven and Actions
- ci(release): add pre-flight job — fast bash checks before 3-OS verify matrix
- docs(readme): expand Quickstart into a full Getting started section
- test(05-03): add CentralPublishVerificationTest — Layer (d) post-publish probe
- test(05-03): add ReleasePreFlightTest — Layer (b) v0.3.0 publish gate
- ci(05-01): add snapshot.yml — workflow_call verify + signed deploy on push to main
- ci(05-01): add release.yml — workflow_dispatch + 3-OS verify gate + Central deploy
- ci(05-01): refactor ci.yml to workflow_call shape, bump action versions
- feat(05-01): add release profiles + pluginManagement to pom.xml
- test(04-02): add DocConsistencyLintTest with 12 inline @tempdir + canary tests (PROC-01)
- test(04-02): add DocConsistencyLint scanner (PROC-01)
- test(04-02): add SummaryFrontmatter typed Jackson record (PROC-01)
- test(03-03): add negative JPMS consumer IT — must-fail compile on internal-class reference (REF-03 D-22)
- test(03-03): wire maven-invoker-plugin + add positive JPMS consumer IT (REF-03 D-22)
- feat(03-03): add module-info.java with single export dev.jcputney.magika (REF-03 / D-03 / D-21)
- test(03-02): add ConcurrentLazyInitIT for SC-6 (REF-02 + REF-04 paired contract)
- test(03-02): add BatchIdentifyIT for SC-2 (REF-02)
- test(03-02): add BuilderLazyInitTest for SC-4 + SC-5 (REF-04)
- feat(03-02): defer OrtSession.create() to first identify* via synchronized lazy-init (REF-04)
- feat(03-01): introduce Status enum + extend MagikaResult to 4-component record (REF-01)
- test(02-02): add 5 oracle-pinned fixtures for TEST-11/12/13
- test(02-02): wire UpstreamParityIT for three prediction modes (TEST-11/12/13 harness)
- test(02-01): scaffold Wave-0 RED tests for DEBT-01/02/03 + 7th ArchUnit rule
- feat(01-05): add Magika facade + MagikaBuilder + MagikaResult/MagikaPrediction records
- feat(1-04): OnnxInferenceEngine + OnnxModelLoader + loader unit test
- feat(1-03): LabelResolver + FallbackLogic + ByteWindowExtractor + TEST-10 smoke
- feat(1-03): Jackson config parsing — ThresholdConfig + ContentTypeRegistry + loader (CFG-01..05)
- feat(1-03): enums + InferenceEngine seam + Utf8Validator + ArchUnit rules
- feat(1-02): exception hierarchy + sealed InputSource + ByteStrip (API-09, IO-01, IO-03)
Bug Fixes
- fix(ci): add .gitattributes to prevent CRLF mangling on Windows checkouts
- fix(jpms): promote ContentTypeLabel + OverwriteReason; open config to Jackson
- fix(release): peer-review fixes — branch guard, GH Packages auth, README accuracy
- fix(01-07): drop silent long->int narrowing in identifyPath (WR-03)
- fix(01-07): throw on argmax out of label space (WR-02)
- fix(01-07): restore D-11 three-event log contract (WR-01)
- fix(01-07): add post-token "stripped content too short" branch (CR-02)
- fix