-
-
Notifications
You must be signed in to change notification settings - Fork 307
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
Backward compatibility #1242
Comments
I think we should get consensus on taking this approach before putting too much effort into this. |
The first step of this issue is gathering feedback, and to do it away from ietf-wg-httpapi/mediatypes#43 because, as you noted, it was getting a bit off topic. Specifically, the first thing is to list backwards-compatibility-related issues that impact implementations. Once we're satisfied we have a comprehensive list, then we can examine how to solve them. I don't mean to imply a specific solution yet. I know you're busy, we can take our time on this. |
I object to the premise of requiring implementations to simultaneously support the behavior of multiple existing drafts, even which such a thing is possible (e.g. handling We have been publishing drafts. I know some folks like to say that we aren't really publishing drafts because JSON Schema has such broad production use, but publishing IETF I-Ds means something, and we have chosen to continue doing so even as recently as a couple of months ago. I don't know about the rest of you, but I have been writing specification text and considering changes with this meaning in mind. Once we decide to publish something that is not officially designated as a draft, then I am in favor of determining a compatibility strategy from that point forward. Implementations now support multiple drafts, and switch among them based on internal ( Recommending such a thing would be a hugely burdensome requirement for implementations, and a source of massive confusion for schema authors, encouraging chimeric schemas that would be difficult to read. Preserving the behavior of even all of 2020-12 would require preserving some deeply problematic behaviors ( We should not do this. We need to investigate the behaviors that we have, remove the problematic ones in our next publication, and establish a new compatibility strategy from that point. For what we have today, the JSON Schema community has settled on an approach which has worked just fine for many years. @Relequestual I would like to see an actual decision on this documented in an ADR as soon as possible, because this idea has complicated multiple related discussions and is making it hard to move forward. Again, I do not object to talking about this sort of approach for the future, but I strongly object to it for the present and the past. |
Agreed entirely, not a problem that should be addressed for current or past drafts, and not in the future until the spec has found solid stability. Behavior that has become undefined should stay undefined - |
There is some stuff where we tried to discourage people from re-defining keywords that we removed or renamed entirely, as is being discussed in #1265. But we did not make a vocabulary of those keywords so we were not trying to get people to keep supporting them, just trying to make sure people didn't immediately produce contradictory definitions. Which is very different from supporting old behaviors of keywords that are still present with revised or reduced functionality, as is being proposed here. |
I agree and I propose we make that decision at the next OCWM. I think there are actually three issues so I want to be clear what we are deciding on.
I think (1) is what the ADR should cover. Although there is one dissenting opinion, there's pretty strong agreement that the answer to this should be "no". I think we're pretty close to rejecting (2) as well, but I think that can be a separate ADR when we get there. I think there's pretty strong support for (3), but we can address that when we have a clear plan on how to make that happen. I'd be willing to write the ADR. |
@jdesrosiers Sounds good to me. I'd offer one bit of nuance on the "no" on (1): Implementations are free to implement compatibility vocabularies, which can be enabled with But you can't have mixed support on by default, or on when it is not specifically requested via the (hopefully someone can make that all more concise) There's probably language needed to avoid problems with non-vocabulary extension keywords so that we don't have a repeat of json-schema-org/JSON-Schema-Test-Suite#574, although we should do that more generally so I'll file a separate issue or discussion on it soon. |
@handrews I agree with all of that. I was trying to keep the description to a bullet point so not all of the nuance is there. |
Everyone, I'm just looking for a list of backwards-compatibility-related issues. I understand there's many ways we could accommodate backwards compatibility, or bad ways, or reasons not to at all. But to even begin talking about that, we have to make a list of things so we can have some sort of rubric to judge proposals by. |
@awwright it's hard to contemplate proposals when we don't agree on what the problem is, or even if there is a problem. To me, there is no problem with any lack of compatibility between existing drafts, or how most implementations handle it (some combination of needing to be told the draft and/or reading |
Since my repeated requests for concrete, real-world concerns around this topic have not yielded any such examples, I went out and found one. Webpack uses a schema that does not list Notably, So, can we think about what Webpack needs here, and how we would want that to work? Some useful questions might be:
Note that there are options beyond "always use |
I looked into this a bit. These schemas (even third-party plugins) are only used internally and validated using a single known implementation. That implementation uses AJV, which defaults to draft-07. They haven't configured anything otherwise, so they are getting draft-07 validation. Because the validator implementation is constant and known, there is no JSON Schema version ambiguity. In this set of circumstances, they can leave out the Therefore, this isn't a case of someone leaving out |
Closing this. We've settled on a notion of backward compatability for the SDLC. |
At ietf-wg-httpapi/mediatypes#43, the JSON Schema section currently specifies that the specification document may change based on certain factors. This is done for reverse compatibility, however this is in contrast to the behavior used by JSON Schema implementations (where old drafts have been obsoleted), and Internet media types in general (where a single specification must specify all of the essential behavior).
Historically, backwards compatibility has been the responsibility of each implementation. (Since a schema often is only processed by a single validator, that validator has the best idea on how to do this.) Newer publications replace older ones in their entirety; and deprecated behavior was simply removed, leaving it up to individual implementations to choose what would work best, since the behavior is now undefined.
This is not workable when backwards-compatibility is expected cross-platform, as in an Internet media type. And implementing every publication of JSON Schema is not sustainable, and was never intentional (a meta-schema is not a strong version identifier, and we offer no guidance as to which versions you would have to implement, or how to handle unknown future versions).
Some older behavior that has been removed, we can re-define in a new "deprecated functionality" section. Behavior has been removed for a variety of reasons, sometimes implementations disagreed on what the behavior would be and removing it was easiest, so this section cannot guarantee compatibility with all older schemas. However, text-compatibility with older publications should be possible.
A list of things to support
Let's make a list of cases where standardization of some behavior was dropped ("deprecated" or "un-defined"), and where it was changed ("broken"). Let's make sure this behavior is written into the spec, and with the goal of eliminating any need to reference to older versions of JSON Schema Core.
Deprecated core behavior
Behavior that has no reason to change based on $schema:
$id: "#foo"
as an alias for$anchor: "foo"
"id"
as an alias for"$id"
Deprecated validation keyword behavior
Behavior that could hypothetically change based on the value of $schema:
Breakage:
Behavior where the same schema would be required to produce a different result depending on the release of JSON Schema being read:
1.0
being an integer:type: "integer"
would previously validate false, now true (I'm unaware of any problems caused by this change in the wild: only a minority of implementations ever followed the older behavior, and of those, they rarely encoded1.0
where the datatype wasn't specifically known to be a floating point)The text was updated successfully, but these errors were encountered: