Skip to content

Commit 03fa7c0

Browse files
committed
Merge branch 'release/0.3.5'
2 parents 5add0f2 + 44722fc commit 03fa7c0

35 files changed

+13001
-12931
lines changed

CHANGELOG.md

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,24 @@
11
# Changelog
2-
3-
_0.3.5 "Maiao" (xx.12.2016)_
2+
3+
_0.3.6 "???" (xx.01.2017)_
4+
45
* ...
6+
7+
8+
9+
### 0.3.5 "Maiao" (22.12.2016)
10+
* Added: Import data through AngularJS controllers
11+
* Added: Support for running in VM for nodeJS
12+
* Fix: Typescript definition
13+
* Fix: False negatives for deepequal'ing of extended primitives
14+
* Fix: Double quotation marks in CSV output
515

616

717
### 0.3.4 "Fitii" (09.11.2016)
8-
* Added: trigger `AFTER DELETE`
9-
* Fix: `TRUNCATE TABLE` now works for local storage DB
10-
* Fix: `JOIN` a sub select
11-
* Removed: The `HELP` command (to save space)
18+
* Added: trigger `AFTER DELETE`
19+
* Fix: `TRUNCATE TABLE` now works for local storage DB
20+
* Fix: `JOIN` a sub select
21+
* Removed: The `HELP` command (to save space)
1222

1323

1424
### 0.3.3 "Makemo" (13.10.2016)
@@ -17,7 +27,7 @@ _0.3.5 "Maiao" (xx.12.2016)_
1727
* Add: Load CSV data from a string
1828
* Add: Warn when server side uses browser build of lib
1929
* Update: typescript definition for native import
20-
* Update: filesaver.js updated to 1.3.2
30+
* Update: filesaver.js updated to 1.3.2
2131

2232

2333
### 0.3.2 "Maumu" (05.09.2016)

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ For you to edit the source please do the following:
88
- Clone your forked repo and install dependencies `git clone https://github.com/MYUSERNAME/alasql/ && cd alasql && npm install`
99
- Please work with the code from the develop branch `git checkout develop`
1010
- Add a test for the issue: Copy `test/test000.js` and replace `000` with a new number.
11-
- Impelement a test that reflects the issue.
11+
- Implement a test that reflects the issue.
1212
- Run `npm test` to verify only the new test fails
1313
- Implement your contributions in `src/`
1414
- Run `npm test` and verify all tests are OK

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ _Got a question? Ask on [Stack Overflow](http://stackoverflow.com/questions/ask?
66
[![Build status](https://api.travis-ci.org/agershun/alasql.svg)](https://travis-ci.org/agershun/alasql?123)
77
[![NPM downloads](http://img.shields.io/npm/dm/alasql.svg?style=flat&label=npm%20downloads)](https://npm-stat.com/charts.html?package=alasql)
88
[![ghit.me](https://ghit.me/badge.svg?repo=agershun/alasql)](https://ghit.me/repo/agershun/alasql)
9-
![Release](https://img.shields.io/github/release/agershun/alasql.svg?label=Last%20release&a)
10-
![Stars](https://img.shields.io/github/stars/agershun/alasql.svg?label=Github%20%E2%98%85&a)
9+
[![Release](https://img.shields.io/github/release/agershun/alasql.svg?label=Last%20release&a)](https://www.npmjs.com/package/alasql)
10+
[![Stars](https://img.shields.io/github/stars/agershun/alasql.svg?label=Github%20%E2%98%85&a)](https://github.com/agershun/alasql)
1111
[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/agershun/alasql.svg)](http://isitmaintained.com/project/agershun/alasql "Average time to resolve an issue")
1212
[![Coverage]( https://img.shields.io/codecov/c/github/agershun/alasql/develop.svg)](https://rawgit.com/agershun/alasql/develop/test/coverage/lcov-report/dist/alasql.fs.js.html)
1313
[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/328/badge)](https://bestpractices.coreinfrastructure.org/projects/328)
@@ -19,17 +19,15 @@ _Got a question? Ask on [Stack Overflow](http://stackoverflow.com/questions/ask?
1919

2020
_( [à la](http://en.wiktionary.org/wiki/%C3%A0_la) [SQL](http://en.wikipedia.org/wiki/SQL) ) [ælæ ɛskju:ɛl]_ - AlaSQL is a free and open source SQL database for Javascript with a strong focus on query speed and datasource flexibility for relational data, schemaless data, and graph data. It works in your browser, Node.js, IO.js and Cordova.
2121

22-
<div align="center"><a href="http://alasql.org"><img src="https://cloud.githubusercontent.com/assets/1063454/19309516/94f8007e-9085-11e6-810f-62fd60b42185.png" alt="AlaSQL logo" styl="max-width:80%"/></a>
23-
</div>
24-
25-
26-
2722
The library is designed for:
2823

2924
* Fast SQL data processing in-memory for BI and ERP applications on fat clients
3025
* Easy ETL and option for persistency by data import / manipulation / export for several formats
3126
* All major browsers, Node.js, and mobile applications
3227

28+
<div align="center"><a href="http://alasql.org"><img src="https://cloud.githubusercontent.com/assets/1063454/19309516/94f8007e-9085-11e6-810f-62fd60b42185.png" alt="AlaSQL logo" styl="max-width:80%"/></a>
29+
</div>
30+
3331
We focus on [speed](https://github.com/agershun/alasql/wiki/Speed) by taking advantage of the dynamic nature of javascript when building up queries. Real world solutions demands flexibility regarding where data comes from and where it is to be stored. We focus on flexibility by making sure you can [import/export](https://github.com/agershun/alasql/wiki/Import-export) and query directly on data stored in Excel (both `xls` and `.xlsx`), CSV, JSON, TAB, IndexedDB, LocalStorage, and SQLite files.
3432

3533

@@ -154,7 +152,7 @@ The project has never received any funding and is based on unpaid voluntary work
154152
AlaSQL project is very young and still in active development phase, therefore it <s>may</s> have [bugs](https://github.com/agershun/alasql/labels/%21%20Bug).
155153
Please, submit any bugs and suggestions [as an issue](https://github.com/agershun/alasql/issues/new).
156154

157-
[![Known bugs](https://img.shields.io/github/issues-raw/agershun/alasql/!%20bug.svg?label=Known Bugs&maxAge=2592000)](https://github.com/agershun/alasql/issues?q=is%3Aissue+is%3Aopen+label%3A%22%21+Bug%22)
155+
[![Known bugs](https://img.shields.io/github/issues-raw/agershun/alasql/!%20bug.svg?label=Known%20Bugs&maxAge=2592000)](https://github.com/agershun/alasql/issues?q=is%3Aissue+is%3Aopen+label%3A%22%21+Bug%22)
158156

159157

160158
AlaSQL uses [Semantic Versioning](http://semver.org/) so please note that major version is zero (0.y.z) and the API can not be considered 100% stable. Consider this before using the library in production and please checkout the [limitations of the library](https://github.com/agershun/alasql#limitations)
@@ -556,6 +554,8 @@ var b = browserify("./main.js").bundle();
556554
["fs","path","xlsx", ... , "xls"].map(ignore => b.ignore(ignore));
557555
```
558556
557+
#### jQuery
558+
Please remember to send the original event, and not the jQuery event, for elements. (use `event.originalEvent` instead of `myEvent`)
559559
560560
561561
### Miss a feature?

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@
5858
"bin",
5959
"lib"
6060
],
61-
"version": "0.3.4"
61+
"version": "0.3.5"
6262
}

dist/alasql-worker.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
//! AlaSQL v0.3.4 | © 2014-2016 Andrey Gershun & Mathias Rangel Wulff | License: MIT
1+
//! AlaSQL v0.3.5 | © 2014-2016 Andrey Gershun & Mathias Rangel Wulff | License: MIT
22
/*
33
@module alasql
4-
@version 0.3.4
4+
@version 0.3.5
55
66
AlaSQL - JavaScript SQL database
77
© 2014-2016 Andrey Gershun & Mathias Rangel Wulff

dist/alasql-worker.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/alasql.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
// Type definitions for alasql.js v.0.1.8
21
// Project: https://github.com/agershun/alasql
3-
// Definitions by: Andrey Gershun <https://github.com/agershun>
4-
// Definitions: https://github.com/borisyankov/DefinitelyTyped
52

63
declare namespace alaSQLSpace {
74
interface AlaSQLCallback {
@@ -77,4 +74,7 @@ declare namespace alaSQLSpace {
7774
}
7875
}
7976

80-
export declare var alasql: alaSQLSpace.AlaSQL;
77+
declare var alasql: alaSQLSpace.AlaSQL;
78+
declare module 'alasql' {
79+
export = alasql;
80+
}

0 commit comments

Comments
 (0)