Version Packages#11
Merged
Merged
Conversation
9dbec73 to
f14fdc4
Compare
2d8a12c to
8b97dc3
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@ingram-tech/nk-api@0.3.0
Minor Changes
f14fdc4: Add two primitives every API seam was re-implementing:
checkRateLimit/getClientKey(framework-agnostic,zero-dep, per-instance fixed-window) plus a
rateLimit()Hono middleware thatemits the standard
429envelope withRetry-AfterandX-RateLimit-*headers. The no-Redis default for cutting off single-client abuse.
verifyHmacSha256does a length-checked,constant-time HMAC-SHA256 compare (hex or base64, optional
sha256=prefix)for the
/internal/webhooks/<provider>route class. Stripe keeps using itsown SDK via
nk-billing.Also adds
429to the sharederrorResponsesmap.@ingram-tech/nk-db@1.1.0
Minor Changes
decodeOrNullto thecreateIdRegistryid helpers — the throw-freecounterpart to
decode, returningnullfor a foreign or malformed prefixedid. Lets routes validate an untrusted path/query id without a try/catch
(
ids.org.decodeOrNull(param) ?? notFound()). Additive; existing helpersunchanged.
@ingram-tech/nk-auth@0.9.1
Patch Changes
verifyBackendJwtagainst Better Auth signing-key rotation. jose'screateRemoteJWKSetrefuses to refetch the JWKS for its 30s cooldown after anyfetch, so a token signed with a freshly rotated key (whose
kidisn't yet inthe cached set) failed for the whole cooldown window — surfacing as a ~30s burst
of auth failures on every token-verifying request. On a
JWKSNoMatchingKeymisswe now force one
.reload()(which bypasses the cooldown) and retry, so arotation costs one extra fetch instead of a brief outage. Backward-compatible.