-
Notifications
You must be signed in to change notification settings - Fork 168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add @electric-sql
scope package
#330
base: master
Are you sure you want to change the base?
Conversation
WalkthroughThe pull request updates the Changes
Possibly related PRs
Suggested reviewers
Tip CodeRabbit's docstrings feature is now available as part of our Early Access Program! Simply use the command 📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🔇 Additional comments (2)package.json (2)Line range hint The version increment from 1.149.0 to 1.149.1 is appropriate for adding a new scope to the allowlist, as it represents a patch change that doesn't break existing functionality.
The addition of "@electric-sql" to the allowScopes array needs verification to ensure it's a legitimate and safe package scope. Let's verify the legitimacy of this scope: ✅ Verification successfulLet me gather more information about the @electric-sql packages to ensure they are legitimate and actively maintained. Let me check the correct GitHub repository URL since the previous one failed. @electric-sql scope is verified as legitimate and safe to include The scope is verified as legitimate based on strong indicators:
🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Verify the @electric-sql scope and its packages
# Check if the scope exists on npm and get basic info
echo "Checking @electric-sql scope on npm registry..."
curl -s "https://registry.npmjs.org/-/org/electric-sql/package" | jq .
# Check for any security advisories
echo "Checking for any security advisories..."
gh api graphql -f query='
{
securityVulnerabilities(first: 10, ecosystem: PIP, package: "electric-sql") {
nodes {
advisory {
summary
severity
publishedAt
}
}
}
}'
Length of output: 1064 Script: #!/bin/bash
# Check package details and download stats for key @electric-sql packages
echo "Checking package details for @electric-sql/client..."
curl -s "https://registry.npmjs.org/@electric-sql/client" | jq '{
"name": .name,
"description": .description,
"maintainers": .maintainers,
"repository": .repository,
"latest_version": ."dist-tags".latest,
"modified": .time.modified
}'
echo -e "\nChecking download stats for last month..."
curl -s "https://api.npmjs.org/downloads/point/last-month/@electric-sql/client" | jq .
echo -e "\nChecking GitHub repository info..."
gh api repos/electric-sql/electric-sql | jq '{
"name": .name,
"description": .description,
"stars": .stargazers_count,
"created_at": .created_at,
"updated_at": .updated_at,
"license": .license.name
}'
Length of output: 1663 Script: #!/bin/bash
# Check GitHub repository using the URL from package.json
echo "Checking GitHub repository info..."
gh api repos/electric-sql/electric | jq '{
"name": .name,
"description": .description,
"stars": .stargazers_count,
"created_at": .created_at,
"updated_at": .updated_at,
"license": .license.name,
"open_issues": .open_issues_count,
"forks": .forks_count
}'
# Check recent activity
echo -e "\nChecking recent commits..."
gh api repos/electric-sql/electric/commits | jq '.[0:3] | .[] | {
"date": .commit.author.date,
"message": .commit.message
}'
Length of output: 1358 Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
@electric-sql
scope package@electric-sql
scope package
electric-sql : https://electric-sql.com/
it has a package like pglite (
@electric-sql/pglite
), a WASM implement of postgres.