Skip to content
Open
Changes from 1 commit
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
33b7d66
Add Confluence API v2 implementation checklist
batzel-upenn Apr 1, 2025
14077d3
Implement Phase 1: Core Structure for Confluence API v2 support
batzel-upenn Apr 1, 2025
a97ab3f
Implement Phase 2: Core Methods for Confluence API v2 support
batzel-upenn Apr 1, 2025
d0f44f4
Implement comment methods for Confluence V2 API
batzel-upenn Apr 1, 2025
bcda06d
Implement whiteboard and custom content methods for Confluence V2 API
batzel-upenn Apr 1, 2025
3ad75e4
Implement Confluence V2 API compatibility layer and migration guide
batzel-upenn Apr 1, 2025
bfdb287
Complete Phase 4: Testing for Confluence v2 API implementation
batzel-upenn Apr 1, 2025
9bdb469
Add remaining Confluence v2 implementation files for Phases 1-4
batzel-upenn Apr 1, 2025
8e3fd9b
Complete Phase 5: Documentation for Confluence v2 API implementation
batzel-upenn Apr 1, 2025
1635b0c
Improve security by removing hardcoded credentials and implement envi…
batzel-upenn Apr 1, 2025
423208f
Update README.rst to add contributor credits for Confluence v2 API im…
batzel Apr 1, 2025
2c1bc60
refactor: reorganize Confluence module into proper directory structure
batzel Apr 2, 2025
9f89053
security: improve URL validation in Confluence base class
batzel Apr 2, 2025
350c32c
fix: update imports and test structure for new Confluence module orga…
batzel Apr 2, 2025
04863f8
Fix hanging Confluence tests and improve test reliability
batzel Apr 2, 2025
c53ff64
Fix URL handling to prevent /wiki/wiki duplication in Confluence client
batzel Apr 2, 2025
484510b
Add space-related methods from master to refactored Confluence structure
batzel Apr 2, 2025
6edd103
Complete refactoring of Confluence Cloud module with V2 API support
batzel Apr 2, 2025
48c4f6c
Fix Codacy critical issues in examples - Fixed parameter names for AP…
batzel Apr 2, 2025
949b05d
Fix string statement and unused variable in examples/confluence_v2_co…
batzel Apr 2, 2025
32f93ec
Fix unused variables and cleanup example files
batzel Apr 2, 2025
36133c0
Fix Codacy Critical issue - remove return statement outside function
batzel Apr 2, 2025
ab02155
Fix Codacy code style issues - remove unused imports, fix parameter n…
batzel Apr 2, 2025
783ae04
Apply Black formatting to improve code style
batzel Apr 2, 2025
de92224
Apply isort to fix import order issues
batzel Apr 2, 2025
7cbc897
Add custom content label and property methods, fix compatibility laye…
batzel Apr 2, 2025
eca9f45
This project is to upgrade the jira portion of atlassian-python-api t…
batzel Apr 2, 2025
060f89a
Implement Phase 1 and core methods of Phase 2 for Jira v3 API
batzel Apr 2, 2025
46566d7
Add missing adapter methods for legacy compatibility
batzel Apr 2, 2025
4ec70d2
Add get_current_user method to CloudJira class
batzel Apr 2, 2025
65f9050
Complete Phase 1: Add error handling, validation and debugging
batzel Apr 2, 2025
43b2b2c
Update checklist: Phase 1 now 100% complete
batzel Apr 2, 2025
e0e4ba5
Complete Phase 2: Implement remaining core methods
batzel Apr 2, 2025
11df010
Implement Phase 3 features: Jira Software API and Permissions API
batzel Apr 2, 2025
d29e06f
Add examples for Jira Software and Permissions API usage
batzel Apr 2, 2025
5bd0128
Add example script for Jira User and Group Management API
batzel Apr 2, 2025
52af69f
Add Rich Text support with Atlassian Document Format (ADF)
batzel Apr 2, 2025
aaac219
Add Issue Types and Field Configurations support
batzel Apr 2, 2025
3ad1e19
Add enhanced project configuration support
batzel Apr 2, 2025
e1fab31
Add advanced search capabilities
batzel Apr 2, 2025
6965fc6
Complete Phase 3 implementation with user management and search capab…
batzel Apr 2, 2025
affc619
Implement Phase 4 - Testing for Jira V3 API
batzel Apr 2, 2025
87c90d8
Add integration test script and documentation
batzel Apr 2, 2025
6f043eb
Enhanced error handling and fixed Jira issue creation in v3 API
batzel Apr 3, 2025
999ffa7
Complete Phase 4 testing for Jira V3 API implementation. Add server-s…
batzel Apr 3, 2025
05e589b
Implement Jira V3 API with server integration and cloud support - Bas…
batzel Apr 3, 2025
7227dd8
Fix import path in Jira V3 mock tests
batzel Apr 3, 2025
60cd9e0
Fix Jira V3 integration tests to handle offline mode correctly
batzel Apr 3, 2025
c936e49
Fix Jira V3 integration tests and code style issues
batzel Apr 3, 2025
2a8a2a9
Remove automatic /wiki URL handling in Confluence client
batzel Apr 3, 2025
7bedaaf
Update README and integration tests for Confluence URL handling, add …
batzel Apr 3, 2025
93f2e8e
Jira V3 API implementation updates
batzel Apr 3, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update checklist: Phase 1 now 100% complete
  • Loading branch information
batzel committed Apr 3, 2025
commit 43b2b2c27132b9e19fa5e5e3911fbc6dbd276b51
6 changes: 3 additions & 3 deletions jira_v3_implementation_checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
- Document all new methods and provide migration guidance

## Implementation Progress Tracking
- **Phase 1: Core Structure**: 60% complete
- **Phase 1: Core Structure**: 100% complete
- **Phase 2: Core Methods**: 10% complete
- **Phase 3: New V3 Features**: 0% complete
- **Phase 4: Testing**: 0% complete
Expand All @@ -33,8 +33,8 @@
- [x] Create adapter for backward compatibility with previous Jira API
- [x] Implement factory method for creating the appropriate Jira client instance
- [x] Add comprehensive endpoint mappings for both v2 and v3 APIs
- [ ] Create proper error handling and validation layer
- [ ] Add user-agent and debug-level request/response logging
- [x] Create proper error handling and validation layer
- [x] Add user-agent and debug-level request/response logging

## Phase 2: Core Methods
- [x] Issue retrieval and operations
Expand Down