Skip to content

Commit

Permalink
prep v0.99.6
Browse files Browse the repository at this point in the history
  • Loading branch information
sv2 committed May 31, 2023
1 parent badec18 commit 6172726
Show file tree
Hide file tree
Showing 10 changed files with 295 additions and 247 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.99.6

Dependencies updated

* [bug] Unit tests failing [#245](https://github.com/slanatech/swagger-stats/issues/245)


## v0.99.5

Dependency on deprecated `request` has been removed, `axios` is used instead
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.99.5',
version: '0.99.6',
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.99.5',
version: '0.99.6',
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.99.5',
version: '0.99.6',
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.99.5',
version: '0.99.6',
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.99.5',
version: '0.99.6',
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.99.5',
version: '0.99.6',
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.5
version: 0.99.6
title: swagger-stats API
description: |
### Telemetry for your APIs
Expand Down
Loading

0 comments on commit 6172726

Please sign in to comment.