@deinossrl/dgp-agent 1.4.48 → 1.4.49

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/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog - DGP Agent
2
2
 
3
+ ## [1.4.49] - 2026-01-12
4
+
5
+ ### Fixed
6
+ - Actualizado a PostgreSQL 17.2 binaries (antes 16.1)
7
+ - Resuelve error "server version mismatch" con Supabase PostgreSQL 17.6
8
+ - Compatibilidad total con servidores PostgreSQL 17.x
9
+
10
+ ### Changed
11
+ - URL de descarga actualizada a postgresql-17.2-1-windows-x64-binaries.zip
12
+
3
13
  ## [1.4.48] - 2026-01-12
4
14
 
5
15
  ### Fixed
package/index.mjs CHANGED
@@ -1489,8 +1489,8 @@ async function findOrInstallPgDump() {
1489
1489
  const downloadPgDump = async () => {
1490
1490
  if (isWindows) {
1491
1491
  // Descargar binaries de PostgreSQL para Windows
1492
- // Usamos la versión portable de PostgreSQL 16
1493
- const zipUrl = 'https://get.enterprisedb.com/postgresql/postgresql-16.1-1-windows-x64-binaries.zip';
1492
+ // Usamos la versión portable de PostgreSQL 17 (compatible con Supabase)
1493
+ const zipUrl = 'https://get.enterprisedb.com/postgresql/postgresql-17.2-1-windows-x64-binaries.zip';
1494
1494
  const zipPath = join(BIN_DIR, 'postgresql-binaries.zip');
1495
1495
 
1496
1496
  logInfo('Descargando PostgreSQL binaries...');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deinossrl/dgp-agent",
3
- "version": "1.4.48",
3
+ "version": "1.4.49",
4
4
  "description": "Agente local para Despliegue-GPT - Reporta el estado del repositorio Git a la plataforma TenMinute IA",
5
5
  "main": "index.mjs",
6
6
  "bin": {