Skip to content

Commit

Permalink
version bump (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
skgbafa authored Dec 13, 2022
1 parent 72251a9 commit bce5efc
Show file tree
Hide file tree
Showing 14 changed files with 66 additions and 27 deletions.
6 changes: 0 additions & 6 deletions .changeset/bright-clocks-design.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/shaggy-camels-sit.md

This file was deleted.

9 changes: 8 additions & 1 deletion packages/ssx-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @spruceid/ssx-core

## 1.0.1

### Patch Changes

- b25cbde: Updated `SSXServerRoutes` type to `SSXServerRouteNames` to reflect usage in ssx-server
- b25cbde: Update the `SSXServerRoutes` type to accept a route configuration compatible with [Axios Request Config](SSXServerRoutes) to allow for more complex server configurations.

## 1.0.0

Initial Release
Expand All @@ -19,4 +26,4 @@ Initial Release

- 83c314c: Enable custom paths for endpoints on client and server.
- Creates and exports `SSXServerRoutes` interface
- Adds `routes?: SSXServerRoutes` to `SSXClientConfig.providers.server`.
- Adds `routes?: SSXServerRoutes` to `SSXClientConfig.providers.server`.
2 changes: 1 addition & 1 deletion packages/ssx-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@spruceid/ssx-core",
"version": "1.0.0",
"version": "1.0.1",
"description": "SSX core library",
"author": "Spruce Systems Inc.",
"license": "Apache-2.0 OR MIT",
Expand Down
8 changes: 8 additions & 0 deletions packages/ssx-gnosis-extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
# @spruceid/ssx-gnosis-extension

## 1.1.1

### Patch Changes

- Updated dependencies [b25cbde]
- @spruceid/ssx-core@1.0.1

## 1.1.0

### Minor Changes

- c989838: Refactor code to avoid duplication and improve performance.

- Adds `@spruceid/ssx-core` as a dependency;
- Adds types from `ssx-core` to all SSX related variables;
- Optimizes `try/catch` blocks.
Expand Down
4 changes: 2 additions & 2 deletions packages/ssx-gnosis-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@spruceid/ssx-gnosis-extension",
"version": "1.1.0",
"version": "1.1.1",
"description": "A SSX extension that enables Gnosis Safe",
"main": "dist/index.js",
"repository": {
Expand All @@ -17,7 +17,7 @@
"test": "jest"
},
"dependencies": {
"@spruceid/ssx-core": "1.0.0"
"@spruceid/ssx-core": "1.0.1"
},
"peerDependencies": {
"siwe": "^2.1.2",
Expand Down
8 changes: 8 additions & 0 deletions packages/ssx-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @spruceid/ssx-react

## 1.1.1

### Patch Changes

- Updated dependencies [b25cbde]
- @spruceid/ssx@1.1.1

## 1.1.0

### Minor Changes
Expand All @@ -9,6 +16,7 @@
### Patch Changes

- c989838: Refactor code to avoid duplication and improve performance.

- Updates `ssxConfig?: SSXConfig;` on `SSXProviderProps` to `ssxConfig?: SSXClientConfig;` (non breaking change).

- Updated dependencies [c989838]
Expand Down
4 changes: 2 additions & 2 deletions packages/ssx-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@spruceid/ssx-react",
"version": "1.1.0",
"version": "1.1.1",
"description": "SSX React Hooks",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -16,7 +16,7 @@
"build": "tsc --jsx react-jsx"
},
"dependencies": {
"@spruceid/ssx": "1.1.0",
"@spruceid/ssx": "1.1.1",
"react": "^18.2.0"
},
"peerDependencies": {
Expand Down
9 changes: 9 additions & 0 deletions packages/ssx-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @spruceid/ssx

## 1.1.1

### Patch Changes

- b25cbde: Update the `SSXServerRoutes` type to accept a route configuration compatible with [Axios Request Config](SSXServerRoutes) to allow for more complex server configurations.
- Updated dependencies [b25cbde]
- @spruceid/ssx-core@1.0.1
- @spruceid/ssx-gnosis-extension@1.1.1

## 1.1.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/ssx-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@spruceid/ssx",
"version": "1.1.0",
"version": "1.1.1",
"description": "An identity solution that enables SSI to JS/TS dApps.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -27,8 +27,8 @@
"dependencies": {
"@metamask/detect-provider": "^1.2.0",
"siwe": "^2.1.2",
"@spruceid/ssx-core": "1.0.0",
"@spruceid/ssx-gnosis-extension": "1.1.0",
"@spruceid/ssx-core": "1.0.1",
"@spruceid/ssx-gnosis-extension": "1.1.1",
"@spruceid/ssx-sdk-wasm": "0.1.2",
"@types/lodash.merge": "^4.6.7",
"assert": "^2.0.0",
Expand Down
10 changes: 10 additions & 0 deletions packages/ssx-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @spruceid/ssx-server

## 1.1.1

### Patch Changes

- b25cbde: Updated `SSXServerRoutes` type to `SSXServerRouteNames` to reflect usage in ssx-server
- Updated dependencies [b25cbde]
- @spruceid/ssx-core@1.0.1
- @spruceid/ssx-gnosis-extension@1.1.1

## 1.1.0

### Minor Changes
Expand Down Expand Up @@ -28,6 +37,7 @@
### Patch Changes

- c989838: Refactor code to avoid duplication and improve performance.

- Adds `@spruceid/ssx-core` as a dependency;
- Removes all types and interfaces declarations. They were moved to `ssx-core`;
- Exports `SSXConfig` (deprecated) and `SSXServerConfig`;
Expand Down
6 changes: 3 additions & 3 deletions packages/ssx-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@spruceid/ssx-server",
"version": "1.1.0",
"version": "1.1.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Spruce Systems, Inc.",
Expand All @@ -23,8 +23,8 @@
"ssx-server": "bin/ssx-server.js"
},
"dependencies": {
"@spruceid/ssx-core": "1.0.0",
"@spruceid/ssx-gnosis-extension": "1.1.0",
"@spruceid/ssx-core": "1.0.1",
"@spruceid/ssx-gnosis-extension": "1.1.1",
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"cookie-parser": "^1.4.6",
Expand Down
9 changes: 9 additions & 0 deletions packages/ssx-serverless/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
# @spruceid/ssx-serverless

## 1.1.1

### Patch Changes

- Updated dependencies [b25cbde]
- @spruceid/ssx-core@1.0.1
- @spruceid/ssx-gnosis-extension@1.1.1

## 1.1.0

### Minor Changes

- c989838: Refactor code to avoid duplication and improve performance.

- Adds `@spruceid/ssx-core` as a dependency;
- Removes some types and interfaces declarations. They were moved to `ssx-core`;
- Removes all utils functions. They were moved to `ssx-core`;
Expand Down
6 changes: 3 additions & 3 deletions packages/ssx-serverless/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@spruceid/ssx-serverless",
"version": "1.1.0",
"version": "1.1.1",
"description": "Create SSX applications in serverless architectures",
"author": "Spruce Systems Inc.",
"license": "Apache-2.0 OR MIT",
Expand Down Expand Up @@ -29,8 +29,8 @@
},
"dependencies": {
"siwe": "^2.1.2",
"@spruceid/ssx-core": "1.0.0",
"@spruceid/ssx-gnosis-extension": "1.1.0",
"@spruceid/ssx-core": "1.0.1",
"@spruceid/ssx-gnosis-extension": "1.1.1",
"axios": "^0.27.2"
},
"devDependencies": {
Expand Down

0 comments on commit bce5efc

Please sign in to comment.