diff --git a/.changeset/gold-doors-teach.md b/.changeset/gold-doors-teach.md deleted file mode 100644 index cec143be1..000000000 --- a/.changeset/gold-doors-teach.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -"@just-web/commands": patch ---- - -Commands can be added irrespective of contributions. - -This means contributions are now public contributions, -and we can register commands that are internal to the application. - -This is the same model as VS Code. - -Originally I want all commands to be public, -so that we can access every command everywhere. - -But there are use cases that commands can be used within a subsection of an application. -For example, some UI internal commands for interactions. - -In those cases, it doesn't make sense to make those command public. diff --git a/.changeset/sour-bears-clean.md b/.changeset/sour-bears-clean.md deleted file mode 100644 index c524b889d..000000000 --- a/.changeset/sour-bears-clean.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -"@just-web/react-commands": patch -"@just-web/app": patch -"@just-web/commands": patch -"@just-web/contributions": patch -"@just-web/errors": patch -"@just-web/log": patch -"@just-web/platform": patch -"@just-web/states": patch -"@just-web/react": patch -"@just-web/routes": patch -"@just-web/testing": patch ---- - -Upgrade type-plus to 4.13.1 diff --git a/.changeset/thin-mugs-develop.md b/.changeset/thin-mugs-develop.md deleted file mode 100644 index 5d80a6f70..000000000 --- a/.changeset/thin-mugs-develop.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@just-web/testing": patch ---- - -Upgrade `assertron` to 10.0.0 diff --git a/.changeset/wise-clouds-explain.md b/.changeset/wise-clouds-explain.md deleted file mode 100644 index 726496e60..000000000 --- a/.changeset/wise-clouds-explain.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@just-web/log": patch ---- - -Upgrade `standard-log` to 10.0.0 diff --git a/.changeset/witty-weeks-itch.md b/.changeset/witty-weeks-itch.md deleted file mode 100644 index 7c2191510..000000000 --- a/.changeset/witty-weeks-itch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@just-web/errors": patch ---- - -Upgrade `iso-error` to 4.3.8 diff --git a/apps/just-func/play-react/CHANGELOG.md b/apps/just-func/play-react/CHANGELOG.md index 539b83f00..f0cdbaf07 100644 --- a/apps/just-func/play-react/CHANGELOG.md +++ b/apps/just-func/play-react/CHANGELOG.md @@ -1,5 +1,15 @@ # @just-func/play-react +## 0.2.8 + +### Patch Changes + +- Updated dependencies [564addf] + - @just-web/react-commands@1.0.8 + - @just-web/app@0.2.8 + - @just-web/react@1.0.8 + - @just-web/routes@0.2.8 + ## 0.2.7 ### Patch Changes diff --git a/apps/just-func/play-react/package.json b/apps/just-func/play-react/package.json index 8097316d6..b3f03eb46 100644 --- a/apps/just-func/play-react/package.json +++ b/apps/just-func/play-react/package.json @@ -1,6 +1,6 @@ { "name": "@just-func/play-react", - "version": "0.2.7", + "version": "0.2.8", "private": true, "scripts": { "build": "run-s tailwind:css build:ts", diff --git a/components/react-commands/CHANGELOG.md b/components/react-commands/CHANGELOG.md index fed848678..3c8dc69ab 100644 --- a/components/react-commands/CHANGELOG.md +++ b/components/react-commands/CHANGELOG.md @@ -1,5 +1,14 @@ # @just-web/react-commands +## 1.0.8 + +### Patch Changes + +- 564addf: Upgrade type-plus to 4.13.1 +- Updated dependencies [564addf] + - @just-web/app@0.2.8 + - @just-web/react@1.0.8 + ## 1.0.7 ### Patch Changes diff --git a/components/react-commands/package.json b/components/react-commands/package.json index 9c12b818f..69a158a86 100644 --- a/components/react-commands/package.json +++ b/components/react-commands/package.json @@ -1,6 +1,6 @@ { "name": "@just-web/react-commands", - "version": "1.0.7", + "version": "1.0.8", "description": "@just-web/commands UI components in react", "main": "./lib/index.js", "types": "./lib/index.d.ts", diff --git a/frameworks/app/CHANGELOG.md b/frameworks/app/CHANGELOG.md index 5db832d18..c3409405f 100644 --- a/frameworks/app/CHANGELOG.md +++ b/frameworks/app/CHANGELOG.md @@ -1,5 +1,22 @@ # @just-web/app +## 0.2.8 + +### Patch Changes + +- 564addf: Upgrade type-plus to 4.13.1 +- Updated dependencies [b262ab5] +- Updated dependencies [564addf] +- Updated dependencies [c228a89] +- Updated dependencies [cad72d1] + - @just-web/commands@0.2.6 + - @just-web/contributions@0.2.4 + - @just-web/errors@0.2.4 + - @just-web/log@0.2.3 + - @just-web/platform@0.2.6 + - @just-web/states@0.2.4 + - @just-web/format@0.2.6 + ## 0.2.7 ### Patch Changes diff --git a/frameworks/app/package.json b/frameworks/app/package.json index 18f0b69a2..53c2fd7aa 100644 --- a/frameworks/app/package.json +++ b/frameworks/app/package.json @@ -1,6 +1,6 @@ { "name": "@just-web/app", - "version": "0.2.7", + "version": "0.2.8", "description": "Just a web application framework", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/frameworks/commands/CHANGELOG.md b/frameworks/commands/CHANGELOG.md index 1e9eec9a4..d53689907 100644 --- a/frameworks/commands/CHANGELOG.md +++ b/frameworks/commands/CHANGELOG.md @@ -1,5 +1,31 @@ # @just-web/commands +## 0.2.6 + +### Patch Changes + +- b262ab5: Commands can be added irrespective of contributions. + + This means contributions are now public contributions, + and we can register commands that are internal to the application. + + This is the same model as VS Code. + + Originally I want all commands to be public, + so that we can access every command everywhere. + + But there are use cases that commands can be used within a subsection of an application. + For example, some UI internal commands for interactions. + + In those cases, it doesn't make sense to make those command public. + +- 564addf: Upgrade type-plus to 4.13.1 +- Updated dependencies [564addf] +- Updated dependencies [c228a89] + - @just-web/contributions@0.2.4 + - @just-web/log@0.2.3 + - @just-web/states@0.2.4 + ## 0.2.5 ### Patch Changes diff --git a/frameworks/commands/package.json b/frameworks/commands/package.json index a2daf2e51..f2fdf56f9 100644 --- a/frameworks/commands/package.json +++ b/frameworks/commands/package.json @@ -1,6 +1,6 @@ { "name": "@just-web/commands", - "version": "0.2.5", + "version": "0.2.6", "description": "just-web command system", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/frameworks/contributions/CHANGELOG.md b/frameworks/contributions/CHANGELOG.md index f44ed193f..060286b9b 100644 --- a/frameworks/contributions/CHANGELOG.md +++ b/frameworks/contributions/CHANGELOG.md @@ -1,5 +1,15 @@ # @just-web/contributions +## 0.2.4 + +### Patch Changes + +- 564addf: Upgrade type-plus to 4.13.1 +- Updated dependencies [564addf] +- Updated dependencies [c228a89] + - @just-web/log@0.2.3 + - @just-web/states@0.2.4 + ## 0.2.3 ### Patch Changes diff --git a/frameworks/contributions/package.json b/frameworks/contributions/package.json index 10b17994d..17f9300d7 100644 --- a/frameworks/contributions/package.json +++ b/frameworks/contributions/package.json @@ -1,6 +1,6 @@ { "name": "@just-web/contributions", - "version": "0.2.3", + "version": "0.2.4", "description": "just-web contributions store", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/frameworks/errors/CHANGELOG.md b/frameworks/errors/CHANGELOG.md index 12490bb5f..a4866c104 100644 --- a/frameworks/errors/CHANGELOG.md +++ b/frameworks/errors/CHANGELOG.md @@ -1,5 +1,14 @@ # @just-web/errors +## 0.2.4 + +### Patch Changes + +- 564addf: Upgrade type-plus to 4.13.1 +- cad72d1: Upgrade `iso-error` to 4.3.8 +- Updated dependencies [564addf] + - @just-web/states@0.2.4 + ## 0.2.3 ### Patch Changes diff --git a/frameworks/errors/package.json b/frameworks/errors/package.json index ca1ff5fbb..a2dbbcf98 100644 --- a/frameworks/errors/package.json +++ b/frameworks/errors/package.json @@ -1,6 +1,6 @@ { "name": "@just-web/errors", - "version": "0.2.3", + "version": "0.2.4", "description": "just-web errors module", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/frameworks/events/CHANGELOG.md b/frameworks/events/CHANGELOG.md index 0f5a0617b..c2446df58 100644 --- a/frameworks/events/CHANGELOG.md +++ b/frameworks/events/CHANGELOG.md @@ -1,5 +1,13 @@ # @just-web/events +## 0.2.5 + +### Patch Changes + +- Updated dependencies [564addf] +- Updated dependencies [c228a89] + - @just-web/log@0.2.3 + ## 0.2.4 ### Patch Changes diff --git a/frameworks/events/package.json b/frameworks/events/package.json index 9dbda6680..2debede8c 100644 --- a/frameworks/events/package.json +++ b/frameworks/events/package.json @@ -1,6 +1,6 @@ { "name": "@just-web/events", - "version": "0.2.4", + "version": "0.2.5", "description": "just-web events module", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/frameworks/format/CHANGELOG.md b/frameworks/format/CHANGELOG.md index 3af12a669..5d7568931 100644 --- a/frameworks/format/CHANGELOG.md +++ b/frameworks/format/CHANGELOG.md @@ -1,5 +1,13 @@ # @just-web/format +## 0.2.6 + +### Patch Changes + +- Updated dependencies [564addf] + - @just-web/contributions@0.2.4 + - @just-web/platform@0.2.6 + ## 0.2.5 ### Patch Changes diff --git a/frameworks/format/package.json b/frameworks/format/package.json index 8f57cc88b..306d13ef0 100644 --- a/frameworks/format/package.json +++ b/frameworks/format/package.json @@ -1,6 +1,6 @@ { "name": "@just-web/format", - "version": "0.2.5", + "version": "0.2.6", "description": "@just-web value formatting library", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/frameworks/log/CHANGELOG.md b/frameworks/log/CHANGELOG.md index 9652804e2..b96f55f2b 100644 --- a/frameworks/log/CHANGELOG.md +++ b/frameworks/log/CHANGELOG.md @@ -1,5 +1,12 @@ # @just-web/log +## 0.2.3 + +### Patch Changes + +- 564addf: Upgrade type-plus to 4.13.1 +- c228a89: Upgrade `standard-log` to 10.0.0 + ## 0.2.2 ### Patch Changes diff --git a/frameworks/log/package.json b/frameworks/log/package.json index d91375d26..d64b75693 100644 --- a/frameworks/log/package.json +++ b/frameworks/log/package.json @@ -1,6 +1,6 @@ { "name": "@just-web/log", - "version": "0.2.2", + "version": "0.2.3", "description": "@just-web log module", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/frameworks/platform/CHANGELOG.md b/frameworks/platform/CHANGELOG.md index c47bd756d..0a6278d26 100644 --- a/frameworks/platform/CHANGELOG.md +++ b/frameworks/platform/CHANGELOG.md @@ -1,5 +1,17 @@ # @just-web/platform +## 0.2.6 + +### Patch Changes + +- 564addf: Upgrade type-plus to 4.13.1 +- Updated dependencies [b262ab5] +- Updated dependencies [564addf] +- Updated dependencies [c228a89] + - @just-web/commands@0.2.6 + - @just-web/contributions@0.2.4 + - @just-web/log@0.2.3 + ## 0.2.5 ### Patch Changes diff --git a/frameworks/platform/package.json b/frameworks/platform/package.json index f9a53ff66..65541fe99 100644 --- a/frameworks/platform/package.json +++ b/frameworks/platform/package.json @@ -1,6 +1,6 @@ { "name": "@just-web/platform", - "version": "0.2.5", + "version": "0.2.6", "description": "All about platform - where the code is executed", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/frameworks/states/CHANGELOG.md b/frameworks/states/CHANGELOG.md index 7d3115b94..718a39e4b 100644 --- a/frameworks/states/CHANGELOG.md +++ b/frameworks/states/CHANGELOG.md @@ -1,5 +1,14 @@ # @just-web/states +## 0.2.4 + +### Patch Changes + +- 564addf: Upgrade type-plus to 4.13.1 +- Updated dependencies [564addf] +- Updated dependencies [c228a89] + - @just-web/log@0.2.3 + ## 0.2.3 ### Patch Changes diff --git a/frameworks/states/package.json b/frameworks/states/package.json index 5401adab3..70b658eba 100644 --- a/frameworks/states/package.json +++ b/frameworks/states/package.json @@ -1,6 +1,6 @@ { "name": "@just-web/states", - "version": "0.2.3", + "version": "0.2.4", "description": "State management for just-web application", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/libraries/react/CHANGELOG.md b/libraries/react/CHANGELOG.md index 1ccf235cd..eeed32378 100644 --- a/libraries/react/CHANGELOG.md +++ b/libraries/react/CHANGELOG.md @@ -1,5 +1,13 @@ # @just-web/react +## 1.0.8 + +### Patch Changes + +- 564addf: Upgrade type-plus to 4.13.1 +- Updated dependencies [564addf] + - @just-web/app@0.2.8 + ## 1.0.7 ### Patch Changes diff --git a/libraries/react/package.json b/libraries/react/package.json index 2452b4eb1..25a7f5aa0 100644 --- a/libraries/react/package.json +++ b/libraries/react/package.json @@ -1,6 +1,6 @@ { "name": "@just-web/react", - "version": "1.0.7", + "version": "1.0.8", "description": "Supporting library for using @just-web with React", "main": "./lib/index.js", "types": "./lib/index.d.ts", diff --git a/plugins/routes/CHANGELOG.md b/plugins/routes/CHANGELOG.md index 68d87e1e6..78d4e2aa4 100644 --- a/plugins/routes/CHANGELOG.md +++ b/plugins/routes/CHANGELOG.md @@ -1,5 +1,13 @@ # @just-web/routes +## 0.2.8 + +### Patch Changes + +- 564addf: Upgrade type-plus to 4.13.1 +- Updated dependencies [564addf] + - @just-web/app@0.2.8 + ## 0.2.7 ### Patch Changes diff --git a/plugins/routes/package.json b/plugins/routes/package.json index eb4a0b2a0..fb0037094 100644 --- a/plugins/routes/package.json +++ b/plugins/routes/package.json @@ -1,6 +1,6 @@ { "name": "@just-web/routes", - "version": "0.2.7", + "version": "0.2.8", "description": "just-web routes library", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/tools/testing/CHANGELOG.md b/tools/testing/CHANGELOG.md index 13862c8a3..b0bdb0fa1 100644 --- a/tools/testing/CHANGELOG.md +++ b/tools/testing/CHANGELOG.md @@ -1,5 +1,15 @@ # @just-web/testing +## 0.2.3 + +### Patch Changes + +- 564addf: Upgrade type-plus to 4.13.1 +- 0e94b19: Upgrade `assertron` to 10.0.0 +- Updated dependencies [564addf] +- Updated dependencies [c228a89] + - @just-web/log@0.2.3 + ## 0.2.2 ### Patch Changes diff --git a/tools/testing/package.json b/tools/testing/package.json index 2fdce1f62..321678d59 100644 --- a/tools/testing/package.json +++ b/tools/testing/package.json @@ -1,6 +1,6 @@ { "name": "@just-web/testing", - "version": "0.2.2", + "version": "0.2.3", "description": "just-web testing library", "main": "lib/index.js", "types": "lib/index.d.ts",