-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: update v2 of experimentation engine #595
Draft
FentPams
wants to merge
12
commits into
main
Choose a base branch
from
v2-integration
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 1 commit
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
a75a73d
remove old experimentation engine before adding v2
FentPams 48ebaba
Merge commit 'cd1801975824a72f71f2425259d35d0617a050c1' as 'plugins/e…
FentPams cd18019
Squashed 'plugins/experimentation/' content from commit 638e0db
FentPams d573b87
Revert package.json and package-lock.json to match main branch
FentPams 23b2747
update condition on adding experimentation plugin
FentPams 62c766c
add document eventlistner for properly decorate fragments
FentPams 3257e04
update createAudience
FentPams cd65939
support flexible parsing
FentPams 2b9ad86
Squashed 'plugins/experimentation/' changes from 638e0db..f7c45aa
FentPams 81d2ac5
update plugin add condition
FentPams 155082e
Squashed 'plugins/experimentation/' changes from f7c45aa..942948d
FentPams d4c28c1
update to the latest v2
FentPams File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Usually, it's
<meta property="campaign:-…">
or<meta name="campaign-…">
, property without:
is something I haven't encountered yet.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, you are right. I added that because I was thinking the user could omit the
:
, and declare asAudience Desktop
. Then I realized it is better to have the norm that:
should be required. I will revert this.For
<meta property="campaign:-..>
, I am going to remove the hyphen here too, and only keep[property^="campaign:"],[property^="audience:"]
. As the hyphen comes from the space, and should not considered as the condition.