Skip to content

Commit 1f82155

Browse files
Auto-generated changes
1 parent 4781154 commit 1f82155

13 files changed

Lines changed: 214 additions & 43 deletions

File tree

.changeset/structurer-kind-migration.md

Lines changed: 0 additions & 37 deletions
This file was deleted.

block/CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
11
# @platforma-open/milaboratories.3d-structure-based-liabilities
22

3+
## 1.3.1
4+
5+
### Patch Changes
6+
7+
- 6e0f659: Migrate to the latest block template and add the mandatory kind package
8+
9+
Refreshed onto block-tools 2.14.3 via `upgrade-sdk`, and added the `kind/`
10+
package every block must now declare. The kind carries the block's identity
11+
(`{name}@{version}`, read from its own `package.json`) and its init-params
12+
contract. The refresh also reshaped `block/` into the slim facade, which
13+
publishes the whole block from one dependency-free package.
14+
15+
`BlockParams` is the two confidence gates, `frConfThresh` and `cdrConfThresh`.
16+
They decide which residues are trusted enough to score, so they are the only
17+
fields that change what the block computes. Both are optional, so a project
18+
template can seed either one alone and the model's `init` keeps a default
19+
behind each. `.templateParams` projects the same two back, so exporting a block
20+
to a template and initializing one from it are inverses. Everything else is
21+
excluded by construction: `dataset` is an anchor-bound `DatasetSelection` that
22+
cannot travel between projects, `tableState` is view state, and
23+
`customBlockLabel` is a label typed over a derived default.
24+
25+
Author-code fixes the SDK upgrade required:
26+
27+
- `ArrayColumnProvider` is gone from `@platforma-sdk/model`. The scores table
28+
now builds its recipes with `DataColumn.fromColumn`, and passes primary and
29+
enrichment columns through the separate `primaryColumns` / `columns` fields
30+
that `createPlDataTableV3` now takes.
31+
- Column visibility rules match by selector object (`{ name: "..." }`) instead
32+
of by predicate function.
33+
- The test used the facade's old `blockSpec` export, which the slim facade
34+
replaced with a from-pack-v2 `BlockPointer`.
35+
336
## 1.3.0
437

538
### Minor Changes

block/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@platforma-open/milaboratories.3d-structure-based-liabilities",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"files": [
55
"dist",
66
"block-pack"

kind/CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# @platforma-open/milaboratories.3d-structure-based-liabilities.kind
2+
3+
## 1.0.1
4+
5+
### Patch Changes
6+
7+
- 6e0f659: Migrate to the latest block template and add the mandatory kind package
8+
9+
Refreshed onto block-tools 2.14.3 via `upgrade-sdk`, and added the `kind/`
10+
package every block must now declare. The kind carries the block's identity
11+
(`{name}@{version}`, read from its own `package.json`) and its init-params
12+
contract. The refresh also reshaped `block/` into the slim facade, which
13+
publishes the whole block from one dependency-free package.
14+
15+
`BlockParams` is the two confidence gates, `frConfThresh` and `cdrConfThresh`.
16+
They decide which residues are trusted enough to score, so they are the only
17+
fields that change what the block computes. Both are optional, so a project
18+
template can seed either one alone and the model's `init` keeps a default
19+
behind each. `.templateParams` projects the same two back, so exporting a block
20+
to a template and initializing one from it are inverses. Everything else is
21+
excluded by construction: `dataset` is an anchor-bound `DatasetSelection` that
22+
cannot travel between projects, `tableState` is view state, and
23+
`customBlockLabel` is a label typed over a derived default.
24+
25+
Author-code fixes the SDK upgrade required:
26+
27+
- `ArrayColumnProvider` is gone from `@platforma-sdk/model`. The scores table
28+
now builds its recipes with `DataColumn.fromColumn`, and passes primary and
29+
enrichment columns through the separate `primaryColumns` / `columns` fields
30+
that `createPlDataTableV3` now takes.
31+
- Column visibility rules match by selector object (`{ name: "..." }`) instead
32+
of by predicate function.
33+
- The test used the facade's old `blockSpec` export, which the slim facade
34+
replaced with a from-pack-v2 `BlockPointer`.

kind/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@platforma-open/milaboratories.3d-structure-based-liabilities.kind",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"private": true,
55
"type": "module",
66
"main": "./dist/index.cjs",

model/CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,41 @@
11
# @platforma-open/milaboratories.3d-structure-based-liabilities.model
22

3+
## 1.3.1
4+
5+
### Patch Changes
6+
7+
- 6e0f659: Migrate to the latest block template and add the mandatory kind package
8+
9+
Refreshed onto block-tools 2.14.3 via `upgrade-sdk`, and added the `kind/`
10+
package every block must now declare. The kind carries the block's identity
11+
(`{name}@{version}`, read from its own `package.json`) and its init-params
12+
contract. The refresh also reshaped `block/` into the slim facade, which
13+
publishes the whole block from one dependency-free package.
14+
15+
`BlockParams` is the two confidence gates, `frConfThresh` and `cdrConfThresh`.
16+
They decide which residues are trusted enough to score, so they are the only
17+
fields that change what the block computes. Both are optional, so a project
18+
template can seed either one alone and the model's `init` keeps a default
19+
behind each. `.templateParams` projects the same two back, so exporting a block
20+
to a template and initializing one from it are inverses. Everything else is
21+
excluded by construction: `dataset` is an anchor-bound `DatasetSelection` that
22+
cannot travel between projects, `tableState` is view state, and
23+
`customBlockLabel` is a label typed over a derived default.
24+
25+
Author-code fixes the SDK upgrade required:
26+
27+
- `ArrayColumnProvider` is gone from `@platforma-sdk/model`. The scores table
28+
now builds its recipes with `DataColumn.fromColumn`, and passes primary and
29+
enrichment columns through the separate `primaryColumns` / `columns` fields
30+
that `createPlDataTableV3` now takes.
31+
- Column visibility rules match by selector object (`{ name: "..." }`) instead
32+
of by predicate function.
33+
- The test used the facade's old `blockSpec` export, which the slim facade
34+
replaced with a from-pack-v2 `BlockPointer`.
35+
36+
- Updated dependencies [6e0f659]
37+
- @platforma-open/milaboratories.3d-structure-based-liabilities.kind@1.0.1
38+
339
## 1.3.0
440

541
### Minor Changes

model/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@platforma-open/milaboratories.3d-structure-based-liabilities.model",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"private": true,
55
"description": "Block model",
66
"type": "module",

software/CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
11
# @platforma-open/milaboratories.3d-structure-based-liabilities.software
22

3+
## 0.3.4
4+
5+
### Patch Changes
6+
7+
- 6e0f659: Migrate to the latest block template and add the mandatory kind package
8+
9+
Refreshed onto block-tools 2.14.3 via `upgrade-sdk`, and added the `kind/`
10+
package every block must now declare. The kind carries the block's identity
11+
(`{name}@{version}`, read from its own `package.json`) and its init-params
12+
contract. The refresh also reshaped `block/` into the slim facade, which
13+
publishes the whole block from one dependency-free package.
14+
15+
`BlockParams` is the two confidence gates, `frConfThresh` and `cdrConfThresh`.
16+
They decide which residues are trusted enough to score, so they are the only
17+
fields that change what the block computes. Both are optional, so a project
18+
template can seed either one alone and the model's `init` keeps a default
19+
behind each. `.templateParams` projects the same two back, so exporting a block
20+
to a template and initializing one from it are inverses. Everything else is
21+
excluded by construction: `dataset` is an anchor-bound `DatasetSelection` that
22+
cannot travel between projects, `tableState` is view state, and
23+
`customBlockLabel` is a label typed over a derived default.
24+
25+
Author-code fixes the SDK upgrade required:
26+
27+
- `ArrayColumnProvider` is gone from `@platforma-sdk/model`. The scores table
28+
now builds its recipes with `DataColumn.fromColumn`, and passes primary and
29+
enrichment columns through the separate `primaryColumns` / `columns` fields
30+
that `createPlDataTableV3` now takes.
31+
- Column visibility rules match by selector object (`{ name: "..." }`) instead
32+
of by predicate function.
33+
- The test used the facade's old `blockSpec` export, which the slim facade
34+
replaced with a from-pack-v2 `BlockPointer`.
35+
336
## 0.3.3
437

538
### Patch Changes

software/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@platforma-open/milaboratories.3d-structure-based-liabilities.software",
3-
"version": "0.3.3",
3+
"version": "0.3.4",
44
"files": [
55
"./dist/**/*"
66
],

ui/CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,41 @@
11
# @platforma-open/milaboratories.3d-structure-based-liabilities.ui
22

3+
## 1.2.7
4+
5+
### Patch Changes
6+
7+
- 6e0f659: Migrate to the latest block template and add the mandatory kind package
8+
9+
Refreshed onto block-tools 2.14.3 via `upgrade-sdk`, and added the `kind/`
10+
package every block must now declare. The kind carries the block's identity
11+
(`{name}@{version}`, read from its own `package.json`) and its init-params
12+
contract. The refresh also reshaped `block/` into the slim facade, which
13+
publishes the whole block from one dependency-free package.
14+
15+
`BlockParams` is the two confidence gates, `frConfThresh` and `cdrConfThresh`.
16+
They decide which residues are trusted enough to score, so they are the only
17+
fields that change what the block computes. Both are optional, so a project
18+
template can seed either one alone and the model's `init` keeps a default
19+
behind each. `.templateParams` projects the same two back, so exporting a block
20+
to a template and initializing one from it are inverses. Everything else is
21+
excluded by construction: `dataset` is an anchor-bound `DatasetSelection` that
22+
cannot travel between projects, `tableState` is view state, and
23+
`customBlockLabel` is a label typed over a derived default.
24+
25+
Author-code fixes the SDK upgrade required:
26+
27+
- `ArrayColumnProvider` is gone from `@platforma-sdk/model`. The scores table
28+
now builds its recipes with `DataColumn.fromColumn`, and passes primary and
29+
enrichment columns through the separate `primaryColumns` / `columns` fields
30+
that `createPlDataTableV3` now takes.
31+
- Column visibility rules match by selector object (`{ name: "..." }`) instead
32+
of by predicate function.
33+
- The test used the facade's old `blockSpec` export, which the slim facade
34+
replaced with a from-pack-v2 `BlockPointer`.
35+
36+
- Updated dependencies [6e0f659]
37+
- @platforma-open/milaboratories.3d-structure-based-liabilities.model@1.3.1
38+
339
## 1.2.6
440

541
### Patch Changes

0 commit comments

Comments
 (0)