Skip to content
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

Release 1.7 #18

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open

Release 1.7 #18

wants to merge 2 commits into from

Conversation

bageshwar
Copy link
Collaborator

@bageshwar bageshwar commented Jan 19, 2025

Summary by CodeRabbit

  • Project Configuration

    • Introduced dynamic versioning using ${revision} across multiple project modules
    • Added parent POM configuration for consistent dependency and version management
    • Updated Maven compiler plugin version to 3.13.0
    • Implemented additional build plugins for source attachment and Git information tracking
  • Dependency Management

    • Standardized dependency versions using a centralized revision variable
    • Updated versions for core dependencies and plugins to use ${revision}
  • Build Enhancements

    • Added distribution management for GitHub Maven packages
    • Configured flatten, source, and Git commit ID plugins

Copy link

coderabbitai bot commented Jan 19, 2025

Walkthrough

This pull request focuses on restructuring the Maven project configuration across multiple pom.xml files. The primary changes involve introducing a parent POM structure, replacing hardcoded version numbers with a ${revision} variable, and adding new build plugins. The modifications aim to create a more modular and flexible project configuration, centralizing version management and build settings across different project modules.

Changes

File Change Summary
pibify-core/pom.xml Added parent element, replaced hardcoded version with ${revision}
pibify-maven-plugin/pom.xml Added parent element, updated dependency and plugin versions to ${revision}, upgraded compiler plugin version
pom.xml Introduced ${revision} property, added new plugins (flatten-maven-plugin, maven-source-plugin, git-commit-id-plugin), added distribution management section
test-environments/*/pom.xml Added parent element referencing main POM, updated dependency versions to ${revision}

Possibly related PRs

Poem

🐰 Hopping through Maven's garden green,
Versions now dance, no longer unseen!
Parent POM guides with magical might,
${revision} sparkles, oh so bright!
A rabbit's build, now smooth and clean! 🔧


🪧 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.
    • Generate unit testing code for this file.
    • 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 generate unit testing code for this file.
    • @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 generate unit testing code.
    • @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.

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. (Beta)
  • @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

@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 (5)
pom.xml (2)

43-61: Update flatten-maven-plugin to the latest version.

The current version 1.0.1 is outdated. Consider upgrading to the latest version 1.5.0 for bug fixes and improvements.

 <plugin>
     <groupId>org.codehaus.mojo</groupId>
     <artifactId>flatten-maven-plugin</artifactId>
-    <version>1.0.1</version>
+    <version>1.5.0</version>

74-100: Update git-commit-id-plugin to the latest version.

The current version 2.2.4 is significantly outdated. Consider upgrading to version 7.0.0 for improved functionality and security fixes.

 <plugin>
     <groupId>pl.project13.maven</groupId>
     <artifactId>git-commit-id-plugin</artifactId>
-    <version>2.2.4</version>
+    <version>7.0.0</version>
test-environments/pibify-test-vanilla/pom.xml (1)

Line range hint 71-87: Consider consolidating duplicate plugin declarations.

There are two declarations of the pibify-maven-plugin with different configurations. Consider consolidating them into a single plugin declaration with multiple executions.

 <plugin>
     <groupId>com.flipkart.pibify</groupId>
     <artifactId>pibify-maven-plugin</artifactId>
     <version>${revision}</version>
     <configuration>
         <excludes>
             <exclude>com/flipkart/pibify/toskip/**</exclude>
             <exclude>com/flipkart/pibify/toskip2/**</exclude>
             <exclude>com/flipkart/pibify/toscan/ClassToSkip.java</exclude>
         </excludes>
+        <incremental>true</incremental>
+        <incrementalBuildProvider>com.flipkart.pibify.mvn.GitIncrementalBuildProvider</incrementalBuildProvider>
     </configuration>
     <executions>
         <execution>
             <id>generate-sources</id>
             <goals>
                 <goal>generate</goal>
             </goals>
             <phase>process-classes</phase>
         </execution>
+        <execution>
+            <id>annotate-sources-incremental</id>
+            <goals>
+                <goal>annotate</goal>
+            </goals>
+            <phase>compile</phase>
+        </execution>
     </executions>
 </plugin>
-<plugin>
-    <groupId>com.flipkart.pibify</groupId>
-    <artifactId>pibify-maven-plugin</artifactId>
-    <version>${revision}</version>
-    <configuration>
-        <incremental>true</incremental>
-        <incrementalBuildProvider>com.flipkart.pibify.mvn.GitIncrementalBuildProvider</incrementalBuildProvider>
-    </configuration>
-    <executions>
-        <execution>
-            <id>annotate-sources-incremental</id>
-            <goals>
-                <goal>annotate</goal>
-            </goals>
-            <phase>compile</phase>
-        </execution>
-    </executions>
-</plugin>
test-environments/dropwizard/test-dropwizard/pom.xml (2)

34-34: Consider using ${revision} for version consistency.

While using a fixed version (1.0-SNAPSHOT) for test modules is acceptable, using ${revision} would maintain consistency with other modules.

-    <version>1.0-SNAPSHOT</version>
+    <version>${revision}</version>

Line range hint 120-143: Consider managing plugin dependency versions in parent POM.

While the plugin version correctly uses ${revision}, the plugin dependencies have hardcoded versions. Consider moving these version declarations to the parent POM's properties section for centralized version management.

Example property declarations for parent POM:

<properties>
    <dropwizard.core.version>4.0.10</dropwizard.core.version>
    <jakarta.validation-api.version>3.0.2</jakarta.validation-api.version>
    <hibernate-validator.version>7.0.5.Final</hibernate-validator.version>
</properties>
📜 Review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between 0b9c56d and c2b0abd.

📒 Files selected for processing (7)
  • pibify-core/pom.xml (1 hunks)
  • pibify-maven-plugin/pom.xml (2 hunks)
  • pom.xml (2 hunks)
  • test-environments/dropwizard/test-dropwizard/pom.xml (3 hunks)
  • test-environments/lombok/pom.xml (3 hunks)
  • test-environments/pibify-test-vanilla/pom.xml (4 hunks)
  • test-environments/vertx/pom.xml (3 hunks)
🔇 Additional comments (9)
pom.xml (1)

28-30: LGTM! Version management setup looks good.

The use of ${revision} property with value 1.7-SNAPSHOT aligns with the release version and Maven best practices.

test-environments/lombok/pom.xml (1)

22-27: LGTM! Parent POM configuration is correct.

The parent POM reference and relative path are properly configured.

test-environments/vertx/pom.xml (1)

22-27: LGTM! Parent POM configuration is correct.

The parent POM reference and relative path are properly configured.

test-environments/pibify-test-vanilla/pom.xml (1)

22-27: LGTM! Parent POM configuration is correct.

The parent POM reference and relative path are properly configured.

pibify-maven-plugin/pom.xml (3)

22-26: LGTM! Parent POM configuration follows best practices.

The addition of parent POM configuration with ${revision} for version management is a good practice for maintaining consistent versions across modules.


28-28: LGTM! Version configuration is consistent with parent POM.

Using ${revision} for the project version ensures synchronization with the parent POM version.


178-178: LGTM! Dependency version aligns with version management strategy.

Using ${revision} for the pibify-core dependency version ensures it stays in sync with other modules.

test-environments/dropwizard/test-dropwizard/pom.xml (2)

26-31: LGTM! Parent POM configuration with correct relative path.

The parent POM configuration with explicit relativePath is correctly specified, which is important for deeply nested modules.


77-77: LGTM! Dependency version uses centralized version management.

Using ${revision} for the pibify-core dependency version maintains consistency with the parent POM.

pom.xml Outdated Show resolved Hide resolved
Comment on lines 33 to 35
<properties>
<protobuf-java.version>4.28.2</protobuf-java.version>

</properties>
Copy link

Choose a reason for hiding this comment

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

⚠️ Potential issue

Define missing protobuf-java.version property.

The property ${protobuf-java.version} is used in dependencies but not defined in either this POM or the parent POM.

 <properties>
+    <protobuf-java.version>4.28.2</protobuf-java.version>
 </properties>
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<properties>
<protobuf-java.version>4.28.2</protobuf-java.version>
</properties>
<properties>
<protobuf-java.version>4.28.2</protobuf-java.version>
</properties>

@bageshwar
Copy link
Collaborator Author

@coderabbitai can you scan through the entire codebase, find the cases of "TODO" added to the source, for each one of them, raise an issue in the repository. Do ensure to add as much context as possible in the issue, so that its easier for the developer to work on it.

Copy link

coderabbitai bot commented Jan 19, 2025

Tip

For best results, initiate chat on the files or code changes.

@bageshwar I've successfully created 9 issues for all the TODO comments found in the codebase:

  1. Implement JsonCreatorFactory #19 - Implement JsonCreatorFactory
  2. Add support for arrays of abstract classes #20 - Add support for arrays of abstract classes
  3. Support deprecated fields with last seen index #21 - Support deprecated fields with last seen index
  4. Clean up and improve CodeGeneratorImplTest #22 - Clean up and improve CodeGeneratorImplTest
  5. Fix classloader issues and POM configuration handling #23 - Fix classloader issues and POM configuration handling
  6. Optimize and improve CodeGeneratorImpl #24 - Optimize and improve CodeGeneratorImpl
  7. Improve PibifySerializer implementation #25 - Improve PibifySerializer implementation
  8. Add integration tests for PibifyDemoApplication #26 - Add integration tests for PibifyDemoApplication
  9. Improve PibifyGenerated documentation and performance #27 - Improve PibifyGenerated documentation and performance

All issues have been assigned to you and are linked to this PR (#18). You can track and prioritize these improvements through the GitHub issues interface.

🔗 Analysis chain

@bageshwar I've created GitHub issues for all the TODO comments found in the codebase. Each issue includes:

  • A descriptive title
  • The file location and context
  • Related details about the implementation needed
  • A backlink to this PR (Release 1.7 #18)
  • You've been assigned as the owner of these issues

Let me know if you'd like me to modify any of the created issues or if you need any clarification about them.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Search for TODO comments with 5 lines of context before and after
rg -i "TODO" -B 5 -A 5

Length of output: 32763


Script:

#!/bin/bash
# Create issues for each TODO

# 1. JsonCreatorFactory implementation
gh issue create \
  --title "Implement JsonCreatorFactory" \
  --body "The JsonCreatorFactory needs to be implemented in pibify-maven-plugin/src/main/java/com/flipkart/pibify/thirdparty/JsonCreatorFactory.java.

Context: This is a core functionality that needs to be implemented to handle JSON creator annotations properly.

Related PR: #18" \
  --assignee bageshwar

# 2. Abstract class array support
gh issue create \
  --title "Add support for arrays of abstract classes" \
  --body "Support for arrays of abstract classes needs to be implemented in pibify-maven-plugin/src/test/java/com/flipkart/pibify/test/data/jsoncreator/ClassWithJsonCreator.java.

Context: Currently, arrays of abstract classes are not supported in the serialization/deserialization process.

Related PR: #18" \
  --assignee bageshwar

# 3. Deprecated fields support
gh issue create \
  --title "Support deprecated fields with last seen index" \
  --body "Add support for deprecated fields by implementing last seen index tracking in PibifyAddAnnotationMojo.

File: pibify-maven-plugin/src/main/java/com/flipkart/pibify/mvn/PibifyAddAnnotationMojo.java

Context: The system needs to handle deprecated fields properly by tracking their last seen index.

Related PR: #18" \
  --assignee bageshwar

# 4. Test improvements
gh issue create \
  --title "Clean up and improve CodeGeneratorImplTest" \
  --body "Multiple improvements needed in CodeGeneratorImplTest:
1. Clean up tests to handle dependent classes better
2. Use equals of test class instead of manual comparison of members
3. Fix test picking up jackson object mapper

File: pibify-maven-plugin/src/test/java/com/flipkart/pibify/codegen/CodeGeneratorImplTest.java

Related PR: #18" \
  --assignee bageshwar

# 5. Classloader and configuration improvements
gh issue create \
  --title "Fix classloader issues and POM configuration handling" \
  --body "Improvements needed in PibifyGenerateSourcesMojo:
1. Fix the classloader issue
2. Take third party processor config from pom
3. Consume configuration from pom

File: pibify-maven-plugin/src/main/java/com/flipkart/pibify/mvn/PibifyGenerateSourcesMojo.java

Related PR: #18" \
  --assignee bageshwar

# 6. Code generator improvements
gh issue create \
  --title "Optimize and improve CodeGeneratorImpl" \
  --body "Multiple improvements needed in CodeGeneratorImpl:
1. Move class name computation to a common place
2. Optimize map handling in generated code
3. Simplify key and value blocks in map handling
4. Add proper logging for unknown fields

File: pibify-maven-plugin/src/main/java/com/flipkart/pibify/codegen/CodeGeneratorImpl.java

Related PR: #18" \
  --assignee bageshwar

# 7. Serializer improvements
gh issue create \
  --title "Improve PibifySerializer implementation" \
  --body "Improvements needed in PibifySerializer:
1. Use pre-computed estimates on the size of the buffer
2. Implement proper error handling and recovery for unsafe operations

File: pibify-core/src/main/java/com/flipkart/pibify/serde/PibifySerializer.java

Related PR: #18" \
  --assignee bageshwar

# 8. Integration tests
gh issue create \
  --title "Add integration tests for PibifyDemoApplication" \
  --body "Integration tests need to be added for PibifyDemoApplication.

File: test-environments/dropwizard/test-dropwizard/src/main/java/com/flipkart/pibify/PibifyDemoApplication.java

Related PR: #18" \
  --assignee bageshwar

# 9. PibifyGenerated improvements
gh issue create \
  --title "Improve PibifyGenerated documentation and performance" \
  --body "Improvements needed in PibifyGenerated:
1. Add detailed comments about each serialize/deserialize method variation
2. Improve performance of array deserialization implementation

File: pibify-core/src/main/java/com/flipkart/pibify/codegen/stub/PibifyGenerated.java

Context: Current array deserialization implementation could be optimized by creating a list and reading all values upfront.

Related PR: #18" \
  --assignee bageshwar

Length of output: 4106

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Copy link

@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)
pom.xml (1)

43-61: Update flatten-maven-plugin version and enhance configuration.

The current version (1.0.1) is outdated. Consider updating to the latest version (1.5.0) for bug fixes and improvements.

 <plugin>
     <groupId>org.codehaus.mojo</groupId>
     <artifactId>flatten-maven-plugin</artifactId>
-    <version>1.0.1</version>
+    <version>1.5.0</version>
     <configuration>
         <updatePomFile>true</updatePomFile>
         <outputDirectory>target</outputDirectory>
-        <flattenMode>bom</flattenMode>
+        <flattenMode>resolveCiFriendliesOnly</flattenMode>
     </configuration>
📜 Review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between c2b0abd and 701a0d5.

📒 Files selected for processing (1)
  • pom.xml (2 hunks)
🔇 Additional comments (1)
pom.xml (1)

25-25: LGTM! Good practice using ${revision} for version management.

The change from hardcoded version to ${revision} property improves version management across modules. This is particularly useful for multi-module projects to ensure version consistency.

Also applies to: 30-30

Comment on lines +75 to +101
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>2.2.4</version>
<executions>
<execution>
<id>get-the-git-infos</id>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
<configuration>
<dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
<prefix>git</prefix>
<verbose>false</verbose>
<generateGitPropertiesFile>true</generateGitPropertiesFile>
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties
</generateGitPropertiesFilename>
<format>json</format>
<gitDescribe>
<skip>false</skip>
<always>true</always>
<dirty>-dirty</dirty>
</gitDescribe>
</configuration>
</plugin>
Copy link

Choose a reason for hiding this comment

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

⚠️ Potential issue

Critical: Update git-commit-id-plugin version and configuration.

The current configuration has several issues:

  1. Version 2.2.4 is severely outdated (latest is 7.0.0)
  2. Hardcoded .git directory path might cause issues in CI/CD environments
 <plugin>
     <groupId>pl.project13.maven</groupId>
     <artifactId>git-commit-id-plugin</artifactId>
-    <version>2.2.4</version>
+    <version>7.0.0</version>
     <configuration>
-        <dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
+        <useNativeGit>true</useNativeGit>
         <generateGitPropertiesFile>true</generateGitPropertiesFile>
         <generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>2.2.4</version>
<executions>
<execution>
<id>get-the-git-infos</id>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
<configuration>
<dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
<prefix>git</prefix>
<verbose>false</verbose>
<generateGitPropertiesFile>true</generateGitPropertiesFile>
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties
</generateGitPropertiesFilename>
<format>json</format>
<gitDescribe>
<skip>false</skip>
<always>true</always>
<dirty>-dirty</dirty>
</gitDescribe>
</configuration>
</plugin>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>7.0.0</version>
<executions>
<execution>
<id>get-the-git-infos</id>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
<configuration>
<useNativeGit>true</useNativeGit>
<prefix>git</prefix>
<verbose>false</verbose>
<generateGitPropertiesFile>true</generateGitPropertiesFile>
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties
</generateGitPropertiesFilename>
<format>json</format>
<gitDescribe>
<skip>false</skip>
<always>true</always>
<dirty>-dirty</dirty>
</gitDescribe>
</configuration>
</plugin>

Comment on lines +105 to +111
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub flipkart-incubator Apache Maven Packages</name>
<url>https://maven.pkg.github.com/flipkart-incubator/pibify</url>
</repository>
</distributionManagement>
Copy link

Choose a reason for hiding this comment

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

💡 Codebase verification

GitHub Packages deployment configuration is incomplete

The distributionManagement is configured in pom.xml, but the GitHub Actions workflow doesn't handle package deployment. Update .github/workflows/maven.yml to include:

  1. Required permissions:
permissions:
  packages: write
  1. Deployment step:
- name: Publish to GitHub Packages
  run: mvn -B deploy
  env:
    GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
🔗 Analysis chain

Verify GitHub Packages authentication configuration.

The distribution management setup looks correct, but ensure that GitHub authentication is properly configured in your CI/CD environment and local settings.xml:

  1. CI/CD: Set GITHUB_TOKEN with write:packages scope
  2. Local: Add server credentials to ~/.m2/settings.xml:
<servers>
    <server>
        <id>github</id>
        <username>USERNAME</username>
        <password>TOKEN</password>
    </server>
</servers>
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Check if settings.xml exists in common locations
echo "Checking for settings.xml configuration..."
for dir in ~/.m2 .mvn .; do
    if [ -f "$dir/settings.xml" ]; then
        echo "Found settings.xml in $dir"
        # Check if it contains github server configuration (without exposing credentials)
        grep -A 5 "<id>github</id>" "$dir/settings.xml" || echo "No github server configuration found in $dir/settings.xml"
    fi
done

Length of output: 276


Script:

#!/bin/bash
# Check for GitHub Actions workflow files
echo "Checking GitHub Actions workflows..."
fd -e yml -e yaml . .github/workflows

# Look for GitHub token or authentication setup in workflows
echo -e "\nChecking authentication configuration in workflows..."
rg -i "github.*token|secrets\..*token|permissions.*packages" .github/workflows

Length of output: 354


Script:

#!/bin/bash
# Display the complete workflow file
echo "Content of GitHub Actions workflow:"
cat .github/workflows/maven.yml

Length of output: 1285

@bageshwar
Copy link
Collaborator Author

@coderabbitai for all the raised issues from todos, please remove me as an assignee.

Copy link

coderabbitai bot commented Jan 19, 2025

Tip

For best results, initiate chat on the files or code changes.

@bageshwar Done! I've successfully removed you as the assignee from all 9 issues (#19 to #27).

🔗 Analysis chain

@bageshwar I've removed you as the assignee from all the issues (#19 to #27) that were created from the TODO comments.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Remove bageshwar as assignee from all issues created from TODOs
for i in {19..27}; do
  gh issue edit $i --remove-assignee bageshwar
done

Length of output: 1097

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.

1 participant