Skip to content

Commit

Permalink
__SEMANTIC RELEASE VERSION UPDATE__
Browse files Browse the repository at this point in the history
  • Loading branch information
Travis CI authored and Travis CI User committed Jun 19, 2020
1 parent 5530679 commit 2fb5ccf
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 37 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,16 @@
# v7.9.2
## 19 Jun 2020 — 03:52:35 UTC

### fix

+ __QueryBuilder:__ Allow for space-delimited sort directions ([5530679](https://github.com/coldbox-modules/qb/commit/55306795354717630e1dd442628cf4e993c4203e))
+ __QueryBuilder:__ Add helpful message when trying to use a closure with 'from'
([a8e7bb4](https://github.com/coldbox-modules/qb/commit/a8e7bb48af69cc7048f7ace45229fe5909a36c43))
+ __QueryBuilder:__ 'value' and 'values' now work with column formatters
([da60695](https://github.com/coldbox-modules/qb/commit/da60695efe17329634efb7d9922c202ed2919dd8))
+ __QueryBuilder:__ Correctly format RETURNING clauses ([977edcf](https://github.com/coldbox-modules/qb/commit/977edcf59e66052624e4c7ff59a882adb0bcb51a))


# v7.9.1
## 18 Jun 2020 — 22:37:57 UTC

Expand Down
74 changes: 37 additions & 37 deletions box.json
@@ -1,60 +1,60 @@
{
"name": "qb",
"version": "7.9.1",
"author": "Eric Peterson",
"homepage": "https://github.com/coldbox-modules/qb",
"documentation": "https://github.com/coldbox-modules/qb",
"location": "forgeboxStorage",
"scripts": {
"generateAPIDocs": "rm .tmp --recurse --force && docbox generate mapping=qb excludes=test|ModuleConfig strategy-outputDir=.tmp/apidocs strategy-projectTitle=qb",
"commitAPIDocs": "run-script generateAPIDocs && !git add docs/apidocs/* && !git commit -m 'Updated API Docs'",
"format": "cfformat run models/**/*.cfc,tests/resources/**/*.cfc,tests/specs/**/*.cfc --overwrite",
"format:check": "cfformat check models/**/*.cfc,tests/resources/**/*.cfc,tests/specs/**/*.cfc"
"name":"qb",
"version":"7.9.2",
"author":"Eric Peterson",
"homepage":"https://github.com/coldbox-modules/qb",
"documentation":"https://github.com/coldbox-modules/qb",
"location":"forgeboxStorage",
"scripts":{
"generateAPIDocs":"rm .tmp --recurse --force && docbox generate mapping=qb excludes=test|ModuleConfig strategy-outputDir=.tmp/apidocs strategy-projectTitle=qb",
"commitAPIDocs":"run-script generateAPIDocs && !git add docs/apidocs/* && !git commit -m 'Updated API Docs'",
"format":"cfformat run models/**/*.cfc,tests/resources/**/*.cfc,tests/specs/**/*.cfc --overwrite",
"format:check":"cfformat check models/**/*.cfc,tests/resources/**/*.cfc,tests/specs/**/*.cfc"
},
"repository": {
"type": "git",
"URL": "https://github.com/coldbox-modules/qb"
"repository":{
"type":"git",
"URL":"https://github.com/coldbox-modules/qb"
},
"bugs": "https://github.com/coldbox-modules/qb/issues",
"slug": "qb",
"shortDescription": "A query builder for the rest of us",
"type": "modules",
"keywords": [
"bugs":"https://github.com/coldbox-modules/qb/issues",
"slug":"qb",
"shortDescription":"A query builder for the rest of us",
"type":"modules",
"keywords":[
"ORM",
"query",
"SQL"
],
"private": false,
"projectURL": "https://github.com/coldbox-modules/qb",
"license": [
"private":false,
"projectURL":"https://github.com/coldbox-modules/qb",
"license":[
{
"type": "MIT",
"URL": "https://github.com/coldbox-modules/qb/LICENSE"
"type":"MIT",
"URL":"https://github.com/coldbox-modules/qb/LICENSE"
}
],
"dependencies": {
"cbpaginator": "^2.0.0"
"dependencies":{
"cbpaginator":"^2.0.0"
},
"devDependencies": {
"testbox": "^3.0.0"
"devDependencies":{
"testbox":"^3.0.0"
},
"installPaths": {
"testbox": "testbox/",
"cbpaginator": "modules/cbpaginator/"
"installPaths":{
"testbox":"testbox/",
"cbpaginator":"modules/cbpaginator/"
},
"ignore": [
"ignore":[
"**/.*",
"test",
"tests",
"docs/**/*.*",
"server.json"
],
"testbox": {
"runner": "http://localhost:7777/tests/runner.cfm",
"verbose": false
"testbox":{
"runner":"http://localhost:7777/tests/runner.cfm",
"verbose":false
},
"githooks": {
"preCommit": [
"githooks":{
"preCommit":[
"cfformat run `!git diff --name-only --staged` --overwrite",
"!git add `git diff --name-only --staged`"
]
Expand Down

0 comments on commit 2fb5ccf

Please sign in to comment.