From 1a6c6ec2e4ebaf0ca82e16a129445f0d5d4a6c10 Mon Sep 17 00:00:00 2001 From: Github Actions Bot <-> Date: Wed, 9 Oct 2024 18:35:55 +0000 Subject: [PATCH] chore(release): publish - project: document-model-libs 1.93.1 - project: document-drive 1.0.0 - project: document-model 2.2.0 - project: @powerhousedao/design-system 1.0.0 - project: @powerhousedao/codegen 0.4.0 --- packages/codegen/CHANGELOG.md | 30 +++ packages/codegen/package.json | 100 +++++----- packages/design-system/package.json | 4 +- packages/document-drive/package.json | 4 +- packages/document-model-libs/package.json | 4 +- packages/document-model/CHANGELOG.md | 222 ++++++++++++++++++++++ packages/document-model/package.json | 152 +++++++-------- pnpm-lock.yaml | 8 +- 8 files changed, 388 insertions(+), 136 deletions(-) diff --git a/packages/codegen/CHANGELOG.md b/packages/codegen/CHANGELOG.md index 8b6acf3d8..d693beb82 100644 --- a/packages/codegen/CHANGELOG.md +++ b/packages/codegen/CHANGELOG.md @@ -1,3 +1,33 @@ +## 0.4.0 (2024-10-09) + +### 🚀 Features + +- **monorepo:** use latest version of pnpm ([5b60c6b5](https://github.com/powerhouse-inc/powerhouse/commit/5b60c6b5)) +- **monorepo:** regenerate lockfile ([b4a469e5](https://github.com/powerhouse-inc/powerhouse/commit/b4a469e5)) +- **monorepo:** regenerate lockfile ([0e277cec](https://github.com/powerhouse-inc/powerhouse/commit/0e277cec)) +- **monorepo:** apply auto fix to updated files ([f8357f46](https://github.com/powerhouse-inc/powerhouse/commit/f8357f46)) +- **monorepo:** apply lint fixes ([9803ac77](https://github.com/powerhouse-inc/powerhouse/commit/9803ac77)) +- **monorepo:** update github workflows ([daec0ac6](https://github.com/powerhouse-inc/powerhouse/commit/daec0ac6)) +- **monorepo:** migrate to unified configs ([693ce1a3](https://github.com/powerhouse-inc/powerhouse/commit/693ce1a3)) +- **design-system:** rwa editor props and modals logic ([f0ab9f0f](https://github.com/powerhouse-inc/powerhouse/commit/f0ab9f0f)) + +### 🩹 Fixes + +- **monorepo:** try just release publish ([3a708dab](https://github.com/powerhouse-inc/powerhouse/commit/3a708dab)) +- **monorepo:** remove skip publish ([3788d2c7](https://github.com/powerhouse-inc/powerhouse/commit/3788d2c7)) +- **monorepo:** add install ignore scripts ([4f2832d6](https://github.com/powerhouse-inc/powerhouse/commit/4f2832d6)) +- **monorepo:** fix command name ([d3e296e8](https://github.com/powerhouse-inc/powerhouse/commit/d3e296e8)) +- **monorepo:** try build all ([42beb01c](https://github.com/powerhouse-inc/powerhouse/commit/42beb01c)) +- **monorepo:** remove workspaces and package manager fields ([e0b53fef](https://github.com/powerhouse-inc/powerhouse/commit/e0b53fef)) +- **monorepo:** try remove resolutions ([d8ed0db3](https://github.com/powerhouse-inc/powerhouse/commit/d8ed0db3)) +- **monorepo:** try frozen lockfile ([ea788885](https://github.com/powerhouse-inc/powerhouse/commit/ea788885)) +- **monorepo:** add missing dep ([28d487d7](https://github.com/powerhouse-inc/powerhouse/commit/28d487d7)) + +### ❤️ Thank You + +- Guillermo Puente @gpuente +- ryanwolhuter @ryanwolhuter + ## 0.2.0 (2024-10-08) diff --git a/packages/codegen/package.json b/packages/codegen/package.json index 330d33fdf..59a4cd254 100644 --- a/packages/codegen/package.json +++ b/packages/codegen/package.json @@ -1,52 +1,52 @@ { - "name": "@powerhousedao/codegen", - "version": "0.3.2", - "license": "AGPL-3.0-only", - "private": false, - "main": "dist/index.js", - "types": "dist/index.d.ts", - "bin": { - "powerhouse": "./dist/cli.js", - "create-document-model-lib": "./dist/create-lib/index.js" - }, - "files": [ - "/dist" - ], - "scripts": { - "check-types": "tsc --noEmit", - "postlint": "npm run check-types", - "lint": "eslint", - "clean": "rimraf dist/", - "copy-files": "copyfiles -u 1 src/codegen/.hygen/templates/**/*.esm.t dist/", - "build": "npm run clean && npm run copy-files", - "prepublishOnly": "yarn build", - "build:create-lib": "tsc --project src/create-lib/tsconfig.json", - "publish:create-lib": "yarn publish --cwd ./src/create-lib/", - "start": "ts-node src/cli.ts", - "clean:node_modules": "rimraf node_modules" - }, - "dependencies": { - "@acaldas/graphql-codegen-typescript-validation-schema": "^0.12.3", - "@anatine/zod-mock": "^3.13.3", - "@faker-js/faker": "^8.3.1", - "@graphql-codegen/cli": "^5.0.0", - "@graphql-codegen/typescript": "^4.0.1", - "@types/node": "^20.11.2", - "arg": "^5.0.2", - "change-case": "^4.1.2", - "document-model": "1.0.29", - "enquirer": "^2.4.1", - "execa": "^8.0.1", - "hygen": "^6.2.11" - }, - "devDependencies": { - "copyfiles": "^2.4.1", - "graphql": "^16.8.1", - "husky": "^8.0.3", - "rimraf": "^5.0.5", - "ts-node": "^10.9.2" - }, - "peerDependencies": { - "graphql": "^16.8.1" - } + "name": "@powerhousedao/codegen", + "version": "0.4.0", + "license": "AGPL-3.0-only", + "private": false, + "main": "dist/index.js", + "types": "dist/index.d.ts", + "bin": { + "powerhouse": "./dist/cli.js", + "create-document-model-lib": "./dist/create-lib/index.js" + }, + "files": [ + "/dist" + ], + "scripts": { + "check-types": "tsc --noEmit", + "postlint": "npm run check-types", + "lint": "eslint", + "clean": "rimraf dist/", + "copy-files": "copyfiles -u 1 src/codegen/.hygen/templates/**/*.esm.t dist/", + "build": "npm run clean && npm run copy-files", + "prepublishOnly": "yarn build", + "build:create-lib": "tsc --project src/create-lib/tsconfig.json", + "publish:create-lib": "yarn publish --cwd ./src/create-lib/", + "start": "ts-node src/cli.ts", + "clean:node_modules": "rimraf node_modules" + }, + "dependencies": { + "@acaldas/graphql-codegen-typescript-validation-schema": "^0.12.3", + "@anatine/zod-mock": "^3.13.3", + "@faker-js/faker": "^8.3.1", + "@graphql-codegen/cli": "^5.0.0", + "@graphql-codegen/typescript": "^4.0.1", + "@types/node": "^20.11.2", + "arg": "^5.0.2", + "change-case": "^4.1.2", + "document-model": "1.0.29", + "enquirer": "^2.4.1", + "execa": "^8.0.1", + "hygen": "^6.2.11" + }, + "devDependencies": { + "copyfiles": "^2.4.1", + "graphql": "^16.8.1", + "husky": "^8.0.3", + "rimraf": "^5.0.5", + "ts-node": "^10.9.2" + }, + "peerDependencies": { + "graphql": "^16.8.1" + } } diff --git a/packages/design-system/package.json b/packages/design-system/package.json index ece3774ed..360b59556 100644 --- a/packages/design-system/package.json +++ b/packages/design-system/package.json @@ -1,6 +1,6 @@ { "name": "@powerhousedao/design-system", - "version": "1.0.0-alpha.183", + "version": "1.0.0", "description": "", "files": [ "/dist" @@ -67,7 +67,7 @@ "camelcase": "^8.0.0", "chromatic": "^11.11.0", "cross-env": "^7.0.3", - "document-model": "workspace:*", + "document-model": "2.2.0", "fast-xml-parser": "^4.3.4", "jsdom": "^24.0.0", "natural-orderby": "^3.0.2", diff --git a/packages/document-drive/package.json b/packages/document-drive/package.json index 837ebfd7e..b0951233d 100644 --- a/packages/document-drive/package.json +++ b/packages/document-drive/package.json @@ -1,6 +1,6 @@ { "name": "document-drive", - "version": "1.0.0-alpha.103", + "version": "1.0.0", "license": "AGPL-3.0-only", "type": "module", "module": "./src/index.ts", @@ -61,7 +61,7 @@ "@prisma/client": "5.17.0", "@types/node": "^20.14.11", "@types/uuid": "^9.0.8", - "document-model": "workspace:*", + "document-model": "2.2.0", "document-model-libs": "1.93.1", "fake-indexeddb": "^5.0.2", "localforage": "^1.10.0", diff --git a/packages/document-model-libs/package.json b/packages/document-model-libs/package.json index ae7abadbe..be38f00ca 100644 --- a/packages/document-model-libs/package.json +++ b/packages/document-model-libs/package.json @@ -81,7 +81,7 @@ "@monaco-editor/react": "^4.6.0", "@mui/material": "^5.15.5", "@powerhousedao/codegen": "0.0.15", - "@powerhousedao/design-system": "1.0.0-alpha.183", + "@powerhousedao/design-system": "1.0.0", "@semantic-release/changelog": "^6.0.3", "@semantic-release/git": "^10.0.1", "@storybook/addon-essentials": "^8.3.2", @@ -103,7 +103,7 @@ "chromatic": "^11.10.2", "constrained-editor-plugin": "^1.3.0", "crypto-browserify": "^3.12.0", - "document-model": "workspace:*", + "document-model": "2.2.0", "document-model-editors": "^1.0.1", "dspot-powerhouse-components": "^1.1.0", "graphql": "^16.9.0", diff --git a/packages/document-model/CHANGELOG.md b/packages/document-model/CHANGELOG.md index 8ed07a3a1..3e016f74f 100644 --- a/packages/document-model/CHANGELOG.md +++ b/packages/document-model/CHANGELOG.md @@ -1,3 +1,225 @@ +## 2.2.0 (2024-10-09) + +### 🚀 Features + +- **monorepo:** use latest version of pnpm ([5b60c6b5](https://github.com/powerhouse-inc/powerhouse/commit/5b60c6b5)) +- **monorepo:** regenerate lockfile ([b4a469e5](https://github.com/powerhouse-inc/powerhouse/commit/b4a469e5)) +- **monorepo:** regenerate lockfile ([0e277cec](https://github.com/powerhouse-inc/powerhouse/commit/0e277cec)) +- **monorepo:** apply lint fixes ([9803ac77](https://github.com/powerhouse-inc/powerhouse/commit/9803ac77)) +- **monorepo:** update github workflows ([daec0ac6](https://github.com/powerhouse-inc/powerhouse/commit/daec0ac6)) +- **monorepo:** migrate to unified configs ([693ce1a3](https://github.com/powerhouse-inc/powerhouse/commit/693ce1a3)) +- **design-system:** rwa editor props and modals logic ([f0ab9f0f](https://github.com/powerhouse-inc/powerhouse/commit/f0ab9f0f)) +- improved create script ([88b225f2](https://github.com/powerhouse-inc/powerhouse/commit/88b225f2)) +- added detach strategy for old drives ([#305](https://github.com/powerhouse-inc/powerhouse/pull/305)) +- migrate eslint config ([#210](https://github.com/powerhouse-inc/powerhouse/pull/210)) +- migrate eslint config ([#378](https://github.com/powerhouse-inc/powerhouse/pull/378)) +- update design-system v175 ([#209](https://github.com/powerhouse-inc/powerhouse/pull/209)) +- update design-system v174 ([#208](https://github.com/powerhouse-inc/powerhouse/pull/208)) +- update design-system v171 ([#207](https://github.com/powerhouse-inc/powerhouse/pull/207)) +- update design-system v170 ([#206](https://github.com/powerhouse-inc/powerhouse/pull/206)) +- added Footer component ([38a1ffdf](https://github.com/powerhouse-inc/powerhouse/commit/38a1ffdf)) +- update document-model-libs v166 ([#205](https://github.com/powerhouse-inc/powerhouse/pull/205)) +- implemented read mode interface ([f2c1a4a9](https://github.com/powerhouse-inc/powerhouse/commit/f2c1a4a9)) +- build queries per document model ([02f38667](https://github.com/powerhouse-inc/powerhouse/commit/02f38667)) +- display dates in tables in UTC + UTC label for date inputs ([dab0731b](https://github.com/powerhouse-inc/powerhouse/commit/dab0731b)) +- updated document-model ([e03647f5](https://github.com/powerhouse-inc/powerhouse/commit/e03647f5)) +- updated document model dep ([c8b9dfbb](https://github.com/powerhouse-inc/powerhouse/commit/c8b9dfbb)) +- added config support to set task queue method ([5575c606](https://github.com/powerhouse-inc/powerhouse/commit/5575c606)) +- added LoadingScreen Component ([440bb5df](https://github.com/powerhouse-inc/powerhouse/commit/440bb5df)) +- update loader animation ([#344](https://github.com/powerhouse-inc/powerhouse/pull/344)) +- update design-system 1.0.0-alpha.160 ([#202](https://github.com/powerhouse-inc/powerhouse/pull/202)) +- bump design system ([ac599063](https://github.com/powerhouse-inc/powerhouse/commit/ac599063)) +- update current value calculation ([6b52c3fb](https://github.com/powerhouse-inc/powerhouse/commit/6b52c3fb)) +- add current value ([#198](https://github.com/powerhouse-inc/powerhouse/pull/198)) +- remove copy icons script ([79729b87](https://github.com/powerhouse-inc/powerhouse/commit/79729b87)) +- switch to inline svgs ([#337](https://github.com/powerhouse-inc/powerhouse/pull/337)) +- add exclusion in the script itself ([8febd727](https://github.com/powerhouse-inc/powerhouse/commit/8febd727)) +- make script path relative ([521e5889](https://github.com/powerhouse-inc/powerhouse/commit/521e5889)) +- remove react aria ([#197](https://github.com/powerhouse-inc/powerhouse/pull/197)) +- remove react aria ([#336](https://github.com/powerhouse-inc/powerhouse/pull/336)) +- simplify tree view ([#332](https://github.com/powerhouse-inc/powerhouse/pull/332)) +- legacy signatures migration ([a90bb497](https://github.com/powerhouse-inc/powerhouse/commit/a90bb497)) +- use radix tooltip instead of react tooltip ([#329](https://github.com/powerhouse-inc/powerhouse/pull/329)) +- updated dependencies ([d0de9c8f](https://github.com/powerhouse-inc/powerhouse/commit/d0de9c8f)) +- improved queue and listener handling ([38453d4a](https://github.com/powerhouse-inc/powerhouse/commit/38453d4a)) +- revision history optimization ([#327](https://github.com/powerhouse-inc/powerhouse/pull/327)) +- bump design system ([#193](https://github.com/powerhouse-inc/powerhouse/pull/193)) +- add rwa report file icon ([#321](https://github.com/powerhouse-inc/powerhouse/pull/321)) +- update strands query ([#217](https://github.com/powerhouse-inc/powerhouse/pull/217)) +- bump design system ([b29bc575](https://github.com/powerhouse-inc/powerhouse/commit/b29bc575)) +- make maturity optional ([#190](https://github.com/powerhouse-inc/powerhouse/pull/190)) +- integrate revision history button ([#188](https://github.com/powerhouse-inc/powerhouse/pull/188)) +- add signature UI row component ([#310](https://github.com/powerhouse-inc/powerhouse/pull/310)) +- bump design system ([#186](https://github.com/powerhouse-inc/powerhouse/pull/186)) +- added readme ([50484e86](https://github.com/powerhouse-inc/powerhouse/commit/50484e86)) +- qa updates 6 ([#183](https://github.com/powerhouse-inc/powerhouse/pull/183)) +- use math lib for calculations ([#182](https://github.com/powerhouse-inc/powerhouse/pull/182)) +- add income transaction types ([#179](https://github.com/powerhouse-inc/powerhouse/pull/179)) +- remove related sync status when stopSyncRemoteDrive ([c6577e2d](https://github.com/powerhouse-inc/powerhouse/commit/c6577e2d)) +- get operations from cache on storage ([84164646](https://github.com/powerhouse-inc/powerhouse/commit/84164646)) +- update-document-model ver ([#170](https://github.com/powerhouse-inc/powerhouse/pull/170)) +- updated libs ([5e477580](https://github.com/powerhouse-inc/powerhouse/commit/5e477580)) +- updated document-model ([a44a12b3](https://github.com/powerhouse-inc/powerhouse/commit/a44a12b3)) +- bump deps ([e0f55805](https://github.com/powerhouse-inc/powerhouse/commit/e0f55805)) +- update document-model lib version ([#180](https://github.com/powerhouse-inc/powerhouse/pull/180)) +- bump libs and update props ([#168](https://github.com/powerhouse-inc/powerhouse/pull/168)) +- allow item creation from other forms ([#164](https://github.com/powerhouse-inc/powerhouse/pull/164)) +- bump design system ([#159](https://github.com/powerhouse-inc/powerhouse/pull/159)) +- handle orphans ([#157](https://github.com/powerhouse-inc/powerhouse/pull/157)) +- added entry chunks for editors ([8095e348](https://github.com/powerhouse-inc/powerhouse/commit/8095e348)) +- handle principal lender account ([#156](https://github.com/powerhouse-inc/powerhouse/pull/156)) +- bump react aria ([0e01efd3](https://github.com/powerhouse-inc/powerhouse/commit/0e01efd3)) +- add allow list props to rwa document editors ([#154](https://github.com/powerhouse-inc/powerhouse/pull/154)) +- bump design system ([b3e39371](https://github.com/powerhouse-inc/powerhouse/commit/b3e39371)) +- add filter transactions by asset ([#285](https://github.com/powerhouse-inc/powerhouse/pull/285)) +- update transaction types and fix double count ([#148](https://github.com/powerhouse-inc/powerhouse/pull/148)) +- bump design system ([#146](https://github.com/powerhouse-inc/powerhouse/pull/146)) +- added exponential retry backoff to prisma transactions ([b38e72fd](https://github.com/powerhouse-inc/powerhouse/commit/b38e72fd)) +- handle name collisions ([#139](https://github.com/powerhouse-inc/powerhouse/pull/139)) +- update document-model and document-model-libs ([#145](https://github.com/powerhouse-inc/powerhouse/pull/145)) +- update document-model 1.0.53 ([#142](https://github.com/powerhouse-inc/powerhouse/pull/142)) +- cache updated document as soon as possible ([0b3327ce](https://github.com/powerhouse-inc/powerhouse/commit/0b3327ce)) +- changed document-model to dependency ([43f80334](https://github.com/powerhouse-inc/powerhouse/commit/43f80334)) +- added separate bundles for es and cjs ([4ffb17f3](https://github.com/powerhouse-inc/powerhouse/commit/4ffb17f3)) +- updated document-model ([6d2eb8b6](https://github.com/powerhouse-inc/powerhouse/commit/6d2eb8b6)) +- skip hash generation when replaying documents ([697ea35a](https://github.com/powerhouse-inc/powerhouse/commit/697ea35a)) +- fix failing imports ([#136](https://github.com/powerhouse-inc/powerhouse/pull/136)) +- updated document-model dep ([4eb5a03d](https://github.com/powerhouse-inc/powerhouse/commit/4eb5a03d)) +- added document cache ([deae5238](https://github.com/powerhouse-inc/powerhouse/commit/deae5238)) +- fixed unit tests ([46edd150](https://github.com/powerhouse-inc/powerhouse/commit/46edd150)) +- initial work on tests migration ([3046dc16](https://github.com/powerhouse-inc/powerhouse/commit/3046dc16)) +- use reshuffleByTimestamp + added BasciClient + tests ([#129](https://github.com/powerhouse-inc/powerhouse/pull/129)) +- update document-model lib version ([#133](https://github.com/powerhouse-inc/powerhouse/pull/133)) +- remove root dir from ts config ([#130](https://github.com/powerhouse-inc/powerhouse/pull/130)) +- handle moving folder to descendent ([#129](https://github.com/powerhouse-inc/powerhouse/pull/129)) +- added ens utils ([c3c69e18](https://github.com/powerhouse-inc/powerhouse/commit/c3c69e18)) +- added networkId to user ([58b5af19](https://github.com/powerhouse-inc/powerhouse/commit/58b5af19)) +- added support for setting the user in the editor story ([b1ff8d6c](https://github.com/powerhouse-inc/powerhouse/commit/b1ff8d6c)) +- force deploy ([#126](https://github.com/powerhouse-inc/powerhouse/pull/126)) +- added user to editor context ([fed9c6e7](https://github.com/powerhouse-inc/powerhouse/commit/fed9c6e7)) +- added debug and trace methods and logger export ([c7336de1](https://github.com/powerhouse-inc/powerhouse/commit/c7336de1)) +- replaced winston with console ([bbb7fc53](https://github.com/powerhouse-inc/powerhouse/commit/bbb7fc53)) +- added winston as default logger ([77c2451e](https://github.com/powerhouse-inc/powerhouse/commit/77c2451e)) +- add cash asset row ([#124](https://github.com/powerhouse-inc/powerhouse/pull/124)) +- set sync unit ids on actions ([3c1489ad](https://github.com/powerhouse-inc/powerhouse/commit/3c1489ad)) +- implement teep's feeback 4 ([#122](https://github.com/powerhouse-inc/powerhouse/pull/122)) +- add remaining transaction types ([#121](https://github.com/powerhouse-inc/powerhouse/pull/121)) +- implement teep's feedback 2 ([#120](https://github.com/powerhouse-inc/powerhouse/pull/120)) +- updated document-model-libs dep ([44bced07](https://github.com/powerhouse-inc/powerhouse/commit/44bced07)) +- implement teep's feedback 2 ([#259](https://github.com/powerhouse-inc/powerhouse/pull/259)) +- updated document-model-libs dep ([e73b8135](https://github.com/powerhouse-inc/powerhouse/commit/e73b8135)) +- use uuid to generate sync id ([b322b0c0](https://github.com/powerhouse-inc/powerhouse/commit/b322b0c0)) +- add unique constraint on operation index ([b058834a](https://github.com/powerhouse-inc/powerhouse/commit/b058834a)) +- update document-model-libs version ([#100](https://github.com/powerhouse-inc/powerhouse/pull/100)) +- bump libs ([0f0d30ae](https://github.com/powerhouse-inc/powerhouse/commit/0f0d30ae)) +- updated document model dep ([37fa4556](https://github.com/powerhouse-inc/powerhouse/commit/37fa4556)) +- updated document model dep ([c9876dc8](https://github.com/powerhouse-inc/powerhouse/commit/c9876dc8)) +- add other tab ([#111](https://github.com/powerhouse-inc/powerhouse/pull/111)) +- add other tab ([#251](https://github.com/powerhouse-inc/powerhouse/pull/251)) +- bump design system ([1bcba8f4](https://github.com/powerhouse-inc/powerhouse/commit/1bcba8f4)) +- implement teeps feedback ([#107](https://github.com/powerhouse-inc/powerhouse/pull/107)) +- implement teeps feedback ([#239](https://github.com/powerhouse-inc/powerhouse/pull/239)) +- added error handling support for Editor components and dispatch function ([#104](https://github.com/powerhouse-inc/powerhouse/pull/104)) +- bump design system ([#103](https://github.com/powerhouse-inc/powerhouse/pull/103)) +- treat cash balance change as input ([#102](https://github.com/powerhouse-inc/powerhouse/pull/102)) +- fix object references and temp hack for state delay bug ([#99](https://github.com/powerhouse-inc/powerhouse/pull/99)) +- add transactions editor ([#94](https://github.com/powerhouse-inc/powerhouse/pull/94)) +- added connect toast ([5497ea7b](https://github.com/powerhouse-inc/powerhouse/commit/5497ea7b)) +- added missing rwa types export ([68117aec](https://github.com/powerhouse-inc/powerhouse/commit/68117aec)) +- added connect settings modal ([da943155](https://github.com/powerhouse-inc/powerhouse/commit/da943155)) +- add real-word-assets export ([1b694716](https://github.com/powerhouse-inc/powerhouse/commit/1b694716)) +- use mock date in stories ([#88](https://github.com/powerhouse-inc/powerhouse/pull/88)) +- stop drive sync if triggers are removed ([dcf2df25](https://github.com/powerhouse-inc/powerhouse/commit/dcf2df25)) +- added release ghub action ([#85](https://github.com/powerhouse-inc/powerhouse/pull/85)) +- enabled support for switchboard link in RWA editor ([#82](https://github.com/powerhouse-inc/powerhouse/pull/82)) +- bump document-model dep ([74420700](https://github.com/powerhouse-inc/powerhouse/commit/74420700)) +- update design system dep ([6bb65b2d](https://github.com/powerhouse-inc/powerhouse/commit/6bb65b2d)) +- improved error reporting and fixed operation hash check ([c6cc70f6](https://github.com/powerhouse-inc/powerhouse/commit/c6cc70f6)) +- add chromatic ([#211](https://github.com/powerhouse-inc/powerhouse/pull/211)) +- enabled rwa editor controls ([#80](https://github.com/powerhouse-inc/powerhouse/pull/80)) +- handle skew icon and move table components to design system ([#79](https://github.com/powerhouse-inc/powerhouse/pull/79)) +- added semantic release ([f1c31a6b](https://github.com/powerhouse-inc/powerhouse/commit/f1c31a6b)) +- bump all to latest ([#197](https://github.com/powerhouse-inc/powerhouse/pull/197)) +- added drive events and improved sync error handling ([647c8339](https://github.com/powerhouse-inc/powerhouse/commit/647c8339)) +- RWA Editor integration with RWA document ([#65](https://github.com/powerhouse-inc/powerhouse/pull/65)) +- improved operation errors ([a05772d0](https://github.com/powerhouse-inc/powerhouse/commit/a05772d0)) +- update inputs to match schema ([#185](https://github.com/powerhouse-inc/powerhouse/pull/185)) +- add fixed income type reducers ([#66](https://github.com/powerhouse-inc/powerhouse/pull/66)) +- updated readme ([23dfa5c5](https://github.com/powerhouse-inc/powerhouse/commit/23dfa5c5)) +- added asset details to fixed-income-assets-table ([bee2322b](https://github.com/powerhouse-inc/powerhouse/commit/bee2322b)) +- added RWAAssetDetails components + table inputs components ([a5c92936](https://github.com/powerhouse-inc/powerhouse/commit/a5c92936)) +- updated document drive dep ([78b82507](https://github.com/powerhouse-inc/powerhouse/commit/78b82507)) +- added clipboard to document ([3f8c2957](https://github.com/powerhouse-inc/powerhouse/commit/3f8c2957)) +- add real world assets portfolio document model ([#33](https://github.com/powerhouse-inc/powerhouse/pull/33)) +- added RWATable component ([7a36aabd](https://github.com/powerhouse-inc/powerhouse/commit/7a36aabd)) +- added create asset modal + RWA base input components ([e0633983](https://github.com/powerhouse-inc/powerhouse/commit/e0633983)) +- updated drive info request ([8d9f7ac4](https://github.com/powerhouse-inc/powerhouse/commit/8d9f7ac4)) +- request public drive info ([a2be5b83](https://github.com/powerhouse-inc/powerhouse/commit/a2be5b83)) +- implementation of switchboard transmitter ([cfbdc857](https://github.com/powerhouse-inc/powerhouse/commit/cfbdc857)) +- sync protocol draft ([f5ef8436](https://github.com/powerhouse-inc/powerhouse/commit/f5ef8436)) +- bump document model ([c8a2318b](https://github.com/powerhouse-inc/powerhouse/commit/c8a2318b)) +- added sequelize adapter ([#19](https://github.com/powerhouse-inc/powerhouse/pull/19)) +- use new codegen lib name ([ba6ad45a](https://github.com/powerhouse-inc/powerhouse/commit/ba6ad45a)) +- add ts-reset lib ([760c3fbe](https://github.com/powerhouse-inc/powerhouse/commit/760c3fbe)) +- bump lint deps ([c4a68c9d](https://github.com/powerhouse-inc/powerhouse/commit/c4a68c9d)) +- only apply dom libs in editors ([b1d4612f](https://github.com/powerhouse-inc/powerhouse/commit/b1d4612f)) +- add dom as es libs to tsconfig ([dfe4a2a9](https://github.com/powerhouse-inc/powerhouse/commit/dfe4a2a9)) +- install ts-reset lib ([cfa86204](https://github.com/powerhouse-inc/powerhouse/commit/cfa86204)) +- bump lint packages ([3ddc2391](https://github.com/powerhouse-inc/powerhouse/commit/3ddc2391)) +- allow user to only edit the content of the operation type ([79af3919](https://github.com/powerhouse-inc/powerhouse/commit/79af3919)) +- added prisma connection ([ef87ca76](https://github.com/powerhouse-inc/powerhouse/commit/ef87ca76)) +- 101 UI drive settings component ([#104](https://github.com/powerhouse-inc/powerhouse/pull/104)) +- add new configs for typescript eslint ([#93](https://github.com/powerhouse-inc/powerhouse/pull/93)) +- 75 drive status indicator local cloud available offline ([#92](https://github.com/powerhouse-inc/powerhouse/pull/92)) +- add official tailwind prettier plugin ([#91](https://github.com/powerhouse-inc/powerhouse/pull/91)) +- fixed dropItem export ([e9319cb2](https://github.com/powerhouse-inc/powerhouse/commit/e9319cb2)) +- removed react-click-away-listener as peer dependency ([8ed92661](https://github.com/powerhouse-inc/powerhouse/commit/8ed92661)) +- **tree-view-input:** 🚀 Added TreeViewInput Component ([bba0d1e1](https://github.com/powerhouse-inc/powerhouse/commit/bba0d1e1)) +- **dropdown-menu:** 🚀 added DropdownMenu component ([aad28ad1](https://github.com/powerhouse-inc/powerhouse/commit/aad28ad1)) +- added sidebar collapse animation ([9706446a](https://github.com/powerhouse-inc/powerhouse/commit/9706446a)) +- **project-setup:** enabled commit lint ([0921ad4d](https://github.com/powerhouse-inc/powerhouse/commit/0921ad4d)) +- added release workflow ([d3df37cd](https://github.com/powerhouse-inc/powerhouse/commit/d3df37cd)) +- added jest setup + testing library ([8fb4f485](https://github.com/powerhouse-inc/powerhouse/commit/8fb4f485)) +- added eslint setup ([e08b2266](https://github.com/powerhouse-inc/powerhouse/commit/e08b2266)) +- added storybook setup ([45da43da](https://github.com/powerhouse-inc/powerhouse/commit/45da43da)) +- changed moved dspot deps to devDeps ([025344c8](https://github.com/powerhouse-inc/powerhouse/commit/025344c8)) +- added Editor for account snapshot ([5824db08](https://github.com/powerhouse-inc/powerhouse/commit/5824db08)) +- Added account snapshot base model document + base operations tests ([24ca99e9](https://github.com/powerhouse-inc/powerhouse/commit/24ca99e9)) + +### 🩹 Fixes + +- **monorepo:** try just release publish ([3a708dab](https://github.com/powerhouse-inc/powerhouse/commit/3a708dab)) +- **monorepo:** remove skip publish ([3788d2c7](https://github.com/powerhouse-inc/powerhouse/commit/3788d2c7)) +- **monorepo:** add install ignore scripts ([4f2832d6](https://github.com/powerhouse-inc/powerhouse/commit/4f2832d6)) +- **monorepo:** fix command name ([d3e296e8](https://github.com/powerhouse-inc/powerhouse/commit/d3e296e8)) +- **monorepo:** try build all ([42beb01c](https://github.com/powerhouse-inc/powerhouse/commit/42beb01c)) +- **monorepo:** remove workspaces and package manager fields ([e0b53fef](https://github.com/powerhouse-inc/powerhouse/commit/e0b53fef)) +- **monorepo:** try remove resolutions ([d8ed0db3](https://github.com/powerhouse-inc/powerhouse/commit/d8ed0db3)) +- **monorepo:** try frozen lockfile ([ea788885](https://github.com/powerhouse-inc/powerhouse/commit/ea788885)) +- **monorepo:** add missing dep ([28d487d7](https://github.com/powerhouse-inc/powerhouse/commit/28d487d7)) +- fixed read required button not being enabled when scroll ends ([deed9f41](https://github.com/powerhouse-inc/powerhouse/commit/deed9f41)) +- prevent revisions history scroll cutoff ([6ac1efdc](https://github.com/powerhouse-inc/powerhouse/commit/6ac1efdc)) +- don't show selected file on fileItem path ([3bdb9eb2](https://github.com/powerhouse-inc/powerhouse/commit/3bdb9eb2)) +- update doc model libs ([ee714e04](https://github.com/powerhouse-inc/powerhouse/commit/ee714e04)) +- remove sentry ([75faf6ac](https://github.com/powerhouse-inc/powerhouse/commit/75faf6ac)) +- file name in scripts ([7fdfb41f](https://github.com/powerhouse-inc/powerhouse/commit/7fdfb41f)) +- install missing deps ([f288ec98](https://github.com/powerhouse-inc/powerhouse/commit/f288ec98)) +- re-add dep that got lost in merge ([f7635230](https://github.com/powerhouse-inc/powerhouse/commit/f7635230)) +- re-add script that got lost in merge ([51e520c3](https://github.com/powerhouse-inc/powerhouse/commit/51e520c3)) +- Storybook body styles ([dbe53e8a](https://github.com/powerhouse-inc/powerhouse/commit/dbe53e8a)) +- sotorybook dep with yarn ([fc7970e8](https://github.com/powerhouse-inc/powerhouse/commit/fc7970e8)) + +### ❤️ Thank You + +- acaldas @acaldas +- Frank +- frankp.eth @froid1911 +- Guillermo Puente @gpuente +- Guillermo Puente Sandoval @gpuente +- Ryan Wolhuter @ryanwolhuter +- ryanwolhuter @ryanwolhuter +- semantic-release-bot + ## 2.1.0 (2024-09-26) diff --git a/packages/document-model/package.json b/packages/document-model/package.json index dec5ccc2f..7594f3507 100644 --- a/packages/document-model/package.json +++ b/packages/document-model/package.json @@ -1,81 +1,81 @@ { - "name": "document-model", - "version": "2.1.0", - "license": "AGPL-3.0-only", - "private": false, - "files": [ - "dist" - ], - "types": "dist/node/index.d.ts", - "main": "dist/node/cjs/index.cjs", - "module": "dist/node/es/index.js", - "browser": "dist/browser/es/index.js", - "type": "module", - "scripts": { - "check-types": "tsc --noEmit", - "postlint": "npm run check-types", - "lint": "eslint", - "build": "NODE_ENV=production npm run build:browser && npm run build:node", - "build:watch": "NODE_ENV=production npm run build:browser -- --watch && npm run build:node -- --watch", - "build:browser": "vite build --mode browser", - "build:node": "vite build --mode node", - "test": "vitest run", - "clean": "rimraf dist", - "clean:node_modules": "rimraf node_modules" + "name": "document-model", + "version": "2.2.0", + "license": "AGPL-3.0-only", + "private": false, + "files": [ + "dist" + ], + "types": "dist/node/index.d.ts", + "main": "dist/node/cjs/index.cjs", + "module": "dist/node/es/index.js", + "browser": "dist/browser/es/index.js", + "type": "module", + "scripts": { + "check-types": "tsc --noEmit", + "postlint": "npm run check-types", + "lint": "eslint", + "build": "NODE_ENV=production npm run build:browser && npm run build:node", + "build:watch": "NODE_ENV=production npm run build:browser -- --watch && npm run build:node -- --watch", + "build:browser": "vite build --mode browser", + "build:node": "vite build --mode node", + "test": "vitest run", + "clean": "rimraf dist", + "clean:node_modules": "rimraf node_modules" + }, + "exports": { + ".": { + "node": { + "import": "./dist/node/es/index.js", + "require": "./dist/node/cjs/index.cjs", + "types": "./dist/node/index.d.ts" + }, + "import": "./dist/browser/es/index.js", + "require": "./dist/browser/cjs/index.cjs", + "types": "./dist/browser/index.d.ts" }, - "exports": { - ".": { - "node": { - "import": "./dist/node/es/index.js", - "require": "./dist/node/cjs/index.cjs", - "types": "./dist/node/index.d.ts" - }, - "import": "./dist/browser/es/index.js", - "require": "./dist/browser/cjs/index.cjs", - "types": "./dist/browser/index.d.ts" - }, - "./document": { - "node": { - "import": "./dist/node/es/document.js", - "require": "./dist/node/cjs/document.js", - "types": "./dist/node/document.d.ts" - }, - "import": "./dist/browser/es/document.js", - "require": "./dist/browser/cjs/document.js", - "types": "./dist/browser/document.d.ts" - }, - "./document-model": { - "node": { - "import": "./dist/node/es/document-model.js", - "require": "./dist/node/cjs/document-model.js", - "types": "./dist/node/document-model.d.ts" - }, - "import": "./dist/browser/es/document-model.js", - "require": "./dist/browser/cjs/document-model.js", - "types": "./dist/browser/document-model.d.ts" - } + "./document": { + "node": { + "import": "./dist/node/es/document.js", + "require": "./dist/node/cjs/document.js", + "types": "./dist/node/document.d.ts" + }, + "import": "./dist/browser/es/document.js", + "require": "./dist/browser/cjs/document.js", + "types": "./dist/browser/document.d.ts" }, - "devDependencies": { - "@rollup/plugin-node-resolve": "^15.2.3", - "@types/jest": "^29.5.13", - "@types/mime": "^3.0.4", - "@types/node": "^20.11.17", - "@types/react": "^18.2.48", - "@types/uuid": "^9.0.8", - "playwright": "^1.46.1", - "react": "^18.2.0", - "rollup-plugin-polyfill-node": "^0.13.0", - "vite-plugin-generate-file": "^0.2.0", - "vite-plugin-node-polyfills": "^0.19.0" - }, - "dependencies": { - "change-case": "^5.4.3", - "jszip": "^3.10.1", - "mime": "^4.0.1", - "mutative": "^1.0.5", - "safe-stable-stringify": "^2.4.3", - "sha1-uint8array": "^0.10.7", - "uuid": "^9.0.1", - "zod": "^3.22.4" + "./document-model": { + "node": { + "import": "./dist/node/es/document-model.js", + "require": "./dist/node/cjs/document-model.js", + "types": "./dist/node/document-model.d.ts" + }, + "import": "./dist/browser/es/document-model.js", + "require": "./dist/browser/cjs/document-model.js", + "types": "./dist/browser/document-model.d.ts" } + }, + "devDependencies": { + "@rollup/plugin-node-resolve": "^15.2.3", + "@types/jest": "^29.5.13", + "@types/mime": "^3.0.4", + "@types/node": "^20.11.17", + "@types/react": "^18.2.48", + "@types/uuid": "^9.0.8", + "playwright": "^1.46.1", + "react": "^18.2.0", + "rollup-plugin-polyfill-node": "^0.13.0", + "vite-plugin-generate-file": "^0.2.0", + "vite-plugin-node-polyfills": "^0.19.0" + }, + "dependencies": { + "change-case": "^5.4.3", + "jszip": "^3.10.1", + "mime": "^4.0.1", + "mutative": "^1.0.5", + "safe-stable-stringify": "^2.4.3", + "sha1-uint8array": "^0.10.7", + "uuid": "^9.0.1", + "zod": "^3.22.4" + } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d0cad0df7..5c122a7d6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -298,7 +298,7 @@ importers: specifier: ^7.0.3 version: 7.0.3 document-model: - specifier: workspace:* + specifier: 2.2.0 version: link:../document-model fast-xml-parser: specifier: ^4.3.4 @@ -390,7 +390,7 @@ importers: specifier: ^9.0.8 version: 9.0.8 document-model: - specifier: workspace:* + specifier: 2.2.0 version: link:../document-model document-model-libs: specifier: 1.93.1 @@ -524,7 +524,7 @@ importers: specifier: 0.0.15 version: 0.0.15(graphql@16.9.0)(zod@3.23.8) '@powerhousedao/design-system': - specifier: 1.0.0-alpha.183 + specifier: 1.0.0 version: link:../design-system '@semantic-release/changelog': specifier: ^6.0.3 @@ -590,7 +590,7 @@ importers: specifier: ^3.12.0 version: 3.12.0 document-model: - specifier: workspace:* + specifier: 2.2.0 version: link:../document-model document-model-editors: specifier: ^1.0.1