Skip to content

Commit

Permalink
Prep v0.95.19
Browse files Browse the repository at this point in the history
  • Loading branch information
sv2 committed Mar 22, 2021
1 parent a9c0c7d commit b4ad499
Show file tree
Hide file tree
Showing 12 changed files with 21,494 additions and 156 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog
All notable changes to this project will be documented in this file.

## v0.95.19

* [bug] Elasticsearch - Crash when elasticsearch's credentials are given [#121](https://github.com/slanatech/swagger-stats/issues/121)
* [bug] Define prom-client as Peer Dependency instead of Direct Dependency [#126](https://github.com/slanatech/swagger-stats/issues/126)
* [feature] https elasticsearch support [#130](https://github.com/slanatech/swagger-stats/issues/130)


## v0.95.18

* [bug] body response show duplicate data [#118](https://github.com/slanatech/swagger-stats/issues/118)
Expand Down
2 changes: 1 addition & 1 deletion dist/js/sws.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/authtest/authtest.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ var swaggerSpec = require( specLocation );
// Use swagger-stats middleware with authentication enabled
app.use(swStats.getMiddleware({
name: 'swagger-stats-authtest',
version: '0.95.18',
version: '0.95.19',
hostname: "hostname",
ip: "127.0.0.1",
swaggerSpec:swaggerSpec,
Expand Down
2 changes: 1 addition & 1 deletion examples/fastify/fasifytest.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ fastify.route({

let swsOptions = {
name: 'swagger-stats-fastify',
version: '0.95.18',
version: '0.95.19',
timelineBucketDuration: 1000,
swaggerSpec:swaggerSpec,
elasticsearch: 'http://127.0.0.1:9200',
Expand Down
2 changes: 1 addition & 1 deletion examples/hapijstest/hapijstest.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const init = async () => {

let swsOptions = {
name: 'swagger-stats-hapitest',
version: '0.95.18',
version: '0.95.19',
hostname: "hostname",
ip: "127.0.0.1",
uriPath: '/swagger-stats',
Expand Down
2 changes: 1 addition & 1 deletion examples/restify/restifytest.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ server.use(restify.plugins.queryParser());
// Use swagger-stats middleware
server.pre(swStats.getMiddleware({
name: 'restifytest',
version: '0.95.18',
version: '0.95.19',
hostname: "hostname",
ip: "127.0.0.1",
timelineBucketDuration:1000,
Expand Down
2 changes: 1 addition & 1 deletion examples/spectest/spectest.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ parser.validate(specLocation,function(err, api) {

var swsOptions = {
name: 'swagger-stats-spectest',
version: '0.95.18',
version: '0.95.19',
hostname: "hostname",
ip: "127.0.0.1",
timelineBucketDuration: tlBucket,
Expand Down
2 changes: 1 addition & 1 deletion examples/testapp/testapp.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ parser.validate(swaggerSpec,function(err, api) {
// Enable swagger-stats middleware
app.use(swStats.getMiddleware({
name: 'swagger-stats-testapp',
version: '0.95.18',
version: '0.95.19',
timelineBucketDuration: tlBucket,
uriPath: '/swagger-stats',
swaggerSpec:swaggerSpec,
Expand Down
2 changes: 1 addition & 1 deletion lib/sws-api-swagger.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
swagger: '2.0'
info:
version: 0.95.18
version: 0.95.19
title: swagger-stats API
description: |
### Telemetry for your APIs
Expand Down
Loading

0 comments on commit b4ad499

Please sign in to comment.