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

Run test suite in GH Actions #195

Closed
wants to merge 202 commits into from

Commits on Feb 22, 2022

  1. remove RevisionHash and change all record helper methods to accept ra…

    …w HeaderHash in preparation for indexing logic changes
    
    DnaAddressable now must be directly storable as an Entry in order for fully-qualified IDs to be encoded in the DHT. This means conversion traits to/from hdk::prelude::Entry must be created, and the inner type of DnaAddressable cannot be ambiguous since this would make implementing such conversions impossible. This makes sense and is a good thing, because it enforces that only tuples of (DnaHash, EntryHash) can be used as identifiers. Implementors should not be linking to revisions but rather records.
    pospi committed Feb 22, 2022
    Configuration menu
    Copy the full SHA
    c664564 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4398682 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2022

  1. change calculate_identity_address() to use hash of externally-facing …

    …fully qualified address
    
    necessary changes to related trait bounds to support this
    pospi committed Feb 23, 2022
    Configuration menu
    Copy the full SHA
    f00392c View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2022

  1. Configuration menu
    Copy the full SHA
    138c68f View commit details
    Browse the repository at this point in the history
  2. drop all refs to deprecated RevisionHash in favour of raw HeaderHash

    cleanup some remaining unneeded non-generic deletion payload structs
    
    remove unneeded type generics on deletion functions
    pospi committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    3f85185 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6df2251 View commit details
    Browse the repository at this point in the history
  4. reimplement identity read/write helpers to directly store UUIDs in th…

    …e DHT
    
    remove unneeded direct retrieval of identity EntryHash, now gets read from DnaAddressable
    pospi committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    58eb4a6 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    74ce274 View commit details
    Browse the repository at this point in the history
  6. define identifier EntryDefs using verbose macro as substitution for p…

    …roc macro attributes in macros-by-example does not work
    pospi committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    3981d6d View commit details
    Browse the repository at this point in the history
  7. fix EntryDefs for index pointers not being defined, and use of entry_…

    …defs overriding already-registered defs in indexing zomes
    pospi committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    8963472 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    3901a70 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    6addbf5 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    a9d65e4 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    db1c0d1 View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2022

  1. Configuration menu
    Copy the full SHA
    e0f1d3f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1ef46dd View commit details
    Browse the repository at this point in the history
  3. refactor autoconnect logic out of explorer app into Holochain connect…

    …or module
    
    remove deprecated type alias for DNAMappings
    pospi committed Feb 25, 2022
    Configuration menu
    Copy the full SHA
    1e77e84 View commit details
    Browse the repository at this point in the history
  4. remove todo

    pospi committed Feb 25, 2022
    Configuration menu
    Copy the full SHA
    859d35d View commit details
    Browse the repository at this point in the history
  5. update scripts to use pnpm commands so workspace is aware of pnpm-spe…

    …cific module IDs (workspace:* etc)
    pospi committed Feb 25, 2022
    Configuration menu
    Copy the full SHA
    f974d80 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    cbf2dd5 View commit details
    Browse the repository at this point in the history
  7. pnpm installed locally in GH CI

    pospi committed Feb 25, 2022
    Configuration menu
    Copy the full SHA
    86ed208 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    dfb3521 View commit details
    Browse the repository at this point in the history
  9. add Cargo lockfile

    pospi committed Feb 25, 2022
    Configuration menu
    Copy the full SHA
    25bf74a View commit details
    Browse the repository at this point in the history
  10. fixes h-REA#199 see the issue context

    there is a new option for mapZomeFn to instruct it to optionally skip the special encode decode steps
    Connoropolous committed Feb 25, 2022
    Configuration menu
    Copy the full SHA
    6ae65d2 View commit details
    Browse the repository at this point in the history
  11. remove console.log

    Connoropolous committed Feb 25, 2022
    Configuration menu
    Copy the full SHA
    2cacb29 View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2022

  1. Merge pull request h-REA#201 from holo-rea/fix-for-199

    fix broken agent resolver
    pospi authored Feb 26, 2022
    Configuration menu
    Copy the full SHA
    3fb1efe View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4e1255d View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2022

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

Commits on Feb 28, 2022

  1. fixes h-REA#206

    Connoropolous committed Feb 28, 2022
    Configuration menu
    Copy the full SHA
    a1edfd3 View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2022

  1. Configuration menu
    Copy the full SHA
    d57513a View commit details
    Browse the repository at this point in the history
  2. fixes h-REA#208 - update multiple times

    the original code didn't suit this context, and it was adapted from h-be/Acorn or hdk_crud.
    It didn't suit because in Acorn HeaderHash is used as "id" where as in holo-rea EntryHash is used as "id"
    hdk_crud creates a flat update tree, where all updates reference the original header
    holo-rea is supposed to create a branching Update tree, which this now allows for.
    
    However, this implementation is still very naive, and assumes that in fact the Update tree
    mostly just nests children in one sequence, more like an array than a tree. This won't hold
    true in practice, as we're dealing in offline-friendly distributed systems. Solving this properly
    relates to issue h-REA#196 conflict resolution
    Connoropolous committed Mar 1, 2022
    Configuration menu
    Copy the full SHA
    1ebb329 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    33fc388 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2022

  1. Merge pull request h-REA#209 from holo-rea/fix-update-tree

    fixes h-REA#208 - update multiple times
    pospi authored Mar 2, 2022
    Configuration menu
    Copy the full SHA
    1e87c3f View commit details
    Browse the repository at this point in the history
  2. Merge pull request h-REA#207 from holo-rea/fix-unit-measure

    Fix `hasUnit` and `createUnit` bugs
    pospi authored Mar 2, 2022
    Configuration menu
    Copy the full SHA
    9d4ed13 View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2022

  1. update deps for latest HDK

    pospi committed Mar 3, 2022
    Configuration menu
    Copy the full SHA
    b6ce528 View commit details
    Browse the repository at this point in the history
  2. update lockfile

    pospi committed Mar 3, 2022
    Configuration menu
    Copy the full SHA
    b0ae5a8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f1effbe View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    08476bd View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    20aad9e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ec8f244 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    b429b2f View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    6b8cebd View commit details
    Browse the repository at this point in the history
  9. add todo

    pospi committed Mar 3, 2022
    Configuration menu
    Copy the full SHA
    8a7b287 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    6c2aa53 View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2022

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

Commits on Mar 10, 2022

  1. Configuration menu
    Copy the full SHA
    834b66f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    74cc4bf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6ffdd16 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ce2605f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6faabb1 View commit details
    Browse the repository at this point in the history
  6. mark node packages as non-private, publishConfig.directory handles th…

    …e src/dist separation now
    pospi committed Mar 10, 2022
    Configuration menu
    Copy the full SHA
    1b1f757 View commit details
    Browse the repository at this point in the history
  7. update publishConfigs and remove manual package file munging which PN…

    …PM should handle itself
    pospi committed Mar 10, 2022
    Configuration menu
    Copy the full SHA
    7c37c49 View commit details
    Browse the repository at this point in the history
  8. swap out workspace protocol ref in built version of GraphQL client mo…

    …dule for actual version of module
    
    this seems dumb. Why doesn't PNPM do this for us?
    pospi committed Mar 10, 2022
    Configuration menu
    Copy the full SHA
    be90c34 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    9daea44 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2022

  1. downgrade GraphQL in tests, seems to cause errors with easygraphql-te…

    …ster not understanding schema types
    pospi committed Mar 11, 2022
    Configuration menu
    Copy the full SHA
    b9dbacd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    161951d View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2022

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

Commits on Mar 15, 2022

  1. Merge pull request h-REA#217 from adaburrows/fix-default-nix

    Add pnpm to nix-shell environment.
    pospi authored Mar 15, 2022
    Configuration menu
    Copy the full SHA
    e3fc37f View commit details
    Browse the repository at this point in the history
  2. update lockfile

    pospi committed Mar 15, 2022
    Configuration menu
    Copy the full SHA
    07382a7 View commit details
    Browse the repository at this point in the history
  3. update HDK

    pospi committed Mar 15, 2022
    Configuration menu
    Copy the full SHA
    6662187 View commit details
    Browse the repository at this point in the history
  4. update lockfile

    pospi committed Mar 15, 2022
    Configuration menu
    Copy the full SHA
    4759451 View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2022

  1. Configuration menu
    Copy the full SHA
    556b289 View commit details
    Browse the repository at this point in the history
  2. implement alternative more flexible architecture for managing index u…

    …pdates in response to record changes
    
    indexing now supports mixed DnaHashes in identifier data for many:many relationships between Holochain cells
    pospi committed Mar 16, 2022
    Configuration menu
    Copy the full SHA
    d809c8e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    906fb11 View commit details
    Browse the repository at this point in the history
  4. export serializeId from test helpers for use in tests which mix low-l…

    …evel Cell API with GraphQL queries
    pospi committed Mar 16, 2022
    Configuration menu
    Copy the full SHA
    2a0d98a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d29aa47 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    cc1f55a View commit details
    Browse the repository at this point in the history
  7. quick first pass at converting index zome return data to Relay-compat…

    …ible pagination result
    pospi committed Mar 16, 2022
    Configuration menu
    Copy the full SHA
    45f1cb1 View commit details
    Browse the repository at this point in the history
  8. update lockfile

    pospi committed Mar 16, 2022
    Configuration menu
    Copy the full SHA
    623861e View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    a2a6c8f View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    8175f81 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    9bf106a View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    a7d6f9f View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    8fc1e0c View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    2bc6030 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    a999c7c View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    63e0730 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    57681b2 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    aee0c9c View commit details
    Browse the repository at this point in the history
  19. bump package versions

    pospi committed Mar 16, 2022
    Configuration menu
    Copy the full SHA
    40a030f View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2022

  1. initial push

    hackmd-deploy committed Mar 23, 2022
    Configuration menu
    Copy the full SHA
    b42aed5 View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2022

  1. Merge pull request h-REA#227 from holo-rea/completions

    add a completions.md file which syncs with hackmd
    Connoropolous authored Mar 24, 2022
    Configuration menu
    Copy the full SHA
    1b148eb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    781ae1d View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2022

  1. fix missing Agreement module in Holochain Cell mappings, make all DNA…

    …s optional
    
    originally as part of h-REA#224
    pospi committed Mar 26, 2022
    Configuration menu
    Copy the full SHA
    eab164b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    65f4210 View commit details
    Browse the repository at this point in the history
  3. update readmes for new paths

    pospi committed Mar 26, 2022
    Configuration menu
    Copy the full SHA
    4aa142d View commit details
    Browse the repository at this point in the history
  4. update ignore file

    pospi committed Mar 26, 2022
    Configuration menu
    Copy the full SHA
    0552be1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    011f287 View commit details
    Browse the repository at this point in the history
  6. clean up build clean command

    pospi committed Mar 26, 2022
    Configuration menu
    Copy the full SHA
    a40b199 View commit details
    Browse the repository at this point in the history
  7. Merge pull request h-REA#228 from holo-rea/rename-happs-to-dna-bundles

    fix h-REA#225: reorganise bundle file directories
    pospi authored Mar 26, 2022
    Configuration menu
    Copy the full SHA
    a702503 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    f71eb21 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    ecb0204 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    6a1081d View commit details
    Browse the repository at this point in the history
  11. update manifest files & build scripts to allow split dev/release conf…

    …ig using same template files
    pospi committed Mar 26, 2022
    Configuration menu
    Copy the full SHA
    529f036 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    48ff808 View commit details
    Browse the repository at this point in the history
  13. update ignore file

    pospi committed Mar 26, 2022
    Configuration menu
    Copy the full SHA
    a5faa23 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    8fb6350 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    fbf4cc0 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2022

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

Commits on Mar 30, 2022

  1. switched order

    hackmd-deploy committed Mar 30, 2022
    Configuration menu
    Copy the full SHA
    957e2b0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2c5e547 View commit details
    Browse the repository at this point in the history
  3. Merge pull request h-REA#237 from holo-rea/completions

    completions documentation, order of content change
    Connoropolous authored Mar 30, 2022
    Configuration menu
    Copy the full SHA
    3d0290d View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2022

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

Commits on Apr 8, 2022

  1. remove comment

    pospi committed Apr 8, 2022
    Configuration menu
    Copy the full SHA
    8675452 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1631266 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d02fb9e View commit details
    Browse the repository at this point in the history
  4. Merge pull request h-REA#236 from h-REA/234-vf-module-as-enum

    add the VfModule enum, use it throughout, and export it
    pospi authored Apr 8, 2022
    Configuration menu
    Copy the full SHA
    a24a60a View commit details
    Browse the repository at this point in the history
  5. define VFModule enums as strings to avoid breakage when passed to vf-…

    …graphql-holochain (which is a pure-js module)
    pospi committed Apr 8, 2022
    Configuration menu
    Copy the full SHA
    6c4719c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e034d68 View commit details
    Browse the repository at this point in the history
  7. Merge pull request h-REA#241 from h-REA/make-cross-platform

    make sed command work cross platform mac and linux
    Connoropolous authored Apr 8, 2022
    Configuration menu
    Copy the full SHA
    d96a9f8 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2022

  1. Configuration menu
    Copy the full SHA
    a38175a View commit details
    Browse the repository at this point in the history
  2. Merge pull request h-REA#243 from h-REA/basic-blocking-test-running-f…

    …ixes
    
    Fix h-REA#242: fix basic error blocking test running
    Connoropolous authored Apr 12, 2022
    Configuration menu
    Copy the full SHA
    a88be08 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    be89de7 View commit details
    Browse the repository at this point in the history
  4. run them all

    Connoropolous committed Apr 12, 2022
    Configuration menu
    Copy the full SHA
    fae09c8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3b74c75 View commit details
    Browse the repository at this point in the history
  6. update test report

    Connoropolous committed Apr 12, 2022
    Configuration menu
    Copy the full SHA
    8aa352f View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2022

  1. Configuration menu
    Copy the full SHA
    12afd7b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    76b9e06 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f86b5f9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    06945fa View commit details
    Browse the repository at this point in the history
  5. Update package.json

    Connoropolous authored Apr 13, 2022
    Configuration menu
    Copy the full SHA
    d0d2336 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    31a4d39 View commit details
    Browse the repository at this point in the history
  7. Update package.json

    Connoropolous authored Apr 13, 2022
    Configuration menu
    Copy the full SHA
    57db0c6 View commit details
    Browse the repository at this point in the history
  8. bump package versions

    pospi committed Apr 13, 2022
    Configuration menu
    Copy the full SHA
    3e1a680 View commit details
    Browse the repository at this point in the history
  9. update lockfile

    pospi committed Apr 13, 2022
    Configuration menu
    Copy the full SHA
    092947f View commit details
    Browse the repository at this point in the history
  10. Merge pull request h-REA#245 from h-REA/integration-test-usability

    usability goals for integration tests PR
    pospi authored Apr 13, 2022
    Configuration menu
    Copy the full SHA
    9cab72e View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2022

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

Commits on Apr 22, 2022

  1. Configuration menu
    Copy the full SHA
    ebbc643 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f6ec123 View commit details
    Browse the repository at this point in the history
  3. cleanup

    Connoropolous committed Apr 22, 2022
    Configuration menu
    Copy the full SHA
    d6c785f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2a326a1 View commit details
    Browse the repository at this point in the history
  5. Merge pull request h-REA#259 from h-REA/fix-test-running

    fix test running so that we don't hit non-deterministic cell order
    Connoropolous authored Apr 22, 2022
    Configuration menu
    Copy the full SHA
    51f792e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e9eda04 View commit details
    Browse the repository at this point in the history
  7. extend comment

    Connoropolous committed Apr 22, 2022
    Configuration menu
    Copy the full SHA
    c534d99 View commit details
    Browse the repository at this point in the history
  8. Merge pull request h-REA#260 from h-REA/255-test-satisfaction

    h-REA#255 test satisfaction rust compilation and Runtime error fixes
    Connoropolous authored Apr 22, 2022
    Configuration menu
    Copy the full SHA
    acec27f View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2022

  1. Configuration menu
    Copy the full SHA
    e172778 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2116fdd View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2022

  1. Merge pull request h-REA#261 from h-REA/254-test-flows

    h-REA#254 test/flows fix the initial errors by using mockIdentifier()
    Connoropolous authored Apr 24, 2022
    Configuration menu
    Copy the full SHA
    882edd6 View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2022

  1. reduce log verbosity in tests

    pospi committed Apr 25, 2022
    Configuration menu
    Copy the full SHA
    af35cfd View commit details
    Browse the repository at this point in the history
  2. fix config and declarations to correctly wire up Agreement DNA with E…

    …conomicEvent & Commitment
    pospi committed Apr 25, 2022
    Configuration menu
    Copy the full SHA
    d93559b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    79a5beb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f06c63f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    48a67e1 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    69415d3 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f17bc76 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    13d4987 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    3833a5c View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    e2428b1 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    ea2f282 View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2022

  1. Configuration menu
    Copy the full SHA
    68ef1a6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a44147d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e1a3346 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9fa89ad View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7491cfe View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    08a9702 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7c66add View commit details
    Browse the repository at this point in the history
  8. fix empty config for locally-hosted index zome throwing an unnecessar…

    …y error when remote indexes are being updated
    pospi committed Apr 26, 2022
    Configuration menu
    Copy the full SHA
    6699032 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    f55a9cc View commit details
    Browse the repository at this point in the history
  10. fixes h-REA#246 test/process

    Connoropolous committed Apr 26, 2022
    3 Configuration menu
    Copy the full SHA
    811645e View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    e0b11fb View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    eaa6038 View commit details
    Browse the repository at this point in the history
  13. fixes h-REA#248

    Connoropolous committed Apr 26, 2022
    Configuration menu
    Copy the full SHA
    ca3fcac View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2022

  1. Configuration menu
    Copy the full SHA
    a794029 View commit details
    Browse the repository at this point in the history
  2. only check record ID portion of EconomicEvent.fulfills in assertion

    temporary solution until split record handling is addressed in h-REA#266
    pospi committed Apr 30, 2022
    Configuration menu
    Copy the full SHA
    1bc911c View commit details
    Browse the repository at this point in the history

Commits on May 2, 2022

  1. add helpers for sorting lists of records with IDs as raw buffers (for…

    … tests not using GraphQL API)
    pospi committed May 2, 2022
    Configuration menu
    Copy the full SHA
    056d071 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    08de190 View commit details
    Browse the repository at this point in the history

Commits on May 4, 2022

  1. fix satisfaction test assertions with workarounds for sorting, list A…

    …PI changes & multi-DNA awareness
    pospi committed May 4, 2022
    Configuration menu
    Copy the full SHA
    0fd2550 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5560ebb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3574f1c View commit details
    Browse the repository at this point in the history
  4. fix Proposal & Process structs using old Timestamp instead of new Dat…

    …eTime for time fields
    pospi committed May 4, 2022
    Configuration menu
    Copy the full SHA
    9720a46 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    dcebb12 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    eaeaf76 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    4bb7ff5 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    20171e5 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    7314df0 View commit details
    Browse the repository at this point in the history
  10. fix ProposedIntent not declaring EntryDef needed to store credentials…

    … for updating planning DNA
    pospi committed May 4, 2022
    Configuration menu
    Copy the full SHA
    5a79ac6 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    757dc06 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    a173b47 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    180b749 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    449f237 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    d502568 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    7194171 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    7943db0 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    f362792 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    c903077 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    459c8c9 View commit details
    Browse the repository at this point in the history

Commits on May 16, 2022

  1. Configuration menu
    Copy the full SHA
    98743aa View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c2357a2 View commit details
    Browse the repository at this point in the history
  3. update logic for anchored records to encode string-based index paths …

    …into LinkTag
    
    fixes Unit CRUD tests in h-REA#249 by allowing string IDs to be queried from the DHT again, after PathEntry changes made this impossible using Path construct
    pospi committed May 16, 2022
    Configuration menu
    Copy the full SHA
    887fd9a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a55571b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7691ac2 View commit details
    Browse the repository at this point in the history
  6. remove debug

    pospi committed May 16, 2022
    Configuration menu
    Copy the full SHA
    f0dcba3 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    30eba4e View commit details
    Browse the repository at this point in the history
  8. WIP intermediate state for h-REA#264 so as to not cause complex confi…

    …g issues.
    
    All index updates & RPC calls now uniformly treated as non-critical and logged for output to assist in debugging.
    pospi committed May 16, 2022
    Configuration menu
    Copy the full SHA
    458daed View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    aefedb0 View commit details
    Browse the repository at this point in the history

Commits on May 19, 2022

  1. Update test.yml

    Connoropolous authored May 19, 2022
    Configuration menu
    Copy the full SHA
    7dc7e88 View commit details
    Browse the repository at this point in the history
  2. Update test.yml

    Connoropolous authored May 19, 2022
    Configuration menu
    Copy the full SHA
    098ebe6 View commit details
    Browse the repository at this point in the history
  3. Update test.yml

    Connoropolous authored May 19, 2022
    Configuration menu
    Copy the full SHA
    3d7de31 View commit details
    Browse the repository at this point in the history
  4. increase timeout

    Connoropolous authored May 19, 2022
    Configuration menu
    Copy the full SHA
    aac3c89 View commit details
    Browse the repository at this point in the history
  5. Delete config.yml

    Connoropolous authored May 19, 2022
    Configuration menu
    Copy the full SHA
    e51e266 View commit details
    Browse the repository at this point in the history
  6. Delete .travis.yml

    Connoropolous authored May 19, 2022
    Configuration menu
    Copy the full SHA
    2339d60 View commit details
    Browse the repository at this point in the history
  7. merge

    Connoropolous committed May 19, 2022
    Configuration menu
    Copy the full SHA
    c995019 View commit details
    Browse the repository at this point in the history