Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: feathersjs-ecosystem/feathers-swagger
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.2.1
Choose a base ref
...
head repository: feathersjs-ecosystem/feathers-swagger
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.2.2
Choose a head ref
  • 6 commits
  • 5 files changed
  • 3 contributors

Commits on Apr 17, 2020

  1. Updating changelog

    Mairu committed Apr 17, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    cf07fc3 View commit details

Commits on Aug 17, 2020

  1. fix: package.json & package-lock.json to reduce vulnerabilities (#215)

    The following vulnerabilities are fixed with an upgrade:
    - https://snyk.io/vuln/SNYK-JS-LODASH-590103
    snyk-bot authored Aug 17, 2020
    Copy the full SHA
    179fa50 View commit details

Commits on Feb 20, 2021

  1. Copy the full SHA
    76e5496 View commit details

Commits on Feb 24, 2021

  1. Copy the full SHA
    6dff498 View commit details

Commits on May 11, 2022

  1. Copy the full SHA
    7c60dc2 View commit details
  2. 1.2.2

    Mairu committed May 11, 2022
    Copy the full SHA
    fb46da6 View commit details
Showing with 2,423 additions and 928 deletions.
  1. +4 −0 .github_changelog_generator
  2. +8 −0 CHANGELOG.md
  3. +1 −0 README.md
  4. +2,392 −911 package-lock.json
  5. +18 −17 package.json
4 changes: 4 additions & 0 deletions .github_changelog_generator
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
user=feathersjs-ecosystem
project=feathers-swagger
future-release=v2.0.0
release-branch=master
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [v1.2.1](https://github.com/feathersjs-ecosystem/feathers-swagger/tree/v1.2.1) (2020-04-17)

[Full Changelog](https://github.com/feathersjs-ecosystem/feathers-swagger/compare/v1.2.0...v1.2.1)

**Merged pull requests:**

- \[Snyk\] Upgrade lodash from 4.17.11 to 4.17.15 [\#198](https://github.com/feathersjs-ecosystem/feathers-swagger/pull/198) ([snyk-bot](https://github.com/snyk-bot))

## [v1.2.0](https://github.com/feathersjs-ecosystem/feathers-swagger/tree/v1.2.0) (2020-04-13)

[Full Changelog](https://github.com/feathersjs-ecosystem/feathers-swagger/compare/v1.1.1...v1.2.0)
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -39,6 +39,7 @@ app.configure(swagger({
description: 'A description',
version: '1.0.0',
},
schemes: ['http', 'https'] // Optionally set the protocol schema used (sometimes required when host on https)
}
}));
// now you can register feathers services
Loading