Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0](https://github.com/fulcrumgenomics/ref-solver/compare/v0.2.0...v0.3.0) - 2026-03-28

### Added

- stream binary uploads to read only headers from BAM/CRAM files ([#18](https://github.com/fulcrumgenomics/ref-solver/pull/18))
- show upload size limit and header extraction info in web UI
- extract BAM headers client-side before upload
- cap binary file uploads at 4MB for header-only parsing
- add reader-based BAM/CRAM header parsing functions
- normalize space-separated SAM headers in web UI ([#13](https://github.com/fulcrumgenomics/ref-solver/pull/13))
- add refget integration for unknown contig lookup ([#9](https://github.com/fulcrumgenomics/ref-solver/pull/9))

### Other

- replace stringly-typed error_type with enum ([#16](https://github.com/fulcrumgenomics/ref-solver/pull/16))
- update fulcrum genomics logo with light/dark theme support ([#17](https://github.com/fulcrumgenomics/ref-solver/pull/17))
- simplify headerExtractor, fix review findings
- add integration tests for reader-based BAM header parsing
- use reader-based parsing for BAM/CRAM, eliminate temp files

## [0.2.0](https://github.com/fulcrumgenomics/ref-solver/compare/v0.1.0...v0.2.0) - 2026-03-17

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ref-solver"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
authors = ["Fulcrum Genomics"]
description = "Solve reference genome identification from BAM/SAM headers"
Expand Down
Loading