rip-lang 3.17.3 → 3.17.4

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
@@ -9,7 +9,7 @@
9
9
  </p>
10
10
 
11
11
  <p align="center">
12
- <a href="https://github.com/shreeve/rip-lang/commits/main"><img src="https://img.shields.io/badge/version-3.17.3-blue.svg" alt="Version"></a>
12
+ <a href="https://github.com/shreeve/rip-lang/commits/main"><img src="https://img.shields.io/badge/version-3.17.4-blue.svg" alt="Version"></a>
13
13
  <a href="#zero-dependencies"><img src="https://img.shields.io/badge/dependencies-ZERO-brightgreen.svg" alt="Dependencies"></a>
14
14
  <a href="#"><img src="https://img.shields.io/badge/tests-1%2C436%2F1%2C436-brightgreen.svg" alt="Tests"></a>
15
15
  <a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-green.svg" alt="License"></a>
package/docs/dist/rip.js CHANGED
@@ -1036,6 +1036,13 @@ class __SchemaDef {
1036
1036
  // a non-enumerable accessor so order.user_id and order.userId read
1037
1037
  // the same slot — useful when DB column names leak into user code
1038
1038
  // via raw SQL helpers.
1039
+ //
1040
+ // Temporal values arrive already decoded by the adapter: @rip-lang/db
1041
+ // decodes date/datetime columns to real \`Date\` at the wire boundary
1042
+ // (naive TIMESTAMP is read as UTC), so hydrate stores them verbatim —
1043
+ // do NOT add a decode here. That keeps a single decode seam and honors
1044
+ // the \`date\`/\`datetime\` -> \`Date\` .d.ts contract. (\`_coerceDates\` below
1045
+ // is parse-only, for JSON/HTTP input — it never runs on this path.)
1039
1046
  const data = {};
1040
1047
  for (let i = 0; i < columns.length; i++) {
1041
1048
  data[__schemaCamel(columns[i].name)] = row[i];
@@ -16937,8 +16944,8 @@ if (typeof globalThis !== 'undefined') {
16937
16944
  return new CodeEmitter({}).getComponentRuntime();
16938
16945
  }
16939
16946
  // src/browser.js
16940
- var VERSION = "3.17.3";
16941
- var BUILD_DATE = "2026-06-28@04:18:51GMT";
16947
+ var VERSION = "3.17.4";
16948
+ var BUILD_DATE = "2026-06-28@05:09:42GMT";
16942
16949
  if (typeof globalThis !== "undefined") {
16943
16950
  if (!globalThis.__rip)
16944
16951
  new Function(getReactiveRuntime())();