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

develop to iv #215

Draft
wants to merge 42 commits into
base: iv
Choose a base branch
from
Draft

develop to iv #215

wants to merge 42 commits into from

Commits on Jun 1, 2022

  1. Add missing quotes

    alexfmpe committed Jun 1, 2022
    Configuration menu
    Copy the full SHA
    319b8af View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2023

  1. Update thunk github.json in README.md

    Sean Chalmers committed Jan 26, 2023
    Configuration menu
    Copy the full SHA
    df75577 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2023

  1. Configuration menu
    Copy the full SHA
    ce3bb5c View commit details
    Browse the repository at this point in the history

Commits on May 25, 2023

  1. Bump obelisk

    ali-abrar committed May 25, 2023
    Configuration menu
    Copy the full SHA
    05f1c04 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a99a09b View commit details
    Browse the repository at this point in the history
  3. Update changelog

    ali-abrar committed May 25, 2023
    Configuration menu
    Copy the full SHA
    3ff0e9f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8e4b533 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #208 from obsidiansystems/cg/purify-token-decryption

    Purify function argument to decrypt token in handleAuthenticatedQuery
    ali-abrar authored May 25, 2023
    Configuration menu
    Copy the full SHA
    8e2ea67 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    29c5855 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f82fc70 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    8922046 View commit details
    Browse the repository at this point in the history
  9. deps: update deps

    * postgresql-lo-stream
    ali-abrar committed May 25, 2023
    Configuration menu
    Copy the full SHA
    9115c92 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    81976ba View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2023

  1. deps: obelisk -> 1.1.1.0

    ali-abrar committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    032e6d4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bcf0c1b View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2023

  1. Configuration menu
    Copy the full SHA
    a6a0d02 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #204 from obsidiansystems/aa/ghc810

    Update for ghc-8.10 and updated packages
    ali-abrar authored Aug 3, 2023
    Configuration menu
    Copy the full SHA
    cf0718b View commit details
    Browse the repository at this point in the history
  3. v1

    ali-abrar committed Aug 3, 2023
    Configuration menu
    Copy the full SHA
    ec1333c View commit details
    Browse the repository at this point in the history
  4. Merge pull request #194 from obsidiansystems/readme-typo

    Add missing quotes
    ali-abrar authored Aug 3, 2023
    Configuration menu
    Copy the full SHA
    d356ccd View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2023

  1. Configuration menu
    Copy the full SHA
    ad64881 View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2023

  1. Configuration menu
    Copy the full SHA
    35cef32 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bd2155d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6c01dc9 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2023

  1. Configuration menu
    Copy the full SHA
    35c1063 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2023

  1. Configuration menu
    Copy the full SHA
    7589b06 View commit details
    Browse the repository at this point in the history

Commits on Dec 29, 2023

  1. obelisk 1.1 -> 1.3

    ali-abrar committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    ab7e62e View commit details
    Browse the repository at this point in the history
  2. Merge pull request #211 from obsidiansystems/aa/obelisk-1.3

    obelisk 1.1 -> 1.3
    ali-abrar authored Dec 29, 2023
    Configuration menu
    Copy the full SHA
    8e0f328 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    997d875 View commit details
    Browse the repository at this point in the history

Commits on May 8, 2024

  1. Make authentication easier to use and fix some things about ErrorV

    The forced polymorphism in handlePersonalAuthMapQuery was preventing use
    of ErrorV for handling authorization failures (because its operations
    are intentionally monomorphic).
    
    liftErrorV was not a good primitive to make queries, it would have been
    fine for reporting success, but did not explicitly register interest in
    the error part. Because of that, cropV would have quietly deleted the
    errors from the view. I'd be surprised if anything using this managed
    to avoid this pitfall.
    
    As such, liftErrorV has been replaced by two new primitives:
    queryErrorV for registering interest in a view wrapped in ErrorV, and
    successErrorV for constructing a successful Identity view.
    
    I also removed unsafeProjectE / unsafeProjectV from ErrorV rather than
    reworking them because the things they did were not entirely sensible to
    begin with:
    * unsafeProjectE was requesting only errors from the backend, but then
      discarding those errors from the corresponding view on the way back.
      If you want that, you ought to avoid registering interest in the
      ErrorV in the first place, rather than making the backend work to
      discover that there's an error you're going to ignore.
    * unsafeProjectV was treating failures the same way as lag (which is
      maybe on a rare occasion something you'd want, but let's not
      encourage it).
    cgibbard committed May 8, 2024
    Configuration menu
    Copy the full SHA
    79f21b0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9d9f2d2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    81752cc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    27873bb View commit details
    Browse the repository at this point in the history

Commits on May 9, 2024

  1. Configuration menu
    Copy the full SHA
    f022309 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    de67d6e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7c80f95 View commit details
    Browse the repository at this point in the history

Commits on May 25, 2024

  1. Merge pull request #213 from obsidiansystems/cg/fix-errorv

    Make authentication easier to use and fix some things about ErrorV
    ali-abrar authored May 25, 2024
    Configuration menu
    Copy the full SHA
    3d77e73 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #210 from obsidiansystems/aa/remove-modals

    widgets: remove Reflex.Dom.Modal.*
    ali-abrar authored May 25, 2024
    Configuration menu
    Copy the full SHA
    1f29ec5 View commit details
    Browse the repository at this point in the history
  3. Update ChangeLog.md

    ali-abrar authored May 25, 2024
    Configuration menu
    Copy the full SHA
    4adb328 View commit details
    Browse the repository at this point in the history
  4. Bump version

    ali-abrar committed May 25, 2024
    Configuration menu
    Copy the full SHA
    8a952fb View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8a10a67 View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2024

  1. Configuration menu
    Copy the full SHA
    0b06e21 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    496a0e3 View commit details
    Browse the repository at this point in the history