fix(auth): allow auth 0.3 peer consumers#9
Merged
Conversation
Greptile SummaryThis PR bumps the package to Confidence Score: 5/5Clean metadata/config PR with no logic changes; safe to merge. All changes are version bumps, peer range widening, lock file updates, and a targeted test timeout — no logic is modified. Version numbers are consistent across package.json, MODULE.bazel, and CHANGELOG.md. No P0/P1 findings. No files require special attention. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A["consumer installs\n@tummycrypt/tinyland-auth-pg@0.2.3"] --> B{which auth version?}
B -->|"0.2.x (existing)"| C["✅ peer satisfied\n(^0.2.0)"]
B -->|"0.3.x (new)"| D["✅ peer satisfied\n(^0.3.0)"]
B -->|"0.1.x or 0.4.x"| E["⚠️ peer warning\n(out of range)"]
C --> F["works as before"]
D --> G["auth schema import\n≈6-13 s — 30s test timeout"]
Reviews (1): Last reviewed commit: "fix(auth): allow auth 0.3 peer consumers" | Re-trigger Greptile |
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.
Summary
@tummycrypt/tinyland-auth-pg@0.2.3/tummycrypt_tinyland_auth_pg@0.2.3.@tummycrypt/tinyland-authpeer compatibility to^0.2.0 || ^0.3.0.@tummycrypt/tinyland-auth@0.3.0.0.3.0the import consistently exceeds Vitest's 5s default but passes under the package-level suite with a 30s bound.Evidence
pnpm typecheckpassed.pnpm buildpassed.pnpm test:unitpassed: 35 passed, 5 skipped.pnpm check:packagepassed.bazel build //:pkg //:testpassed.Context
@tummycrypt/tinyland-auth@0.3.0; this removes the false peer warning while preserving the existing0.2.xconsumer range.