We updated our tunnel infrastructure to use a new domain for tunnels, so your tunnel URLs will change!
The new URLs will be in the following format: https://abcd12345.apps-tunnel.monday.app
We updated our tunnel infrastructure to use a new domain for tunnels, so your tunnel URLs will change!
The new URLs will be in the following format: https://abcd12345.apps-tunnel.monday.app
To increase app security, we will remove the allow-top-navigation
and allow-top-navigation-by-user-activation
directives from iframes on June 1st, 2024.
These directives enable apps to redirect customers from their monday account to another website, which poses a security risk for many customers.
Here are good and bad examples of what’s currently allowed:
// Open link in a new tab - GOOD
window.open("<https://www.mozilla.org/">, "mozillaTab");
// Open link in a new window - GOOD
window.open("<https://www.mozilla.org/",'name','height=300,width=650,screenX=400,screenY=350'>)
// Redirect the user outside of monday - BAD
window.top.location.href = "<https://www.mozilla.org/">;
After deprecating these directives, any links utilizing this functionality won’t work but won’t impact app functionality. This update will only disablewindow.top.location.href
(see example below):
window.top.location.href = "<https://www.mozilla.org/">;
If you need to direct customers to an external link from the app, you can still do so by opening it in a new tab using the SDK or the window.open
method.
window.open("<https://www.mozilla.org/">, "mozillaTab");
You can now reorder integration recipes!!! Just open your integration recipes, hit "Reorder" and drag and drop :)
Use this to improve your new users' experience – put your app's most popular or easy to use recipes first, and communicate your app's main value fast.
We just released the ability to create new app secrets through the UI for monday code.
You can do so through the General monday code tab in the Developer Center. It's important to note that your secrets can't be retrieved after creation.
Read more about managing your app through the UI here!
We recently added the openCreateItemDialog
SDK method that opens a modal from which you can create a new item. It accepts both the optional boardId
and boardIds
parameters to specify where to create the item. If omitted, the item will be created on the current board (using the context). You can read more about this method here!
monday.execute("openCreateItemDialog", {boardId:1234567890});
To increase app security, we will remove the allow-top-navigation
and allow-top-navigation-by-user-activation
directives from iframes on June 1st, 2024.
These directives enable apps to redirect customers from their monday account to another website, which poses a security risk for many customers.
Here are good and bad examples of what’s currently allowed:
// Open link in a new tab - GOOD
window.open("<https://www.mozilla.org/">, "mozillaTab");
// Open link in a new window - GOOD
window.open("<https://www.mozilla.org/",'name','height=300,width=650,screenX=400,screenY=350'>)
// Redirect the user outside of monday - BAD
window.top.location.href = "<https://www.mozilla.org/">;
After deprecating these directives, any links utilizing this functionality won’t work but won’t impact app functionality. This update will only disablewindow.top.location.href
(see example below):
window.top.location.href = "<https://www.mozilla.org/">;
If you need to direct customers to an external link from the app, you can still do so by opening it in a new tab using the SDK or the window.open
method.
window.open("<https://www.mozilla.org/">, "mozillaTab");
To increase app security, we will remove the allow-top-navigation
and allow-top-navigation-by-user-activation
directives from iframes on June 1st, 2024.
These directives enable apps to redirect customers from their monday account to another website, which poses a security risk for many customers.
Here are good and bad examples of what’s currently allowed:
// Open link in a new tab - GOOD
window.open("<https://www.mozilla.org/">, "mozillaTab");
// Open link in a new window - GOOD
window.open("<https://www.mozilla.org/",'name','height=300,width=650,screenX=400,screenY=350'>)
// Redirect the user outside of monday - BAD
window.top.location.href = "<https://www.mozilla.org/">;
After deprecating these directives, any links utilizing this functionality won’t work but won’t impact app functionality. This update will only disablewindow.top.location.href
(see example below):
window.top.location.href = "<https://www.mozilla.org/">;
If you need to direct customers to an external link from the app, you can still do so by opening it in a new tab using the SDK or the window.open
method.
window.open("<https://www.mozilla.org/">, "mozillaTab");
Calling all monday code users - we have an exciting update for you!
We recently added the ability to create new HTTP error rate and latency response alerts, so you'll be notified when the specified thresholds are exceeded. When this occurs, an item will be made on the designated alert board. You can then integrate your alert board with external tools to receive notifications where you want!
You can create and manage these alerts through the Developer Center using the monday code General tab. Check out more info here!
Marketplace apps - this one is for you!
We just released a self-service process to update your app's listing page in the brand-new Listing tab. There, you can manage and submit requests to update the content of the marketplace listing page.
You can easily track the status of each request, preview the changes, and version your requests all through the UI. With this new process, you can expect faster reviews from our team, more transparency, and the control to make updates as you wish.