@elizaos/server 1.7.1-alpha.4 → 1.7.1-alpha.5

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.
Files changed (2) hide show
  1. package/dist/index.js +13 -20
  2. package/package.json +6 -6
package/dist/index.js CHANGED
@@ -26167,7 +26167,7 @@ import express31 from "express";
26167
26167
  // package.json
26168
26168
  var package_default = {
26169
26169
  name: "@elizaos/server",
26170
- version: "1.7.1-alpha.4",
26170
+ version: "1.7.1-alpha.5",
26171
26171
  description: "ElizaOS Server - Core server infrastructure for ElizaOS agents",
26172
26172
  publishConfig: {
26173
26173
  access: "public",
@@ -40870,10 +40870,10 @@ var import_instrumentation5 = __toESM(require_src6(), 1);
40870
40870
  var import_semantic_conventions3 = __toESM(require_src2(), 1);
40871
40871
  import dc__default from "node:diagnostics_channel";
40872
40872
 
40873
- // ../../node_modules/@sentry/node/node_modules/minimatch/dist/esm/index.js
40873
+ // ../../node_modules/@sentry/node/node_modules/minimatch/dist/mjs/index.js
40874
40874
  var import_brace_expansion = __toESM(require_brace_expansion(), 1);
40875
40875
 
40876
- // ../../node_modules/@sentry/node/node_modules/minimatch/dist/esm/assert-valid-pattern.js
40876
+ // ../../node_modules/@sentry/node/node_modules/minimatch/dist/mjs/assert-valid-pattern.js
40877
40877
  var MAX_PATTERN_LENGTH = 1024 * 64;
40878
40878
  var assertValidPattern = (pattern) => {
40879
40879
  if (typeof pattern !== "string") {
@@ -40884,7 +40884,7 @@ var assertValidPattern = (pattern) => {
40884
40884
  }
40885
40885
  };
40886
40886
 
40887
- // ../../node_modules/@sentry/node/node_modules/minimatch/dist/esm/brace-expressions.js
40887
+ // ../../node_modules/@sentry/node/node_modules/minimatch/dist/mjs/brace-expressions.js
40888
40888
  var posixClasses = {
40889
40889
  "[:alnum:]": ["\\p{L}\\p{Nl}\\p{Nd}", true],
40890
40890
  "[:alpha:]": ["\\p{L}\\p{Nl}", true],
@@ -40994,12 +40994,12 @@ var parseClass = (glob, position) => {
40994
40994
  return [comb, uflag, endPos - pos, true];
40995
40995
  };
40996
40996
 
40997
- // ../../node_modules/@sentry/node/node_modules/minimatch/dist/esm/unescape.js
40997
+ // ../../node_modules/@sentry/node/node_modules/minimatch/dist/mjs/unescape.js
40998
40998
  var unescape = (s, { windowsPathsNoEscape = false } = {}) => {
40999
40999
  return windowsPathsNoEscape ? s.replace(/\[([^\/\\])\]/g, "$1") : s.replace(/((?!\\).|^)\[([^\/\\])\]/g, "$1$2").replace(/\\([^\/])/g, "$1");
41000
41000
  };
41001
41001
 
41002
- // ../../node_modules/@sentry/node/node_modules/minimatch/dist/esm/ast.js
41002
+ // ../../node_modules/@sentry/node/node_modules/minimatch/dist/mjs/ast.js
41003
41003
  var types = new Set(["!", "?", "+", "*", "@"]);
41004
41004
  var isExtglobType = (c) => types.has(c);
41005
41005
  var startNoTraversal = "(?!(?:^|/)\\.\\.?(?:$|/))";
@@ -41269,9 +41269,6 @@ class AST {
41269
41269
  _glob: glob
41270
41270
  });
41271
41271
  }
41272
- get options() {
41273
- return this.#options;
41274
- }
41275
41272
  toRegExpSource(allowDot) {
41276
41273
  const dot = allowDot ?? !!this.#options.dot;
41277
41274
  if (this.#root === this)
@@ -41397,12 +41394,12 @@ class AST {
41397
41394
  }
41398
41395
  }
41399
41396
 
41400
- // ../../node_modules/@sentry/node/node_modules/minimatch/dist/esm/escape.js
41397
+ // ../../node_modules/@sentry/node/node_modules/minimatch/dist/mjs/escape.js
41401
41398
  var escape = (s, { windowsPathsNoEscape = false } = {}) => {
41402
41399
  return windowsPathsNoEscape ? s.replace(/[?*()[\]]/g, "[$&]") : s.replace(/[?*()[\]\\]/g, "\\$&");
41403
41400
  };
41404
41401
 
41405
- // ../../node_modules/@sentry/node/node_modules/minimatch/dist/esm/index.js
41402
+ // ../../node_modules/@sentry/node/node_modules/minimatch/dist/mjs/index.js
41406
41403
  var minimatch = (p, pattern, options = {}) => {
41407
41404
  assertValidPattern(pattern);
41408
41405
  if (!options.nocomment && pattern.charAt(0) === "#") {
@@ -41789,11 +41786,10 @@ class Minimatch {
41789
41786
  for (let i = 0;i < globParts.length - 1; i++) {
41790
41787
  for (let j = i + 1;j < globParts.length; j++) {
41791
41788
  const matched = this.partsMatch(globParts[i], globParts[j], !this.preserveMultipleSlashes);
41792
- if (matched) {
41793
- globParts[i] = [];
41794
- globParts[j] = matched;
41795
- break;
41796
- }
41789
+ if (!matched)
41790
+ continue;
41791
+ globParts[i] = matched;
41792
+ globParts[j] = [];
41797
41793
  }
41798
41794
  }
41799
41795
  return globParts.filter((gs) => gs.length);
@@ -41965,10 +41961,7 @@ globstar while`, file, fr, pattern, pr, swallowee);
41965
41961
  fastTest = dotStarTest;
41966
41962
  }
41967
41963
  const re = AST.fromGlob(pattern, this.options).toMMPattern();
41968
- if (fastTest && typeof re === "object") {
41969
- Reflect.defineProperty(re, "test", { value: fastTest });
41970
- }
41971
- return re;
41964
+ return fastTest ? Object.assign(re, { test: fastTest }) : re;
41972
41965
  }
41973
41966
  makeRe() {
41974
41967
  if (this.regexp || this.regexp === false)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/server",
3
- "version": "1.7.1-alpha.4",
3
+ "version": "1.7.1-alpha.5",
4
4
  "description": "ElizaOS Server - Core server infrastructure for ElizaOS agents",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -44,8 +44,8 @@
44
44
  "dev": "bun run build.ts --watch"
45
45
  },
46
46
  "devDependencies": {
47
- "@elizaos/client": "1.7.1-alpha.4",
48
- "@elizaos/config": "1.7.1-alpha.4",
47
+ "@elizaos/client": "1.7.1-alpha.5",
48
+ "@elizaos/config": "1.7.1-alpha.5",
49
49
  "@types/bcrypt": "^6.0.0",
50
50
  "@types/node": "^24.10.1",
51
51
  "bun-fetch-mock": "^1.0.0",
@@ -55,10 +55,10 @@
55
55
  "which": "^6.0.0",
56
56
  "ws": "^8.18.0"
57
57
  },
58
- "gitHead": "3324676fa27c7f42ec93a62f2e5c087bc86db3ef",
58
+ "gitHead": "730e2815062351dd2e4bd56394ecbfd0a84a7c8f",
59
59
  "dependencies": {
60
- "@elizaos/core": "1.7.1-alpha.4",
61
- "@elizaos/plugin-sql": "1.7.1-alpha.4",
60
+ "@elizaos/core": "1.7.1-alpha.5",
61
+ "@elizaos/plugin-sql": "1.7.1-alpha.5",
62
62
  "@sentry/node": "^10.16.0",
63
63
  "@types/express": "^5.0.2",
64
64
  "@types/helmet": "^4.0.0",