Skip to content

Commit

Permalink
chore: version packages (#1210)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed Jan 18, 2022
1 parent dc13f58 commit 79575f8
Show file tree
Hide file tree
Showing 11 changed files with 41 additions and 27 deletions.
5 changes: 0 additions & 5 deletions .changeset/rotten-rules-repair.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/swift-panthers-play.md

This file was deleted.

2 changes: 1 addition & 1 deletion examples/graphql-server-typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dependencies": {
"@accounts/database-manager": "^0.33.1",
"@accounts/graphql-api": "^0.33.2",
"@accounts/mongo": "^0.33.5",
"@accounts/mongo": "^0.34.0",
"@accounts/password": "^0.32.1",
"@accounts/rest-express": "^0.33.1",
"@accounts/server": "^0.33.1",
Expand Down
2 changes: 1 addition & 1 deletion examples/magic-link-server-typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dependencies": {
"@accounts/database-manager": "^0.33.1",
"@accounts/magic-link": "^0.1.1",
"@accounts/mongo": "^0.33.5",
"@accounts/mongo": "^0.34.0",
"@accounts/server": "^0.33.1",
"mongoose": "5.9.25",
"tslib": "2.3.1"
Expand Down
2 changes: 1 addition & 1 deletion examples/rest-express-typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"test": "pnpm run build"
},
"dependencies": {
"@accounts/mongo": "^0.33.5",
"@accounts/mongo": "^0.34.0",
"@accounts/password": "^0.32.1",
"@accounts/rest-express": "^0.33.1",
"@accounts/server": "^0.33.1",
Expand Down
14 changes: 14 additions & 0 deletions packages/database-mongo-sessions/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @accounts/mongo-sessions

## 0.33.0

### Minor Changes

- [#1205](https://github.com/accounts-js/accounts/pull/1205) [`dc13f582`](https://github.com/accounts-js/accounts/commit/dc13f5827e7577d7825f5eaae1b87eea2055f0da) Thanks [@mrcleanandfresh](https://github.com/mrcleanandfresh)! - Changed `idProvider` to `idSessionProvider` in `@mongo-sessions`. This change was made to give more granular control when creating custom identifiers for both sessions and users. The new option generates the \_id for new Session objects. Going forward, the `idProvider` will only be used for the creation of user identifiers.

Updated `AccountsMongoOptions` in `@mongo` to have the new `idSessionProvider`.

**Migration:** If you are using `idProvider` for the creation of a custom identifier for sessions, then you will need to move that logic to the new `idSessionProvider` function in the configuration.

### Patch Changes

- [#1205](https://github.com/accounts-js/accounts/pull/1205) [`dc13f582`](https://github.com/accounts-js/accounts/commit/dc13f5827e7577d7825f5eaae1b87eea2055f0da) Thanks [@mrcleanandfresh](https://github.com/mrcleanandfresh)! - The configuration option of convertSessionIdToMongoObjectId is now checked when using idProvider

## 0.32.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/database-mongo-sessions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@accounts/mongo-sessions",
"version": "0.32.2",
"version": "0.33.0",
"description": "MongoDB sessions adaptor for accounts",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down
15 changes: 15 additions & 0 deletions packages/database-mongo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @accounts/mongo

## 0.34.0

### Minor Changes

- [#1205](https://github.com/accounts-js/accounts/pull/1205) [`dc13f582`](https://github.com/accounts-js/accounts/commit/dc13f5827e7577d7825f5eaae1b87eea2055f0da) Thanks [@mrcleanandfresh](https://github.com/mrcleanandfresh)! - Changed `idProvider` to `idSessionProvider` in `@mongo-sessions`. This change was made to give more granular control when creating custom identifiers for both sessions and users. The new option generates the \_id for new Session objects. Going forward, the `idProvider` will only be used for the creation of user identifiers.

Updated `AccountsMongoOptions` in `@mongo` to have the new `idSessionProvider`.

**Migration:** If you are using `idProvider` for the creation of a custom identifier for sessions, then you will need to move that logic to the new `idSessionProvider` function in the configuration.

### Patch Changes

- Updated dependencies [[`dc13f582`](https://github.com/accounts-js/accounts/commit/dc13f5827e7577d7825f5eaae1b87eea2055f0da), [`dc13f582`](https://github.com/accounts-js/accounts/commit/dc13f5827e7577d7825f5eaae1b87eea2055f0da)]:
- @accounts/mongo-sessions@0.33.0

## 0.33.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/database-mongo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@accounts/mongo",
"version": "0.33.5",
"version": "0.34.0",
"description": "MongoDB adaptor for accounts",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -31,7 +31,7 @@
"dependencies": {
"@accounts/mongo-magic-link": "^0.1.1",
"@accounts/mongo-password": "^0.32.2",
"@accounts/mongo-sessions": "^0.32.2",
"@accounts/mongo-sessions": "^0.33.0",
"@accounts/types": "^0.33.1",
"@types/mongodb": "^3.6.20",
"mongodb": "^3.4.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"@accounts/client-password": "^0.32.2",
"@accounts/graphql-api": "^0.33.2",
"@accounts/graphql-client": "^0.33.1",
"@accounts/mongo": "^0.33.5",
"@accounts/mongo": "^0.34.0",
"@accounts/password": "^0.32.1",
"@accounts/rest-client": "^0.33.1",
"@accounts/rest-express": "^0.33.1",
Expand Down
10 changes: 5 additions & 5 deletions pnpm-lock.yaml

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

0 comments on commit 79575f8

Please sign in to comment.