Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
* Version falls back to git hash if no tag is set for current head (#15).
* Fixed reporting bugs in local environment despite config telling otherwise (#17).
  This requires an update of `serverless-sentry-lib` as well!
  • Loading branch information
Andre Rabold committed Oct 11, 2017
1 parent cba6748 commit d8d12bf
Show file tree
Hide file tree
Showing 5 changed files with 669 additions and 345 deletions.
22 changes: 9 additions & 13 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,12 @@ env:
extends:
- eslint:recommended
rules:
indent:
- error
- tab
linebreak-style:
- error
- unix
semi:
- error
- always
quotes:
- error
- double
- avoidEscape: true
indent: [ error, tab, {
MemberExpression: off
} ]
linebreak-style: [ error, unix ]
semi: [ error, always ]
quotes: [ error, double, { avoidEscape: true } ]
no-mixed-spaces-and-tabs: error
space-before-blocks: error
arrow-spacing: error
Expand All @@ -29,3 +22,6 @@ rules:
array-bracket-spacing: off # [ error, always, { singleValue: false } ]
computed-property-spacing: [ error, never ]
object-curly-spacing: [ error, always ]
prefer-const: error
no-var: error
no-console: off
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,11 @@ Sentry projects with meaningless errors of local code changes.

## Version History

### 1.0.0
* Version falls back to git hash if no tag is set for current head (#15).
* Fixed reporting bugs in local environment despite config telling otherwise (#17).
This requires an update of `serverless-sentry-lib` as well!

### 1.0.0-rc.4
* Fixed an issue with creating random version numbers

Expand Down
Loading

0 comments on commit d8d12bf

Please sign in to comment.