@uql/core 3.7.12 → 3.7.14

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
@@ -3,7 +3,7 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ## [3.7.12](https://github.com/rogerpadilla/uql/compare/@uql/core@3.7.11...@uql/core@3.7.12) (2026-01-06)
6
+ ## [3.7.14](https://github.com/rogerpadilla/uql/compare/@uql/core@3.7.13...@uql/core@3.7.14) (2026-01-07)
7
7
 
8
8
  **Note:** Version bump only for package @uql/core
9
9
 
@@ -17,6 +17,10 @@ All notable changes to this project will be documented in this file. Please add
17
17
 
18
18
  date format is [yyyy-mm-dd]
19
19
 
20
+ ## [3.7.14] - 2026-01-06
21
+ ### Documentation
22
+ - **README Refinement**: Improved docs about new Migrations feature.
23
+
20
24
  ## [3.7.12] - 2026-01-06
21
25
  ### Improvements
22
26
  - **Expanded Float Support**: Added `float4`, `float8`, and `double precision` to `ColumnType`, with proper mapping across PostgreSQL, MySQL, and SQLite.
package/README.md CHANGED
@@ -40,12 +40,13 @@ const users = await querier.findMany(User, {
40
40
  | **[Context-Aware Queries](https://uql.app/querying/relations)** | Deep type-safety for operators and [relations](https://uql.app/querying/relations) at any depth. |
41
41
  | **Serializable JSON** | 100% valid JSON queries for easy transport over HTTP/Websockets. |
42
42
  | **Unified Dialects** | Write once, run anywhere: PostgreSQL, MySQL, SQLite, MongoDB, and more. |
43
- | **Naming Strategies** | Pluggable system to translate between TypeScript `camelCase` and database `snake_case`. |
43
+ | **[Naming Strategies](https://uql.app/naming-strategy)** | Pluggable system to translate between TypeScript `camelCase` and database `snake_case`. |
44
44
  | **Smart SQL Engine** | Optimized sub-queries, placeholders ($1, $2), and minimal SQL generation via `QueryContext`. |
45
45
  | **Thread-Safe by Design** | Centralized task queue and `@Serialized()` decorator prevent race conditions. |
46
- | **Declarative Transactions** | Standard `@Transactional()` and `@InjectQuerier()` decorators for NestJS/DI. |
46
+ | **[Declarative Transactions](https://www.uql.app/transactions-declarative)** | Standard `@Transactional()` and `@InjectQuerier()` decorators for NestJS/DI. |
47
47
  | **[Modern & Versatile](https://uql.app/entities/virtual-fields)** | **Pure ESM**, high-res timing, [Soft-delete](https://uql.app/entities/soft-delete), and **Vector/JSONB/JSON** support. |
48
- | **Structured Logging** | Professional-grade monitoring with slow-query detection and colored output. |
48
+ | **[Database Migrations](https://www.uql.app/migrations)** | Built-in [Entity-First synchronization](https://uql.app/migrations#3-entity-first-synchronization-development) and a robust CLI for version-controlled schema evolution. |
49
+ | **[Logging & Monitoring](https://www.uql.app/logging)** | Professional-grade monitoring with slow-query detection and colored output. |
49
50
 
50
51
   
51
52
 
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "homepage": "https://uql.app",
4
4
  "description": "One Language. Frontend to Backend.",
5
5
  "license": "MIT",
6
- "version": "3.7.12",
6
+ "version": "3.7.14",
7
7
  "type": "module",
8
8
  "main": "./dist/index.js",
9
9
  "types": "./dist/index.d.ts",
@@ -144,5 +144,5 @@
144
144
  "publishConfig": {
145
145
  "access": "public"
146
146
  },
147
- "gitHead": "cff6ff8b656f556f5903575252bd364170edf00d"
147
+ "gitHead": "402f9187bb5956fbb78b036f2ee429d12b75a714"
148
148
  }