turbine-orm 0.60.0 → 0.60.1

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.
@@ -35,7 +35,13 @@
35
35
  * - a leading UTF-8 BOM, which some editors add and remove without being asked;
36
36
  * - CRLF and lone CR line endings, so a Windows checkout of an unchanged file
37
37
  * is not reported as drift (`core.autocrlf` rewrites on checkout);
38
- * - trailing whitespace at the very end of the file, for the same reason.
38
+ * - whitespace at the very END of the file, for the same reason.
39
+ *
40
+ * Note the last one is end-of-FILE only, not per line. Trailing whitespace on an
41
+ * individual line is hashed, and changing it is reported as drift. That is the
42
+ * intended reading: nothing in a checkout rewrites it, so it got there because
43
+ * someone edited the line, and the cost of an unnecessary regeneration is lower
44
+ * than the cost of a missed one.
39
45
  *
40
46
  * Nothing else is normalized. Comments and blank lines are hashed as-is: a
41
47
  * "harmless" edit is still an edit, and reporting one costs a regeneration
@@ -36,7 +36,13 @@
36
36
  * - a leading UTF-8 BOM, which some editors add and remove without being asked;
37
37
  * - CRLF and lone CR line endings, so a Windows checkout of an unchanged file
38
38
  * is not reported as drift (`core.autocrlf` rewrites on checkout);
39
- * - trailing whitespace at the very end of the file, for the same reason.
39
+ * - whitespace at the very END of the file, for the same reason.
40
+ *
41
+ * Note the last one is end-of-FILE only, not per line. Trailing whitespace on an
42
+ * individual line is hashed, and changing it is reported as drift. That is the
43
+ * intended reading: nothing in a checkout rewrites it, so it got there because
44
+ * someone edited the line, and the cost of an unnecessary regeneration is lower
45
+ * than the cost of a missed one.
40
46
  *
41
47
  * Nothing else is normalized. Comments and blank lines are hashed as-is: a
42
48
  * "harmless" edit is still an edit, and reporting one costs a regeneration
@@ -35,7 +35,13 @@
35
35
  * - a leading UTF-8 BOM, which some editors add and remove without being asked;
36
36
  * - CRLF and lone CR line endings, so a Windows checkout of an unchanged file
37
37
  * is not reported as drift (`core.autocrlf` rewrites on checkout);
38
- * - trailing whitespace at the very end of the file, for the same reason.
38
+ * - whitespace at the very END of the file, for the same reason.
39
+ *
40
+ * Note the last one is end-of-FILE only, not per line. Trailing whitespace on an
41
+ * individual line is hashed, and changing it is reported as drift. That is the
42
+ * intended reading: nothing in a checkout rewrites it, so it got there because
43
+ * someone edited the line, and the cost of an unnecessary regeneration is lower
44
+ * than the cost of a missed one.
39
45
  *
40
46
  * Nothing else is normalized. Comments and blank lines are hashed as-is: a
41
47
  * "harmless" edit is still an edit, and reporting one costs a regeneration
@@ -35,7 +35,13 @@
35
35
  * - a leading UTF-8 BOM, which some editors add and remove without being asked;
36
36
  * - CRLF and lone CR line endings, so a Windows checkout of an unchanged file
37
37
  * is not reported as drift (`core.autocrlf` rewrites on checkout);
38
- * - trailing whitespace at the very end of the file, for the same reason.
38
+ * - whitespace at the very END of the file, for the same reason.
39
+ *
40
+ * Note the last one is end-of-FILE only, not per line. Trailing whitespace on an
41
+ * individual line is hashed, and changing it is reported as drift. That is the
42
+ * intended reading: nothing in a checkout rewrites it, so it got there because
43
+ * someone edited the line, and the cost of an unnecessary regeneration is lower
44
+ * than the cost of a missed one.
39
45
  *
40
46
  * Nothing else is normalized. Comments and blank lines are hashed as-is: a
41
47
  * "harmless" edit is still an edit, and reporting one costs a regeneration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "turbine-orm",
3
- "version": "0.60.0",
3
+ "version": "0.60.1",
4
4
  "description": "Postgres-native TypeScript ORM, runs on Neon, Vercel Postgres, Cloudflare, Supabase. Streaming cursors, typed errors, single-query nested relations. One dependency, no WASM engine",
5
5
  "type": "module",
6
6
  "//exports": "Each subpath declares its types PER CONDITION. A single shared top-level \"types\" resolves to the ESM declarations for `require` too, which is TS1479 (\"is an ES module ... cannot be require()d\") for any CJS consumer on moduleResolution node16/nodenext. The require condition points at dist/cjs, which ships its own {\"type\":\"commonjs\"} package.json, so those declarations are CJS declarations. Gated in CI by publint + @arethetypeswrong/cli + a real .cts consumer typecheck (see the package-types job in ci.yml).",