Skip to content

Commit 56ecee4

Browse files
committed
v0.99.4
1 parent 163ad1b commit 56ecee4

File tree

10 files changed

+21
-16
lines changed

10 files changed

+21
-16
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## v0.99.4
5+
6+
* [bug] api_index_template.json is missing in the last patch [#238](https://github.com/slanatech/swagger-stats/issues/238)
7+
8+
49
## v0.99.3
510

611
* Update dependencies to the most recent versions

examples/authtest/authtest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ var swaggerSpec = require( specLocation );
5959
// Use swagger-stats middleware with authentication enabled
6060
app.use(swStats.getMiddleware({
6161
name: 'swagger-stats-authtest',
62-
version: '0.99.3',
62+
version: '0.99.4',
6363
hostname: "hostname",
6464
ip: "127.0.0.1",
6565
swaggerSpec:swaggerSpec,

examples/fastify/fasifytest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ fastify.route({
4747

4848
let swsOptions = {
4949
name: 'swagger-stats-fastify',
50-
version: '0.99.3',
50+
version: '0.99.4',
5151
timelineBucketDuration: 1000,
5252
swaggerSpec:swaggerSpec,
5353
authentication: true,

examples/hapijstest/hapijstest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const init = async () => {
6767

6868
let swsOptions = {
6969
name: 'swagger-stats-hapitest',
70-
version: '0.99.3',
70+
version: '0.99.4',
7171
hostname: "hostname",
7272
ip: "127.0.0.1",
7373
uriPath: '/swagger-stats',

examples/restify/restifytest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ server.use(restify.plugins.queryParser());
1515
// Use swagger-stats middleware
1616
server.pre(swStats.getMiddleware({
1717
name: 'restifytest',
18-
version: '0.99.3',
18+
version: '0.99.4',
1919
hostname: "hostname",
2020
ip: "127.0.0.1",
2121
timelineBucketDuration:1000,

examples/spectest/spectest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ parser.validate(specLocation,function(err, api) {
7676

7777
var swsOptions = {
7878
name: 'swagger-stats-spectest',
79-
version: '0.99.3',
79+
version: '0.99.4',
8080
hostname: "hostname",
8181
ip: "127.0.0.1",
8282
timelineBucketDuration: tlBucket,

examples/testapp/testapp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ parser.validate(swaggerSpec,function(err, api) {
5353
// Enable swagger-stats middleware
5454
app.use(swStats.getMiddleware({
5555
name: 'swagger-stats-testapp',
56-
version: '0.99.3',
56+
version: '0.99.4',
5757
timelineBucketDuration: tlBucket,
5858
uriPath: '/swagger-stats',
5959
swaggerSpec:swaggerSpec,

lib/sws-api-swagger.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
swagger: '2.0'
22
info:
3-
version: 0.99.3
3+
version: 0.99.4
44
title: swagger-stats API
55
description: |
66
### Telemetry for your APIs

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "swagger-stats",
3-
"version": "0.99.3",
3+
"version": "0.99.4",
44
"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",
55
"main": "lib/index.js",
66
"scripts": {
@@ -70,12 +70,12 @@
7070
"grafana"
7171
],
7272
"files": [
73-
"dashboards/*",
74-
"examples/*",
75-
"lib/*",
76-
"schema/*",
77-
"scripts/*",
78-
"ux/*",
73+
"dashboards/**/*",
74+
"examples/**/*",
75+
"lib/**/*",
76+
"schema/**/*",
77+
"scripts/**/*",
78+
"ux/**/*",
7979
"package.json",
8080
"README.md",
8181
"CHANGELOG.md",

0 commit comments

Comments
 (0)