Skip to content

Commit

Permalink
Release packages [publish docs] (#741)
Browse files Browse the repository at this point in the history
* Release packages [publish docs]

* some changelog enhancements

---------

Co-authored-by: imodeljs-admin <[email protected]>
Co-authored-by: Grigas Petraitis <[email protected]>
  • Loading branch information
3 people authored Oct 30, 2024
1 parent f2ec2d0 commit 8c7a306
Show file tree
Hide file tree
Showing 25 changed files with 146 additions and 92 deletions.
5 changes: 0 additions & 5 deletions .changeset/forty-pans-march.md

This file was deleted.

14 changes: 0 additions & 14 deletions .changeset/four-starfishes-sneeze.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/light-weeks-explain.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nine-countries-join.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/nine-ducks-wink.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/polite-mails-count.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/selfish-parents-appear.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/seven-snakes-sip.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/stupid-books-pump.md

This file was deleted.

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

## 5.6.0

### Minor Changes

- [#747](https://github.com/iTwin/presentation/pull/747): KoQ and numeric editor improvements.

- ReadOnly properties now open a disabled input in property grid.
- KoQ input placeholder is now determined by initial value if one exists.
- Selecting/clicking a numeric or KoQ input will select all the text.

- [#739](https://github.com/iTwin/presentation/pull/739): Replaced `react-select` with [iTwinUI's ComboBox](https://itwinui.bentley.com/docs/combobox).

- The number of select options is limited to 100. When more items exist, a non-selectable option is displayed at the bottom of the list, prompting users to provide an items filter. Previously, additional pages of select options was loaded when user scrolled to the bottom of the list.
- Deprecated `PortalTargetContext`. It is no longer needed.

This affects `PresentationInstanceFilterBuilder` and `NavigationPropertyEditor` components.

- [#754](https://github.com/iTwin/presentation/pull/754): Define `type` and `exports` attributes in `package.json`.

The change moves this package a step closer towards dropping CommonJS support - it's now transpiled from ESM to CommonJS instead of the opposite.

In addition, the `exports` attribute has been added to `package.json` to prohibit access to APIs that are not intended to be used by external consumers.

## 5.5.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.5.0",
"version": "5.6.0",
"description": "React components based on iTwin.js Presentation library",
"license": "MIT",
"repository": {
Expand Down
16 changes: 16 additions & 0 deletions packages/core-interop/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @itwin/presentation-core-interop

## 1.1.0

### Minor Changes

- [#740](https://github.com/iTwin/presentation/pull/740): Define `type` and `exports` attributes in `package.json`.

The change moves this package a step closer towards dropping CommonJS support - it's now transpiled from ESM to CommonJS instead of the opposite.

In addition, the `exports` attribute has been added to `package.json` to prohibit access to APIs that are not intended to be used by external consumers.

### Patch Changes

- [#758](https://github.com/iTwin/presentation/pull/758): Promote `@beta` APIs to `@public`.
- Updated dependencies:
- @itwin/presentation-shared@1.1.0

## 1.0.0

### Major 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.0.0",
"version": "1.1.0",
"description": "The package acts as a layer between iTwin.js Core and Presentation packages.",
"license": "MIT",
"author": {
Expand Down
19 changes: 19 additions & 0 deletions packages/hierarchies-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @itwin/presentation-hierarchies-react

## 1.1.0

### Minor Changes

- [#740](https://github.com/iTwin/presentation/pull/740): Define `type` and `exports` attributes in `package.json`.

The change moves this package a step closer towards dropping CommonJS support - it's now transpiled from ESM to CommonJS instead of the opposite.

In addition, the `exports` attribute has been added to `package.json` to prohibit access to APIs that are not intended to be used by external consumers.

### Patch Changes

- [#758](https://github.com/iTwin/presentation/pull/758): Promote `@beta` APIs to `@public`.
- [#756](https://github.com/iTwin/presentation/pull/756): Added missing `ref` property to `TreeNodeRendererProps` type.
- Updated dependencies:
- @itwin/presentation-shared@1.1.0
- @itwin/unified-selection@1.1.0
- @itwin/presentation-hierarchies@1.2.0

## 1.0.1

### Patch 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.0.1",
"version": "1.1.0",
"description": "React components based on `@itwin/presentation-hierarchies`",
"license": "MIT",
"author": {
Expand Down
17 changes: 17 additions & 0 deletions packages/hierarchies/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @itwin/presentation-hierarchies

## 1.2.0

### Minor Changes

- [#740](https://github.com/iTwin/presentation/pull/740): Define `type` and `exports` attributes in `package.json`.

The change moves this package a step closer towards dropping CommonJS support - it's now transpiled from ESM to CommonJS instead of the opposite.

In addition, the `exports` attribute has been added to `package.json` to prohibit access to APIs that are not intended to be used by external consumers.

### Patch Changes

- [#743](https://github.com/iTwin/presentation/pull/743): Fixed hierarchy filtering having a limit of 500 filtered nodes under a single parent.
- [#758](https://github.com/iTwin/presentation/pull/758): Promote `@beta` APIs to `@public`.
- Updated dependencies:
- @itwin/presentation-shared@1.1.0

## 1.1.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.1.0",
"version": "1.2.0",
"description": "A package for creating hierarchies based on data in iTwin.js iModels.",
"license": "MIT",
"author": {
Expand Down
10 changes: 10 additions & 0 deletions packages/opentelemetry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log - @itwin/presentation-opentelemetry

## 4.1.0

### Minor Changes

- [#740](https://github.com/iTwin/presentation/pull/740): Define `type` and `exports` attributes in `package.json`.

The change moves this package a step closer towards dropping CommonJS support - it's now transpiled from ESM to CommonJS instead of the opposite.

In addition, the `exports` attribute has been added to `package.json` to prohibit access to APIs that are not intended to be used by external consumers.

This log was last generated on Thu, 31 Aug 2023 11:51:06 GMT and should not be manually modified.

<!-- Start content -->
Expand Down
2 changes: 1 addition & 1 deletion packages/opentelemetry/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itwin/presentation-opentelemetry",
"version": "4.0.2",
"version": "4.1.0",
"description": "Utilities to enable OpenTelemetry tracing of Presentation requests",
"license": "MIT",
"repository": {
Expand Down
15 changes: 15 additions & 0 deletions packages/shared/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @itwin/presentation-shared

## 1.1.0

### Minor Changes

- [#740](https://github.com/iTwin/presentation/pull/740): Added an utility `julianToDateTime` function to convert julian date format to javascript's Date object.
- [#740](https://github.com/iTwin/presentation/pull/740): Define `type` and `exports` attributes in `package.json`.

The change moves this package a step closer towards dropping CommonJS support - it's now transpiled from ESM to CommonJS instead of the opposite.

In addition, the `exports` attribute has been added to `package.json` to prohibit access to APIs that are not intended to be used by external consumers.

### Patch Changes

- [#758](https://github.com/iTwin/presentation/pull/758): Promote `@beta` APIs to `@public`.

## 1.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itwin/presentation-shared",
"version": "1.0.0",
"version": "1.1.0",
"description": "The package contains types and utilities used across different iTwin.js Presentation packages.",
"license": "MIT",
"author": {
Expand Down
22 changes: 22 additions & 0 deletions packages/testing/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Change Log - @itwin/presentation-testing

## 5.1.0

### Minor Changes

- [#754](https://github.com/iTwin/presentation/pull/754): Define `type` and `exports` attributes in `package.json`.

The change moves this package a step closer towards dropping CommonJS support - it's now transpiled from ESM to CommonJS instead of the opposite.

In addition, the `exports` attribute has been added to `package.json` to prohibit access to APIs that are not intended to be used by external consumers.

- [#754](https://github.com/iTwin/presentation/pull/754): Export file name utility functions.

- `getTestOutputDir` and `setTestOutputDir` - get/set functions for the global test output directory used by this package.
- `setupOutputFileLocation` - given a file name, returns a full path to the file in the test output directory.
- `createFileNameFromString` - creates a valid, sanitized file name from any string.
- `limitFilePathLength` - makes sure the given file path is shorter than 260 characters.

### Patch Changes

- Updated dependencies:
- @itwin/presentation-components@5.6.0

## 5.0.17

### Patch 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.0.17",
"version": "5.1.0",
"description": "Testing utilities for iTwin.js Presentation library",
"license": "MIT",
"repository": {
Expand Down
16 changes: 16 additions & 0 deletions packages/unified-selection/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @itwin/unified-selection

## 1.1.0

### Minor Changes

- [#740](https://github.com/iTwin/presentation/pull/740): Define `type` and `exports` attributes in `package.json`.

The change moves this package a step closer towards dropping CommonJS support - it's now transpiled from ESM to CommonJS instead of the opposite.

In addition, the `exports` attribute has been added to `package.json` to prohibit access to APIs that are not intended to be used by external consumers.

### Patch Changes

- [#758](https://github.com/iTwin/presentation/pull/758): Promote `@beta` APIs to `@public`.
- Updated dependencies:
- @itwin/presentation-shared@1.1.0

## 1.0.1

### Patch 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.0.1",
"version": "1.1.0",
"description": "Package for managing unified selection in iTwin.js applications.",
"license": "MIT",
"repository": {
Expand Down

0 comments on commit 8c7a306

Please sign in to comment.