Skip to content

Commit

Permalink
Released v0.8.1 (#142)
Browse files Browse the repository at this point in the history
* Released v0.8.1

* Removed commented out code
  • Loading branch information
Phil Sturgeon authored Aug 28, 2018
1 parent d99ea7e commit 391e0cc
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 48 deletions.
16 changes: 11 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [0.8.1] - 2018-08-22
### Fixed
- Rules using action `notEndWith` (like `path-keys-no-trailing-slash`) should not cause validation errors when string length is 1 ([#137])

[#137]: https://github.com/wework/speccy/pull/137

## [0.8.0] - 2018-08-09
### Changed
- Switched to using [oas-kit] for resolving and validating
Expand All @@ -18,17 +24,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Removed
- Got rid of `wework` rules, as the last rule was moved to `strict` ([#110])

## [0.7.3] - 2018-06-19
### Added
- Provide "More Info" links in linter errors, so users understand the reasoning behind various rules. ([#78])


[#90]: https://github.com/wework/speccy/pull/90
[#108]: https://github.com/wework/speccy/pull/108
[#110]: https://github.com/wework/speccy/pull/110
[better-ajv-errors]: https://github.com/atlassian/better-ajv-errors
[oas-kit]: https://github.com/Mermade/oas-kit

## [0.7.3] - 2018-06-19
### Added
- Provide "More Info" links in linter errors, so users understand the reasoning behind various rules. ([#90])

[#90]: https://github.com/wework/speccy/pull/90

## [0.7.2] - 2018-05-31
### Fixed
Expand Down
75 changes: 35 additions & 40 deletions 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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "speccy",
"version": "0.8.0",
"version": "0.8.1",
"description": "An OpenAPI v3 development workflow assistant",
"homepage": "https://speccy.io/",
"bin": {
Expand Down
3 changes: 1 addition & 2 deletions test/loader.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,9 @@ describe('Loader', () => {
});

it('resolves JSON Schema $refs when passed { filters: [ jsonSchema ] }', async () => {
//const filters = [ function(data,options) { console.log(data); return data; } ];
const filters = [ fromJsonSchema ];
const spec = await loader.loadSpec(samplesDir + 'json-schema/openapi.yaml', {
filters: filters,
filters,
resolve: true
});

Expand Down

0 comments on commit 391e0cc

Please sign in to comment.