v0.2.0 releases + new packages (email, limiter, pytest)#16
Open
PenguinzTech wants to merge 8 commits intomainfrom
Open
v0.2.0 releases + new packages (email, limiter, pytest)#16PenguinzTech wants to merge 8 commits intomainfrom
PenguinzTech wants to merge 8 commits intomainfrom
Conversation
…ter CI
Version bumps:
- penguin-dal, penguin-libs, penguin-utils → 0.2.0
- penguin-aaa, penguin-licensing, penguin-secrets → 0.2.0
New packages (first publish):
- penguin-email 0.1.0 — SMTP/Gmail email client with Jinja2 templates
- penguin-limiter 0.1.0 — rate limiting (fixed window, sliding window, token bucket)
- penguin-pytest 0.1.0 — shared pytest fixtures and utilities
CI / housekeeping:
- Add penguin-limiter publish job (environment: py-limiter) to publish.yml
- Replace hardcoded ghp_* token in .npmrc (root + react-libs) with ${GITHUB_TOKEN}
- Add .coverage and .npmrc.local to .gitignore to prevent future accidental commits
- Pin dependency digests across workflows and configs
- Restructure .claude/ skills/rules to new standard layout
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
Sorry @PenguinzTech, your pull request is larger than the review limit of 150000 diff characters
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
penguin-sal had a complete core framework (base adapter, types, exceptions, URI parser, adapter registry) but zero concrete adapter implementations. This adds all 11 registered backends with full unit tests (484 total). Adapters: Vault, AWS SM, GCP SM, Azure KV, Kubernetes, Infisical, CyberArk Conjur, OCI Vault, 1Password, Passbolt, Doppler. Also includes standard updates (rules/skills symlink cleanup, LICENSE.md). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
penguin-dal now provides drop-in PyDAL compatibility:
- Field class with PyDAL-style type system (string, text, integer, reference, etc.)
- define_table() method on DB/AsyncDB for programmatic schema creation
- DAL = DB alias for PyDAL consumers
- All types mapped to SQLAlchemy columns
- Auto-id primary key when not explicitly provided
- Validator integration with requires parameter
- 243 tests passing, lint clean
Enables seamless migration from pydal:
from penguin_dal import DAL, Field
db = DAL("sqlite:///app.db", migrate=False)
db.define_table("users", Field("name", "string"), Field("email", "string", notnull=True))
Co-Authored-By: Claude Haiku 4.5 <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
penguin-limiterpublish job topublish.yml(environment:py-limiter)ghp_*token in.npmrc(root +react-libs/) with${GITHUB_TOKEN}.coverageand.npmrc.localto.gitignoreto prevent future accidental commits.claude/skills/rules to new standard layoutTest plan
penguin-dal==0.2.0,penguin-libs==0.2.0,penguin-utils==0.2.0visible on PyPIpenguin-email==0.1.0,penguin-limiter==0.1.0,penguin-pytest==0.1.0visible on PyPI.npmrcfiles no longer contain hardcoded tokens🤖 Generated with Claude Code