Skip to content

Commit

Permalink
v0.99.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sv2 committed Jul 2, 2021
1 parent 0138153 commit e691347
Show file tree
Hide file tree
Showing 14 changed files with 3,100 additions and 2,386 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog
All notable changes to this project will be documented in this file.

## v0.99.2

* [bug] API Responses page in built-in Telemetry UI is not responding with ~1000 endpoints [#139](https://github.com/slanatech/swagger-stats/issues/139)


## v0.99.1

In this major release, swagger-stats fully switches to new UX. More UX settings added, such as multiple color themes for dashboards.
Expand Down
2 changes: 1 addition & 1 deletion examples/authtest/authtest.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ var swaggerSpec = require( specLocation );
// Use swagger-stats middleware with authentication enabled
app.use(swStats.getMiddleware({
name: 'swagger-stats-authtest',
version: '0.95.19',
version: '0.99.2',
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 @@ -47,7 +47,7 @@ fastify.route({

let swsOptions = {
name: 'swagger-stats-fastify',
version: '0.95.19',
version: '0.99.2',
timelineBucketDuration: 1000,
swaggerSpec:swaggerSpec,
authentication: true,
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.19',
version: '0.99.2',
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.19',
version: '0.99.2',
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 @@ -76,7 +76,7 @@ parser.validate(specLocation,function(err, api) {

var swsOptions = {
name: 'swagger-stats-spectest',
version: '0.95.19',
version: '0.99.2',
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 @@ -53,7 +53,7 @@ parser.validate(swaggerSpec,function(err, api) {
// Enable swagger-stats middleware
app.use(swStats.getMiddleware({
name: 'swagger-stats-testapp',
version: '0.95.19',
version: '0.99.2',
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.99.1
version: 0.99.2
title: swagger-stats API
description: |
### Telemetry for your APIs
Expand Down
Loading

0 comments on commit e691347

Please sign in to comment.