Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cedar-policy/cedar-go
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.3.1
Choose a base ref
...
head repository: cedar-policy/cedar-go
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.3.2
Choose a head ref
  • 5 commits
  • 23 files changed
  • 1 contributor

Commits on Sep 18, 2024

  1. This commit adds an extension type, datetime, to Cedar Go.

    This PR does not add the duration type, nor the methods `toTime()`,
    `offset()`, or `durationSince()` that would require it.
    
    This PR adds operator overloading, by introducing a set of "Virtual"
    comparison Evaler. Types that can overload operators must implement
    the `Lesser` interface. Long and Datetime are implemented in this
    PR. (Note: It is expected that there will be a Decimal operator
    overload RFC at some later date, but that is not hooked into this)
    
    The now obsolete Evalers for Long comparisons have not been
    removed. A possible improvement to this PR would be to utilize
    them when it is known that Longs are on the right and left side.
    
    The datetime itself is backed by an int64, and can be lifted from
    a Go `time.Time`, integer or float "unsafely."
    
    Signed-off-by: Andrew Gwozdziewycz <andrew.gwozdziewycz@strongdm.com>
    apg committed Sep 18, 2024
    Copy the full SHA
    537c4d8 View commit details
  2. Add a duration type, as per RFC 80.

    This builds on the Datetime PR.
    
    It adds the duration type, and all of the associated methods that
    require durations:
    
    - datetime.toTime
    - datetime.offset
    - datetime.durationSince
    - duration.toMilliseconds
    - duration.toSeconds
    - duration.toMinutes
    - duration.toHours
    - duration.toDays
    
    Signed-off-by: Andrew Gwozdziewycz <andrew.gwozdziewycz@strongdm.com>
    apg committed Sep 18, 2024
    Copy the full SHA
    e8728bb View commit details
  3. Address PR Feedback

    - Lesser becomes ComparableValue
    - Move ComparableValue to evalers only
    - Move all magic values to constants
    - TypeError when incompatible comparable types
    - Support more deserialization for duration/datetime
    - Make the datetime parser easier to follow
    - Drop UnsafeDatetime in favor of FromStdTime(time.UnixMilli(..))
    - Document methods
    - Test Coverage to 100%
    
    Signed-off-by: Andrew Gwozdziewycz <andrew.gwozdziewycz@strongdm.com>
    apg committed Sep 18, 2024
    Copy the full SHA
    a4e576e View commit details
  4. Update the README indicating datetime / duration support

    Signed-off-by: Andrew Gwozdziewycz <andrew.gwozdziewycz@strongdm.com>
    apg committed Sep 18, 2024
    Copy the full SHA
    125cddb View commit details

Commits on Sep 19, 2024

  1. Merge pull request #35 from strongdm/apg/po-515-add-datetime

    Add the extension types, datetime and duration
    apg authored Sep 19, 2024
    Copy the full SHA
    d1f59f4 View commit details
Loading