Skip to content

chore: prepare for release v2.3.1 #1326

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

Merged
merged 1 commit into from
May 26, 2025

Conversation

nikhilsinhaparseable
Copy link
Contributor

@nikhilsinhaparseable nikhilsinhaparseable commented May 25, 2025

Summary by CodeRabbit

  • Chores
    • Updated package version and asset references to the latest release.

Copy link
Contributor

coderabbitai bot commented May 25, 2025

Walkthrough

The package version in Cargo.toml was incremented from "2.3.0" to "2.3.1". The package.metadata.parseable_ui section was updated with a new assets-url and assets-sha1 to match the new version's build artifacts. No other changes were made.

Changes

File(s) Change Summary
Cargo.toml Updated package version, assets-url, and assets-sha1 for parseable_ui.

Possibly related PRs

Poem

A hop and a skip, a version anew,
From 2.3.0 to 2.3.1 we flew!
URLs and hashes, checked and set,
The build is ready—no need to fret.
With every release, a bunny's delight,
Shipping new bytes in the soft moonlight!
🐇✨


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

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)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@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: 1

🧹 Nitpick comments (1)
Cargo.toml (1)

143-143:

❓ Verification inconclusive

Verify and consider upgrading the checksum algorithm
The assets-sha1 was updated to "2d420243ae85b730b201ab1c15b44fae57af992b". Ensure this matches the SHA-1 of the downloaded archive. For stronger security guarantees, consider providing a SHA-256 instead.

Checksum verification example:


🏁 Script executed:

#!/bin/bash
curl -sL "https://parseable-prism-build.s3.us-east-2.amazonaws.com/v2.3.1/build.zip" | sha1sum

Length of output: 192


🏁 Script executed:

#!/bin/bash
# Re-verify the SHA-1 checksum using OpenSSL since sha1sum is unavailable
curl -sL "https://parseable-prism-build.s3.us-east-2.amazonaws.com/v2.3.1/build.zip" | openssl sha1

Length of output: 197


🏁 Script executed:

#!/bin/bash
# Compute SHA-1 via Python since neither sha1sum nor openssl are available
curl -sL "https://parseable-prism-build.s3.us-east-2.amazonaws.com/v2.3.1/build.zip" | python3 - << 'EOF'
import hashlib, sys
sha1 = hashlib.sha1()
for chunk in iter(lambda: sys.stdin.buffer.read(8192), b""):
    sha1.update(chunk)
print(sha1.hexdigest())
EOF

Length of output: 137


Manual Verification Required: Confirm Assets SHA-1 Checksum

Our automated checks returned the empty‐file SHA-1 (da39a3ee5e6b4b0d3255bfef95601890afd80709), which suggests the archive may not have been fetched correctly. Please manually verify the checksum and consider upgrading to SHA-256 for stronger security.

• Ensure the URL points to a valid, non-empty archive:

curl -sL "https://parseable-prism-build.s3.us-east-2.amazonaws.com/v2.3.1/build.zip" -o build.zip
ls -lh build.zip

• Compute and confirm the SHA-1 matches the value in Cargo.toml:

# Using sha1sum or openssl if available
sha1sum build.zip
# or
openssl sha1 build.zip

• If the checksum differs, update the assets-sha1 field accordingly.
• For improved security guarantees, generate and include a SHA-256 checksum as well:

sha256sum build.zip
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 8ebd117 and 4cbfa47.

⛔ Files ignored due to path filters (1)
  • Cargo.lock is excluded by !**/*.lock
📒 Files selected for processing (1)
  • Cargo.toml (2 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (10)
  • GitHub Check: Build Default x86_64-pc-windows-msvc
  • GitHub Check: Build Default aarch64-apple-darwin
  • GitHub Check: Build Default x86_64-apple-darwin
  • GitHub Check: Build Kafka aarch64-apple-darwin
  • GitHub Check: Build Default aarch64-unknown-linux-gnu
  • GitHub Check: Quest Smoke and Load Tests for Standalone deployments
  • GitHub Check: Build Kafka x86_64-unknown-linux-gnu
  • GitHub Check: coverage
  • GitHub Check: Build Default x86_64-unknown-linux-gnu
  • GitHub Check: Quest Smoke and Load Tests for Distributed deployments
🔇 Additional comments (1)
Cargo.toml (1)

142-142:

✅ Verification successful

Validate the new assets URL
The assets-url was updated to point at the v2.3.1 build. Please add or run a CI check to confirm the URL is reachable (HTTP 200) and serves the correct artifact.

Example check:


🏁 Script executed:

#!/bin/bash
curl -I "https://parseable-prism-build.s3.us-east-2.amazonaws.com/v2.3.1/build.zip" | head -n 1

Length of output: 428


Validate assets URL: reachable
The updated assets-url in Cargo.toml (line 142) returns HTTP 200, confirming the v2.3.1 build is accessible and serving the correct ZIP. No further action required.

@@ -1,6 +1,6 @@
[package]
name = "parseable"
version = "2.3.0"
version = "2.3.1"
Copy link
Contributor

Choose a reason for hiding this comment

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

💡 Verification agent

❓ Verification inconclusive

Confirm version bump and release notes alignment
The version field was updated from "2.3.0" to "2.3.1". Ensure that your CHANGELOG.md (or equivalent) includes an entry for v2.3.1 and that CI/CD workflows will tag and publish the correct release.

Run the following to verify the changelog contains the new version header:


🏁 Script executed:

#!/bin/bash
# Verify that CHANGELOG.md includes a 2.3.1 entry
grep -R "^## \[2\.3\.1\]" CHANGELOG.md

Length of output: 86


🏁 Script executed:

#!/bin/bash
# Locate any changelog or release notes file in the repository
find . -type f -iname "*changelog*"

Length of output: 37


Add or update release notes for v2.3.1
I didn’t find a CHANGELOG.md (or any other release-notes file) in the repo to record the v2.3.1 bump. Please add or update your changelog/release notes with an entry for v2.3.1 and ensure your CI/CD pipeline will pick it up when tagging and publishing the release.

• Create or update CHANGELOG.md (or your chosen file) with:

## [2.3.1] – YYYY-MM-DD
- <!-- summary of changes in this release -->

• Verify CI/CD workflows reference this file for tagging/publishing.

🤖 Prompt for AI Agents
In Cargo.toml at line 3, the version was updated to 2.3.1 but there is no
corresponding entry in the changelog or release notes. Create or update a
CHANGELOG.md file with a new section for version 2.3.1 including the release
date and a summary of changes. Also, verify that your CI/CD pipeline references
this changelog file to correctly tag and publish the release.

@nitisht nitisht merged commit 70a4656 into parseablehq:main May 26, 2025
14 checks passed
@nikhilsinhaparseable nikhilsinhaparseable deleted the prepare-v2.3.1 branch May 26, 2025 01:50
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