Skip to content

Commit a98beb8

Browse files
committed
Merge branch 'release/0.2.2'
2 parents 0eebb86 + 9d0f3f8 commit a98beb8

File tree

166 files changed

+46126
-6848
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

166 files changed

+46126
-6848
lines changed

.bithoundrc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,8 @@
2828
"**/tests/**",
2929
"**/spec/**",
3030
"**/specs/**"
31-
]
31+
],
32+
"critics": {
33+
"wc": { "limit": 5000 }
34+
}
3235
}

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@ branches:
66

77
language: node_js
88
node_js:
9-
- "iojs"
109
- "node"
10+
- "5"
11+
- "4"
1112
- "0.12"
12-
- "0.11"
13-
- "0.10"
1413

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,36 @@
11
# Changelog
22
* Check https://trello.com/b/qxz65pVi/alasql-roadmap for roadmap
33

4+
### 0.2.2 "Mitilini" (15.01.2016)
5+
* Fix: SELECT can use functions from GROUP BY list
6+
* Fix: Bug in NUMERIC type conversion
7+
* Added: functions CEIL/CEILING and FLOOR
8+
* Added: CONCAT to the list of standard functions
9+
* Fix: Bug with primary key after DELETE all
10+
* Fix: Added String() to UPPER() and LOWER() functions
11+
* Added: PIVOT and UNPIVOT functionality
12+
* Added: REPLACE INTO command (see issue #467)
13+
* Added: ON UPDATE - column constraint
14+
* Fix: COLLATE and UNIQUE KEY words for CREATE TABLE (see issue #452)
15+
* Fix: Added params to SEARCH WHERE function
16+
* Added: TRIGGERs
17+
* Fix: Bug with MATRIX modifier
18+
* Fix: Bug with undefined content variable with IN operation (issue #501)
19+
* Fix: Bug with wrong realizaion of REPLACE INTO (issue #505)
20+
* Added: >>,<<,&,| - binary operations
21+
* Added: || - string concatenation (issue #514)
22+
* Added: GLOB operator
23+
* Fix: >> for binary operation and graphs collisions
24+
* Added: SELECT * FROM INSERTED (for T-SQL like triggers)
25+
* Fix: Added DEFAULT clause to INSERT SELECT statement
26+
* Added: expression NOT NULL operator (issue #507)
27+
* Added and Fix: REINDEX and fixed CREATE INDEX (issues #509, #470)
28+
* Fixed: browser tests, IndexedDB tests, DROP TABLE callback for external engines
29+
* Added: DATETIME2 type for compatibility with T-SQL
30+
* Added: DATEADD() and DATEDIFF() functions in T-SQL style
31+
* Added: CONCAT_WS() function
32+
* Added: OF() selector for SEARCH statement
33+
434
### 0.2.1 "Rodos" (28.09.2015)
535
* Added: AlaSQL CLI: Support for --version flag
636
* Added: AlaSQL CLI: support for CLI exit code
@@ -16,6 +46,8 @@
1646
* Fix: misbehavour related to 'NOT' and '=' predecession
1747
* Fix: alasql running from cordova on iOS
1848

49+
50+
1951
## Version 0.2.0 "Athens" (13.07.2015)
2052
The purpose of this release were hard work on:
2153
* Documentation

CONTRIBUTING.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
1-
# Contributing to AlaSQL
1+
# Contributing to making AlaSQL better
2+
3+
4+
Got questions? [Tag a Stack Overflow question](http://stackoverflow.com/questions/ask?tags=AlaSQL) with `alasql`.
5+
6+
7+
Inputs to improvement? [Open an issue](https://github.com/agershun/alasql/issues/new).
8+
29

310
**All contributions are much welcome and greatly appreciated(!)**
411

5-
- Please work with the code from the develop branch (do a `npm install` first time you clone)
12+
- Clone repo and install dependencies `git clone https://github.com/agershun/alasql/ && cd alasql && npm install`
13+
- Please work with the code from the develop branch `git checkout develop`
614
- Add a test for the issue: Copy `test/test000.js` and replace `000` with a new number.
715
- Impelement a test that reflects the issue.
816
- Run `npm test` to verify only the new test fails

0 commit comments

Comments
 (0)