@objectstack/plugin-pinyin-search 17.0.0-rc.6 → 17.1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +547 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,552 @@
1
1
  # @objectstack/plugin-pinyin-search
2
2
 
3
+ ## 17.1.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 7337f30: chore(deps): production-dependency patch bumps from the weekly Dependabot group (#9212)
8
+
9
+ Routine dependency-range refresh, no behavior change: `@oclif/core` 4.13.2→4.13.3,
10
+ `esbuild` 0.28.1→0.28.2 and `better-sqlite3` ^13.0.2→^13.0.3 (optional) on
11
+ `@objectstack/cli`; `mingo` 7.2.2→7.2.4 on `@objectstack/driver-memory`; `nanoid`
12
+ 6.0.0→6.0.1 on `@objectstack/driver-mongodb`, `@objectstack/driver-sql`,
13
+ `@objectstack/driver-sqlite-wasm` and `@objectstack/driver-turso`, plus
14
+ `better-sqlite3` ^13.0.2→^13.0.3 (optional on `@objectstack/driver-sql`, peer on
15
+ `@objectstack/driver-turso`); `js-yaml` 5.2.2→5.2.3 on `@objectstack/metadata`;
16
+ `@noble/hashes` 2.2.0→2.3.0 and `jose` 6.2.5→6.2.8 on `@objectstack/plugin-auth`;
17
+ `nodemailer` 9.0.3→9.0.5 on `@objectstack/plugin-email`; `@hono/node-server`
18
+ 2.0.12→2.1.1 and `hono` 4.12.34→4.13.2 on `@objectstack/plugin-hono-server`;
19
+ `pinyin-pro` 3.28.2→3.29.1 on `@objectstack/plugin-pinyin-search`; and
20
+ `@noble/ciphers` 2.2.0→2.3.0 on `@objectstack/service-settings`.
21
+
22
+ Every entry above changed a `dependencies`, `optionalDependencies` or
23
+ `peerDependencies` range in the published manifest — the only kind of change
24
+ that reaches a consumer's install. The same Dependabot group also bumped
25
+ `devDependencies` on `@objectstack/hono`, `@objectstack/client`,
26
+ `@objectstack/core`, `@objectstack/plugin-sharing` and `@objectstack/spec`
27
+ (none consumer-facing), and touched the private `apps/docs`,
28
+ `examples/app-todo` and workspace-root manifests (none published) — none of
29
+ those get an entry here.
30
+ - Updated dependencies [2f65b1b]
31
+ - Updated dependencies [2782805]
32
+ - Updated dependencies [e43d63a]
33
+ - Updated dependencies [e374b4d]
34
+ - Updated dependencies [a751f7d]
35
+ - Updated dependencies [eccb8b2]
36
+ - Updated dependencies [650cd3d]
37
+ - Updated dependencies [b735507]
38
+ - Updated dependencies [91c6c28]
39
+ - Updated dependencies [2d0af57]
40
+ - Updated dependencies [a38408a]
41
+ - Updated dependencies [5f5e234]
42
+ - Updated dependencies [a8189ae]
43
+ - Updated dependencies [27a567d]
44
+ - Updated dependencies [79c46da]
45
+ - Updated dependencies [7ff3975]
46
+ - Updated dependencies [24173e9]
47
+ - Updated dependencies [f8eb736]
48
+ - Updated dependencies [4e71ae1]
49
+ - Updated dependencies [739fe5b]
50
+ - Updated dependencies [4dfa369]
51
+ - Updated dependencies [5e2f594]
52
+ - Updated dependencies [855591f]
53
+ - Updated dependencies [cd455c8]
54
+ - Updated dependencies [e1bb0ca]
55
+ - Updated dependencies [326f5de]
56
+ - Updated dependencies [21995d7]
57
+ - Updated dependencies [6a5e6ad]
58
+ - Updated dependencies [b2a451f]
59
+ - Updated dependencies [ff08691]
60
+ - Updated dependencies [402c125]
61
+ - Updated dependencies [7c2f386]
62
+ - Updated dependencies [8a9e7f4]
63
+ - Updated dependencies [3d0ded8]
64
+ - Updated dependencies [bbbfcfc]
65
+ - Updated dependencies [1258dca]
66
+ - Updated dependencies [4639cec]
67
+ - Updated dependencies [91c4ff5]
68
+ - Updated dependencies [682b86b]
69
+ - Updated dependencies [6a1b45e]
70
+ - @objectstack/types@17.1.0
71
+ - @objectstack/core@17.1.0
72
+ - @objectstack/objectql@17.1.0
73
+
74
+ ## 17.0.0
75
+
76
+ ### Patch Changes
77
+
78
+ - 9f060e5: chore(deps)!: better-auth 1.7.0-rc.2 (account identity restructuring) + the
79
+ production-dependency batch from #3517
80
+
81
+ **better-auth 1.7.0-rc.1 → 1.7.0-rc.2** across the family (`better-auth`,
82
+ `@better-auth/core`, `@better-auth/oauth-provider`, `@better-auth/sso`, and the
83
+ adapter/telemetry overrides). `@better-auth/scim` deliberately stays on
84
+ 1.7.0-rc.1 — rc.2 replaces its whole model (code-defined connections; the
85
+ `scimProvider` model and the generate-token endpoint are gone), which is a
86
+ feature migration, not a version bump. Its peer range accepts rc.2 core, and the
87
+ advisory that forced the original pin (GHSA-j8v8-g9cx-5qf4) is still fixed.
88
+
89
+ **BREAKING — account identity.** better-auth renamed `account.accountId` to
90
+ `account.providerAccountId` and added a REQUIRED `account.issuer`; sign-in now
91
+ resolves accounts by `(issuer, providerAccountId)`.
92
+
93
+ - FROM `fields: { accountId: 'account_id' }` → TO
94
+ `fields: { issuer: 'issuer', providerAccountId: 'account_id' }`. The provider
95
+ account id keeps its `account_id` column — only the better-auth-side name
96
+ moved — and `sys_account` gains an `issuer` column.
97
+ - FROM `internalAdapter.createAccount({ providerId, accountId, … })` → TO
98
+ `createAccount({ providerId, issuer, providerAccountId, … })`. A local
99
+ password account carries the issuer better-auth mints for itself,
100
+ `local:credential`.
101
+ - FROM `client.auth.accounts.unlink({ providerId, accountId })` → TO
102
+ `unlink({ accountId })`, where `accountId` is now the account ROW id (the `id`
103
+ from `accounts.list()`), matching better-auth's narrowed body.
104
+ `accounts.list()` returns `issuer` + `providerAccountId` in place of
105
+ `accountId`.
106
+
107
+ **Existing deployments:** rows written before 1.7 have no issuer and are
108
+ invisible to sign-in until stamped. The auth plugin now runs an idempotent
109
+ boot-time backfill that stamps what it can derive — `local:credential` for
110
+ password accounts, `local:oauth:<providerId>` for configured social providers,
111
+ and the registered IdP's real `iss` from `sys_sso_provider` for federated ones.
112
+ Accounts from a federated IdP that is no longer registered cannot be derived;
113
+ they are logged with their provider id and row count rather than guessed, and
114
+ those users cannot sign in through that provider until the row is stamped with
115
+ the IdP's issuer or removed so a fresh login re-links it.
116
+
117
+ **Also required by 1.7:** `SecondaryStorage` gained two mandatory methods, both
118
+ now implemented over the kernel cache service — `getAndDelete` (single-use
119
+ verification values) and `increment` (fixed-window rate-limit counter;
120
+ `rateLimit.storage: 'secondary-storage'` throws at boot without it).
121
+
122
+ The rest of #3517's production-dependency batch rides along: `@oclif/core`
123
+ 4.13.0, `@hono/node-server` 2.0.12, `hono` 4.12.32, `tar` 7.5.22, `jose` 6.2.4,
124
+ `pinyin-pro` 3.28.2, plus the private docs app's fumadocs/next/react bumps.
125
+
126
+ - 2e836de: chore(packaging): CHANGELOG.md ships in every npm tarball (#4261)
127
+
128
+ The AGENTS.md post-task checklist requires breaking changesets to carry their
129
+ FROM → TO migration because "this text ships to consumers as `CHANGELOG.md`
130
+ inside the npm package and is what an upgrading agent greps after the tombstone
131
+ error." That delivery path was severed for 68 of the 69 publishable packages:
132
+ npm packs `package.json` / `README*` / `LICENSE*` unconditionally but — unlike
133
+ older npm versions — not `CHANGELOG.md`, and the canonical
134
+ `"files": ["dist", "README.md"]` whitelist never named it. Measured on npm
135
+ 10.9.7: `npm pack --dry-run` on `@objectstack/types` shipped 3 files while its
136
+ 70KB `CHANGELOG.md` stayed behind. Only `@objectstack/spec` listed it
137
+ explicitly.
138
+
139
+ The tombstone-error scenario is precisely the one where the repo is out of
140
+ reach — the upgrading agent has `node_modules` and nothing else — so the
141
+ migration text has to ride in the tarball. Every publishable package now
142
+ declares `CHANGELOG.md` in `files`, and the canonical whitelist is
143
+ `["dist", "README.md", "CHANGELOG.md"]`.
144
+
145
+ The other half is the gate: `check:published-files` gains a fifth invariant,
146
+ COMPLETE — a whitelist that fails to cover `CHANGELOG.md` fails the
147
+ always-required lint job, so the next package cannot silently sever the path
148
+ again. `@objectstack/spec`'s per-package EXTRA_ENTRIES exemption dissolves
149
+ into the canonical set.
150
+
151
+ Consumer-visible change: one more file per install (the package's changelog,
152
+ e.g. 70.8KB for `@objectstack/types`), and `grep -r "removed key"
153
+ node_modules/@objectstack/*/CHANGELOG.md` now finds the migration it was
154
+ promised.
155
+
156
+ - 9881074: fix(batch): the background walks seek instead of counting, so they stop skipping rows (#4363)
157
+
158
+ #4363 made a single paged read a partition of its result set. It could not make
159
+ a _walk_ one: seven background scans paged with a growing `offset` while writing
160
+ to the very rows they were reading, and an offset counts into a set those writes
161
+ are changing. Rows slide past the cursor and are never visited.
162
+
163
+ That is not a slow page in any of these — it is a wrong answer wearing the shape
164
+ of a clean run:
165
+
166
+ - **`rebuildApproverIndex`** built its desired state by walking
167
+ `sys_approval_request WHERE status = 'pending'` with no `orderBy` at all, then
168
+ **deleted** every index row that state did not explain. A skipped request
169
+ meant an approver silently dropped from someone's queue. (The loop beside it
170
+ ordered by `created_at` — not unique, so its pages were never a partition
171
+ either.)
172
+ - **`verifyFileReferences`** decides which files nothing references. A record it
173
+ never visits is reported as an unreferenced file.
174
+ - **`backfillFileReferences`** and the **pinyin companion backfill** rewrite
175
+ each row they read, so their own writes were shifting the set out from under
176
+ the cursor. Records were left unconverted and unsearchable by a run that
177
+ reported success.
178
+ - **`scanValueShapes`** exists to vouch that no stored value is off-shape, and
179
+ it opens a migration gate on that evidence.
180
+
181
+ All of them now go through `keysetWalk` (`@objectstack/types`): order by a
182
+ unique key, and seek past the last one instead of counting from the start. A
183
+ row's key does not move when the row is updated, and cannot be shifted when
184
+ another is deleted, so the walk is stable under exactly the mutation these
185
+ functions perform. It is also O(n) rather than O(n²/page) — measured on
186
+ Postgres over 2M rows, deep pages cost ~1.1 s by offset against ~0.09 s by seek.
187
+
188
+ One deliberate non-conversion: the REST **export** stream keeps its offset. It
189
+ honors a caller-chosen sort, and a keyset walk would have to re-order the export
190
+ by `id` to seek — changing what the user asked for to fix a cost. Its pages are
191
+ already a partition since #4363; only the depth cost remains.
192
+
193
+ `keysetWalk` merges the cursor with `$and` rather than spreading it into the
194
+ caller's filter, so a walk whose own `where` constrains the key column
195
+ (`{ id: { $in: [...] } }`) keeps that constraint instead of having it silently
196
+ overwritten. When a `max` cap is set it reads one row beyond the cap to tell
197
+ "the cap stopped us" from "the source ended exactly there" — without that, a
198
+ walk that read everything still reports `truncated`, and a caller acting on it
199
+ goes looking for rows that were never withheld.
200
+
201
+ The storage suites' fake engines now **throw** on an `offset` instead of serving
202
+ one, so the conversion is pinned rather than merely passing.
203
+
204
+ - cc2de0e: chore(packaging): 20 packages stop publishing their sources, tests and build tooling (#4248)
205
+
206
+ These 20 packages declared no `files` field, so npm fell back to packing the
207
+ whole package directory. `npm pack --dry-run` on `@objectstack/plugin-webhooks`
208
+ listed **21 files** — 15 under `src/`, three of them unit tests
209
+ (`auto-enqueuer.test.ts`, `bootstrap-declared-webhooks.test.ts`, …), plus the
210
+ build-time `scripts/i18n-extract.config.ts`. `dist/` lands on top of that at
211
+ publish time rather than instead of it, so consumers were installing the
212
+ TypeScript sources and the test suite alongside the artifact they asked for.
213
+
214
+ Each now declares `"files": ["dist", "README.md"]`, matching the 29 packages
215
+ that already did. Nothing a consumer imports moves: every `main` / `types` /
216
+ `exports` target in all 20 already resolved inside `dist/`, which the new
217
+ `check:published-files` guard verifies rather than assumes. The visible change
218
+ is a smaller install and a smaller dependency-scanning surface — `npm pack` on
219
+ `@objectstack/plugin-webhooks` now yields 2 files plus `dist/`.
220
+
221
+ The other half of the fix is the gate. Half the packages declaring `files` and
222
+ half not was the #3786 shape — a hand-copied convention with nothing enforcing
223
+ it, where whoever forgets the line gets no signal at all. `check:published-files`
224
+ (new, wired into the always-required `lint` job) holds every non-private
225
+ workspace package to four invariants: `files` is **declared**; it is
226
+ **sufficient** (covers every entry point, so tightening a whitelist cannot ship
227
+ a package that fails to resolve); it is **minimal** (admits no test, test-harness
228
+ config or build script); and anything beyond `dist` + `README.md` is
229
+ **registered** with a reason, reconciled in both directions so a stale exemption
230
+ is an error rather than dead text. `@objectstack/spec` is the one package with
231
+ registered extras — its `.zod.ts` sources, JSON Schemas, liveness ledgers and
232
+ `CHANGELOG.md` are product, not build input.
233
+
234
+ This also closes an assumption #4206 was resting on. Excluding `<pkg>/scripts/**`
235
+ from the docs-drift implementation test is sound only while no package publishes
236
+ `scripts/` as runtime code; that held, but it held because someone read all three
237
+ offenders by hand. It is now checked on every PR.
238
+
239
+ - 2465133: fix(plugins): sweep the service-lookup erasures out of the plugin composition roots, and fix the two alias-only HTTP reads it exposed (#4251 B5)
240
+
241
+ Batch B5 of the #4251 sweep: the seven remaining `packages/plugins/*` composition
242
+ roots. 35 lookup sites that had been erased to `any` now carry the slot's
243
+ contract, so the compiler checks what each plugin actually calls on the service
244
+ it resolved. The ratchet drops 143 sites / 32 files to 108 / 25.
245
+
246
+ **Two real defects, both of the shape this sweep exists to find.** Approvals'
247
+ actionable-link pages (ADR-0043) and sharing's public share-link REST routes each
248
+ read the HTTP server under `http-server` _only_ — the deprecated alias. The
249
+ ledger records `http.server` as canonical and as the only name present on every
250
+ provider path: `runtime.ts`'s `config.server` path registers no alias at all. On
251
+ that path both lookups threw, the surrounding `catch` swallowed it, and the
252
+ routes silently never mounted — approval e-mail action links 404'd and the
253
+ share-link surface was absent, with nothing in the log to say so. Both reads are
254
+ now canonical-first with the alias as fallback, each name in its own `try`
255
+ because `getService` throws on an empty slot (so `a() ?? b()` inside one `try`
256
+ never reaches `b` — the same correction #4393 made in metadata and
257
+ cloud-connection).
258
+
259
+ Typing choices follow the batch method: pure data-plane consumers take the
260
+ narrow contract (`IDataEngine` in reports), consumers that bind hook or
261
+ middleware seams take the engine seen whole (`IObjectQLEngine` in approvals,
262
+ sharing and pinyin-search), and slots with no contract get a **named** local
263
+ surface rather than `any` — plugin-email's `MailSettingsSurface`, and the
264
+ surfaces the consuming packages already declared (`ApprovalMessagingSurface`,
265
+ `SharingSecurityProbe`, `ReportEmail`). A named surface that omits a member
266
+ still makes the compiler name every call site; `any` says nothing.
267
+
268
+ No behaviour change beyond the two alias reads. No contract changes.
269
+
270
+ - Updated dependencies [690ccf2]
271
+ - Updated dependencies [48fcf70]
272
+ - Updated dependencies [ce5242c]
273
+ - Updated dependencies [257d97a]
274
+ - Updated dependencies [3ec8186]
275
+ - Updated dependencies [6169615]
276
+ - Updated dependencies [fa3d0cf]
277
+ - Updated dependencies [a749273]
278
+ - Updated dependencies [b1863a5]
279
+ - Updated dependencies [fdb4f50]
280
+ - Updated dependencies [270650f]
281
+ - Updated dependencies [956e7f9]
282
+ - Updated dependencies [3aef718]
283
+ - Updated dependencies [879ea13]
284
+ - Updated dependencies [ffb003c]
285
+ - Updated dependencies [32ccb23]
286
+ - Updated dependencies [2d3e255]
287
+ - Updated dependencies [a8940e4]
288
+ - Updated dependencies [7d7521f]
289
+ - Updated dependencies [98877c9]
290
+ - Updated dependencies [f16e54e]
291
+ - Updated dependencies [c44dd5e]
292
+ - Updated dependencies [06be54e]
293
+ - Updated dependencies [28ad90e]
294
+ - Updated dependencies [76d74ec]
295
+ - Updated dependencies [259459d]
296
+ - Updated dependencies [3f7f14e]
297
+ - Updated dependencies [840ee4b]
298
+ - Updated dependencies [64cd010]
299
+ - Updated dependencies [ad4af62]
300
+ - Updated dependencies [debe2f6]
301
+ - Updated dependencies [d44dbfa]
302
+ - Updated dependencies [29c6c9d]
303
+ - Updated dependencies [b949059]
304
+ - Updated dependencies [c5ff96d]
305
+ - Updated dependencies [ad878e7]
306
+ - Updated dependencies [20b1a9e]
307
+ - Updated dependencies [8d895ff]
308
+ - Updated dependencies [3028326]
309
+ - Updated dependencies [ddd075a]
310
+ - Updated dependencies [fe2dfa1]
311
+ - Updated dependencies [c497d26]
312
+ - Updated dependencies [6f6fec7]
313
+ - Updated dependencies [9f5cc79]
314
+ - Updated dependencies [bbdbf28]
315
+ - Updated dependencies [f2445c9]
316
+ - Updated dependencies [ea1d916]
317
+ - Updated dependencies [3905c00]
318
+ - Updated dependencies [4335497]
319
+ - Updated dependencies [2af1988]
320
+ - Updated dependencies [0af50a3]
321
+ - Updated dependencies [1b49eaf]
322
+ - Updated dependencies [db31402]
323
+ - Updated dependencies [2e836de]
324
+ - Updated dependencies [10c4ea9]
325
+ - Updated dependencies [7e5af5c]
326
+ - Updated dependencies [b746aa0]
327
+ - Updated dependencies [d8f65fe]
328
+ - Updated dependencies [58ffcab]
329
+ - Updated dependencies [462b713]
330
+ - Updated dependencies [48c110e]
331
+ - Updated dependencies [87aca93]
332
+ - Updated dependencies [63b33e6]
333
+ - Updated dependencies [a52e2ef]
334
+ - Updated dependencies [eda599e]
335
+ - Updated dependencies [c20b875]
336
+ - Updated dependencies [8e17759]
337
+ - Updated dependencies [2ef1807]
338
+ - Updated dependencies [c519533]
339
+ - Updated dependencies [2a37694]
340
+ - Updated dependencies [b3de0dd]
341
+ - Updated dependencies [32d3800]
342
+ - Updated dependencies [2b63a00]
343
+ - Updated dependencies [55da611]
344
+ - Updated dependencies [3c628ce]
345
+ - Updated dependencies [0fd8556]
346
+ - Updated dependencies [4c45be1]
347
+ - Updated dependencies [6fde910]
348
+ - Updated dependencies [9c82b89]
349
+ - Updated dependencies [60cbf9d]
350
+ - Updated dependencies [ce92674]
351
+ - Updated dependencies [a227ed7]
352
+ - Updated dependencies [74155c7]
353
+ - Updated dependencies [742a6a5]
354
+ - Updated dependencies [1b2eb1b]
355
+ - Updated dependencies [afa6aa5]
356
+ - Updated dependencies [ed77493]
357
+ - Updated dependencies [6908830]
358
+ - Updated dependencies [58a03d2]
359
+ - Updated dependencies [c39d713]
360
+ - Updated dependencies [b7d3be4]
361
+ - Updated dependencies [afb83d3]
362
+ - Updated dependencies [2a0d65e]
363
+ - Updated dependencies [2bacd1a]
364
+ - Updated dependencies [f598aa8]
365
+ - Updated dependencies [82da264]
366
+ - Updated dependencies [f586f1a]
367
+ - Updated dependencies [245d1dc]
368
+ - Updated dependencies [2ad1eba]
369
+ - Updated dependencies [199ec47]
370
+ - Updated dependencies [c7406b0]
371
+ - Updated dependencies [edff010]
372
+ - Updated dependencies [b127c8b]
373
+ - Updated dependencies [763931e]
374
+ - Updated dependencies [ec975f1]
375
+ - Updated dependencies [de9af8a]
376
+ - Updated dependencies [eb4204b]
377
+ - Updated dependencies [91f4c78]
378
+ - Updated dependencies [08f93bc]
379
+ - Updated dependencies [5d4de37]
380
+ - Updated dependencies [0e3a226]
381
+ - Updated dependencies [92a67f2]
382
+ - Updated dependencies [edb4af0]
383
+ - Updated dependencies [f09a2e7]
384
+ - Updated dependencies [eb3e650]
385
+ - Updated dependencies [45dc446]
386
+ - Updated dependencies [cb5a75e]
387
+ - Updated dependencies [84b6e58]
388
+ - Updated dependencies [f160ba4]
389
+ - Updated dependencies [fc3a36a]
390
+ - Updated dependencies [ab9fb5c]
391
+ - Updated dependencies [69787f0]
392
+ - Updated dependencies [5d022a1]
393
+ - Updated dependencies [290d944]
394
+ - Updated dependencies [55011af]
395
+ - Updated dependencies [b25a116]
396
+ - Updated dependencies [02dc076]
397
+ - Updated dependencies [f985b3f]
398
+ - Updated dependencies [127f091]
399
+ - Updated dependencies [518ca7a]
400
+ - Updated dependencies [4cca74c]
401
+ - Updated dependencies [3f8817a]
402
+ - Updated dependencies [53ef057]
403
+ - Updated dependencies [81ce41a]
404
+ - Updated dependencies [85e1e4e]
405
+ - Updated dependencies [3670cf9]
406
+ - Updated dependencies [7f1a635]
407
+ - Updated dependencies [4c5e80e]
408
+ - Updated dependencies [fce8e49]
409
+ - Updated dependencies [5d3ced9]
410
+ - Updated dependencies [0f2fdcd]
411
+ - Updated dependencies [d6d1a50]
412
+ - Updated dependencies [8ffa8b9]
413
+ - Updated dependencies [674ac99]
414
+ - Updated dependencies [833b512]
415
+ - Updated dependencies [9881074]
416
+ - Updated dependencies [1eadac0]
417
+ - Updated dependencies [7777e8f]
418
+ - Updated dependencies [c804f19]
419
+ - Updated dependencies [7c2f7dd]
420
+ - Updated dependencies [9b26699]
421
+ - Updated dependencies [507b92a]
422
+ - Updated dependencies [46365ab]
423
+ - Updated dependencies [dbe92a7]
424
+ - Updated dependencies [df95346]
425
+ - Updated dependencies [e1fa8d5]
426
+ - Updated dependencies [402f534]
427
+ - Updated dependencies [114e727]
428
+ - Updated dependencies [7372d46]
429
+ - Updated dependencies [5e247fd]
430
+ - Updated dependencies [a6cd2c1]
431
+ - Updated dependencies [fc3a819]
432
+ - Updated dependencies [1a53a02]
433
+ - Updated dependencies [75fd301]
434
+ - Updated dependencies [fdca3a1]
435
+ - Updated dependencies [1507ba3]
436
+ - Updated dependencies [9051802]
437
+ - Updated dependencies [1c625ca]
438
+ - Updated dependencies [9319586]
439
+ - Updated dependencies [39eb01b]
440
+ - Updated dependencies [071d0dc]
441
+ - Updated dependencies [bf42e76]
442
+ - Updated dependencies [edbf873]
443
+ - Updated dependencies [c5adfe1]
444
+ - Updated dependencies [1cae606]
445
+ - Updated dependencies [9514767]
446
+ - Updated dependencies [e3c8ed0]
447
+ - Updated dependencies [fa6dd59]
448
+ - Updated dependencies [55bbefc]
449
+ - Updated dependencies [030125b]
450
+ - Updated dependencies [7ce02eb]
451
+ - Updated dependencies [f1da948]
452
+ - Updated dependencies [b9cc17d]
453
+ - Updated dependencies [255f2d7]
454
+ - Updated dependencies [bfe689b]
455
+ - Updated dependencies [d0d5205]
456
+ - Updated dependencies [0d24078]
457
+ - Updated dependencies [8f1851e]
458
+ - Updated dependencies [b4b2c7d]
459
+ - Updated dependencies [de43f94]
460
+ - Updated dependencies [5b8f95b]
461
+ - Updated dependencies [d13004a]
462
+ - Updated dependencies [be7360c]
463
+ - Updated dependencies [2ddba89]
464
+ - Updated dependencies [4b0ebdb]
465
+ - Updated dependencies [28d1eb7]
466
+ - Updated dependencies [06770c0]
467
+ - Updated dependencies [8675db6]
468
+ - Updated dependencies [b09d8d9]
469
+ - Updated dependencies [37a8f2b]
470
+ - Updated dependencies [e50e479]
471
+ - Updated dependencies [c41828d]
472
+ - Updated dependencies [3fb42d2]
473
+ - Updated dependencies [8e08bc3]
474
+ - Updated dependencies [441d79f]
475
+ - Updated dependencies [82397b6]
476
+ - Updated dependencies [4df747c]
477
+ - Updated dependencies [7084313]
478
+ - Updated dependencies [31fb03d]
479
+ - Updated dependencies [47a4e67]
480
+ - Updated dependencies [91cefb8]
481
+ - Updated dependencies [9bc846b]
482
+ - Updated dependencies [af2a095]
483
+ - Updated dependencies [bf478e1]
484
+ - Updated dependencies [77fadbf]
485
+ - Updated dependencies [8dd98bf]
486
+ - Updated dependencies [4fedb11]
487
+ - Updated dependencies [5c13368]
488
+ - Updated dependencies [1ee48bc]
489
+ - Updated dependencies [d13f627]
490
+ - Updated dependencies [a841151]
491
+ - Updated dependencies [4e74c18]
492
+ - Updated dependencies [8b90d68]
493
+ - Updated dependencies [478f1fd]
494
+ - Updated dependencies [833ed84]
495
+ - Updated dependencies [2680cd3]
496
+ - Updated dependencies [0c302a7]
497
+ - Updated dependencies [1788e19]
498
+ - Updated dependencies [857a6cf]
499
+ - Updated dependencies [e474853]
500
+ - Updated dependencies [d5749d7]
501
+ - Updated dependencies [1f6ed16]
502
+ - Updated dependencies [db2ea82]
503
+ - Updated dependencies [51a587d]
504
+ - Updated dependencies [d92c72d]
505
+ - Updated dependencies [5f0852f]
506
+ - Updated dependencies [cde1975]
507
+ - Updated dependencies [20cb232]
508
+ - Updated dependencies [e231abb]
509
+ - Updated dependencies [5d21a48]
510
+ - Updated dependencies [23dba62]
511
+ - Updated dependencies [ee264b2]
512
+ - Updated dependencies [d56bcdb]
513
+ - Updated dependencies [26bb053]
514
+ - Updated dependencies [ee3bde1]
515
+ - Updated dependencies [098b629]
516
+ - Updated dependencies [d86815e]
517
+ - Updated dependencies [0a5dc29]
518
+ - Updated dependencies [e13fd91]
519
+ - Updated dependencies [01a7337]
520
+ - Updated dependencies [50185a8]
521
+ - Updated dependencies [d6bd5a1]
522
+ - Updated dependencies [2bd4e5e]
523
+ - Updated dependencies [1363084]
524
+ - Updated dependencies [488b66c]
525
+ - Updated dependencies [148d451]
526
+ - Updated dependencies [e4c2dc8]
527
+ - Updated dependencies [694c350]
528
+ - Updated dependencies [6ad13bb]
529
+ - Updated dependencies [129b378]
530
+ - Updated dependencies [88f9d94]
531
+ - Updated dependencies [551f899]
532
+ - Updated dependencies [a0fdc56]
533
+ - Updated dependencies [946a131]
534
+ - Updated dependencies [909895d]
535
+ - Updated dependencies [b95577a]
536
+ - Updated dependencies [54f479a]
537
+ - Updated dependencies [ad5fe25]
538
+ - Updated dependencies [1818998]
539
+ - Updated dependencies [89be40c]
540
+ - Updated dependencies [f46e987]
541
+ - Updated dependencies [e3a6f6e]
542
+ - Updated dependencies [c9bf940]
543
+ - Updated dependencies [a682670]
544
+ - Updated dependencies [2b52bc8]
545
+ - Updated dependencies [3556b67]
546
+ - @objectstack/objectql@17.0.0
547
+ - @objectstack/core@17.0.0
548
+ - @objectstack/types@17.0.0
549
+
3
550
  ## 17.0.0-rc.6
4
551
 
5
552
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectstack/plugin-pinyin-search",
3
- "version": "17.0.0-rc.6",
3
+ "version": "17.1.0",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Pinyin search recall for ObjectStack — populates the hidden `__search` companion column (full pinyin + initials of the display/name field) so `$search` hits CJK names typed as pinyin. Locale-gated via OS_SEARCH_PINYIN_ENABLED (#2486).",
6
6
  "main": "dist/index.js",
@@ -13,13 +13,13 @@
13
13
  }
14
14
  },
15
15
  "dependencies": {
16
- "pinyin-pro": "^3.28.2",
17
- "@objectstack/core": "17.0.0-rc.6",
18
- "@objectstack/objectql": "17.0.0-rc.6",
19
- "@objectstack/types": "17.0.0-rc.6"
16
+ "pinyin-pro": "^3.29.1",
17
+ "@objectstack/core": "17.1.0",
18
+ "@objectstack/objectql": "17.1.0",
19
+ "@objectstack/types": "17.1.0"
20
20
  },
21
21
  "devDependencies": {
22
- "@types/node": "^26.1.2",
22
+ "@types/node": "^26.2.0",
23
23
  "typescript": "^6.0.3",
24
24
  "vitest": "^4.1.10"
25
25
  },