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: diegopamio/json-similarity-score
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.11.1
Choose a base ref
...
head repository: diegopamio/json-similarity-score
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 4 commits
  • 7 files changed
  • 2 contributors

Commits on Nov 14, 2020

  1. Copy the full SHA
    771a6d5 View commit details
  2. Merge remote-tracking branch 'origin/master'

    * origin/master:
      chore(release): 1.11.1 [skip ci]
    diegopamio committed Nov 14, 2020
    1
    Copy the full SHA
    6bb9551 View commit details

Commits on Nov 15, 2020

  1. 1
    Copy the full SHA
    46a732e View commit details
  2. chore(release): 1.11.2 [skip ci]

    ## [1.11.2](v1.11.1...v1.11.2) (2020-11-15)
    
    ### Bug Fixes
    
    * add margin at the bottom so fabs doesn't overlap with page content ([46a732e](46a732e))
    semantic-release-bot committed Nov 15, 2020
    Copy the full SHA
    599e429 View commit details
Showing with 795 additions and 159 deletions.
  1. +1 −0 .env.example
  2. +1 −0 .github/workflows/pull-request-tests.yml
  3. +1 −0 .github/workflows/release.yml
  4. +7 −0 CHANGELOG.md
  5. +767 −158 package-lock.json
  6. +1 −1 package.json
  7. +17 −0 pages/_app.js
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -9,3 +9,4 @@ NEXT_PUBLIC_FULLSTORY_ORG_ID=
NEXT_PUBLIC_HEAP_ID=
NEXT_PUBLIC_CRISP_WEBSITE_ID=
NEXT_PUBLIC_BUY_ME_A_COFFEE_ID=
NEXT_PUBLIC_GTM_ID=
1 change: 1 addition & 0 deletions .github/workflows/pull-request-tests.yml
Original file line number Diff line number Diff line change
@@ -30,6 +30,7 @@ jobs:
NEXT_PUBLIC_HEAP_ID: ${{ secrets.NEXT_PUBLIC_HEAP_ID }}
NEXT_PUBLIC_CRISP_WEBSITE_ID: ${{ secrets.NEXT_PUBLIC_CRISP_WEBSITE_ID }}
NEXT_PUBLIC_BUY_ME_A_COFFEE_ID: ${{ secrets.NEXT_PUBLIC_BUY_ME_A_COFFEE_ID }}
NEXT_PUBLIC_GTM_ID: ${{ secrets.NEXT_PUBLIC_GTM_ID }}
with:
browser: chrome
headless: true
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -33,6 +33,7 @@ jobs:
NEXT_PUBLIC_HEAP_ID: ${{ secrets.NEXT_PUBLIC_HEAP_ID }}
NEXT_PUBLIC_CRISP_WEBSITE_ID: ${{ secrets.NEXT_PUBLIC_CRISP_WEBSITE_ID }}
NEXT_PUBLIC_BUY_ME_A_COFFEE_ID: ${{ secrets.NEXT_PUBLIC_BUY_ME_A_COFFEE_ID }}
NEXT_PUBLIC_GTM_ID: ${{ secrets.NEXT_PUBLIC_GTM_ID }}
with:
browser: chrome
headless: true
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.11.2](https://github.com/diegopamio/json-similarity-score/compare/v1.11.1...v1.11.2) (2020-11-15)


### Bug Fixes

* add margin at the bottom so fabs doesn't overlap with page content ([46a732e](https://github.com/diegopamio/json-similarity-score/commit/46a732e89fc53a0f24d15383796a587d79421bb5))

## [1.11.1](https://github.com/diegopamio/json-similarity-score/compare/v1.11.0...v1.11.1) (2020-11-14)


Loading