v23 support

This commit is contained in:
Ben Allfree 2024-12-04 21:35:56 -08:00
parent aee53e6143
commit afe377011d
10 changed files with 23 additions and 23 deletions

View File

@ -1,5 +0,0 @@
---
'pockethost': patch
---
Default to dev mode on new instances

View File

@ -1,5 +0,0 @@
---
'pockethost': patch
---
Add mothership update-versions command

View File

@ -1,5 +0,0 @@
---
'@pockethost/dashboard': patch
---
Add dev mode pulse

View File

@ -1,5 +0,0 @@
---
'@pockethost/dashboard': patch
---
Dashboard fix: Don't allow instance creation until versions are available

View File

@ -0,0 +1,8 @@
# @pockethost/dashboard
## 0.4.2
### Patch Changes
- 148e7bb: Add dev mode pulse
- ea113a9: Dashboard fix: Don't allow instance creation until versions are available

View File

@ -1,6 +1,6 @@
{ {
"name": "@pockethost/dashboard", "name": "@pockethost/dashboard",
"version": "0.4.1", "version": "0.4.2",
"private": true, "private": true,
"main": "./src/app.html", "main": "./src/app.html",
"scripts": { "scripts": {

View File

@ -1,5 +1,16 @@
# pockethost # pockethost
## 2.2.0
### Minor Changes
- v23 support
### Patch Changes
- a5eaa42: Default to dev mode on new instances
- ed47618: Add mothership update-versions command
## 2.1.1 ## 2.1.1
### Patch Changes ### Patch Changes

View File

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

View File

@ -82,7 +82,7 @@ const createDevCert = async () => {
export const createSettings = () => ({ export const createSettings = () => ({
DEBUG: mkBoolean(_DEBUG), DEBUG: mkBoolean(_DEBUG),
PH_ALLOWED_POCKETBASE_SEMVER: mkString(`<=0.22.*`), PH_ALLOWED_POCKETBASE_SEMVER: mkString(`<=0.23.*`),
PH_HOME: mkPath(_PH_HOME, { create: true }), PH_HOME: mkPath(_PH_HOME, { create: true }),
PH_PROJECT_ROOT: mkPath(PH_PROJECT_ROOT()), PH_PROJECT_ROOT: mkPath(PH_PROJECT_ROOT()),

View File

@ -1,4 +1,5 @@
module.exports = [ module.exports = [
"0.23.*",
"0.22.*", "0.22.*",
"0.21.*", "0.21.*",
"0.20.*", "0.20.*",