1. 08 May, 2018 3 commits
  2. 27 Apr, 2018 1 commit
  3. 25 Apr, 2018 2 commits
  4. 24 Apr, 2018 4 commits
  5. 23 Apr, 2018 1 commit
  6. 20 Apr, 2018 6 commits
  7. 19 Apr, 2018 4 commits
  8. 13 Apr, 2018 1 commit
  9. 10 Apr, 2018 1 commit
  10. 09 Apr, 2018 2 commits
  11. 06 Apr, 2018 1 commit
  12. 05 Apr, 2018 9 commits
    • Kirill Smelkov's avatar
      Merge tag 'v1.9' into t · c1b8ffda
      Kirill Smelkov authored
      NEO 1.9
      
      * tag 'v1.9':
        Release version 1.9
        master: fix resumption of backup replication (internal or not)
        master: fix/simplify generation of TID
        master: fix possible failure when reading data in a backup cluster with replicas
      c1b8ffda
    • Kirill Smelkov's avatar
      . · 23894124
      Kirill Smelkov authored
      23894124
    • Kirill Smelkov's avatar
      . · d1082f90
      Kirill Smelkov authored
      d1082f90
    • Kirill Smelkov's avatar
      . · a771b9f1
      Kirill Smelkov authored
      a771b9f1
    • Kirill Smelkov's avatar
      . · 4b02cadb
      Kirill Smelkov authored
      4b02cadb
    • Kirill Smelkov's avatar
      . · 75fc3420
      Kirill Smelkov authored
      75fc3420
    • Kirill Smelkov's avatar
      . · 72a4a428
      Kirill Smelkov authored
      72a4a428
    • Kirill Smelkov's avatar
      . · b26cddf9
      Kirill Smelkov authored
      b26cddf9
    • Kirill Smelkov's avatar
      . · 102d46ac
      Kirill Smelkov authored
      102d46ac
  13. 04 Apr, 2018 4 commits
  14. 27 Mar, 2018 1 commit
    • Kirill Smelkov's avatar
      X neo/storage: Open backends by raw string, not URL · 4000df14
      Kirill Smelkov authored
      For both current backends (SQLite and fs1) there is currently a problem
      of working with UTF-8 filenames if opening is handled via urls. For
      example if backend string is
      
      	sqlite://neo.sqlite·P1-1
      
      after parsing as URL and further reassembled as string it will be
      
      	neo.sqlite%C2%B7P1-1
      
      with then errors like
      
      	neo.sqlite%C2%B7P1-1: open: unable to open database file
      
      showing.
      
      Since storage backends primarily work with local files it makes sense
      not to play raw url reassembly games and just pass raw strings to
      backends for open.
      
      SQLite uri processing is still possible, via e.g.
      
      	sqlite://file:filepath?param=value,...
      
      See
      
      	https://www.sqlite.org/c3ref/open.html	and
      	https://www.sqlite.org/uri.html
      
      for details.
      4000df14