Skip to content

Commit

Permalink
Prep 0.99.7
Browse files Browse the repository at this point in the history
  • Loading branch information
sv2 committed Jun 16, 2023
1 parent 0983a0a commit 6370130
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 8 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.7

* [bug] Remove DEBUG env override [#245](https://github.com/slanatech/swagger-stats/issues/271)


## v0.99.6

Dependencies updated
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.6',
version: '0.99.7',
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.6',
version: '0.99.7',
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.6',
version: '0.99.7',
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.6',
version: '0.99.7',
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.6',
version: '0.99.7',
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.6',
version: '0.99.7',
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.6
version: 0.99.7
title: swagger-stats API
description: |
### Telemetry for your APIs
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "swagger-stats",
"version": "0.99.6",
"version": "0.99.7",
"description": "API Telemetry and APM. Trace API calls and Monitor API performance, health and usage statistics in Node.js Microservices, based on express routes and Swagger (Open API) specification",
"main": "lib/index.js",
"scripts": {
Expand Down

0 comments on commit 6370130

Please sign in to comment.