-
Notifications
You must be signed in to change notification settings - Fork 3
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
V3 launch #210
Conversation
msub2
commented
May 23, 2024
•
edited
Loading
edited
- Removed beta overrides for all but one of the trial spaces
- Bumped all public package versions to 3.0.0
- Adjust a couple of deprecated WLE calls
- Adjust retry count tracking to account for multiple banners at once properly
- Update tests
Fixed the issue with image tests failing but the navigation one is still timing out. Looking into it |
]; | ||
|
||
const getV3BetaUnitInfo = (adUnitId) => { | ||
return betaUnits.find(unit => unit.id === adUnitId) || {}; | ||
const getOverrideUnitInfo = (adUnitId) => { |
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.
What exactly are we overriding if we're removing the list of beta ad units?
utils/networking.js
Outdated
@@ -62,6 +62,10 @@ const getDefaultBanner = (format, style, shouldOverride, overrideFormat) => { | |||
} | |||
|
|||
const fetchCampaignAd = async (adUnitId, format = 'tall', style = 'standard') => { | |||
if (['tall', 'wide', 'square'].includes(format)) { | |||
console.warn(`The old Zesty banner formats (tall, wide, and square) are being deprecated and will be removed in a future version. Please update to one of the new IAB formats (mobile-phone-interstitial, billboard, and medium-rectangle).`); |
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.
Might be helpful to link them to docs from here?
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.
Ah true, will add that
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.
Looking 🍏
- We still need to keep the size override until that space can update to a newer format. Once they do the override will no longer apply and it can be removed in a subsequent release