Skip to content

Commit

Permalink
Release packages [publish docs] (#811)
Browse files Browse the repository at this point in the history
Co-authored-by: imodeljs-admin <[email protected]>
  • Loading branch information
imodeljs-admin and imodeljs-admin authored Jan 7, 2025
1 parent c049312 commit 936d7e1
Show file tree
Hide file tree
Showing 17 changed files with 67 additions and 46 deletions.
17 changes: 0 additions & 17 deletions .changeset/fresh-dryers-return.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ninety-frogs-eat.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shiny-drinks-marry.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/silver-ears-change.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tall-shrimps-beg.md

This file was deleted.

10 changes: 10 additions & 0 deletions packages/components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log - @itwin/presentation-components

## 5.8.0

### Minor Changes

- [#825](https://github.com/iTwin/presentation/pull/825): `PresentationInstanceFilterDialog` and `PresentationInstanceFilterBuilder`: Fix classes selector not being updated with all classes that contain selected property. `PresentationInstanceFilterPropertyInfo` now has `sourceClassIds` and `sourceClassId` is deprecated.

### Patch Changes

- [#828](https://github.com/iTwin/presentation/pull/828): Polyfill `Symbol.dispose` and `Symbol.asyncDispose` to make sure that code using the upcoming JS recource management API works in all environments.

## 5.7.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itwin/presentation-components",
"version": "5.7.0",
"version": "5.8.0",
"description": "React components based on iTwin.js Presentation library",
"license": "MIT",
"repository": {
Expand Down
18 changes: 18 additions & 0 deletions packages/core-interop/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @itwin/presentation-core-interop

## 1.2.0

### Minor Changes

- [#814](https://github.com/iTwin/presentation/pull/814): Add a `createIModelKey` function to safely create an identifier for an `IModel` in different situations.

Example:

```ts
import { IModelConnection } from "@itwin/core-frontend";
import { createIModelKey } from "@itwin/presentation-core-interop";

IModelConnection.onOpen.addListener((imodel: IModelConnection) => {
const key = createIModelKey(imodel);
console.log(`IModel opened: "${key}"`);
});
```

## 1.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core-interop/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itwin/presentation-core-interop",
"version": "1.1.2",
"version": "1.2.0",
"description": "The package acts as a layer between iTwin.js Core and Presentation packages.",
"license": "MIT",
"author": {
Expand Down
13 changes: 13 additions & 0 deletions packages/hierarchies-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @itwin/presentation-hierarchies-react

## 1.4.0

### Minor Changes

- [#827](https://github.com/iTwin/presentation/pull/827): Changed `onHierarchyLoadError` callback in `UseTreeProps`, it now accepts error as one of the props arguments.

### Patch Changes

- [#828](https://github.com/iTwin/presentation/pull/828): Polyfill `Symbol.dispose` and `Symbol.asyncDispose` to make sure that code using the upcoming JS recource management API works in all environments.
- Updated dependencies:
- @itwin/unified-selection@1.2.1
- @itwin/presentation-hierarchies@1.4.1

## 1.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/hierarchies-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itwin/presentation-hierarchies-react",
"version": "1.3.0",
"version": "1.4.0",
"description": "React components based on `@itwin/presentation-hierarchies`",
"license": "MIT",
"author": {
Expand Down
6 changes: 6 additions & 0 deletions packages/hierarchies/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @itwin/presentation-hierarchies

## 1.4.1

### Patch Changes

- [#828](https://github.com/iTwin/presentation/pull/828): Polyfill `Symbol.dispose` and `Symbol.asyncDispose` to make sure that code using the upcoming JS recource management API works in all environments.

## 1.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/hierarchies/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itwin/presentation-hierarchies",
"version": "1.4.0",
"version": "1.4.1",
"description": "A package for creating hierarchies based on data in iTwin.js iModels.",
"license": "MIT",
"author": {
Expand Down
8 changes: 8 additions & 0 deletions packages/testing/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log - @itwin/presentation-testing

## 5.2.1

### Patch Changes

- [#810](https://github.com/iTwin/presentation/pull/810): Fix the package not being usable in `cjs` builds due to usage of `import.meta`.
- Updated dependencies:
- @itwin/presentation-components@5.8.0

## 5.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/testing/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itwin/presentation-testing",
"version": "5.2.0",
"version": "5.2.1",
"description": "Testing utilities for iTwin.js Presentation library",
"license": "MIT",
"repository": {
Expand Down
6 changes: 6 additions & 0 deletions packages/unified-selection/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @itwin/unified-selection

## 1.2.1

### Patch Changes

- [#828](https://github.com/iTwin/presentation/pull/828): Polyfill `Symbol.dispose` and `Symbol.asyncDispose` to make sure that code using the upcoming JS recource management API works in all environments.

## 1.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/unified-selection/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itwin/unified-selection",
"version": "1.2.0",
"version": "1.2.1",
"description": "Package for managing unified selection in iTwin.js applications.",
"license": "MIT",
"repository": {
Expand Down

0 comments on commit 936d7e1

Please sign in to comment.