Compare commits

...

2 Commits

Author SHA1 Message Date
Junyan Qin
bf279049c0 chore: bump version 4.3.2 2025-09-17 13:57:45 +08:00
Junyan Qin
05cc58f2d7 fix: bad plugin runtime ws url in migration 2025-09-17 13:55:59 +08:00
2 changed files with 4 additions and 2 deletions

View File

@@ -10,7 +10,9 @@ class DBMigratePluginConfig(migration.DBMigration):
if 'plugin' not in self.ap.instance_config.data: if 'plugin' not in self.ap.instance_config.data:
self.ap.instance_config.data['plugin'] = { self.ap.instance_config.data['plugin'] = {
'runtime_ws_url': 'ws://localhost:5400/control/ws', 'runtime_ws_url': 'ws://langbot_plugin_runtime:5400/control/ws',
'enable_marketplace': True,
'cloud_service_url': 'https://space.langbot.app',
} }
await self.ap.instance_config.dump_config() await self.ap.instance_config.dump_config()

View File

@@ -1,4 +1,4 @@
semantic_version = 'v4.3.1' semantic_version = 'v4.3.2'
required_database_version = 8 required_database_version = 8
"""Tag the version of the database schema, used to check if the database needs to be migrated""" """Tag the version of the database schema, used to check if the database needs to be migrated"""