File tree Expand file tree Collapse file tree 4 files changed +20
-43
lines changed Expand file tree Collapse file tree 4 files changed +20
-43
lines changed Original file line number Diff line number Diff line change 1+ ##### 1.0.1 - 18 August 2017
2+
3+ ###### Bug fixes
4+ - Remove ` mysql ` from dependencies
5+
16##### 1.0.0 - 17 August 2017
27
38Stable 1.0.0 release
Original file line number Diff line number Diff line change 11{
22 "name" : " js-data-sql" ,
33 "description" : " Postgres/MySQL/MariaDB/SQLite3 adapter for js-data." ,
4- "version" : " 1.0.0 " ,
4+ "version" : " 1.0.1 " ,
55 "homepage" : " https://github.com/js-data/js-data-sql" ,
66 "repository" : {
77 "type" : " git" ,
6666 "js-data-adapter" : " 1.0.0" ,
6767 "knex" : " >=0.13.0" ,
6868 "lodash.snakecase" : " 4.1.1" ,
69- "lodash.tostring" : " 4.1.4" ,
70- "mysql" : " ^2.14.1"
69+ "lodash.tostring" : " 4.1.4"
7170 },
7271 "peerDependencies" : {
7372 "js-data" : " >=3.0.0" ,
Original file line number Diff line number Diff line change @@ -734,7 +734,11 @@ export const version = '<%= version %>'
734734/**
735735 * {@link SqlAdapter } class.
736736 *
737- * @example
737+ * @example <caption>CommonJS</caption>
738+ * const SqlAdapter = require('js-data-sql').SqlAdapter;
739+ * const adapter = new SqlAdapter();
740+ *
741+ * @example <caption>ES2015 Modules</caption>
738742 * import { SqlAdapter } from 'js-data-sql';
739743 * const adapter = new SqlAdapter();
740744 *
@@ -760,21 +764,6 @@ export const version = '<%= version %>'
760764 * @module js-data-sql
761765 */
762766
763- /**
764- * {@link SqlAdapter } class.
765- *
766- * @example <caption>CommonJS</caption>
767- * const SqlAdapter = require('js-data-sql').SqlAdapter;
768- * const adapter = new SqlAdapter();
769- *
770- * @example <caption>ES2015 Modules</caption>
771- * import { SqlAdapter } from 'js-data-sql';
772- * const adapter = new SqlAdapter();
773- *
774- * @name module:js-data-sql.SqlAdapter
775- * @see SqlAdapter
776- */
777-
778767/**
779768 * Create a subclass of this SqlAdapter:
780769 * @example <caption>SqlAdapter.extend</caption>
You can’t perform that action at this time.
0 commit comments