Error after update

Error after update to version 4.9.1-1 :

1)No load “moment” calendar

2)Error in javascript is :

I think the main reason is that jQuery is not loaded, it was being blocked because the integrity check failed. You can try removing and re-adding jQuery. When you added or updated the link yourself make sure that you update the whole tag and not only the url. All releases and cdn links can be found at jQuery CDN.

<script
  src="https://code.jquery.com/jquery-3.6.0.min.js"
  integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
  crossorigin="anonymous"></script>

The integrity and crossorigin attributes are used for Subresource Integrity (SRI) checking. This allows browsers to ensure that resources hosted on third-party servers have not been tampered with. Use of SRI is recommended as a best-practice, whenever libraries are loaded from a third-party source. Read more at srihash.org