Skip to content

feat: release v0.9.10#97

Merged
nic-6443 merged 2 commits intoapi7:masterfrom
jarvis9443:feat/release-v0.9.10
Apr 21, 2026
Merged

feat: release v0.9.10#97
nic-6443 merged 2 commits intoapi7:masterfrom
jarvis9443:feat/release-v0.9.10

Conversation

@jarvis9443
Copy link
Copy Markdown
Contributor

@jarvis9443 jarvis9443 commented Apr 21, 2026

Add rockspec for v0.9.10 release.

This release includes:

Also updated source URL and homepage from iresty/jsonschema to api7/jsonschema.

Summary by CodeRabbit

  • Chores
    • Added package specification for jsonschema v0.9.10-0 enabling installation via the package manager; includes project metadata (summary, detailed description, homepage, Apache 2.0 license), declares runtime dependencies, and exposes the jsonschema library modules for use by applications.

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Apr 21, 2026

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: b3e53719-46d5-4ffa-adbe-f929b47a92da

📥 Commits

Reviewing files that changed from the base of the PR and between e176cea and 878d4c6.

📒 Files selected for processing (1)
  • rockspec/jsonschema-0.9.10-0.rockspec
✅ Files skipped from review due to trivial changes (1)
  • rockspec/jsonschema-0.9.10-0.rockspec

📝 Walkthrough

Walkthrough

Added a new Lua rockspec for jsonschema version 0.9.10-0, declaring source (git tag v0.9.10), package metadata, Apache-2.0 license, runtime dependencies (net-url, lrexlib-pcre), and two exported Lua modules.

Changes

Cohort / File(s) Summary
Package Specification
rockspec/jsonschema-0.9.10-0.rockspec
New rockspec declaring package identity and source (git, tag v0.9.10), description and license (Apache-2.0), runtime dependencies (net-url, lrexlib-pcre v2.9.1-1), build type builtin, and module exports mapping jsonschemalib/jsonschema.lua, jsonschema.storelib/jsonschema/store.lua.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Suggested reviewers

  • nic-6443
🚥 Pre-merge checks | ✅ 6
✅ Passed checks (6 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title 'feat: release v0.9.10' directly and clearly summarizes the main change: adding a rockspec file to release version 0.9.10 of the jsonschema package.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
E2e Test Quality Review ✅ Passed This PR is a release/packaging PR adding only a rockspec configuration file for v0.9.10 with no executable code changes, making the E2E test quality check inapplicable.
Security Check ✅ Passed Rockspec file contains no hardcoded credentials, API keys, secrets, or sensitive data. Public GitHub URL and legitimate open-source dependencies only.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🧹 Nitpick comments (1)
rockspec/jsonschema-0.9.10-0.rockspec (1)

4-4: Consider using https:// instead of git:// protocol.

Some systems have disabled the git:// protocol in favor of https:// for security reasons. While git:// is still commonly used in rockspecs, consider using https://github.com/api7/jsonschema.git for better compatibility.

🔒 Proposed change to use https://
-  url = "git://github.com/api7/jsonschema.git",
+  url = "https://github.com/api7/jsonschema.git",
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@rockspec/jsonschema-0.9.10-0.rockspec` at line 4, Update the repository URL
string that currently uses the git:// protocol to use HTTPS: replace the value
assigned to the url variable ("git://github.com/api7/jsonschema.git") with the
HTTPS equivalent ("https://github.com/api7/jsonschema.git") so the rockspec uses
the secure https protocol.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@rockspec/jsonschema-0.9.10-0.rockspec`:
- Around line 11-15: Fix the grammar and typos in the package description string
in the rockspec: change "is data validator the" to "is a data validator that",
change "will generates" to "will generate" (or "that can generate") and change
"Base on" to "Based on", making the full paragraph read clearly and
grammatically correct in the description block that begins "This module is  data
validator the implements JSON Schema draft 4." in the rockspec.
- Line 23: The dependency line "lrexlib-pcre = 2.9.1-1" pins the package to an
exact version; update it to allow newer compatible releases by replacing that
constraint with either a permissive range like "lrexlib-pcre >= 2.9.1-1" or a
pessimistic operator such as "lrexlib-pcre ~> 2.9.1", or bump it directly to the
newer release "lrexlib-pcre = 2.9.2-1" if you specifically want the
LuaJIT-supporting version.

---

Nitpick comments:
In `@rockspec/jsonschema-0.9.10-0.rockspec`:
- Line 4: Update the repository URL string that currently uses the git://
protocol to use HTTPS: replace the value assigned to the url variable
("git://github.com/api7/jsonschema.git") with the HTTPS equivalent
("https://github.com/api7/jsonschema.git") so the rockspec uses the secure https
protocol.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: f497200f-8739-433e-9b30-44fc8702b2d2

📥 Commits

Reviewing files that changed from the base of the PR and between 711a61b and e176cea.

📒 Files selected for processing (1)
  • rockspec/jsonschema-0.9.10-0.rockspec

Comment thread rockspec/jsonschema-0.9.10-0.rockspec Outdated
Comment thread rockspec/jsonschema-0.9.10-0.rockspec
@nic-6443 nic-6443 merged commit 7268433 into api7:master Apr 21, 2026
3 checks passed
@coderabbitai coderabbitai Bot mentioned this pull request Apr 23, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants