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: swagger-api/swagger-ui
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 77f4651cbf5b3767f0d79c91fd337de82b6ddee6
Choose a base ref
...
head repository: swagger-api/swagger-ui
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7e5974c14f95559642ebad5c4dd397a9d54b3602
Choose a head ref

Commits on Sep 24, 2019

  1. Delete CONTRIBUTING.md (#5619)

    Switching to the general Swagger CONTRIBUTING.md file.
    webron authored Sep 24, 2019
    Copy the full SHA
    89dbf0a View commit details

Commits on Sep 27, 2019

  1. fix: parameterMacro functionality for OAS3 (via #5617)

    * #5282 - Correct parameterMacro for OAS3
    
    * Update parameter-row.jsx
    mtraynham authored and shockey committed Sep 27, 2019
    Copy the full SHA
    dd6cdf1 View commit details
  2. housekeeping: change git clone URL (#5612)

    When `git clone` -ing from github, `https` URLs are (as far as I know) functionally equivalent yet less error prone.
    fergiemcdowall authored and shockey committed Sep 27, 2019
    Copy the full SHA
    81cc06f View commit details

Commits on Sep 28, 2019

  1. Copy the full SHA
    0df4714 View commit details
  2. Copy the full SHA
    7d28e69 View commit details
  3. Copy the full SHA
    bfc2bd5 View commit details
  4. Copy the full SHA
    18c849b View commit details
  5. Copy the full SHA
    60933f3 View commit details
  6. Copy the full SHA
    411515c View commit details
  7. Copy the full SHA
    2976373 View commit details
  8. Copy the full SHA
    4d50583 View commit details

Commits on Oct 1, 2019

  1. Copy the full SHA
    93f7a82 View commit details

Commits on Oct 2, 2019

  1. Copy the full SHA
    fa351aa View commit details

Commits on Oct 3, 2019

  1. Copy the full SHA
    8cabcff View commit details

Commits on Oct 8, 2019

  1. feat: add PKCE support for OAuth2 Authorization Code flows (#5361)

    * Add PKCE support.
    
    * Fix tests
    
    * Update oauth2.md
    
    * Rename usePkce
    
    * Fix the BrokenComponent error
    
    * Update oauth2.md
    
    * Remove isCode variable. Remove uuid4 dependency.
    
    * Remove utils functions
    
    * Import crypto
    
    * Fix tests
    
    * Fix the tests
    
    * Cleanup
    
    * Fix code_challenge generation
    
    * Move code challenge and verifier to utils for mocks. Update tests.
    
    * Mock the PKCE methods in the utils file properly.
    
    * Add missing expect
    
    * use target-method spies
    
    * Add comments to explain test values.
    
    * Get rid of jsrsasign.
    poveilleux authored and shockey committed Oct 8, 2019
    Copy the full SHA
    139592e View commit details

Commits on Oct 9, 2019

  1. improvement: add <title> tag to oauth2-redirect.html (#5644)

    * Update oauth2-redirect.html
    
    Add <title> tag to page
    
    * Update oauth2-redirect.html
    oscarlofwenhamn authored and shockey committed Oct 9, 2019
    Copy the full SHA
    9253c0b View commit details
  2. housekeeping: add homepage URL to package.json (#5652)

    can be useful for folks looking at the file after they've downloaded it.
    coliff authored and shockey committed Oct 9, 2019
    Copy the full SHA
    7317fff View commit details
  3. Copy the full SHA
    71a17f8 View commit details

Commits on Oct 11, 2019

  1. fix(validateParam): validate JSON parameter values + support `Paramet…

    …er.content` (#5657)
    
    * improve(getParameterSchema): ParameterSchemaDescriptor pattern
    
    * chore: update usage of `getParameterSchema`
    
    * consider `Parameter.content` media type when validating JSON values
    shockey authored Oct 11, 2019
    Copy the full SHA
    75a0e5d View commit details

Commits on Oct 12, 2019

  1. Copy the full SHA
    25025cb View commit details
  2. release: v3.24.0

    swaggerhub-bot committed Oct 12, 2019
    Copy the full SHA
    7e5974c View commit details
58 changes: 0 additions & 58 deletions CONTRIBUTING.md

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -60,7 +60,7 @@ Swagger UI Version | Release Date | OpenAPI Spec compatibility | Notes
##### Integration Tests

You will need JDK of version 7 or higher as instructed here
http://nightwatchjs.org/gettingstarted#selenium-server-setup
https://nightwatchjs.org/gettingstarted/#selenium-server-setup

Integration tests can be run locally with `npm run e2e` - be sure you aren't running a dev server when testing!

@@ -87,7 +87,7 @@ Copyright 2019 SmartBear Software

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at [apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
You may obtain a copy of the License at [apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0)

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
3 changes: 2 additions & 1 deletion dev-helpers/index.html
Original file line number Diff line number Diff line change
@@ -62,7 +62,8 @@
realm: "your-realms",
appName: "your-app-name",
scopeSeparator: " ",
additionalQueryStringParams: {}
additionalQueryStringParams: {},
usePkceWithAuthorizationCodeGrant: false
})
}
</script>
1 change: 1 addition & 0 deletions dist/oauth2-redirect.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<!doctype html>
<html lang="en-US">
<title>Swagger UI: OAuth2 Redirect</title>
<body onload="run()">
</body>
</html>
Loading