Skip to content

Commit

Permalink
Version Packages (#847)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Dec 9, 2024
1 parent fa79970 commit 932aaab
Show file tree
Hide file tree
Showing 17 changed files with 86 additions and 39 deletions.
29 changes: 0 additions & 29 deletions .changeset/chatty-ravens-collect.md

This file was deleted.

2 changes: 2 additions & 0 deletions packages/constants/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @vivjs/constants

## 0.17.0

## 0.16.1

## 0.16.0
Expand Down
2 changes: 1 addition & 1 deletion packages/constants/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vivjs/constants",
"version": "0.16.1",
"version": "0.17.0",
"author": "Ilan Gold",
"repository": {
"type": "git",
Expand Down
7 changes: 7 additions & 0 deletions packages/extensions/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @vivjs/extensions

## 0.17.0

### Patch Changes

- Updated dependencies []:
- @vivjs/constants@0.17.0

## 0.16.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/extensions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vivjs/extensions",
"version": "0.16.1",
"version": "0.17.0",
"author": "Ilan Gold",
"repository": {
"type": "git",
Expand Down
10 changes: 10 additions & 0 deletions packages/layers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @vivjs/layers

## 0.17.0

### Patch Changes

- Updated dependencies []:
- @vivjs/constants@0.17.0
- @vivjs/extensions@0.17.0
- @vivjs/loaders@0.17.0
- @vivjs/types@0.17.0

## 0.16.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/layers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vivjs/layers",
"version": "0.16.1",
"version": "0.17.0",
"author": "Ilan Gold",
"repository": {
"type": "git",
Expand Down
7 changes: 7 additions & 0 deletions packages/loaders/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @vivjs/loaders

## 0.17.0

### Patch Changes

- Updated dependencies []:
- @vivjs/types@0.17.0

## 0.16.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/loaders/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vivjs/loaders",
"version": "0.16.1",
"version": "0.17.0",
"author": "Ilan Gold",
"repository": {
"type": "git",
Expand Down
30 changes: 28 additions & 2 deletions packages/main/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# @hms-dbmi/viv

## 0.17.0

### Minor Changes

- **This release includes backward-incompatible changes**. To avoid automatically adopting such releases, ensure you are either pinning the exact version of `@hms-dbmi/viv` in your `package.json` file or using a version range syntax that only accepts patch updates, such as `~0.16.1`. Refer to npm's [semver documentation](https://docs.npmjs.com/cli/v6/using-npm/semver/) for details. (`@vivjs/constants`, `@vivjs/extensions`, `@vivjs/layers`, `@vivjs/loaders`, `@hms-dbmi/viv`, `@vivjs/types`, `@vivjs/viewers`, `@vivjs/views`) ([#839](https://github.com/hms-dbmi/viv/pull/839))

**Migrate to deck.gl v9**

This update modifies our code internally to support deck.gl v9, dropping compatibility with deck.gl v8. See the [release notes](https://deck.gl/docs/whats-new#deckgl-v90) to learn more.

**Impact**:

We haven’t changed Viv's public API, but the upgrade to deck.gl 9.0 is considered **breaking** due to changes in its dependencies, which may require updates to WebGL-related code (e.g., shaders, injections, constants). Here are potential issues users may face in migrating:

- deprecating WebGL1
- changing any public-facing GL-specific variables to use the new luma.gl backend-agnostic variables (such as `interpolation` on the `ImageLayer`)
- shader injection-location name changes (i.e., `gl_fragColor` -> `fragColor`)

**Action**:

- You will need to upgrade to deck.gl `9.0.x` if you use it directly as having multiple versions of deck.gl is not supported. The above list only includes changes internally to Viv and is not an exhaustive summary of all changes required for our migration. For full details on upgrading to deck.gl `9.0.x`, please refer to the [upgrade guide](https://deck.gl/docs/upgrade-guide#upgrading-to-v90).
- Pin a specific Viv version or semver range to prevent unintended updates.

### Patch Changes


## 0.16.1

### Patch Changes
Expand All @@ -15,9 +41,9 @@
This release extends Viv's multifile OME-TIFF data-loading capabilities to multiscale TIFFs as well. The `loadOmeTiff` utility now recognizes and loads multiresolution images described in a `companion.ome` metadata file.

```js
import { loadOmeTiff } from '@vivjs/loaders';
import { loadOmeTiff } from "@vivjs/loaders";

let loader = await loadOmeTiff('http://localhost:8080/data.companion.ome');
let loader = await loadOmeTiff("http://localhost:8080/data.companion.ome");
```

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/main/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hms-dbmi/viv",
"version": "0.16.1",
"version": "0.17.0",
"author": "Ilan Gold",
"repository": {
"type": "git",
Expand Down
7 changes: 7 additions & 0 deletions packages/types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @vivjs/types

## 0.17.0

### Patch Changes

- Updated dependencies []:
- @vivjs/constants@0.17.0

## 0.16.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vivjs/types",
"version": "0.16.1",
"version": "0.17.0",
"author": "Ilan Gold",
"repository": {
"type": "git",
Expand Down
9 changes: 9 additions & 0 deletions packages/viewers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @vivjs/viewers

## 0.17.0

### Patch Changes

- Updated dependencies []:
- @vivjs/constants@0.17.0
- @vivjs/extensions@0.17.0
- @vivjs/views@0.17.0

## 0.16.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/viewers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vivjs/viewers",
"version": "0.16.1",
"version": "0.17.0",
"author": "Ilan Gold",
"repository": {
"type": "git",
Expand Down
8 changes: 8 additions & 0 deletions packages/views/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @vivjs/views

## 0.17.0

### Patch Changes

- Updated dependencies []:
- @vivjs/layers@0.17.0
- @vivjs/loaders@0.17.0

## 0.16.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/views/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vivjs/views",
"version": "0.16.1",
"version": "0.17.0",
"author": "Ilan Gold",
"repository": {
"type": "git",
Expand Down

0 comments on commit 932aaab

Please sign in to comment.