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

Release 1.3.0 #580

Merged
merged 23 commits into from
Jan 23, 2024
Merged

Release 1.3.0 #580

merged 23 commits into from
Jan 23, 2024

Commits on Mar 29, 2023

  1. Merge pull request #532 from ucoProject/Release-1.2.0

    Release 1.2.0
    sbarnum authored Mar 29, 2023
    Configuration menu
    Copy the full SHA
    83d46bd View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2023

  1. Declare and warn of observable:File and :URL disjointedness

    A follow-on patch will regenerate Make-managed files.
    
    References:
    * #536
    
    Signed-off-by: Alex Nelson <[email protected]>
    ajnelson-nist committed Jun 29, 2023
    Configuration menu
    Copy the full SHA
    daee9f4 View commit details
    Browse the repository at this point in the history
  2. Regenerate Make-managed files

    References:
    * #536
    
    Signed-off-by: Alex Nelson <[email protected]>
    ajnelson-nist committed Jun 29, 2023
    Configuration menu
    Copy the full SHA
    f4cf43e View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2023

  1. Added classes, properties and shapes for Event

    Added new core:Event class with appropriate SHACL shapes
    Added new core:eventType property
    Added new core:eventContext property
    Added new core:eventAttribute property
    sbarnum authored Jul 19, 2023
    Configuration menu
    Copy the full SHA
    f717616 View commit details
    Browse the repository at this point in the history
  2. Normalize

    ajnelson-nist committed Jul 19, 2023
    1 Configuration menu
    Copy the full SHA
    ba4b771 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2023

  1. Fix datatype constraints

    Signed-off-by: Alex Nelson <[email protected]>
    ajnelson-nist committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    36ee236 View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2023

  1. Merge pull request #538 from ucoProject/Feature-Issue-536

    Issue 536: Declare and warn of observable:File and :URL disjointedness
    plbt5 authored Aug 14, 2023
    Configuration menu
    Copy the full SHA
    361862f View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2023

  1. Add stub reference to types:Dictionary

    References:
    * #541
    
    Signed-off-by: Alex Nelson <[email protected]>
    ajnelson-nist committed Aug 25, 2023
    Configuration menu
    Copy the full SHA
    9cf555a View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2023

  1. Merge pull request #542 from ucoProject/Feature-Issue-541

    Issue 541: Add Event
    ajnelson-nist authored Nov 13, 2023
    Configuration menu
    Copy the full SHA
    9727fe3 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2023

  1. Designate action:Action and core:Event disjoint

    In an OWL-only sense, the ontology portion of this patch could have been
    accomplished by adding one triple to `action:Action`.
    
    For the sake of symmetry and explicitness, `core:Event` also picked up
    the `owl:disjointWith` statement.  To satisfy OWL syntactic
    requirements, a stub reference to `action:Action` is added, as was done
    for `types:Dictionary` for Issue 541 (discussed in PR 542).
    
    To enforce disjointedness with SHACL, a new independent shape is added,
    `action:Action-disjointWith-Event-shape`.
    
    A follow-on patch will regenerate Make-managed files.
    
    EDIT 2023-11-22: An initial version of this patch included an inlined
    anonymous `sh:NodeShape`.  I now believe the scenario that shape
    mitigates (multi-import of a shapes graph leading to SHACL-scoped syntax
    errors) is unlikely, and I also saw that the noted rationale around
    `sh:not` was confused with another predicate (`sh:inversePath`).
    
    References:
    * #563
    * #542
    
    Signed-off-by: Alex Nelson <[email protected]>
    ajnelson-nist committed Nov 22, 2023
    Configuration menu
    Copy the full SHA
    6669aab View commit details
    Browse the repository at this point in the history
  2. Regenerate Make-managed files

    References:
    * #563
    
    Signed-off-by: Alex Nelson <[email protected]>
    ajnelson-nist committed Nov 22, 2023
    Configuration menu
    Copy the full SHA
    f599294 View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2023

  1. Merge pull request #564 from ucoProject/Feature-Issue-563

    Issue 563: Designate action:Action and core:Event disjoint
    plbt5 authored Nov 30, 2023
    Configuration menu
    Copy the full SHA
    429cfa7 View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2023

  1. Reduce UCO OWL RDF List review scope to OWL Sequences

    A follow-on patch will regenerate Make-managed files.
    
    References:
    * #571
    
    Signed-off-by: Alex Nelson <[email protected]>
    ajnelson-nist committed Dec 5, 2023
    Configuration menu
    Copy the full SHA
    3caded3 View commit details
    Browse the repository at this point in the history
  2. Regenerate Make-managed files

    References:
    * #571
    
    Signed-off-by: Alex Nelson <[email protected]>
    ajnelson-nist committed Dec 5, 2023
    Configuration menu
    Copy the full SHA
    ca697db View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a65ebe9 View commit details
    Browse the repository at this point in the history
  4. Note other export shape

    Signed-off-by: Alex Nelson <[email protected]>
    ajnelson-nist committed Dec 5, 2023
    Configuration menu
    Copy the full SHA
    8aa83e6 View commit details
    Browse the repository at this point in the history
  5. Revise sequence-application shapes to target predicates' subjects

    This causes `ValidationResult`s to yield sufficient information to find
    the whole triple that should have used a sequence.  With the prior
    spelling, only the object of the triple would have been directly
    identified; the predicate could be manually deduced from the shape name;
    and the subject was completely absent from the validation result.
    
    The noted comment on PR 572 illustrates the difference in results when
    testing CASE-Corpora.  The issue is replicated as new PASS and XFAIL
    test members.
    
    A follow-on patch will regenerate Make-managed files.
    
    References:
    * #571
    * #572 (comment)
    
    Signed-off-by: Alex Nelson <[email protected]>
    ajnelson-nist committed Dec 5, 2023
    Configuration menu
    Copy the full SHA
    fc27342 View commit details
    Browse the repository at this point in the history
  6. Regenerate Make-managed files

    References:
    * #571
    * #572 (comment)
    
    Signed-off-by: Alex Nelson <[email protected]>
    ajnelson-nist committed Dec 5, 2023
    Configuration menu
    Copy the full SHA
    37d41e2 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2024

  1. Merge pull request #572 from ucoProject/BugFix-Issue-571

    Issue 571: Reduce UCO OWL RDF List review scope to OWL Sequences
    plbt5 authored Jan 19, 2024
    Configuration menu
    Copy the full SHA
    3427df0 View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2024

  1. Update change request template

    Signed-off-by: Alex Nelson <[email protected]>
    ajnelson-nist committed Jan 22, 2024
    Configuration menu
    Copy the full SHA
    2e4b88c View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2024

  1. Merge pull request #579 from ucoProject/update_change_request_template

    Update change request template
    kchason authored Jan 23, 2024
    Configuration menu
    Copy the full SHA
    da8aa53 View commit details
    Browse the repository at this point in the history
  2. Bump version

    A follow-on patch will regenerate Make-managed files.
    
    Signed-off-by: Alex Nelson <[email protected]>
    ajnelson-nist committed Jan 23, 2024
    Configuration menu
    Copy the full SHA
    e316078 View commit details
    Browse the repository at this point in the history
  3. Regenerate Make-managed files

    Signed-off-by: Alex Nelson <[email protected]>
    ajnelson-nist committed Jan 23, 2024
    Configuration menu
    Copy the full SHA
    8043ecd View commit details
    Browse the repository at this point in the history