-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
breaking: migrates to @ssasy-auth/[email protected] (v1.0.0)
- [breaking] renames challenge response variables and functions in bridge - updates references in `WalletStore` to reflect new core version - improves logging and error description - adds `changelog` to extension bridge library
- Loading branch information
1 parent
ae73180
commit 2d1e6dd
Showing
22 changed files
with
526 additions
and
346 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Changelog | ||
|
||
> Only notable changes are documented here. You can find the changelog for the `@ssasy-auth/extension` package at [src/bridge/docs/CHANGELOG.md](../src/bridge/docs/changelog.md). | ||
## `1.0.0` | ||
|
||
- updates `@ssasy-auth/core` to `2.2.3` which enables SSASy URIs | ||
|
||
## `0.23.10` | ||
|
||
- renames `REQUEST_SOLUTION` message type (in [types.ts](../src/bridge/src/types.ts)) to `REQUEST_CHALLENGE_RESPONSE` to better reflect the purpose of the message. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
{ | ||
"name": "@ssasy-auth/extension", | ||
"nickname": "ssasy", | ||
"version": "0.23.9", | ||
"version": "1.0.0", | ||
"license": "MIT", | ||
"description": "A browser extension that offers a secure and usable alternative to passwords and federated identity providers.", | ||
"repository": "this-oliver/ssasy-ext", | ||
"author": "[email protected]", | ||
"scripts": { | ||
"bridge:build": "tsc -p src/bridge/tsconfig.json", | ||
"bridge:pack": "esno scripts/prepare-bridge.ts", | ||
"bridge:prepare": "run-s test bridge:build bridge:pack", | ||
"bridge:release": "pnpm bridge:prepare && cd src/bridge && npm publish --access public && cd ../../ && pnpm bridge:clear", | ||
"bridge:preview": "pnpm bridge:prepare && cd src/bridge && npm pack && cd ../../ && pnpm bridge:clear", | ||
"bridge:clear": "rimraf src/bridge/package.json src/bridge/*-lock.* src/bridge/lib src/bridge/node_modules", | ||
"bridge:prepare": "esno scripts/prepare-bridge.ts", | ||
"bridge:pack": "run-s test bridge:clear bridge:prepare bridge:build", | ||
"bridge:release": "pnpm bridge:pack && cd src/bridge && npm publish --access public && cd ../../ && pnpm bridge:clear", | ||
"bridge:preview": "pnpm bridge:pack && cd src/bridge && npm pack && cd ../../ && pnpm bridge:clear", | ||
"bridge:clear": "rimraf src/bridge/lib src/bridge/node_modules src/bridge/package.json src/bridge/*-lock.*", | ||
"build": "cross-env NODE_ENV=production run-s clear test build:web build:prepare build:js", | ||
"build:mv3": "cross-env NODE_ENV=production MANIFEST_VERSION=3 run-s clear test build:web build:prepare build:js build:bg", | ||
"build:prepare": "esno scripts/prepare.ts", | ||
|
@@ -43,7 +43,7 @@ | |
}, | ||
"dependencies": { | ||
"@mdi/js": "^7.2.96", | ||
"@ssasy-auth/core": "1.9.1", | ||
"@ssasy-auth/core": "^3.0.0", | ||
"pinia": "^2.0.33", | ||
"vue": "^3.2.47", | ||
"vue-router": "4", | ||
|
@@ -97,4 +97,4 @@ | |
"*.ts": "eslint --fix" | ||
}, | ||
"packageManager": "[email protected]" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Changelog | ||
|
||
> Only notable changes are documented here. | ||
## `0.23.10` | ||
|
||
- [breaking] renames `requestSolution()` to `requestChallengeResponse()` to better reflect the purpose of the method. | ||
|
||
### migrating from `0.23.9` to `0.23.10` | ||
|
||
- replace all instances of `Bridge.requestSolution()` with `Bridge.requestChallengeResponse()` |
Oops, something went wrong.