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: unjs-archive/is-https
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.0.0
Choose a base ref
...
head repository: unjs-archive/is-https
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.0.1
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on May 31, 2020

  1. chore : fix typoes in docs

    pooya parsa committed May 31, 2020
    Copy the full SHA
    e0f0685 View commit details
  2. chore(release): 2.0.1

    pooya parsa committed May 31, 2020
    Copy the full SHA
    4e30aa9 View commit details
Showing with 6 additions and 4 deletions.
  1. +2 −0 CHANGELOG.md
  2. +3 −3 README.md
  3. +1 −1 package.json
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,8 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [2.0.1](https://github.com/nuxt-contrib/is-https/compare/v2.0.0...v2.0.1) (2020-05-31)

## 2.0.0 (2020-05-31)


6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -26,15 +26,15 @@ function isHTTPS(req: IncomingMessage, trustProxy: Boolean = true): Boolean | un

## Behaviour

This function tries to use 2 different methods for HTTPS detection:
`isHTTPS` function tries to use 2 different methods for HTTPS detection:

- Test if `x-forwarded-proto` header contains `https`
- Can be disabled by setting `truestProxy` argument to `false`
- Can be disabled by setting `trustProxy` argument to `false`
- Test if `req.connection.encrypted` is `true`

Returns either `true` or `false` based on checks or `undefined` if no check was reliable.

**TIP** If you want to redirect users from `http` to `https`, it is better using `isHttps(req) === false` to avoid redirect loops.
**TIP:** If you want to redirect users from `http` to `https`, it is better using `isHttps(req) === false` to avoid redirect loops.

## Related

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "is-https",
"version": "2.0.0",
"version": "2.0.1",
"description": "Check if the given request is HTTPS",
"repository": "nuxt-contrib/is-https",
"license": "MIT",