mnemosyne-core 2.1.12 → 2.1.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3823,7 +3823,7 @@ function getVersion2() {
3823
3823
  const pkg = JSON.parse(readFileSync5(resolve7(process.cwd(), "package.json"), "utf-8"));
3824
3824
  return pkg.version;
3825
3825
  } catch {
3826
- return "2.1.11";
3826
+ return "2.1.12";
3827
3827
  }
3828
3828
  }
3829
3829
  }
@@ -4364,7 +4364,7 @@ function getVersion() {
4364
4364
  const pkg = JSON.parse(readFileSync5(resolve7(process.cwd(), "package.json"), "utf-8"));
4365
4365
  return pkg.version;
4366
4366
  } catch {
4367
- return "2.1.11";
4367
+ return "2.1.12";
4368
4368
  }
4369
4369
  }
4370
4370
  }
@@ -5496,7 +5496,7 @@ var PKG_VERSION = (() => {
5496
5496
  const pkg = JSON.parse(__require("fs").readFileSync(__require("path").resolve(__dirname, "../../package.json"), "utf-8"));
5497
5497
  return pkg.version;
5498
5498
  } catch {
5499
- return "2.1.11";
5499
+ return "2.1.12";
5500
5500
  }
5501
5501
  })();
5502
5502
  function handleHealth(store, pathname, method, res) {
@@ -7196,7 +7196,7 @@ var MnemosyneServer = class {
7196
7196
  const wss = new import_websocket_server.default({ server: this.httpServer });
7197
7197
  this.wsHandler = new WebSocketHandler(wss, this.store);
7198
7198
  }
7199
- const version = cfg?.server?.version || "2.1.11";
7199
+ const version = cfg?.server?.version || "2.1.12";
7200
7200
  this.httpServer.listen(port, () => {
7201
7201
  console.log(`Mnemosyne v${version} \u2014 port ${port}`);
7202
7202
  console.log(`Dashboard: http://${host}:${port}/dashboard`);