Version Packages#4
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
c3aa37a to
1e869b6
Compare
1e869b6 to
b45ceea
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/biome-config@0.2.0
Minor Changes
noNonNullAssertionandnoExplicitAnyas errors (previouslywarn), so the house rules "no non-null!" and "noany" actually failbiome checkinstead of only being documented. Sites that currently rely on!or explicit
anywill see new errors — replace!with guard clauses / optionalchaining, and give
anya real type (orunknown+ narrowing).@ingram-tech/newsletter@0.3.0
Minor Changes
as-casting them, perthe house "validate external input with Zod" rule. Row types are now inferred
from the schemas (single source of truth), the subscribe path now checks the
previously-dropped lookup error, and
zodis a new runtime dependency. Malformedrows now throw a clear validation error rather than flowing through as a bad type.
Patch Changes
@ingram-tech/agent-guide@0.1.2
Patch Changes
nkis optional convenience that only orchestrates the standard tools— a nextkit site must stay buildable with plain
next build/next dev. Keepsthe agent guide consistent with the prime directive.
@ingram-tech/bot-protection@0.3.1
Patch Changes
per-submission nonce: a token can be replayed within its
[minMs, maxMs]window,so it composes with the honeypot and BotID layers rather than providing single-use
semantics on its own.
@ingram-tech/email@0.1.2
Patch Changes
keys()now narrows the validated env vars with a combined guard instead ofas stringcasts — no behavior change, but it follows the house "noasonexternal input" rule that the package documents.
@ingram-tech/nk-auth@0.2.2
Patch Changes
createAuthPoolnow connects to managed Postgres (e.g. Supabase) over TLSwithout chain verification when no
caCertis given and the host is remote —Supabase's cert chain isn't in Node's trust store, so plain
pgverificationfails with "self-signed certificate in certificate chain" (this 500'd peppost's
login in production). Local connections stay non-TLS;
caCertstill does fullverification.
sslmodeis stripped from the URL sopghonors the ssl object.