@wmfs/tymly-solr-plugin
Advanced tools
Comparing version 1.9.1 to 1.9.2
@@ -0,1 +1,9 @@ | ||
## [1.9.2](https://github.com/wmfs/tymly-solr-plugin/compare/v1.9.1...v1.9.2) (2019-02-07) | ||
### 🐛 Bug Fixes | ||
* Aha - use model.id when creating the SELECT statement ([aec68ee](https://github.com/wmfs/tymly-solr-plugin/commit/aec68ee)) | ||
* Use model.name not model.title when constructing select statement ([020961b](https://github.com/wmfs/tymly-solr-plugin/commit/020961b)) | ||
## [1.9.1](https://github.com/wmfs/tymly-solr-plugin/compare/v1.9.0...v1.9.1) (2019-01-26) | ||
@@ -2,0 +10,0 @@ |
@@ -114,3 +114,3 @@ 'use strict' | ||
return `SELECT ${columns.join(', ')} FROM ${_.snakeCase(model.namespace)}.${_.snakeCase(model.title)}` | ||
return `SELECT ${columns.join(', ')} FROM ${_.snakeCase(model.namespace)}.${_.snakeCase(model.id)}` | ||
} | ||
@@ -117,0 +117,0 @@ |
{ | ||
"name": "@wmfs/tymly-solr-plugin", | ||
"version": "1.9.1", | ||
"version": "1.9.2", | ||
"description": "Plugin which handles interaction with Apache Solr for Tymly framework", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/wmfs/tymly-solr-plugin#readme", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
115483