Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
ccaad89
feat(ffe): Add Feature Flagging and Experimentation support
leoromanovsky Feb 12, 2026
310c757
fix(ffe): Address code review findings across FFI, PHP provider, and …
leoromanovsky Feb 12, 2026
dea34a4
feat(ffe): Implement FlagEvalMetrics OTel hook
leoromanovsky Mar 11, 2026
6b83643
fix(ffe): Correct error code mapping and enforce ERROR reason for non…
leoromanovsky Mar 11, 2026
3c1ab2f
fix(ffe): PHP 7.0 compat + regenerate supported-configurations.json
leoromanovsky Mar 11, 2026
0fcef1e
fix(ffe): C89/MSVC compliance — move variable declarations before sta…
leoromanovsky Mar 11, 2026
1098067
fix(ffe): address code review findings
leoromanovsky Mar 11, 2026
e05636f
chore: add FFE SDK team as codeowners for FeatureFlags and OpenFeatur…
leoromanovsky Mar 12, 2026
de33150
test(ffe): add UFC evaluation test harness with fixture-driven cases
leoromanovsky Mar 12, 2026
c77115f
Merge branch 'master' into feature/ffe-feature-flagging
leoromanovsky Mar 12, 2026
f117f00
Merge remote-tracking branch 'origin/master' into feature/ffe-feature…
leoromanovsky Apr 21, 2026
6edadc7
feat(ffe): sync sidecar exposure pipeline and proper stub functions p…
leoromanovsky Apr 21, 2026
564c881
fix(ffe): wrap unsafe CharSlice::from_raw_parts and import AsBytes trait
leoromanovsky Apr 22, 2026
9ce5444
fix(composer): map DDTrace\\OpenFeature\\ namespace to src/DDTrace/Op…
leoromanovsky Apr 22, 2026
2216fad
revert(composer): drop DDTrace\\OpenFeature\\ psr-4 mapping
leoromanovsky Apr 22, 2026
ee8fe52
fix(composer): move open-feature/sdk from require-dev to openfeature …
leoromanovsky Apr 22, 2026
611f0db
fix(test): point featureflags phpunit suite at tests/OpenFeature/
leoromanovsky Apr 22, 2026
8ecafb4
fix(openfeature): drop readonly keyword from ExposureContext (PHP 8.0…
leoromanovsky Apr 22, 2026
bf5d4d2
ci(featureflags): add Feature flags test job and make target
leoromanovsky Apr 22, 2026
0111335
test(stress): skip ffe_send_exposure on PHP < 8.1
leoromanovsky Apr 22, 2026
b9c5db0
chore(cargo): sync Cargo.lock with datadog-ffe and lru deps
leoromanovsky Apr 22, 2026
58ed65d
fix(openfeature): lazy-load adapter via separate bridge file (PHP 8.0…
leoromanovsky Apr 22, 2026
ae5e4d4
fix(ci): pull bridge artifacts into Feature flags tests job
leoromanovsky Apr 22, 2026
4523eb2
fix(ci): install open-feature/sdk for Feature flags tests job
leoromanovsky Apr 22, 2026
5f25a7a
refactor(ffe): replace changed-flag with monotonic version counter + …
leoromanovsky Apr 22, 2026
11de6c2
test(ffe): add cross-tracer fixture-driven eval parity tests
leoromanovsky Apr 23, 2026
3cc1b48
feat(ffe): wire exposure flush from PHP RSHUTDOWN through sidecar to …
leoromanovsky Apr 23, 2026
26756aa
Merge remote-tracking branch 'origin/master' into feature/ffe-feature…
leoromanovsky May 4, 2026
03e88ee
fix: remove trailing whitespace after master merge
leoromanovsky May 4, 2026
3b08f04
test: make FFE fork reset test explicit
leoromanovsky May 4, 2026
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
5 changes: 5 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ compile_rust.sh @Datadog/libdatadog-apm
# APM IDM Team
/src/ @DataDog/apm-idm-php

# FFE (Feature Flagging & Experimentation) SDK Team
/src/DDTrace/FeatureFlags/ @DataDog/feature-flagging-and-experimentation-sdk
/src/DDTrace/OpenFeature/ @DataDog/feature-flagging-and-experimentation-sdk
/tests/FeatureFlags/ @DataDog/feature-flagging-and-experimentation-sdk

# Release files
Cargo.lock @DataDog/apm-php @DataDog/profiling-php @Datadog/libdatadog-apm
package.xml @DataDog/apm-php @DataDog/profiling-php @Datadog/asm-php
Expand Down
20 changes: 20 additions & 0 deletions .gitlab/generate-tracer.php
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,26 @@ function before_script_steps($with_docker_auth = false) {
- make test_unit PHPUNIT_JUNIT="artifacts/tests/php-tests.xml" <?= ASSERT_NO_MEMLEAKS ?>
<?php after_script(); ?>

<?php if (version_compare($major_minor, "8.0", ">=")): ?>
"Feature flags tests: [<?= $major_minor ?>]":
extends: .debug_test
needs:
- job: "compile extension: debug"
parallel:
matrix:
- PHP_MAJOR_MINOR: "<?= $major_minor ?>"
ARCH: "amd64"
artifacts: true
- job: "Prepare code"
artifacts: true
variables:
PHP_MAJOR_MINOR: "<?= $major_minor ?>"
ARCH: "amd64"
script:
- make test_featureflags PHPUNIT_JUNIT="artifacts/tests/php-tests.xml" <?= ASSERT_NO_MEMLEAKS ?>
<?php after_script(); ?>
<?php endif; ?>

"API unit tests: [<?= $major_minor ?>]":
extends: .debug_test
needs:
Expand Down
11 changes: 11 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading