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: decentralized-identity/web-did-resolver
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.0.19
Choose a base ref
...
head repository: decentralized-identity/web-did-resolver
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2.0.20
Choose a head ref
  • 5 commits
  • 6 files changed
  • 3 contributors

Commits on Jun 17, 2022

  1. Verified

    This commit was signed with the committer’s verified signature.
    Lord-Kamina Gregorio Litenstein
    Copy the full SHA
    c471e60 View commit details

Commits on Jul 4, 2022

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    e86489e View commit details

Commits on Aug 1, 2022

  1. Copy the full SHA
    1db0075 View commit details

Commits on Aug 2, 2022

  1. Copy the full SHA
    74b825f View commit details

Commits on Aug 3, 2022

  1. chore(release): 2.0.20 [skip ci]

    ## [2.0.20](2.0.19...2.0.20) (2022-08-03)
    
    ### Bug Fixes
    
    * **deps:** Update dependency did-resolver to v4 ([74b825f](74b825f))
    semantic-release-bot committed Aug 3, 2022
    Copy the full SHA
    2e1e7db View commit details
Showing with 1,397 additions and 527 deletions.
  1. +1 −1 .github/workflows/test.yml
  2. +7 −0 CHANGELOG.md
  3. +3 −3 example/react-app/package-lock.json
  4. +1 −1 example/react-app/package.json
  5. +16 −16 package.json
  6. +1,369 −506 yarn.lock
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -20,6 +20,6 @@ jobs:
- run: yarn run test:ci

- name: "Upload coverage reports"
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [2.0.20](https://github.com/decentralized-identity/web-did-resolver/compare/2.0.19...2.0.20) (2022-08-03)


### Bug Fixes

* **deps:** Update dependency did-resolver to v4 ([74b825f](https://github.com/decentralized-identity/web-did-resolver/commit/74b825fb88daa17f0f4c195725d38757be9ea5d9))

## [2.0.19](https://github.com/decentralized-identity/web-did-resolver/compare/2.0.18...2.0.19) (2022-06-15)


6 changes: 3 additions & 3 deletions example/react-app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion example/react-app/package.json
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"did-resolver": "3.2.2",
"did-resolver": "4.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-scripts": "5.0.1",
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web-did-resolver",
"version": "2.0.19",
"version": "2.0.20",
"description": "Resolve DID documents from an https domain",
"type": "module",
"source": "src/resolver.ts",
@@ -31,7 +31,7 @@
},
"dependencies": {
"cross-fetch": "^3.1.5",
"did-resolver": "^3.2.2"
"did-resolver": "^4.0.0"
},
"scripts": {
"test": "jest",
@@ -56,24 +56,24 @@
]
},
"devDependencies": {
"@babel/core": "7.18.2",
"@babel/preset-env": "7.17.12",
"@babel/preset-typescript": "7.17.12",
"@babel/core": "7.18.9",
"@babel/preset-env": "7.18.9",
"@babel/preset-typescript": "7.18.6",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@types/jest": "28.1.1",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.27.1",
"babel-jest": "28.1.1",
"eslint": "8.17.0",
"@types/jest": "28.1.6",
"@typescript-eslint/eslint-plugin": "5.31.0",
"@typescript-eslint/parser": "5.31.0",
"babel-jest": "28.1.3",
"eslint": "8.20.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "26.5.3",
"eslint-plugin-prettier": "4.0.0",
"jest": "28.1.1",
"eslint-plugin-jest": "26.7.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "28.1.3",
"microbundle": "0.15.0",
"prettier": "2.6.2",
"prettier": "2.7.1",
"regenerator-runtime": "0.13.9",
"semantic-release": "19.0.2",
"typescript": "4.7.3"
"semantic-release": "19.0.3",
"typescript": "4.7.4"
}
}
Loading