@bytebase/dbhub 0.3.2 → 0.3.3

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.
package/README.md CHANGED
@@ -281,6 +281,12 @@ npx @modelcontextprotocol/inspector
281
281
 
282
282
  Connect to the DBHub server `/sse` endpoint
283
283
 
284
+ ## Contributors
285
+
286
+ <a href="https://github.com/bytebase/dbhub/graphs/contributors">
287
+ <img src="https://contrib.rocks/image?repo=bytebase/dbhub" />
288
+ </a>
289
+
284
290
  ## Star History
285
291
 
286
292
  [![Star History Chart](https://api.star-history.com/svg?repos=bytebase/dbhub&type=Date)](https://www.star-history.com/#bytebase/dbhub&Date)
package/dist/index.js CHANGED
@@ -389,7 +389,7 @@ var SQLServerDSNParser = class {
389
389
  const options = {};
390
390
  for (const [key, value] of url.searchParams.entries()) {
391
391
  if (key === "encrypt") {
392
- options.encrypt = value;
392
+ options.encrypt = value === "true" ? true : value === "false" ? false : value;
393
393
  } else if (key === "trustServerCertificate") {
394
394
  options.trustServerCertificate = value === "true";
395
395
  } else if (key === "connectTimeout") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bytebase/dbhub",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Universal Database MCP Server",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",