You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. Update version to 1.1 other edits in pyproject.toml, manifest.in, setup.py
2. Added changes for 1.1 to main changelog.md, removed changlog_v1_1_0.md
Copy file name to clipboardExpand all lines: CHANGELOG.md
+78-35Lines changed: 78 additions & 35 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,43 +5,53 @@ All notable changes to python-alfresco-api will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
-
## [1.0.0] - 2025-01-25
8
+
## [Unreleased]
9
+
10
+
## [1.1.0] - 2025-07-18
9
11
10
12
### Added
11
-
- Initial stable release of python-alfresco-api
12
-
- Complete Alfresco REST API client library with comprehensive coverage
13
-
-**Event Gateway and Event Support**: Full integration with Alfresco Event Gateway for real-time event processing
14
-
- Modern Pydantic v2 models for all API endpoints with full type safety
15
-
- Configuration system with development-friendly defaults (localhost:8080, admin/admin)
16
-
- Standardized URL architecture eliminating confusion between server URLs and API endpoints
17
-
- Async support across all API clients with proper error handling
18
-
- Comprehensive examples and documentation for all major use cases
19
-
- Support for both Community Edition (ActiveMQ) and Enterprise Edition (Event Gateway) events
20
-
- LLM integration patterns and Model Context Protocol (MCP) server examples
13
+
- Implemented hierarchical client architecture with three-tier organization and lazy loading (3 tiers doesn't count optional master). This is generated from raw clients (previously had 7 files one per client).
14
+
- Pydantic models are in the hierarchy (more Pydantic models to come in 1.2)
-**Switched to openapi-python-client for better Python code generation**: Improved from previous generators for more reliable, maintainable client code
model arch and conversion, event system, testing, project structure, requirements, ref to package developer guide, ref to related projects
46
+
- Added sample-dot-env.txt example for.env file
47
+
48
+
#### Changed
49
+
- In pyproject.toml minimum now Python 3.10, added Python 3.13.
50
+
- .gitignore ignores Cursor files
51
+
- run_tests.py updated for tests available in v1.1
52
+
53
+
43
54
44
-
## [Unreleased]
45
55
46
56
### Added
47
57
-**OAuth2 Authentication Support**: Enterprise-ready OAuth2 authentication for cloud and SSO environments
@@ -67,12 +77,45 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
67
77
-`verify_ssl="/path/to/cert.pem"` - Custom certificate bundle path support (new)
68
78
- Environment variable support for all modes: `ALFRESCO_VERIFY_SSL=/etc/ssl/certs/custom-ca.pem`
69
79
- Full compatibility with underlying `AuthenticatedClient` SSL options
70
-
-**Clean Architecture Implementation**: Centralized authentication and configuration management
71
80
-**Shared AuthUtil**: Single authentication session across all API clients for better performance and consistency
72
81
-**Centralized Environment Loading**: Only in ClientFactory, eliminating scattered .env handling
73
-
-**Factory Pattern Encouraged**: README simplified to promote factory usage over direct client instantiation
74
-
-**Enterprise Benefits**: Improved authentication flow, ticket management, and separation of concerns
75
82
-**Simplified Client Authentication**: Clients now accept username/password directly, eliminating need for auth_util parameters
76
-
- ClientFactory constructor parameters are now optional with automatic environment loading
77
-
- Updated README with environment configuration examples
83
+
- ClientFactory constructor parameters are now optional with automatic environment loading
84
+
- Updated README with environment configuration examples
85
+
86
+
## [1.0.0] - 2025-06-25
87
+
88
+
### Added
89
+
- Initial stable release of python-alfresco-api
90
+
- Complete Alfresco REST API client library with comprehensive coverage
91
+
-**Event Gateway and Event Support**: Full integration with Alfresco Event Gateway for real-time event processing
92
+
- Modern Pydantic v2 models for all API endpoints with full type safety
93
+
- Configuration system with development-friendly defaults (localhost:8080, admin/admin)
94
+
- Standardized URL architecture eliminating confusion between server URLs and API endpoints
95
+
- Async support across all API clients with proper error handling
96
+
- Comprehensive examples and documentation for all major use cases
97
+
- Support for both Community Edition (ActiveMQ) and Enterprise Edition (Event Gateway) events
98
+
- LLM integration patterns and Model Context Protocol (MCP) server examples
99
+
100
+
### Changed
101
+
-**Switched to openapi-python-client for better Python code generation**: Improved from previous generators for more reliable, maintainable client code
0 commit comments