Skip to content
4 changes: 2 additions & 2 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ All notable changes to this project will be documented in this file.\n
# https://keats.github.io/tera/docs/#introduction
body = """
{% if version %}\
## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
## [{{ version | split(pat="@") | last }}] - {{ timestamp | date(format="%Y-%m-%d") }}
{% else %}\
## [unreleased]
{% endif %}\
Expand Down Expand Up @@ -48,7 +48,7 @@ postprocessors = [
# parse the commits based on https://www.conventionalcommits.org
conventional_commits = true
# filter out the commits that are not conventional
filter_unconventional = true
filter_unconventional = false
# process each line of a commit as an individual commit
split_commits = false
# regex for preprocessing the commit messages
Expand Down
83 changes: 83 additions & 0 deletions packages/core/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
# Changelog

All notable changes to this project will be documented in this file.

## [unreleased]

### 🚀 Features

- Package tag changelog generation

### 🐛 Bug Fixes

- Allow Workers to be instantiated directly via callback ([#206](https://github.com/AllenInstitute/vis/pull/206))
- Fix version display on changelogs and tweak scatterbrain package command

### 💼 Other

- Don't filter out unconvenctional commits so we can see everything!
- Merge branch 'main' into lane/package-tag-changelogs
- Merge branch 'main' into lane/package-tag-changelogs
- Merge branch 'main' into lane/package-tag-changelogs

### ⚙️ Miscellaneous Tasks

- *(deps)* Bump @types/lodash from 4.17.19 to 4.17.20 ([#185](https://github.com/AllenInstitute/vis/pull/185))
- *(deps)* Bump @biomejs/biome from 2.1.3 to 2.2.2 ([#190](https://github.com/AllenInstitute/vis/pull/190))
- Create standalone Priority Cache without fetching ([#199](https://github.com/AllenInstitute/vis/pull/199))
- Adding "type: module" to all packages ([#201](https://github.com/AllenInstitute/vis/pull/201))
- Adding in a caching multithreaded Fetch Store ([#200](https://github.com/AllenInstitute/vis/pull/200))
- Chore -cached loading (V3 omezarr support) step one ([#205](https://github.com/AllenInstitute/vis/pull/205))
- *(deps)* Bump @types/lodash from 4.17.20 to 4.17.21 ([#215](https://github.com/AllenInstitute/vis/pull/215))
- *(deps)* Bump lodash and @types/lodash ([#224](https://github.com/AllenInstitute/vis/pull/224))
- Update or remove dependencies ([#229](https://github.com/AllenInstitute/vis/pull/229))

## [0.0.4] - 2025-07-14

### 🚀 Features

- Starlight Docs and Example Site ([#157](https://github.com/AllenInstitute/vis/pull/157))

### 🐛 Bug Fixes

- Color parsing supports hex strings without hash [135] ([#138](https://github.com/AllenInstitute/vis/pull/138))
- Export Logger class and raise default log level ([#160](https://github.com/AllenInstitute/vis/pull/160))

### 💼 Other

- A priority cache with a (better?) api ([#171](https://github.com/AllenInstitute/vis/pull/171))

Co-authored-by: Lane Sawyer <lane.sawyer@alleninstitute.org>

### ⚙️ Miscellaneous Tasks

- Add helpful linting rules ([#127](https://github.com/AllenInstitute/vis/pull/127))
- *(deps)* Bump @types/lodash from 4.14.202 to 4.17.16 ([#153](https://github.com/AllenInstitute/vis/pull/153))
- *(deps)* Bump @types/lodash from 4.17.16 to 4.17.17 ([#168](https://github.com/AllenInstitute/vis/pull/168))
- Dev command, reorganized docs, added stubs ([#163](https://github.com/AllenInstitute/vis/pull/163))
- *(deps)* Bump @types/lodash from 4.17.17 to 4.17.19 ([#177](https://github.com/AllenInstitute/vis/pull/177))
- *(deps)* Bump @biomejs/biome from 1.9.4 to 2.0.6 ([#174](https://github.com/AllenInstitute/vis/pull/174))

## [0.0.3] - 2025-04-23

### 💼 Other

- Noah/webworker decoders ([#126](https://github.com/AllenInstitute/vis/pull/126))

## [0.0.2] - 2025-04-08

### 🚀 Features

- Support for arbitrary color channels in OME-Zarr images [DC-530] ([#123](https://github.com/AllenInstitute/vis/pull/123))

### ⚙️ Miscellaneous Tasks

- Updates to package versions for Core, Geometry, OmeZarr + examples [DC-530] ([#124](https://github.com/AllenInstitute/vis/pull/124))

## [0.0.1] - 2025-04-04

### ⚙️ Miscellaneous Tasks

- Rename vis-scatterbrain package to vis-core ([#118](https://github.com/AllenInstitute/vis/pull/118))

<!-- generated by git-cliff -->
3 changes: 2 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
"dev": "parcel watch --port 1235",
"test": "vitest --watch",
"test:ci": "vitest run",
"coverage": "vitest run --coverage"
"coverage": "vitest run --coverage",
"changelog": "git-cliff -o changelog.md --tag-pattern @alleninstitute/vis-core@*"
},
"repository": {
"type": "git",
Expand Down
91 changes: 79 additions & 12 deletions packages/dzi/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,54 @@ All notable changes to this project will be documented in this file.
### 🚀 Features

- DZI fetch function ([#162](https://github.com/AllenInstitute/vis/pull/162))
- Package tag changelog generation

### 🐛 Bug Fixes

- Fix version display on changelogs and tweak scatterbrain package command

### 💼 Other

- Don't filter out unconvenctional commits so we can see everything!
- Merge branch 'main' into lane/package-tag-changelogs
- Merge branch 'main' into lane/package-tag-changelogs
- Merge branch 'main' into lane/package-tag-changelogs

### ⚙️ Miscellaneous Tasks

- Add helpful linting rules ([#127](https://github.com/AllenInstitute/vis/pull/127))
- Dev command, reorganized docs, added stubs ([#163](https://github.com/AllenInstitute/vis/pull/163))
- *(deps)* Bump @biomejs/biome from 1.9.4 to 2.0.6 ([#174](https://github.com/AllenInstitute/vis/pull/174))
- Add Changelogs ([#117](https://github.com/AllenInstitute/vis/pull/117))
- Update release numbers for release ([#180](https://github.com/AllenInstitute/vis/pull/180))
- *(deps)* Bump @biomejs/biome from 2.1.3 to 2.2.2 ([#190](https://github.com/AllenInstitute/vis/pull/190))
- Adding "type: module" to all packages ([#201](https://github.com/AllenInstitute/vis/pull/201))
- Adding in a caching multithreaded Fetch Store ([#200](https://github.com/AllenInstitute/vis/pull/200))
- Renaming render functions from "renderer" to "render command" ([#204](https://github.com/AllenInstitute/vis/pull/204))
- Update or remove dependencies ([#229](https://github.com/AllenInstitute/vis/pull/229))

## [0.0.11] - 2025-04-08

### 💼 Other

- Updating DZI package version (remove Scatterbrain dependency) ([#125](https://github.com/AllenInstitute/vis/pull/125))

### ⚙️ Miscellaneous Tasks

- Rename vis-scatterbrain package to vis-core ([#118](https://github.com/AllenInstitute/vis/pull/118))

## [0.0.10] - 2025-03-31

### ⚙️ Miscellaneous Tasks

- Logger with log levels ([#97](https://github.com/AllenInstitute/vis/pull/97))
- Test coverage tooling ([#95](https://github.com/AllenInstitute/vis/pull/95))
- Updating vis-dzi and vis-omezarr to enable use of vis-scatterbrain 0.0.10 ([#112](https://github.com/AllenInstitute/vis/pull/112))

## [0.0.9] - 2025-03-14

### 🐛 Bug Fixes

- Dzi viewer would loop forever due to some faulty math ([#43](https://github.com/AllenInstitute/vis/pull/43))
- CI tests weren't running [DT-7060] ([#87](https://github.com/AllenInstitute/vis/pull/87))

### 💼 Other
Expand All @@ -19,21 +63,44 @@ All notable changes to this project will be documented in this file.

### ⚙️ Miscellaneous Tasks

- CI workflow [DT-5996] ([#25](https://github.com/AllenInstitute/vis/pull/25))
- Update version ([#39](https://github.com/AllenInstitute/vis/pull/39))
- Remove only-allow so builds stop failing ([#47](https://github.com/AllenInstitute/vis/pull/47))
- Version bumps for only-allow removal release ([#51](https://github.com/AllenInstitute/vis/pull/51))
- Install Biome, fix formatting [DT-7060] ([#52](https://github.com/AllenInstitute/vis/pull/52))
- Biome linting with auto-fixes [DT-7060] ([#53](https://github.com/AllenInstitute/vis/pull/53))
- Dependency health configurations ([#17](https://github.com/AllenInstitute/vis/pull/17))
- Clean up dependencies [DT-7060] ([#55](https://github.com/AllenInstitute/vis/pull/55))
- Fix all but non-null assertion lints ([#96](https://github.com/AllenInstitute/vis/pull/96))
- Logger with log levels ([#97](https://github.com/AllenInstitute/vis/pull/97))
- Test coverage tooling ([#95](https://github.com/AllenInstitute/vis/pull/95))
- Updating vis-dzi and vis-omezarr to enable use of vis-scatterbrain 0.0.10 ([#112](https://github.com/AllenInstitute/vis/pull/112))
- Rename vis-scatterbrain package to vis-core ([#118](https://github.com/AllenInstitute/vis/pull/118))
- Add helpful linting rules ([#127](https://github.com/AllenInstitute/vis/pull/127))
- Dev command, reorganized docs, added stubs ([#163](https://github.com/AllenInstitute/vis/pull/163))
- *(deps)* Bump @biomejs/biome from 1.9.4 to 2.0.6 ([#174](https://github.com/AllenInstitute/vis/pull/174))

## [0.0.7] - 2025-02-03

### ⚙️ Miscellaneous Tasks

- Remove only-allow so builds stop failing ([#47](https://github.com/AllenInstitute/vis/pull/47))
- Version bumps for only-allow removal release ([#51](https://github.com/AllenInstitute/vis/pull/51))

## [0.0.6] - 2024-12-04

### 💼 Other

- Noah/documentation ([#46](https://github.com/AllenInstitute/vis/pull/46))

## [0.0.5] - 2024-11-21

### 🐛 Bug Fixes

- Dzi viewer would loop forever due to some faulty math ([#43](https://github.com/AllenInstitute/vis/pull/43))

## [0.0.4] - 2024-11-13

### ⚙️ Miscellaneous Tasks

- CI workflow [DT-5996] ([#25](https://github.com/AllenInstitute/vis/pull/25))
- Update version ([#39](https://github.com/AllenInstitute/vis/pull/39))

## [0.0.3] - 2024-10-02

### 💼 Other

- DZI viewer component ([#29](https://github.com/AllenInstitute/vis/pull/29))

Co-authored-by: Lane Sawyer <lane.sawyer@alleninstitute.org>

<!-- generated by git-cliff -->
2 changes: 1 addition & 1 deletion packages/dzi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"test": "vitest --watch",
"test:ci": "vitest run",
"coverage": "vitest run --coverage",
"changelog": "git-cliff -o changelog.md"
"changelog": "git-cliff -o changelog.md --tag-pattern @alleninstitute/vis-dzi@*"
},
"repository": {
"type": "git",
Expand Down
Loading