if it is on a licnesed node, check the default branch line that is configured for the environment you are trying.
there are cases you might be committing to one branch, where as your environment might be picking from a different branch.
And also from environment console check the package name that is being deployed and compare the revision number with your GIT commit revision number.
Hi,
Check in Mendix Portal > Deployment Packages whether your new package is marked as "Deployed".
Keep in mind that "Deployed" only means the package has been deployed to some environment - not necessarily the one you are currently testing.
You can also open Details > Deployment Package Details and verify the Name and Version, then compare it with what you expect.
If your latest package is not marked as "Deployed", it means it was created but never actually deployed.
Hi,
This usually means the new deployment package is not actually being picked up by the running environment, even though it was created successfully.
Things to check:
1. Verify the correct environment
Make sure you are deploying to the same environment you are accessing in the browser (Dev/Test/Prod). This is a common cause.
2. Confirm package version
In the Mendix Portal:
3. Restart the environment
Even after deployment, the runtime may still serve the old version.
4. Check for CDN/browser caching
Even after clearing cache, sometimes:
Ctrl + Shift + R)If using custom domain/CDN, ensure cache is invalidated.
5. Clean deployment (local → cloud)
If deploying from Studio Pro:
6. Check logs
Look for:
7. Multiple instances / load balancer
In some setups, one instance may still serve old version:
This is typically caused by the environment still running an older package or serving cached content. Verifying the deployed version and doing a full restart of the environment resolves it in most cases.