Skip to content

Releases: FSou1/fsquery

v0.1.6

22 Apr 03:51
245a154
Compare
Choose a tag to compare

Implement the like operator:

  • select * from root where name like '%.txt'
  • select * from root where name like '%folder%'
  • select * from root where name like 'a-file.%'

v0.1.5

20 Apr 05:40
21116ab
Compare
Choose a tag to compare

The release includes next queries:

  • select * from root where name = 'root.txt'
  • select * from root where name <> 'root.txt'

v0.1.4

20 Apr 05:20
ae52fbf
Compare
Choose a tag to compare

The release supports next queries:

  • select * from root where isFile = true
  • select * from root where isFile = false
  • select * from root where isFile <> true
  • select * from root where isFile <> false

v0.1.3

17 Apr 02:21
b9562d3
Compare
Choose a tag to compare

Support the following queries:

  • select * from root where isDirectory = true
  • select * from root where isDirectory = false
  • select * from root where isDirectory <> true
  • select * from root where isDirectory <> false

v0.1.2

16 Apr 06:27
d38b23b
Compare
Choose a tag to compare
  • Introduce there where clause
  • Supported the following queries:
    • select * from root where size > 1000000
    • select * from root where size < 1000000
    • select * from root where size = 1000000
    • select * from root where size <> 1000000

v0.1.1

14 Apr 03:42
2255c10
Compare
Choose a tag to compare
  • Rework the peg-parser.js module declaration to ES6 module

0.1

13 Apr 20:54
Compare
Choose a tag to compare
0.1

Initial release