[PR #4471] [CLOSED] feat: add Jira data connector #4638

Closed
opened 2026-02-22 18:36:14 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/4471
Author: @tillpeyer
Created: 10/2/2025
Status: Closed

Base: masterHead: 4014-feat-jira-connector


📝 Commits (3)

  • c6b0047 feat: add Jira data connector
  • 97bedec feat: add Jira data connector tests
  • 9fd4d56 feat: PR drawt changes

📊 Changes

39 files changed (+1703 additions, -63 deletions)

View changed files

collector/__tests__/utils/extensions/JIra/JiraLoader/jira-issue-loader.test.js (+92 -0)
collector/__tests__/utils/extensions/JIra/jira-serivice.test.js (+118 -0)
📝 collector/extensions/index.js (+27 -2)
📝 collector/extensions/resync/index.js (+33 -0)
collector/utils/extensions/Jira/JiraLoader/index.js (+162 -0)
collector/utils/extensions/Jira/index.js (+259 -0)
📝 frontend/src/components/DataConnectorOption/media/index.js (+2 -0)
frontend/src/components/DataConnectorOption/media/jira.svg (+16 -0)
frontend/src/components/Modals/ManageWorkspace/DataConnectors/Connectors/Jira/index.jsx (+271 -0)
📝 frontend/src/components/Modals/ManageWorkspace/DataConnectors/index.jsx (+7 -0)
📝 frontend/src/locales/ar/common.js (+23 -0)
📝 frontend/src/locales/da/common.js (+23 -0)
📝 frontend/src/locales/de/common.js (+29 -0)
📝 frontend/src/locales/en/common.js (+28 -1)
📝 frontend/src/locales/es/common.js (+23 -0)
📝 frontend/src/locales/et/common.js (+23 -0)
📝 frontend/src/locales/fa/common.js (+23 -0)
📝 frontend/src/locales/fr/common.js (+23 -0)
📝 frontend/src/locales/he/common.js (+23 -0)
📝 frontend/src/locales/it/common.js (+23 -0)

...and 19 more files

📄 Description

  • Implement Jira connector module to fetch projects and issues via REST API
  • Add jira to sync documents and fix eslint warnings in the file

Closes #4014

Pull Request Type

  • feat
  • 🐛 fix
  • ♻️ refactor
  • 💄 style
  • 🔨 chore
  • 📝 docs

Relevant Issues

resolves #4014

What is in this change?

  • Implement Jira connector module to fetch projects and issues via REST API

Additional Information

  • Add jira to sync documents and fix eslint warnings in the file
  • Add basic tests for jira data connector

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated
  • I have tested my code functionality
  • Docker build succeeds locally

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Mintplex-Labs/anything-llm/pull/4471 **Author:** [@tillpeyer](https://github.com/tillpeyer) **Created:** 10/2/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `4014-feat-jira-connector` --- ### 📝 Commits (3) - [`c6b0047`](https://github.com/Mintplex-Labs/anything-llm/commit/c6b00475bf33535cdce1cbcc4df1162db533dc67) feat: add Jira data connector - [`97bedec`](https://github.com/Mintplex-Labs/anything-llm/commit/97bedecf4c86fda5a2473e24fe5c1ce030fb1528) feat: add Jira data connector tests - [`9fd4d56`](https://github.com/Mintplex-Labs/anything-llm/commit/9fd4d56ed17ba9930afcce294a29af57aa0037ff) feat: PR drawt changes ### 📊 Changes **39 files changed** (+1703 additions, -63 deletions) <details> <summary>View changed files</summary> ➕ `collector/__tests__/utils/extensions/JIra/JiraLoader/jira-issue-loader.test.js` (+92 -0) ➕ `collector/__tests__/utils/extensions/JIra/jira-serivice.test.js` (+118 -0) 📝 `collector/extensions/index.js` (+27 -2) 📝 `collector/extensions/resync/index.js` (+33 -0) ➕ `collector/utils/extensions/Jira/JiraLoader/index.js` (+162 -0) ➕ `collector/utils/extensions/Jira/index.js` (+259 -0) 📝 `frontend/src/components/DataConnectorOption/media/index.js` (+2 -0) ➕ `frontend/src/components/DataConnectorOption/media/jira.svg` (+16 -0) ➕ `frontend/src/components/Modals/ManageWorkspace/DataConnectors/Connectors/Jira/index.jsx` (+271 -0) 📝 `frontend/src/components/Modals/ManageWorkspace/DataConnectors/index.jsx` (+7 -0) 📝 `frontend/src/locales/ar/common.js` (+23 -0) 📝 `frontend/src/locales/da/common.js` (+23 -0) 📝 `frontend/src/locales/de/common.js` (+29 -0) 📝 `frontend/src/locales/en/common.js` (+28 -1) 📝 `frontend/src/locales/es/common.js` (+23 -0) 📝 `frontend/src/locales/et/common.js` (+23 -0) 📝 `frontend/src/locales/fa/common.js` (+23 -0) 📝 `frontend/src/locales/fr/common.js` (+23 -0) 📝 `frontend/src/locales/he/common.js` (+23 -0) 📝 `frontend/src/locales/it/common.js` (+23 -0) _...and 19 more files_ </details> ### 📄 Description - Implement Jira connector module to fetch projects and issues via REST API - Add jira to sync documents and fix eslint warnings in the file Closes #4014 ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #4014 ### What is in this change? <!-- Describe the changes in this PR that are impactful to the repo. --> - Implement Jira connector module to fetch projects and issues via REST API ### Additional Information <!-- Add any other context about the Pull Request here that was not captured above. --> - Add jira to sync documents and fix eslint warnings in the file - Add basic tests for jira data connector ### Developer Validations <!-- All of the applicable items should be checked. --> - [x] I ran `yarn lint` from the root of the repo & committed changes - [x] Relevant documentation has been updated - [x] I have tested my code functionality - [x] Docker build succeeds locally --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-22 18:36:14 -05:00
yindo closed this issue 2026-02-22 18:36:14 -05:00
yindo changed title from [PR #4471] feat: add Jira data connector to [PR #4471] [CLOSED] feat: add Jira data connector 2026-06-05 15:19:34 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#4638