chore(multi): v1.5.0

This commit is contained in:
Ben Allfree 2024-06-28 07:37:42 -07:00
parent 83f8f7af51
commit 65e1a91f44
27 changed files with 154 additions and 105 deletions

View File

@ -1,5 +0,0 @@
---
'pockethost': patch
---
Plugin authoring docs update

View File

@ -1,6 +0,0 @@
---
'@pockethost/plugin-maildev': patch
'pockethost': patch
---
Added docs and updated maildev with plugin hook guards

View File

@ -1,5 +0,0 @@
---
'@pockethost/plugin-launcher-spawn': patch
---
Enhancement: improve URL instructions

View File

@ -1,5 +0,0 @@
---
'@pockethost/plugin-maildev': patch
---
At launch, instances are configured to use maildev settings

View File

@ -1,5 +0,0 @@
---
'@pockethost/plugin-launcher-spawn': patch
---
Fix: now uses correct info() logging call

View File

@ -1,5 +0,0 @@
---
'pockethost': patch
---
Fix: [INFO] logging prefixes

View File

@ -1,5 +0,0 @@
---
'pockethost': minor
---
Added `--extra-plugins` global switch to temporarily load extra plugins from CLI

View File

@ -1,5 +0,0 @@
---
'pockethost': patch
---
Updated documentation

View File

@ -1,5 +0,0 @@
---
'@pockethost/plugin-launcher-spawn': minor
---
Added support for configuring instance env and binds

View File

@ -1,8 +0,0 @@
---
'@pockethost/plugin-cloudflare-request-logger': patch
'@pockethost/plugin-console-logger': patch
'@pockethost/plugin-launcher-spawn': patch
'@pockethost/plugin-auto-admin': patch
---
Settings are now logged in DEBUG mode

View File

@ -1,5 +0,0 @@
---
'pockethost': patch
---
Fix: improve plugin loading order

View File

@ -1,5 +0,0 @@
---
'pockethost': minor
---
Add InstanceConfig filter, fix instance logger namespace, add core instance app lib

View File

@ -1,5 +0,0 @@
---
'pockethost': minor
---
logSettings now exported from core

View File

@ -1,5 +0,0 @@
---
'pockethost': minor
---
Add namespace() export to core Logger service

81
announce.md Normal file
View File

@ -0,0 +1,81 @@
PocketHost has made new releases.
`@pockethost/plugin-maildev` has been released, which allows users to use a local `maildev` server to test emailing from instances.
All plugins now output their settings when PocketHost is run in debug mode.
Other supporting enhancements are listed below.
<!-- TOC depthfrom:1 depthto:1 orderedlist:false -->
- [pockethost@1.5.0](#pockethost150)
- [@pockethost/plugin-auto-admin@0.1.1](#pockethostplugin-auto-admin011)
- [@pockethost/plugin-cloudflare-request-logger@0.0.2](#pockethostplugin-cloudflare-request-logger002)
- [@pockethost/plugin-console-logger@0.2.1](#pockethostplugin-console-logger021)
- [@pockethost/plugin-launcher-spawn@0.3.0](#pockethostplugin-launcher-spawn030)
- [@pockethost/plugin-maildev@0.0.1](#pockethostplugin-maildev001)
<!-- /TOC -->
# pockethost@1.5.0
### Minor Changes
- 5e9ed51: Added `--extra-plugins` global switch to temporarily load extra plugins from CLI
- 2376b0d: Add InstanceConfig filter, fix instance logger namespace, add core instance app lib
- 737b4b8: logSettings now exported from core
- 114b1d2: Add namespace() export to core Logger service
### Patch Changes
- 211fba6: Plugin authoring docs update
- 675e634: Added docs and updated maildev with plugin hook guards
- 3daf7f5: Fix: [INFO] logging prefixes
- 139468f: Updated documentation
- 1e5321b: Fix: improve plugin loading order
- Updated dependencies [517f602]
- @pockethost/plugin-launcher-spawn@0.3.0
- @pockethost/plugin-console-logger@0.2.1
- @pockethost/plugin-auto-admin@0.1.1
# @pockethost/plugin-auto-admin@0.1.1
### Patch Changes
- 517f602: Settings are now logged in DEBUG mode
- Updated dependencies [114b1d2]
- pockethost@1.5.0
# @pockethost/plugin-cloudflare-request-logger@0.0.2
### Patch Changes
- 517f602: Settings are now logged in DEBUG mode
- Updated dependencies [114b1d2]
- pockethost@1.5.0
# @pockethost/plugin-console-logger@0.2.1
### Patch Changes
- 517f602: Settings are now logged in DEBUG mode
- Updated dependencies [114b1d2]
- pockethost@1.5.0
# @pockethost/plugin-launcher-spawn@0.3.0
### Minor Changes
- e4d35ae: Added support for configuring instance env and binds
### Patch Changes
- 40d8b8b: Enhancement: improve URL instructions
- b4b0cf9: Fix: now uses correct info() logging call
- 517f602: Settings are now logged in DEBUG mode
- Updated dependencies [114b1d2]
- pockethost@1.5.0
# @pockethost/plugin-maildev@0.0.1
Initial release

View File

@ -1,5 +1,13 @@
# @pockethost/plugin-auto-admin
## 0.1.1
### Patch Changes
- 517f602: Settings are now logged in DEBUG mode
- Updated dependencies [114b1d2]
- pockethost@1.5.0
## 0.1.0
### Minor Changes

View File

@ -1,6 +1,6 @@
{
"name": "@pockethost/plugin-auto-admin",
"version": "0.1.0",
"version": "0.1.1",
"repository": {
"type": "git",
"url": "http://github.com/pockethost/pockethost/packages/plugin-auto-admin"
@ -27,7 +27,7 @@
"pocketbase": "^0.21.3"
},
"peerDependencies": {
"pockethost": "workspace:^1.4.0"
"pockethost": "workspace:^1.5.0"
},
"devDependencies": {
"@types/node": "^20.8.10",

View File

@ -0,0 +1,9 @@
# @pockethost/plugin-cloudflare-request-logger
## 0.0.2
### Patch Changes
- 517f602: Settings are now logged in DEBUG mode
- Updated dependencies [114b1d2]
- pockethost@1.5.0

View File

@ -1,6 +1,6 @@
{
"name": "@pockethost/plugin-cloudflare-request-logger",
"version": "0.0.1",
"version": "0.0.2",
"repository": {
"type": "git",
"url": "http://github.com/pockethost/pockethost/packages/plugin-cloudflare-request-logger"
@ -22,7 +22,7 @@
},
"license": "MIT",
"dependencies": {
"pockethost": "workspace:^1.4.0"
"pockethost": "workspace:^1.5.0"
},
"devDependencies": {
"@types/node": "^20.8.10",

View File

@ -1,5 +1,13 @@
# @pockethost/plugin-console-logger
## 0.2.1
### Patch Changes
- 517f602: Settings are now logged in DEBUG mode
- Updated dependencies [114b1d2]
- pockethost@1.5.0
## 0.2.0
### Minor Changes

View File

@ -1,6 +1,6 @@
{
"name": "@pockethost/plugin-console-logger",
"version": "0.2.0",
"version": "0.2.1",
"repository": {
"type": "git",
"url": "http://github.com/pockethost/pockethost/packages/plugin-console-logger"
@ -27,7 +27,7 @@
"typescript": "^5.4.5"
},
"peerDependencies": {
"pockethost": "workspace:^1.4.0"
"pockethost": "workspace:^1.5.0"
},
"dependencies": {
"json-stringify-safe": "^5.0.1"

View File

@ -1,5 +1,19 @@
# @pockethost/plugin-launcher-spawn
## 0.3.0
### Minor Changes
- e4d35ae: Added support for configuring instance env and binds
### Patch Changes
- 40d8b8b: Enhancement: improve URL instructions
- b4b0cf9: Fix: now uses correct info() logging call
- 517f602: Settings are now logged in DEBUG mode
- Updated dependencies [114b1d2]
- pockethost@1.5.0
## 0.2.0
### Minor Changes

View File

@ -1,6 +1,6 @@
{
"name": "@pockethost/plugin-launcher-spawn",
"version": "0.2.0",
"version": "0.3.0",
"repository": {
"type": "git",
"url": "http://github.com/pockethost/pockethost/packages/plugin-launcher-spawn"
@ -32,7 +32,7 @@
"semver": "^7.6.2"
},
"peerDependencies": {
"pockethost": "workspace:^1.4.0"
"pockethost": "workspace:^1.5.0"
},
"devDependencies": {
"typescript": "^5.4.5"

View File

@ -1,23 +1,5 @@
# @pockethost/plugin-maildev
## 2.0.0
## 0.0.1
### Patch Changes
- Updated dependencies [3daf7f5]
- Updated dependencies [5e9ed51]
- Updated dependencies [139468f]
- Updated dependencies [1e5321b]
- Updated dependencies [737b4b8]
- pockethost@1.5.0
## 1.0.0
### Patch Changes
- Updated dependencies [3daf7f5]
- Updated dependencies [5e9ed51]
- Updated dependencies [139468f]
- Updated dependencies [1e5321b]
- Updated dependencies [737b4b8]
- pockethost@1.6.0
### Initial release

View File

@ -1,6 +1,6 @@
{
"name": "@pockethost/plugin-maildev",
"version": "0.0.0",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "http://github.com/pockethost/pockethost/packages/plugin-maildev"
@ -28,7 +28,7 @@
"maildev": "^2.1.0"
},
"peerDependencies": {
"pockethost": "workspace:^1.4.0"
"pockethost": "workspace:^1.5.0"
},
"devDependencies": {
"@types/maildev": "^0.0.7",

View File

@ -1,5 +1,26 @@
# pockethost
## 1.5.0
### Minor Changes
- 5e9ed51: Added `--extra-plugins` global switch to temporarily load extra plugins from CLI
- 2376b0d: Add InstanceConfig filter, fix instance logger namespace, add core instance app lib
- 737b4b8: logSettings now exported from core
- 114b1d2: Add namespace() export to core Logger service
### Patch Changes
- 211fba6: Plugin authoring docs update
- 675e634: Added docs and updated maildev with plugin hook guards
- 3daf7f5: Fix: [INFO] logging prefixes
- 139468f: Updated documentation
- 1e5321b: Fix: improve plugin loading order
- Updated dependencies [517f602]
- @pockethost/plugin-launcher-spawn@0.3.0
- @pockethost/plugin-console-logger@0.2.1
- @pockethost/plugin-auto-admin@0.1.1
## 1.4.0
### Minor Changes

View File

@ -1,6 +1,6 @@
{
"name": "pockethost",
"version": "1.4.0",
"version": "1.5.0",
"author": {
"name": "Ben Allfree",
"url": "https://github.com/benallfree"