@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 +6 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
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
|
[](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") {
|