docs: update install commands; drop skip-locked keyword#230
Merged
Conversation
The three client libraries (pgque-py, pgque, pgque-go) are published as v0.2.0-rc.1 to PyPI, npm, and the public Go module mirror. Update README install instructions to reflect this: - pip needs --pre (or pin ==0.2.0rc1) while v0.2.0 is in rc. - npm install pgque@rc to pin the rc dist-tag. - go get github.com/NikolayS/pgque-go@v0.2.0-rc.1 (or @latest while only the rc tag exists). Also drop "skip-locked" from clients/typescript/package.json keywords — PgQue uses PgQ's tick-based snapshot visibility, not FOR UPDATE SKIP LOCKED (that's pgmq's mechanism). The keyword is misleading. Replaced with "background-jobs" which already lives in pgque-py's metadata. Will take effect on rc.2 / GA republish; current rc.1 retains the old keyword on registry pages until the next publish. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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
The three client libraries (pgque-py, pgque, pgque-go) are now published at v0.2.0-rc.1 to PyPI, npm, and the public Go module mirror. The READMEs still said "after the first ... release" — fixed.
Changes
Validation
End-to-end smoke tests against published packages all pass:
The keyword removal only takes effect on the next npm publish (rc.2 / GA); rc.1 retains `skip-locked` on its registry page until then.
Test plan
🤖 Generated with Claude Code