Skip to content
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

fix(): use console warning for zoid version mismatch #307

Closed
wants to merge 2 commits into from

Conversation

blumk
Copy link

@blumk blumk commented Jun 1, 2020

Fixes #225

For various reasons it's not always possible to deploy the parent / child at the same time.

Currently zoid crashes on a version mismatch even if there are no breaking changes between two versions.

Rationale for using console.warn() instead of new Error():

  • In case of a breaking change the software still crashes with a warning on console
  • non-breaking changes allow independent deployments (think of a security patch)

Ultimately it's the developers responsibility to make sure that the software is working as intended and that there are no console warnings.

@blumk blumk requested a review from a team as a code owner August 11, 2020 03:22
@songz
Copy link

songz commented Oct 9, 2020

@bluepnume any reason why this wasn't merged? Does PayPal want to intentionally throw error on version mismatch?

@bluepnume
Copy link
Collaborator

@songz -- it's a choice between:

a) Fail at this point with a clear error message
b) Fail at some future indeterminate point due to some unforeseen incompatibility between the messaging protocol in two different zoid versions (e.g. some new key expected in payloads, etc.)

We were hitting b) a lot. So a) at least gives a super clear reason.

Typically with zoid, the expectation is you create a CDN script with your component + the zoid library, and make sure you're loading the exact same CDN script in the parent window and in any child frames. That avoids any such compatibility issues, and it also has performance benefits (you usually don't want to force your user to download multiple versions of zoid).

^ We should probably document the above a little better.

@akshay-8d66
Copy link
Contributor

akshay-8d66 commented Sep 14, 2021

Typically with zoid, the expectation is you create a CDN script with your component + the zoid library, and make sure you're loading the exact same CDN script in the parent window and in any child frames.

Could you point out where paypal/paypal-checkout-components does this.

@bluepnume bluepnume force-pushed the master branch 2 times, most recently from 22cbfdf to c890107 Compare September 22, 2021 06:36
@gregjopa
Copy link
Contributor

We updated the logic for version mismatch errors to only throw an error when the major version is different. See this PR: #425.

I'm going to close this out. Please open a new issue if you are still having trouble with the error handling around version mismatches between the parent page and the child iframe.

@gregjopa gregjopa closed this Oct 17, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Suggestion: can you turn off the parent/child version check error?
5 participants