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: netlify/netlify-identity-widget
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.6.0
Choose a base ref
...
head repository: netlify/netlify-identity-widget
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.7.0
Choose a head ref

Commits on May 26, 2020

  1. Copy the full SHA
    bf1b9f1 View commit details

Commits on May 28, 2020

  1. Merge pull request #239 from netlify/github-tools-add-fossa

    github tools: add fossa license scanning
    erezrokah authored May 28, 2020
    Copy the full SHA
    fa3ce69 View commit details

Commits on Jun 4, 2020

  1. chore: add renovate.json

    erezrokah committed Jun 4, 2020
    Copy the full SHA
    f03e2d5 View commit details

Commits on Jun 5, 2020

  1. Merge pull request #241 from netlify/chore/add_renovate_config

    chore: add renovate.json
    erezrokah authored Jun 5, 2020
    Copy the full SHA
    a3f2778 View commit details

Commits on Jun 7, 2020

  1. Copy the full SHA
    dc803d5 View commit details
  2. chore(deps): lock file maintenance (#246)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Jun 7, 2020
    Copy the full SHA
    3c19b8e View commit details

Commits on Jun 8, 2020

  1. Copy the full SHA
    d0eca89 View commit details
  2. chore(deps): update dependency auto-changelog to v2 (#251)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Jun 8, 2020
    Copy the full SHA
    2a39d89 View commit details
  3. chore(deps): update dependency cross-env to v7 (#252)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Jun 8, 2020
    Copy the full SHA
    025ad08 View commit details
  4. chore(deps): lock file maintenance (#260)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Jun 8, 2020
    Copy the full SHA
    049ebb6 View commit details
  5. chore(deps): update dependency file-loader to v6 (#257)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Jun 8, 2020
    Copy the full SHA
    4c0bcfb View commit details
  6. chore(deps): update dependency css-loader to v3 (#253)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Jun 8, 2020
    Copy the full SHA
    e65270b View commit details
  7. Copy the full SHA
    ff8b21f View commit details
  8. Copy the full SHA
    c2aef60 View commit details
  9. Copy the full SHA
    44728bd View commit details

Commits on Jun 15, 2020

  1. chore(deps): lock file maintenance (#267)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Jun 15, 2020
    Copy the full SHA
    fb67ca8 View commit details

Commits on Jun 22, 2020

  1. chore(deps): lock file maintenance (#273)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Jun 22, 2020
    Copy the full SHA
    93441ec View commit details
  2. chore(deps): update dependency mkdirp to v1 (#272)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Jun 22, 2020
    Copy the full SHA
    cd99004 View commit details

Commits on Jun 29, 2020

  1. Copy the full SHA
    e18b76e View commit details
  2. chore(deps): lock file maintenance (#281)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Jun 29, 2020
    Copy the full SHA
    e6fb568 View commit details

Commits on Jun 30, 2020

  1. Copy the full SHA
    3a21783 View commit details
  2. Copy the full SHA
    34ac020 View commit details
  3. 1.7.0

    erezrokah committed Jun 30, 2020
    Copy the full SHA
    8dca227 View commit details
20 changes: 12 additions & 8 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
{
"sourceMaps": true,
"presets": [
["env", {
"targets": {
"browsers": ["ie >= 11"]
[
"@babel/env",
{
"targets": {
"browsers": ["ie >= 11"]
}
}
}],
"stage-0"
]
],
"plugins": [
["transform-decorators-legacy"],
["transform-react-jsx", { "pragma": "h" }],
["transform-object-rest-spread", { "useBuiltIns": true }]
["@babel/plugin-proposal-decorators", { "legacy": true }],
["@babel/plugin-proposal-class-properties", { "loose": true }],
["@babel/plugin-proposal-object-rest-spread", { "useBuiltIns": true }],
["@babel/plugin-transform-react-jsx", { "pragma": "h" }],
["@babel/plugin-transform-modules-commonjs"]
]
}
4 changes: 2 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"parser": "babel-eslint",
"extends": "eslint:recommended",
"plugins": ["react", "prettier"],
"env": {
"browser": true,
"node": true,
"es6": true
"es6": true,
"jest": true
},
"settings": {
"react": {
31 changes: 31 additions & 0 deletions .github/workflows/fossa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Dependency License Scanning

on:
push:
branches:
- master

defaults:
run:
shell: bash

jobs:
fossa:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Fossa init
run: |-
curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | bash
fossa init
- name: Set env
run: echo ::set-env name=line_number::$(grep -n "project" .fossa.yml | cut -f1 -d:)
- name: Configuration
run: |-
sed -i "${line_number}s|.*| project: git@github.com:${GITHUB_REPOSITORY}.git|" .fossa.yml
cat .fossa.yml
- name: Upload dependencies
run: fossa analyze --debug
env:
FOSSA_API_KEY: ${{ secrets.FOSSA_API_KEY }}
Loading