Skip to content

Commit

Permalink
v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
juanhapes committed May 15, 2020
1 parent 79c04d0 commit e8efeef
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [1.3.0] - 2020-05-15
### Added
- `UserHelper` for getting and format users
- `ExportHelper` for common uses
- `ExportFormatters` with useful formatters

### Changed
- Model Export does not creates logs

## [1.2.0] - 2020-04-24
### Added
- Optional formatFilters method for controllers
Expand Down
4 changes: 4 additions & 0 deletions lib/model-export.js
Expand Up @@ -18,6 +18,10 @@ class Export extends Model {
sendingError: 'sending-error'
};
}

static get shouldCreateLogs() {
return false;
}
}

module.exports = Export;
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@janiscommerce/export",
"version": "1.2.0",
"version": "1.3.0",
"description": "A package to handle JANIS Export APIs",
"main": "lib/index.js",
"scripts": {
Expand Down

0 comments on commit e8efeef

Please sign in to comment.