Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
3bccafe
feat: Create parent aggregator POM for API/SDK separation
aepfli Aug 26, 2025
eeb8426
feat: Create OpenFeature API module with ServiceLoader pattern
aepfli Aug 26, 2025
229479b
feat: Create OpenFeature SDK module with ServiceLoader provider
aepfli Aug 26, 2025
e890a19
feat: Complete OpenFeature API module with interface segregation and โ€ฆ
aepfli Aug 26, 2025
eb33bb6
feat: Complete OpenFeature SDK module with full implementation
aepfli Aug 26, 2025
74a2b1e
refactor: Move internal utilities from API to SDK module
aepfli Aug 26, 2025
c6a039b
fix: Resolve critical Javadoc generation errors and build configuration
aepfli Aug 26, 2025
1231328
Refactor OpenFeature Java SDK to separate API from implementation
aepfli Aug 26, 2025
d90768e
feat: Remove Lombok dependency from API module
aepfli Aug 27, 2025
f7a0e08
feat: Remove Lombok dependency from SDK module
aepfli Aug 27, 2025
624c4de
feat: Complete cleanup of legacy files and remove Lombok from SDK tests
aepfli Aug 27, 2025
5d473d0
feat: Update documentation for multi-module architecture and improve โ€ฆ
aepfli Aug 27, 2025
005e23d
feat: Refactor event details to use composition and comply with OpenFโ€ฆ
aepfli Aug 27, 2025
11ee8a1
feat: Clean up builder patterns and remove unnecessary convenience meโ€ฆ
aepfli Aug 27, 2025
1329c42
refactor: Standardize builders and make POJOs immutable
aepfli Aug 27, 2025
9ecc52c
fix: Update API tests to use builder pattern instead of private constโ€ฆ
aepfli Aug 27, 2025
1cc3bd4
fix: Correct error handling in hook evaluation and update artifact IDs
aepfli Aug 28, 2025
5ce7a6d
refactor: Remove Mockito dependencies from TelemetryTest
aepfli Aug 28, 2025
a474771
refactor: Complete POJO immutability cleanup and remove unnecessary eโ€ฆ
aepfli Aug 28, 2025
7eb6dcc
refactor: Improve Value.objectToValue() consistency and remove unneceโ€ฆ
aepfli Aug 28, 2025
af20c70
feat: Add builder patterns to ImmutableContext and ImmutableStructureโ€ฆ
aepfli Aug 29, 2025
9d9779f
feat: Add comprehensive test suites for API module classes
aepfli Aug 29, 2025
b19026f
fix: Improve test coverage, defensive copying, and code quality
aepfli Aug 29, 2025
8b1d96c
fix: Add cucumber-picocontainer dependency for e2e tests
aepfli Aug 29, 2025
ebbfbd7
fix: Add module opens for e2e tests to enable Cucumber step definitions
aepfli Aug 29, 2025
a96ba38
fixup: further improve immutability and add release please
aepfli Sep 17, 2025
d29c42d
fixup: slowly migrating to a good state
aepfli Sep 18, 2025
898c4a7
fixup: split into packages
aepfli Sep 19, 2025
2410dc9
fixup: some sonar issues
aepfli Sep 19, 2025
307649a
fixup: more tests for safety with claude.ai
aepfli Sep 21, 2025
3591968
fixup: fix release-please-config
aepfli Sep 21, 2025
d3b6f2e
feat: finalize API/SDK split with comprehensive documentation
aepfli Sep 21, 2025
570c8dd
fixup: cleanup
aepfli Sep 22, 2025
a9158ad
fixup: releasing
aepfli Sep 22, 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
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
id: release
with:
token: ${{secrets.RELEASE_PLEASE_ACTION_TOKEN}}
prerelease: ${{ github.ref == 'refs/heads/beta' }}
prerelease-type: "beta"
outputs:
release_created: ${{ fromJSON(steps.release.outputs.paths_released)[0] != null }} # if we have a single release path, do the release

Expand Down
5 changes: 4 additions & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
{".":"1.18.0"}
{
"./openfeature-api": "0.0.0-beta",
"./openfeature-sdk": "2.0.0-beta"
}
Loading