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

Changes on 'minItems' and 'maxItems' not detected #480

Closed
michael-schnell opened this issue Mar 3, 2023 · 2 comments · Fixed by #753
Closed

Changes on 'minItems' and 'maxItems' not detected #480

michael-schnell opened this issue Mar 3, 2023 · 2 comments · Fixed by #753
Assignees
Milestone

Comments

@michael-schnell
Copy link

Currently adding/removing/changing 'minItems' or 'maxItems' is not detected.

V1

schema:
    type: array
    items:
        type: integer

V1 (Added 'maxItems')

schema:
    type: array
    items:
        type: integer
    maxItems: 100

Same applies to 'minItems' or changing/removing the values.

@joschi joschi marked this as a duplicate of #461 Mar 4, 2023
@joschi joschi closed this as completed Mar 4, 2023
@joschi
Copy link
Contributor

joschi commented Mar 4, 2023

Sorry, wrong issue.

@joschi joschi reopened this Mar 4, 2023
@DrSatyr DrSatyr self-assigned this Jan 30, 2025
@DrSatyr DrSatyr added this to the 2.1.0 milestone Jan 30, 2025
@DrSatyr
Copy link
Collaborator

DrSatyr commented Feb 27, 2025

Compatibility requirenments:

maxItems Changes

  1. If both the old and new values of maxItems are null, there are no changes. This means the schema does not impose any maximum item constraint in both versions.
  2. If either the old or new value of maxItems is null, the change is considered compatible. This is because removing or adding a maximum item constraint does not break existing clients.
  3. If the new value of maxItems is less than the old value, the change is considered incompatible. This is because reducing the maximum number of items allowed can break existing clients that rely on the higher limit.
  4. In all other cases, the change is considered compatible. This includes scenarios where the new value is greater than or equal to the old value, as it does not restrict existing clients further.

minItems Changes

  1. If both the old and new values of minItems are null, there are no changes. This means the schema does not impose any minimum item constraint in both versions.
  2. If either the old or new value of minItems is null, the change is considered compatible. This is because removing or adding a minimum item constraint does not break existing clients.
  3. If the new value of minItems is greater than the old value, the change is considered incompatible. This is because increasing the minimum number of items required can break existing clients that provide fewer items.
  4. In all other cases, the change is considered compatible. This includes scenarios where the new value is less than or equal to the old value, as it does not impose additional requirements on existing clients.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants