diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 00000000..eef9d49d --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,165 @@ +name: Release Package + +on: + workflow_dispatch: + inputs: + package: + description: 'Package to release' + required: true + type: choice + options: + - core + - dzi + - geometry + - omezarr + - web-components + +permissions: + contents: write + packages: write + pull-requests: write + +jobs: + release: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + token: ${{ secrets.GH_TOKEN || secrets.GITHUB_TOKEN }} + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + + - name: Setup pnpm + uses: pnpm/action-setup@v4 + with: + version: 9.14.2 + + - name: Install dependencies + run: pnpm install + + - name: Configure Git + run: | + git config --local user.email "action@github.com" + git config --local user.name "GitHub Action" + + # Set the remote URL to use the token for pushing + git remote set-url origin https://x-access-token:${{ secrets.GH_TOKEN || secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git + + - name: Get current version and determine next version + id: version_info + run: | + cd packages/${{ github.event.inputs.package }} + + # Get current version + CURRENT_VERSION=$(node -p "require('./package.json').version") + echo "current_version=$CURRENT_VERSION" >> $GITHUB_OUTPUT + + # Use git-cliff to determine the next version + TAG_PATTERN="@alleninstitute/vis-${{ github.event.inputs.package }}@*" + NEXT_VERSION=$(npx git-cliff --tag-pattern "$TAG_PATTERN" --bumped-version) + + # Extract just the version number (remove the tag prefix) + NEXT_VERSION=$(echo "$NEXT_VERSION" | sed 's/.*@//') + + echo "next_version=$NEXT_VERSION" >> $GITHUB_OUTPUT + echo "Current version: $CURRENT_VERSION" + echo "Next version: $NEXT_VERSION" + + - name: Update version number and create initial tag + run: | + cd packages/${{ github.event.inputs.package }} + # npm version creates a commit and a tag for us + npm version ${{ steps.version_info.outputs.next_version }} --no-git-tag-version=false + + - name: Generate changelog + run: | + cd packages/${{ github.event.inputs.package }} + pnpm run changelog + + - name: Amend commit with changelog + run: | + cd packages/${{ github.event.inputs.package }} + git add changelog.md + git commit --amend --no-edit + + - name: Delete the tag created by npm version and create new one + id: create_tag + run: | + cd packages/${{ github.event.inputs.package }} + TAG_NAME="@alleninstitute/vis-${{ github.event.inputs.package }}@${{ steps.version_info.outputs.next_version }}" + + # Delete the tag created by npm version (it would be just the version number) + git tag -d v${{ steps.version_info.outputs.next_version }} || true + + # Create a new tag with our naming convention on the amended commit + git tag -a "$TAG_NAME" -m "Release $TAG_NAME" + echo "tag_name=$TAG_NAME" >> $GITHUB_OUTPUT + + - name: Create release branch and push changes + run: | + BRANCH_NAME="release/${{ github.event.inputs.package }}-v${{ steps.version_info.outputs.next_version }}" + git checkout -b "$BRANCH_NAME" + git push origin "$BRANCH_NAME" + + - name: Create Pull Request + uses: actions/github-script@v7 + with: + github-token: ${{ secrets.GH_TOKEN || secrets.GITHUB_TOKEN }} + script: | + const { data: pullRequest } = await github.rest.pulls.create({ + owner: context.repo.owner, + repo: context.repo.repo, + title: `Release ${{ github.event.inputs.package }} v${{ steps.version_info.outputs.next_version }}`, + head: `release/${{ github.event.inputs.package }}-v${{ steps.version_info.outputs.next_version }}`, + base: 'main', + body: `Automated release for @alleninstitute/vis-${{ github.event.inputs.package }} v${{ steps.version_info.outputs.next_version }}\n\nSee [CHANGELOG](./packages/${{ github.event.inputs.package }}/changelog.md) for details.` + }); + + // Auto-merge if you have that enabled + await github.rest.pulls.merge({ + owner: context.repo.owner, + repo: context.repo.repo, + pull_number: pullRequest.number, + merge_method: 'squash' + }); + + - name: Push tag after merge + run: | + # Wait a moment for the merge to complete + sleep 5 + git checkout main + git pull origin main + git push origin ${{ steps.create_tag.outputs.tag_name }} + + - name: Create GitHub Release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ steps.create_tag.outputs.tag_name }} + release_name: "${{ github.event.inputs.package }} v${{ steps.version_info.outputs.next_version }}" + body: | + Release of @alleninstitute/vis-${{ github.event.inputs.package }} v${{ steps.version_info.outputs.next_version }} + + See [CHANGELOG](./packages/${{ github.event.inputs.package }}/changelog.md) for details. + draft: false + prerelease: false + + - name: Publish to GitHub Packages (if needed) + run: | + cd packages/${{ github.event.inputs.package }} + echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > .npmrc + echo "@alleninstitute:registry=https://npm.pkg.github.com" >> .npmrc + + # Build the package first + pnpm run build + + # Publish to GitHub Packages + npm publish + env: + NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/cliff.toml b/cliff.toml index 4c5c77d2..c6ef196e 100644 --- a/cliff.toml +++ b/cliff.toml @@ -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 | trim_start_matches(pat="@alleninstitute/vis-") | trim_start_matches(pat="@") }}] - {{ timestamp | date(format="%Y-%m-%d") }} {% else %}\ ## [unreleased] {% endif %}\ @@ -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 diff --git a/packages/core/changelog.md b/packages/core/changelog.md new file mode 100644 index 00000000..eecf41f6 --- /dev/null +++ b/packages/core/changelog.md @@ -0,0 +1,53 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +## [alleninstitute/core@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 + +### ⚙️ 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)) + +## [alleninstitute/core@0.0.3] - 2025-04-23 + +### 💼 Other + +- Noah/webworker decoders ([#126](https://github.com/AllenInstitute/vis/pull/126)) + +## [alleninstitute/core@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)) + +## [alleninstitute/core@0.0.1] - 2025-04-04 + +### ⚙️ Miscellaneous Tasks + +- Rename vis-scatterbrain package to vis-core ([#118](https://github.com/AllenInstitute/vis/pull/118)) + + diff --git a/packages/core/package.json b/packages/core/package.json index d1350717..2d83379c 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -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", diff --git a/packages/dzi/changelog.md b/packages/dzi/changelog.md index 98c055cf..0578fddc 100644 --- a/packages/dzi/changelog.md +++ b/packages/dzi/changelog.md @@ -8,9 +8,35 @@ All notable changes to this project will be documented in this file. - DZI fetch function ([#162](https://github.com/AllenInstitute/vis/pull/162)) +### ⚙️ 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)) + +## [alleninstitute/dzi@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)) + +## [alleninstitute/dzi@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)) + +## [alleninstitute/dzi@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 @@ -19,21 +45,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)) + +## [alleninstitute/dzi@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)) + +## [alleninstitute/dzi@0.0.6] - 2024-12-04 + +### 💼 Other + +- Noah/documentation ([#46](https://github.com/AllenInstitute/vis/pull/46)) + +## [alleninstitute/dzi@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)) + +## [alleninstitute/dzi@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)) + +## [alleninstitute/dzi@0.0.3] - 2024-10-02 + +### 💼 Other + +- DZI viewer component ([#29](https://github.com/AllenInstitute/vis/pull/29)) + +Co-authored-by: Lane Sawyer diff --git a/packages/dzi/package.json b/packages/dzi/package.json index 8b09d75f..48af7a65 100644 --- a/packages/dzi/package.json +++ b/packages/dzi/package.json @@ -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", diff --git a/packages/geometry/changelog.md b/packages/geometry/changelog.md index 01d653db..71cc1a8a 100644 --- a/packages/geometry/changelog.md +++ b/packages/geometry/changelog.md @@ -4,40 +4,181 @@ All notable changes to this project will be documented in this file. ## [unreleased] +### 💼 Other + +- Basic 3D Math utils ([#170](https://github.com/AllenInstitute/vis/pull/170)) + +### ⚙️ 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)) + +## [alleninstitute/geometry@0.0.6] - 2025-04-08 + ### 🚀 Features -- Publishing documentation and config changes ([#3](https://github.com/AllenInstitute/vis/pull/3)) -- *(geometry)* LineSegmentsIntersect and det ([#21](https://github.com/AllenInstitute/vis/pull/21)) - Support for arbitrary color channels in OME-Zarr images [DC-530] ([#123](https://github.com/AllenInstitute/vis/pull/123)) +### ⚙️ Miscellaneous Tasks + +- Test coverage tooling ([#95](https://github.com/AllenInstitute/vis/pull/95)) +- Updates to package versions for Core, Geometry, OmeZarr + examples [DC-530] ([#124](https://github.com/AllenInstitute/vis/pull/124)) + +## [alleninstitute/geometry@0.0.5] - 2025-03-28 + ### 🐛 Bug Fixes -- *(vis-geometry)* Adds missing functionality from `bkp-client` ([#10](https://github.com/AllenInstitute/vis/pull/10)) -- Expose Rectangle2D functions, remove glob export from Interval ([#13](https://github.com/AllenInstitute/vis/pull/13)) -- 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)) + +## [alleninstitute/geometry@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)) - 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 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)) -- 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)) -- 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)) + +## [alleninstitute/geometry@0.0.3] - 2025-02-03 + +### 🚀 Features + +- *(geometry)* LineSegmentsIntersect and det ([#21](https://github.com/AllenInstitute/vis/pull/21)) + +### 🐛 Bug Fixes + +- Expose Rectangle2D functions, remove glob export from Interval ([#13](https://github.com/AllenInstitute/vis/pull/13)) + +### 💼 Other + +- Merge pull request [#12](https://github.com/AllenInstitute/vis/pull/12) from AllenInstitute/noah/limit-queue-time + +dont hog the main thread - use a soft limit +- Cache limits ([#14](https://github.com/AllenInstitute/vis/pull/14)) + +* first pass at a system which cant leak cache content references (unlike my first attempt) + +* finish up some thoughts on how this cache should work. start in on some tests to make sure I'm not crazy. ditch jest because its terrible, try vitest for now - its way nicer but kinda hard to read the output for debugging + +* test some more edgy cases of this separate-but-related cache system + +* update apps to deal with recent changes in scatterbrain caching system + +* stream of consciousness documentation plus basic build&run instructions + +* kick out jest - re-write tests using async and vitest + +* think about warning of unsafe use via jsdoc... + +* forgot to update this demo + +* spellcheck + +* quick readme for scatterplots + +* more words + +* Update apps/omezarr-viewer/README.md + +Co-authored-by: Lane Sawyer + +* Update apps/omezarr-viewer/README.md + +Co-authored-by: Lane Sawyer + +* fix initial versa view. fix a missing closing-brace that would have made cache-eviction waste a lot of time for no reason + +* kick jest out of geometry tests too, switch to vitest, confirm all tests pass + +* remove my debug logging + +* remove isAbortError + +--------- + +Co-authored-by: Lane Sawyer +- DZI viewer component ([#29](https://github.com/AllenInstitute/vis/pull/29)) + +Co-authored-by: Lane Sawyer + +### ⚙️ Miscellaneous Tasks + +- Chore - move code around to make writing new "apps" less repetative ([#16](https://github.com/AllenInstitute/vis/pull/16)) + +* move the furniture around - make it easier to share code between various "apps" - the scenario being that the code doesn't yet belong in published-packages, but might have common use in various demos. created a new spatial indexing sub-folder for the geometry package, and put our generic "quad"t tree in there (it can be a tree of any power-of-2 dimension) + +* thinking about layers + +* PR feedback, disable using the .parcel-cache when building +- 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)) + +## [alleninstitute/geometry@0.0.2] - 2024-04-02 + +### 🐛 Bug Fixes + +- *(vis-geometry)* Adds missing functionality from `bkp-client` ([#10](https://github.com/AllenInstitute/vis/pull/10)) + +### 💼 Other + +- A quick demo of how one might render a scatterplot (using ABC-atlas data) ([#7](https://github.com/AllenInstitute/vis/pull/7)) + +* draw a blue screen in our scatterplot demo + +* add fetcher and visibility interface + +* make a renderer real quick + +* use the renderer, make a more interesting shader, the data is suspiciously ugly + +* minor cleanup + +--------- + +Co-authored-by: Lane Sawyer +- Bump version + +### ⚙️ Miscellaneous Tasks + +- Use Parcel to produce libraries ([#9](https://github.com/AllenInstitute/vis/pull/9)) + +## [alleninstitute/geometry@0.0.1] - 2024-02-13 + +### 🚀 Features + +- Publishing documentation and config changes ([#3](https://github.com/AllenInstitute/vis/pull/3)) + +### 💼 Other + +- Initial working commit of copy-pasted geometry lib +- Super basic scatterbrain package +- Confirming I can import stuff from our workspace packages with full ts support, beggining work on a barebones omezarr renderer +- Working basic volumetric slice rendering. cleanup a bunch of oopsies in the tsconfigs. +- Add a bunch of controls to the demo, remove experimental zarr loader libs, fix math in shader +- Implement a resolution-aware dataset layer picker, and a relative camera which is surprisingly nice +- Right side up data, in the correct aspect ratio +- When initializing the repo, names were changed, this fact was not reflected in imports vs. workspace packages. +- Turn on tsconfig verbatimmodulesyntax. delete super busted old demo. +add a base tsconfig for the others to extend - still a work in progress. +- Merge pull request [#1](https://github.com/AllenInstitute/vis/pull/1) from AllenInstitute/noah/cleanup-mistakes-during-repo-init + +Noah/cleanup mistakes during repo init diff --git a/packages/geometry/package.json b/packages/geometry/package.json index 69db4421..d32c998e 100644 --- a/packages/geometry/package.json +++ b/packages/geometry/package.json @@ -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", diff --git a/packages/omezarr/changelog.md b/packages/omezarr/changelog.md index 4b6d94c3..c099985b 100644 --- a/packages/omezarr/changelog.md +++ b/packages/omezarr/changelog.md @@ -4,42 +4,123 @@ All notable changes to this project will be documented in this file. ## [unreleased] +### 🐛 Bug Fixes + +- Parse axis name to match our internal casing [134] ([#140](https://github.com/AllenInstitute/vis/pull/140)) + +### 💼 Other + +- A priority cache with a (better?) api ([#171](https://github.com/AllenInstitute/vis/pull/171)) + +Co-authored-by: Lane Sawyer +- Didn't need quotes + +### ⚙️ Miscellaneous Tasks + +- 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)) +- *(deps)* Bump zod from 3.24.3 to 3.25.46 ([#165](https://github.com/AllenInstitute/vis/pull/165)) +- *(deps)* Bump @biomejs/biome from 1.9.4 to 2.0.6 ([#174](https://github.com/AllenInstitute/vis/pull/174)) +- *(deps)* Bump zarrita from 0.5.1 to 0.5.2 ([#175](https://github.com/AllenInstitute/vis/pull/175)) +- Add Changelogs ([#117](https://github.com/AllenInstitute/vis/pull/117)) + +## [alleninstitute/omezarr@0.0.11] - 2025-04-23 + +### 💼 Other + +- Noah/webworker decoders ([#126](https://github.com/AllenInstitute/vis/pull/126)) + +## [alleninstitute/omezarr@0.0.10] - 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 + +- 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)) + +## [alleninstitute/omezarr@0.0.9] - 2025-03-31 + ### 🐛 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)) + +### ⚙️ Miscellaneous Tasks + +- 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)) + +## [alleninstitute/omezarr@0.0.8] - 2025-03-28 + +### 🐛 Bug Fixes + +- Remove non-null assertions ([#101](https://github.com/AllenInstitute/vis/pull/101)) + +### ⚙️ Miscellaneous Tasks + +- 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)) + +## [alleninstitute/omezarr@0.0.7] - 2025-03-14 + +### ⚙️ Miscellaneous Tasks + +- Update vis-omezarr 0.0.7 - upgrade zarrita to 0.5.0 ([#100](https://github.com/AllenInstitute/vis/pull/100)) + +## [alleninstitute/omezarr@0.0.6] - 2025-03-14 ### 💼 Other +- Updating contributors - March 2025 ([#99](https://github.com/AllenInstitute/vis/pull/99)) +## [alleninstitute/omezarr@0.0.5] - 2025-03-14 + +### 🐛 Bug Fixes + +- CI tests weren't running [DT-7060] ([#87](https://github.com/AllenInstitute/vis/pull/87)) + +### 💼 Other + +- Updating to version 0.0.5 + ### ⚙️ 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)) -- *(deps)* Bump zod from 3.24.3 to 3.25.46 ([#165](https://github.com/AllenInstitute/vis/pull/165)) -- *(deps)* Bump @biomejs/biome from 1.9.4 to 2.0.6 ([#174](https://github.com/AllenInstitute/vis/pull/174)) -- *(deps)* Bump zarrita from 0.5.1 to 0.5.2 ([#175](https://github.com/AllenInstitute/vis/pull/175)) + +## [alleninstitute/omezarr@0.0.4] - 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)) + +## [alleninstitute/omezarr@0.0.3] - 2024-12-04 + +### 💼 Other + +- Noah/documentation ([#46](https://github.com/AllenInstitute/vis/pull/46)) + +## [alleninstitute/omezarr@0.0.2] - 2024-12-02 + +### 💼 Other + +- Noah/fix omezarr tile math mistake ([#45](https://github.com/AllenInstitute/vis/pull/45)) + +## [alleninstitute/omezarr@0.0.1] - 2024-11-20 + +### 💼 Other + +- Ome-zarr slice-view renderer package ([#34](https://github.com/AllenInstitute/vis/pull/34)) + +Co-authored-by: Lane Sawyer +Co-authored-by: Skyler Moosman <8845503+TheMooseman@users.noreply.github.com> diff --git a/packages/omezarr/package.json b/packages/omezarr/package.json index e53a9358..d19afd37 100644 --- a/packages/omezarr/package.json +++ b/packages/omezarr/package.json @@ -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", diff --git a/site/changelog.md b/site/changelog.md index 377749a9..f1758fd4 100644 --- a/site/changelog.md +++ b/site/changelog.md @@ -4,10 +4,23 @@ All notable changes to this project will be documented in this file. ## [unreleased] +### ⚙️ Miscellaneous Tasks + +- Add Changelogs ([#117](https://github.com/AllenInstitute/vis/pull/117)) + +## [alleninstitute/core@0.0.4] - 2025-07-14 + ### 🚀 Features - Starlight Docs and Example Site ([#157](https://github.com/AllenInstitute/vis/pull/157)) +### 💼 Other + +- Some quick minor fixes to the examples in starlight ([#158](https://github.com/AllenInstitute/vis/pull/158)) +- A priority cache with a (better?) api ([#171](https://github.com/AllenInstitute/vis/pull/171)) + +Co-authored-by: Lane Sawyer + ### ⚙️ Miscellaneous Tasks - Upgrade Astro ([#161](https://github.com/AllenInstitute/vis/pull/161))