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
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
89 changes: 89 additions & 0 deletions packages/core/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
# 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
- Tag scattebrain to make sure it was working
- Slight changes to the CacheClient interface ([#253](https://github.com/AllenInstitute/vis/pull/253))
- 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))
- _(deps)_ Bump lodash and @types/lodash ([#236](https://github.com/AllenInstitute/vis/pull/236))
- NPM registry [DT-9193] ([#241](https://github.com/AllenInstitute/vis/pull/241))
- _(deps)_ Bump @biomejs/biome from 2.4.4 to 2.4.9 ([#245](https://github.com/AllenInstitute/vis/pull/245))

## [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
53 changes: 48 additions & 5 deletions packages/dzi/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,57 @@ 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
- Tag scattebrain to make sure it was working
- 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))
- NPM registry [DT-9193] ([#241](https://github.com/AllenInstitute/vis/pull/241))

## [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,10 +66,6 @@ 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))
Expand Down
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
15 changes: 10 additions & 5 deletions packages/geometry/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,22 @@ All notable changes to this project will be documented in this file.
- CI tests weren't running [DT-7060] ([#87](https://github.com/AllenInstitute/vis/pull/87))
- Remove non-null assertions ([#101](https://github.com/AllenInstitute/vis/pull/101))

### ⚙️ Miscellaneous Tasks

- Update Vis OME-Zarr package to load the full set of metadata available in Zarr files [DT-7615] ([#103](https://github.com/AllenInstitute/vis/pull/103))

## [0.0.4] - 2025-03-14

### 🐛 Bug Fixes

- CI tests weren't running [DT-7060] ([#87](https://github.com/AllenInstitute/vis/pull/87))

### 💼 Other

- March 2025 ([#99](https://github.com/AllenInstitute/vis/pull/99))

### ⚙️ Miscellaneous Tasks

- Use Parcel to produce libraries ([#9](https://github.com/AllenInstitute/vis/pull/9))
- Formatting ([#26](https://github.com/AllenInstitute/vis/pull/26))
- CI workflow [DT-5996] ([#25](https://github.com/AllenInstitute/vis/pull/25))
- 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))
Expand Down
2 changes: 1 addition & 1 deletion packages/geometry/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,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-geometry@*"
},
"repository": {
"type": "git",
Expand Down
43 changes: 24 additions & 19 deletions packages/omezarr/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,35 +6,40 @@ All notable changes to this project will be documented in this file.

### 🚀 Features

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

### 🐛 Bug Fixes

- CI tests weren't running [DT-7060] ([#87](https://github.com/AllenInstitute/vis/pull/87))
- Remove non-null assertions ([#101](https://github.com/AllenInstitute/vis/pull/101))
- Fix issue with handling RGB channels in new OME-Zarr metadata code [DT-7615] ([#110](https://github.com/AllenInstitute/vis/pull/110))
- Parse axis name to match our internal casing [134] ([#140](https://github.com/AllenInstitute/vis/pull/140))
- 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
- Incorrectly published a change without changing a version ([#239](https://github.com/AllenInstitute/vis/pull/239))

### 💼 Other

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

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

- Didn't need quotes
- Don't filter out unconvenctional commits so we can see everything!
- Merge branch 'main' into lane/package-tag-changelogs
- Added support for Zarr V3 ([#191](https://github.com/AllenInstitute/vis/pull/191))

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

- Update vis-omezarr to v0.0.13 ([#192](https://github.com/AllenInstitute/vis/pull/192))
- Merge branch 'main' into lane/package-tag-changelogs
- Allow slices from planes by % rather than slice index - as the number of slices is not constant at all scales in most volumes ([#187](https://github.com/AllenInstitute/vis/pull/187))

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

- Merge branch 'main' into lane/package-tag-changelogs
- Tag scattebrain to make sure it was working
- Merge branch 'main' into lane/package-tag-changelogs

### ⚙️ 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))
- 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))
- Update vis-omezarr 0.0.7 - upgrade zarrita to 0.5.0 ([#100](https://github.com/AllenInstitute/vis/pull/100))
- Logger with log levels ([#97](https://github.com/AllenInstitute/vis/pull/97))
- Update Vis OME-Zarr package to load the full set of metadata available in Zarr files [DT-7615] ([#103](https://github.com/AllenInstitute/vis/pull/103))
- 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))
- Updates to package versions for Core, Geometry, OmeZarr + examples [DC-530] ([#124](https://github.com/AllenInstitute/vis/pull/124))
- Add helpful linting rules ([#127](https://github.com/AllenInstitute/vis/pull/127))
- _(deps)_ Bump zod from 3.24.2 to 3.24.3 ([#154](https://github.com/AllenInstitute/vis/pull/154))
- Dev command, reorganized docs, added stubs ([#163](https://github.com/AllenInstitute/vis/pull/163))
Expand Down
2 changes: 1 addition & 1 deletion packages/omezarr/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-omezarr@*"
},
"repository": {
"type": "git",
Expand Down
Loading