From 9193dbd0cca7fcafb189d17e3f619e4c92d066d3 Mon Sep 17 00:00:00 2001 From: ovalnine Date: Sat, 17 May 2025 12:40:35 -0700 Subject: [PATCH 01/10] Fix reflection invocation of PdeLanguageServer Fixed argument type mismatch when invoking the PdeLanguageServer main method via reflection. Changed from using spread operator with a list wrapper to passing a properly typed String array directly. This resolves the IllegalArgumentException thrown during language server initialization. --- app/src/processing/app/Processing.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/processing/app/Processing.kt b/app/src/processing/app/Processing.kt index 11555edf5..02465c8b5 100644 --- a/app/src/processing/app/Processing.kt +++ b/app/src/processing/app/Processing.kt @@ -52,7 +52,7 @@ class LSP: SuspendingCliktCommand("lsp"){ // Indirect invocation since app does not depend on java mode Class.forName("processing.mode.java.lsp.PdeLanguageServer") .getMethod("main", Array::class.java) - .invoke(null, *arrayOf(emptyList())) + .invoke(null, arrayOf()) } catch (e: Exception) { throw InternalError("Failed to invoke main method", e) } @@ -87,4 +87,4 @@ class LegacyCLI(val args: Array): SuspendingCliktCommand( "cli"){ throw InternalError("Failed to invoke main method", e) } } -} \ No newline at end of file +} From 0237f504f8cd7e7039bb5677418c263657852254 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20de=20Courville?= Date: Mon, 26 May 2025 12:22:58 +0200 Subject: [PATCH 02/10] Update issue templates to use dropdown for work assignment options --- .github/ISSUE_TEMPLATE/1_bug_report.yml | 9 +++++++-- .github/ISSUE_TEMPLATE/2_enhancement.yml | 9 +++++++-- .github/ISSUE_TEMPLATE/3_feature-request.yml | 10 +++++++--- 3 files changed, 21 insertions(+), 7 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/1_bug_report.yml b/.github/ISSUE_TEMPLATE/1_bug_report.yml index 2940b983e..dff0c85db 100644 --- a/.github/ISSUE_TEMPLATE/1_bug_report.yml +++ b/.github/ISSUE_TEMPLATE/1_bug_report.yml @@ -84,10 +84,15 @@ body: validations: required: false -- type: input +- type: dropdown attributes: label: Would you like to work on the issue? description: | - Please let us know if you can work on this or if the issue should be assigned to someone else. + Processing is an open-source, community-driven project. Let us know if you would like to help resolve this issue, or if you'd prefer it be assigned to someone else. + See [CONTRIBUTE.md](https://github.com/processing/processing4/blob/main/CONTRIBUTE.md) for more info about contributing. + options: + - Yes, I would like to work on this + - No, please assign to someone else + - I am not sure validations: required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/2_enhancement.yml b/.github/ISSUE_TEMPLATE/2_enhancement.yml index 06a1c93b9..87cefe59b 100644 --- a/.github/ISSUE_TEMPLATE/2_enhancement.yml +++ b/.github/ISSUE_TEMPLATE/2_enhancement.yml @@ -65,10 +65,15 @@ body: validations: required: false -- type: input +- type: dropdown attributes: label: Would you like to work on the issue? description: | - Please let us know if you can work on this or if the issue should be assigned to someone else. + Processing is an open-source, community-driven project. Let us know if you would like to help resolve this issue, or if you'd prefer it be assigned to someone else. + See [CONTRIBUTE.md](https://github.com/processing/processing4/blob/main/CONTRIBUTE.md) for more info about contributing. + options: + - Yes, I would like to work on this + - No, please assign to someone else + - I am not sure validations: required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/3_feature-request.yml b/.github/ISSUE_TEMPLATE/3_feature-request.yml index bfe8de060..cac1cac33 100644 --- a/.github/ISSUE_TEMPLATE/3_feature-request.yml +++ b/.github/ISSUE_TEMPLATE/3_feature-request.yml @@ -62,11 +62,15 @@ body: validations: required: false - -- type: input +- type: dropdown attributes: label: Would you like to work on the issue? description: | - Please let us know if you can work on this or if the issue should be assigned to someone else. + Processing is an open-source, community-driven project. Let us know if you would like to help resolve this issue, or if you'd prefer it be assigned to someone else. + See [CONTRIBUTE.md](https://github.com/processing/processing4/blob/main/CONTRIBUTE.md) for more info about contributing. + options: + - Yes, I would like to work on this + - No, please assign to someone else + - I am not sure validations: required: true \ No newline at end of file From 7804f0187195e74f14689e7a1ae23587b96abfb9 Mon Sep 17 00:00:00 2001 From: thisizaro Date: Wed, 28 May 2025 23:46:37 +0530 Subject: [PATCH 03/10] Updated app description in 'app/windows/Processing.wxs' --- app/windows/Processing.wxs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/windows/Processing.wxs b/app/windows/Processing.wxs index 2170bdb6c..2b6a7a5e3 100644 --- a/app/windows/Processing.wxs +++ b/app/windows/Processing.wxs @@ -24,7 +24,7 @@ From 6f3baad1294108a32363f098691095d51292b60f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20de=20Courville?= Date: Fri, 6 Jun 2025 14:06:39 +0200 Subject: [PATCH 04/10] Update BUILD.md --- BUILD.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BUILD.md b/BUILD.md index af6da8dea..ecc8966b4 100644 --- a/BUILD.md +++ b/BUILD.md @@ -62,6 +62,8 @@ If your main concern is with the `Core` you don't need to build and start the wh ## Other editors +TBD + ## Troubleshooting and Setup Tips (IntelliJ IDEA) If you’re building Processing using IntelliJ IDEA and something’s not working, here are a few things that might help: From 62a767f93c350fc5e7e8441116c9565a78717a92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20de=20Courville?= Date: Tue, 17 Jun 2025 11:25:10 +0200 Subject: [PATCH 05/10] Fixed CONTRIBUTING link and improved wording --- .github/ISSUE_TEMPLATE/1_bug_report.yml | 13 ++++++++----- .github/ISSUE_TEMPLATE/2_enhancement.yml | 13 ++++++++----- .github/ISSUE_TEMPLATE/3_feature-request.yml | 13 ++++++++----- 3 files changed, 24 insertions(+), 15 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/1_bug_report.yml b/.github/ISSUE_TEMPLATE/1_bug_report.yml index dff0c85db..840823193 100644 --- a/.github/ISSUE_TEMPLATE/1_bug_report.yml +++ b/.github/ISSUE_TEMPLATE/1_bug_report.yml @@ -88,11 +88,14 @@ body: attributes: label: Would you like to work on the issue? description: | - Processing is an open-source, community-driven project. Let us know if you would like to help resolve this issue, or if you'd prefer it be assigned to someone else. - See [CONTRIBUTE.md](https://github.com/processing/processing4/blob/main/CONTRIBUTE.md) for more info about contributing. + Thank you for reporting this issue! Processing is a community-driven, open-source project. That means issues like this often rely on contributors like you to help investigate and fix them. + + Let us know if you’d like to try fixing it yourself, and don’t worry, we can guide you through the process. If not, that’s okay too. Your report is appreciated. + + See [CONTRIBUTING.md](https://github.com/processing/processing4/blob/main/CONTRIBUTING.md) to learn more about how to get involved. options: - - Yes, I would like to work on this - - No, please assign to someone else - - I am not sure + - Yes, I’d like to help with this + - No, I’m just reporting the issue + - I’m not sure yet validations: required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/2_enhancement.yml b/.github/ISSUE_TEMPLATE/2_enhancement.yml index 87cefe59b..09c491017 100644 --- a/.github/ISSUE_TEMPLATE/2_enhancement.yml +++ b/.github/ISSUE_TEMPLATE/2_enhancement.yml @@ -69,11 +69,14 @@ body: attributes: label: Would you like to work on the issue? description: | - Processing is an open-source, community-driven project. Let us know if you would like to help resolve this issue, or if you'd prefer it be assigned to someone else. - See [CONTRIBUTE.md](https://github.com/processing/processing4/blob/main/CONTRIBUTE.md) for more info about contributing. + Thank you for reporting this issue! Processing is a community-driven, open-source project. That means issues like this often rely on contributors like you to help investigate and fix them. + + Let us know if you’d like to try fixing it yourself, and don’t worry, we can guide you through the process. If not, that’s okay too. Your report is appreciated. + + See [CONTRIBUTING.md](https://github.com/processing/processing4/blob/main/CONTRIBUTING.md) to learn more about how to get involved. options: - - Yes, I would like to work on this - - No, please assign to someone else - - I am not sure + - Yes, I’d like to help with this + - No, I’m just reporting the issue + - I’m not sure yet validations: required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/3_feature-request.yml b/.github/ISSUE_TEMPLATE/3_feature-request.yml index cac1cac33..07165d342 100644 --- a/.github/ISSUE_TEMPLATE/3_feature-request.yml +++ b/.github/ISSUE_TEMPLATE/3_feature-request.yml @@ -66,11 +66,14 @@ body: attributes: label: Would you like to work on the issue? description: | - Processing is an open-source, community-driven project. Let us know if you would like to help resolve this issue, or if you'd prefer it be assigned to someone else. - See [CONTRIBUTE.md](https://github.com/processing/processing4/blob/main/CONTRIBUTE.md) for more info about contributing. + Thank you for reporting this issue! Processing is a community-driven, open-source project. That means issues like this often rely on contributors like you to help investigate and fix them. + + Let us know if you’d like to try fixing it yourself, and don’t worry, we can guide you through the process. If not, that’s okay too. Your report is appreciated. + + See [CONTRIBUTING.md](https://github.com/processing/processing4/blob/main/CONTRIBUTING.md) to learn more about how to get involved. options: - - Yes, I would like to work on this - - No, please assign to someone else - - I am not sure + - Yes, I’d like to help with this + - No, I’m just reporting the issue + - I’m not sure yet validations: required: true \ No newline at end of file From 170fcc8282cda91e14d020c292f6f37707701022 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20de=20Courville?= Date: Tue, 17 Jun 2025 11:33:14 +0200 Subject: [PATCH 06/10] =?UTF-8?q?Issue=20templates:=20Change=20the=20defau?= =?UTF-8?q?lt=20option=20to=20"No,=20I=E2=80=99m=20just=20reporting=20the?= =?UTF-8?q?=20issue"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/ISSUE_TEMPLATE/1_bug_report.yml | 2 +- .github/ISSUE_TEMPLATE/2_enhancement.yml | 2 +- .github/ISSUE_TEMPLATE/3_feature-request.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/1_bug_report.yml b/.github/ISSUE_TEMPLATE/1_bug_report.yml index 840823193..f8183033f 100644 --- a/.github/ISSUE_TEMPLATE/1_bug_report.yml +++ b/.github/ISSUE_TEMPLATE/1_bug_report.yml @@ -94,8 +94,8 @@ body: See [CONTRIBUTING.md](https://github.com/processing/processing4/blob/main/CONTRIBUTING.md) to learn more about how to get involved. options: - - Yes, I’d like to help with this - No, I’m just reporting the issue + - Yes, I’d like to help with this - I’m not sure yet validations: required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/2_enhancement.yml b/.github/ISSUE_TEMPLATE/2_enhancement.yml index 09c491017..b68f162a2 100644 --- a/.github/ISSUE_TEMPLATE/2_enhancement.yml +++ b/.github/ISSUE_TEMPLATE/2_enhancement.yml @@ -75,8 +75,8 @@ body: See [CONTRIBUTING.md](https://github.com/processing/processing4/blob/main/CONTRIBUTING.md) to learn more about how to get involved. options: - - Yes, I’d like to help with this - No, I’m just reporting the issue + - Yes, I’d like to help with this - I’m not sure yet validations: required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/3_feature-request.yml b/.github/ISSUE_TEMPLATE/3_feature-request.yml index 07165d342..b944664b1 100644 --- a/.github/ISSUE_TEMPLATE/3_feature-request.yml +++ b/.github/ISSUE_TEMPLATE/3_feature-request.yml @@ -72,8 +72,8 @@ body: See [CONTRIBUTING.md](https://github.com/processing/processing4/blob/main/CONTRIBUTING.md) to learn more about how to get involved. options: - - Yes, I’d like to help with this - No, I’m just reporting the issue + - Yes, I’d like to help with this - I’m not sure yet validations: required: true \ No newline at end of file From 356fe8ec31858ac14894ee9252bd44a75835e565 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20de=20Courville?= Date: Tue, 17 Jun 2025 13:11:53 +0200 Subject: [PATCH 07/10] Simplify issue templates (#1150) Made a few tweaks to the issue templates to make them easier to use (fewer input fields) and make the call to contribute feel more inclusive. --- .github/ISSUE_TEMPLATE/1_bug_report.yml | 29 ++++++--- .github/ISSUE_TEMPLATE/2_enhancement.yml | 63 ++++++++++--------- .github/ISSUE_TEMPLATE/3_feature-request.yml | 66 +++++++++----------- 3 files changed, 84 insertions(+), 74 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/1_bug_report.yml b/.github/ISSUE_TEMPLATE/1_bug_report.yml index f8183033f..3a8d9c828 100644 --- a/.github/ISSUE_TEMPLATE/1_bug_report.yml +++ b/.github/ISSUE_TEMPLATE/1_bug_report.yml @@ -3,6 +3,7 @@ description: Report broken or incorrect behavior in Processing 4. (For help with labels: [bug] body: + - type: dropdown id: sub-area attributes: @@ -10,6 +11,7 @@ body: description: You may select more than one. multiple: true options: + - I'm not sure - Accessibility - Core/Environment/Rendering - PDE @@ -33,7 +35,7 @@ body: - type: input attributes: label: Processing version - description: Go to "Help > About Processing" and look in the bottom-right corner for the version number. It also appears in the title bar of every editor window. + description: Go to "Help > About Processing" and look in the bottom-right corner for the version number. validations: required: true @@ -44,6 +46,15 @@ body: validations: required: true +- type: textarea + attributes: + label: Bug description + description: | + Describe the bug in detail. Include what you expected to happen and what actually happened. + If applicable, include any error messages you received. + validations: + required: true + - type: textarea attributes: label: Steps to reproduce this @@ -80,7 +91,7 @@ body: - type: textarea attributes: label: Additional context - description: Add any other context about the problem here. + description: Provide any other information, links, or screenshots that could help illustrate the bug. validations: required: false @@ -88,14 +99,16 @@ body: attributes: label: Would you like to work on the issue? description: | - Thank you for reporting this issue! Processing is a community-driven, open-source project. That means issues like this often rely on contributors like you to help investigate and fix them. - - Let us know if you’d like to try fixing it yourself, and don’t worry, we can guide you through the process. If not, that’s okay too. Your report is appreciated. - - See [CONTRIBUTING.md](https://github.com/processing/processing4/blob/main/CONTRIBUTING.md) to learn more about how to get involved. + If not, that’s okay too. Your report is appreciated. options: - No, I’m just reporting the issue - Yes, I’d like to help with this - I’m not sure yet validations: - required: true \ No newline at end of file + required: true + +- type: markdown + attributes: + value: | + > [!NOTE] + > Processing is a community-driven, open-source project. If you have time and interest to help, your contribution would be greatly appreciated! See the [contribution guide](https://github.com/processing/processing4/blob/main/CONTRIBUTING.md) to learn more. And if you need some guidance or support, we're happy to help you get started. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/2_enhancement.yml b/.github/ISSUE_TEMPLATE/2_enhancement.yml index b68f162a2..97f02ac32 100644 --- a/.github/ISSUE_TEMPLATE/2_enhancement.yml +++ b/.github/ISSUE_TEMPLATE/2_enhancement.yml @@ -3,6 +3,12 @@ description: Suggest an improvement for an existing feature of Processing. labels: [enhancement] body: +- type: markdown + attributes: + value: | + > [!TIP] + > If you have an idea for something Processing doesn’t yet support, **creating a library** is often the best way to contribute. Read more about creating a library [here](https://github.com/processing/processing4/blob/main/CONTRIBUTING.md#adding-new-features-to-processing). + - type: dropdown id: feature-area attributes: @@ -10,6 +16,7 @@ body: description: Choose the most relevant area for the proposed feature or improvement. multiple: true options: + - I'm not sure - Accessibility - Core/Environment/Rendering - PDE @@ -39,44 +46,38 @@ body: - type: textarea attributes: - label: Desired enhancement - description: Describe the improvement you’d like to see with that existing feature + label: Enhancement details + description: | + Describe the improvement you’d like to see for this existing feature. + value: | + #### Enhancement description + Describe the enhancement in detail. Include how it should work and its intended impact. + + #### Benefits + Outline how this enhancement would benefit users or improve Processing. + + #### Challenges + Discuss any possible challenges or considerations in implementing this enhancement. + + #### Additional context + Provide any additional context or screenshots that may help clarify the enhancement. validations: required: true -- type: textarea - attributes: - label: Potential benefits - description: Explain how this enhancement could benefit users or improve Processing. - validations: - required: false - -- type: textarea - attributes: - label: Possible drawbacks - description: Consider any possible drawbacks or challenges related to the implementation of this enhancement. - validations: - required: false - -- type: textarea - attributes: - label: Additional context - description: Add any other context or screenshots about the feature request here. - validations: - required: false - - type: dropdown attributes: - label: Would you like to work on the issue? + label: Would you like to help implement this enhancement? description: | - Thank you for reporting this issue! Processing is a community-driven, open-source project. That means issues like this often rely on contributors like you to help investigate and fix them. - - Let us know if you’d like to try fixing it yourself, and don’t worry, we can guide you through the process. If not, that’s okay too. Your report is appreciated. - - See [CONTRIBUTING.md](https://github.com/processing/processing4/blob/main/CONTRIBUTING.md) to learn more about how to get involved. + If not, that’s okay too. Your suggestion is appreciated. options: - - No, I’m just reporting the issue + - No, I’m just suggesting the enhancement - Yes, I’d like to help with this - I’m not sure yet validations: - required: true \ No newline at end of file + required: true + +- type: markdown + attributes: + value: | + > [!NOTE] + > Processing is a community-driven, open-source project. If you have time and interest to help, your contribution would be greatly appreciated! See the [contribution guide](https://github.com/processing/processing4/blob/main/CONTRIBUTING.md) to learn more. And if you need some guidance or support, we're happy to help you get started. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/3_feature-request.yml b/.github/ISSUE_TEMPLATE/3_feature-request.yml index b944664b1..1bbe2e0a4 100644 --- a/.github/ISSUE_TEMPLATE/3_feature-request.yml +++ b/.github/ISSUE_TEMPLATE/3_feature-request.yml @@ -3,6 +3,12 @@ description: Request adding a new feature to Processing labels: [new feature] body: +- type: markdown + attributes: + value: | + > [!TIP] + > If you have an idea for something Processing doesn’t yet support, **creating a library** is often the best way to contribute. Read more about creating a library [here](https://github.com/processing/processing4/blob/main/CONTRIBUTING.md#adding-new-features-to-processing). + - type: dropdown id: feature-area attributes: @@ -10,6 +16,7 @@ body: description: Choose the sub-area most relevant to your feature request. multiple: true options: + - I'm not sure - Accessibility - Core/Environment/Rendering - PDE @@ -31,49 +38,38 @@ body: required: true - type: textarea - id: feature-description + id: feature-details attributes: - label: Feature description - description: Describe the feature in detail. Include how it should work and its intended impact. + label: Feature details + description: | + #### Feature description + Describe the feature in detail. Include how it should work and its intended impact. + + #### Benefits + Outline how this feature would benefit users or improve Processing. + + #### Challenges + Discuss any possible challenges or considerations in implementing this feature. + + #### Additional context + Provide any other information, links, or screenshots that could help illustrate the feature. validations: required: true -- type: textarea - id: benefits - attributes: - label: Benefits - description: Outline how this feature would benefit users or improve Processing. - validations: - required: true - -- type: textarea - id: challenges - attributes: - label: Possible challenges - description: Discuss any possible challenges or considerations in implementing this feature. - validations: - required: false - -- type: textarea - id: additional-context - attributes: - label: Additional context - description: Provide any other information, links, or screenshots that could help illustrate the feature. - validations: - required: false - - type: dropdown attributes: - label: Would you like to work on the issue? + label: Would you like to help implement this feature? description: | - Thank you for reporting this issue! Processing is a community-driven, open-source project. That means issues like this often rely on contributors like you to help investigate and fix them. - - Let us know if you’d like to try fixing it yourself, and don’t worry, we can guide you through the process. If not, that’s okay too. Your report is appreciated. - - See [CONTRIBUTING.md](https://github.com/processing/processing4/blob/main/CONTRIBUTING.md) to learn more about how to get involved. + If not, that’s okay too. Your suggestion is appreciated. options: - - No, I’m just reporting the issue + - No, I’m just suggesting the feature - Yes, I’d like to help with this - I’m not sure yet validations: - required: true \ No newline at end of file + required: true + +- type: markdown + attributes: + value: | + > [!NOTE] + > Processing is a community-driven, open-source project. If you have time and interest to help, your contribution would be greatly appreciated! See the [contribution guide](https://github.com/processing/processing4/blob/main/CONTRIBUTING.md) to learn more. And if you need some guidance or support, we're happy to help you get started. \ No newline at end of file From c16b73e65b4fd69c14742d1589d4839decfb2863 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20de=20Courville?= Date: Tue, 17 Jun 2025 13:21:05 +0200 Subject: [PATCH 08/10] Issue template: fix description to be value field --- .github/ISSUE_TEMPLATE/3_feature-request.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/3_feature-request.yml b/.github/ISSUE_TEMPLATE/3_feature-request.yml index 1bbe2e0a4..70901308e 100644 --- a/.github/ISSUE_TEMPLATE/3_feature-request.yml +++ b/.github/ISSUE_TEMPLATE/3_feature-request.yml @@ -42,6 +42,8 @@ body: attributes: label: Feature details description: | + Describe the feature you’d like to see added to Processing. + value: | #### Feature description Describe the feature in detail. Include how it should work and its intended impact. From e4418e213348b189cca1c44b39db8ccea9fcb087 Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Tue, 17 Jun 2025 12:18:50 +0000 Subject: [PATCH 09/10] docs: update README.md [skip ci] --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 1f6c63036..af797eca6 100644 --- a/README.md +++ b/README.md @@ -296,6 +296,7 @@ _Note: due to GitHub's limitations, this repository's [Contributors](https://git SushantBansal-tech
SushantBansal-tech

🤔 💻 Konsl
Konsl

📖 Mario Guzman
Mario Guzman

📖 + Aranya Dutta
Aranya Dutta

💻 From 621fb8711d241dfc475c2a19c2186c53b37a6eaf Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Tue, 17 Jun 2025 12:18:51 +0000 Subject: [PATCH 10/10] docs: update .all-contributorsrc [skip ci] --- .all-contributorsrc | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.all-contributorsrc b/.all-contributorsrc index 8a53689d8..8616f84f3 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -1521,6 +1521,15 @@ "contributions": [ "doc" ] + }, + { + "login": "thisizaro", + "name": "Aranya Dutta", + "avatar_url": "https://avatars.githubusercontent.com/u/98299268?v=4", + "profile": "https://github.com/thisizaro", + "contributions": [ + "code" + ] } ], "repoType": "github",