@postgres-language-server/cli-x86_64-linux-gnu 0.20.1 → 0.21.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@postgres-language-server/cli-x86_64-linux-gnu",
3
- "version": "0.20.1",
3
+ "version": "0.21.0",
4
4
  "license": "MIT or Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
Binary file
package/schema.json CHANGED
@@ -366,35 +366,35 @@
366
366
  "minimum": 0.0
367
367
  },
368
368
  "connectionString": {
369
- "description": "A connection string that encodes the full connection setup. When provided, it takes precedence over the individual fields.",
369
+ "description": "A connection string that encodes the full connection setup. When provided, it takes precedence over the individual fields. Can also be set via the `DATABASE_URL` environment variable.",
370
370
  "type": [
371
371
  "string",
372
372
  "null"
373
373
  ]
374
374
  },
375
375
  "database": {
376
- "description": "The name of the database.",
376
+ "description": "The name of the database. Can also be set via the `PGDATABASE` environment variable.",
377
377
  "type": [
378
378
  "string",
379
379
  "null"
380
380
  ]
381
381
  },
382
382
  "host": {
383
- "description": "The host of the database. Required if you want database-related features. All else falls back to sensible defaults.",
383
+ "description": "The host of the database. Required if you want database-related features. All else falls back to sensible defaults. Can also be set via the `PGHOST` environment variable.",
384
384
  "type": [
385
385
  "string",
386
386
  "null"
387
387
  ]
388
388
  },
389
389
  "password": {
390
- "description": "The password to connect to the database.",
390
+ "description": "The password to connect to the database. Can also be set via the `PGPASSWORD` environment variable.",
391
391
  "type": [
392
392
  "string",
393
393
  "null"
394
394
  ]
395
395
  },
396
396
  "port": {
397
- "description": "The port of the database.",
397
+ "description": "The port of the database. Can also be set via the `PGPORT` environment variable.",
398
398
  "type": [
399
399
  "integer",
400
400
  "null"
@@ -403,7 +403,7 @@
403
403
  "minimum": 0.0
404
404
  },
405
405
  "username": {
406
- "description": "The username to connect to the database.",
406
+ "description": "The username to connect to the database. Can also be set via the `PGUSER` environment variable.",
407
407
  "type": [
408
408
  "string",
409
409
  "null"