Skip to content

Commit 214b4b3

Browse files
chore: version packages (#1254)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 3f1c494 commit 214b4b3

File tree

13 files changed

+38
-24
lines changed

13 files changed

+38
-24
lines changed

.changeset/purple-dryers-peel.md

-6
This file was deleted.

examples/graphql-server-typescript/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"dependencies": {
1313
"@accounts/database-manager": "^0.33.1",
1414
"@accounts/graphql-api": "^0.33.2",
15-
"@accounts/mongo": "^0.34.0",
15+
"@accounts/mongo": "^0.34.1",
1616
"@accounts/password": "^0.32.2",
1717
"@accounts/rest-express": "^0.33.1",
1818
"@accounts/server": "^0.33.1",

examples/magic-link-server-typescript/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"dependencies": {
1313
"@accounts/database-manager": "^0.33.1",
1414
"@accounts/magic-link": "^0.1.1",
15-
"@accounts/mongo": "^0.34.0",
15+
"@accounts/mongo": "^0.34.1",
1616
"@accounts/server": "^0.33.1",
1717
"mongoose": "5.9.25",
1818
"tslib": "2.3.1"

examples/rest-express-typescript/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"test": "pnpm run build"
1111
},
1212
"dependencies": {
13-
"@accounts/mongo": "^0.34.0",
13+
"@accounts/mongo": "^0.34.1",
1414
"@accounts/password": "^0.32.2",
1515
"@accounts/rest-express": "^0.33.1",
1616
"@accounts/server": "^0.33.1",

packages/database-mongo-magic-link/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"tslib": "2.3.1"
3939
},
4040
"devDependencies": {
41-
"@accounts/mongo-password": "^0.32.2",
41+
"@accounts/mongo-password": "^0.33.0",
4242
"@types/jest": "27.0.2",
4343
"@types/mongodb": "3.6.20",
4444
"@types/node": "16.11.7",

packages/database-mongo-password/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @accounts/mongo-password
22

3+
## 0.33.0
4+
5+
### Minor Changes
6+
7+
- [#1251](https://github.com/accounts-js/accounts/pull/1251) [`3f1c4945`](https://github.com/accounts-js/accounts/commit/3f1c4945526f27bdb51bf80ef65bcde6f9b033ed) Thanks [@awatson1978](https://github.com/awatson1978)! - MongoDB 4.X support for [email protected] - Mongo.createUser and Mongo.createSession bugfixes
8+
39
## 0.32.4
410

511
### Patch Changes

packages/database-mongo-password/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@accounts/mongo-password",
3-
"version": "0.32.4",
3+
"version": "0.33.0",
44
"description": "MongoDB password adaptor for accounts",
55
"main": "lib/index.js",
66
"typings": "lib/index.d.ts",

packages/database-mongo-sessions/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @accounts/mongo-sessions
22

3+
## 0.34.0
4+
5+
### Minor Changes
6+
7+
- [#1251](https://github.com/accounts-js/accounts/pull/1251) [`3f1c4945`](https://github.com/accounts-js/accounts/commit/3f1c4945526f27bdb51bf80ef65bcde6f9b033ed) Thanks [@awatson1978](https://github.com/awatson1978)! - MongoDB 4.X support for [email protected] - Mongo.createUser and Mongo.createSession bugfixes
8+
39
## 0.33.0
410

511
### Minor Changes

packages/database-mongo-sessions/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@accounts/mongo-sessions",
3-
"version": "0.33.0",
3+
"version": "0.34.0",
44
"description": "MongoDB sessions adaptor for accounts",
55
"main": "lib/index.js",
66
"typings": "lib/index.d.ts",

packages/database-mongo/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @accounts/mongo
22

3+
## 0.34.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`3f1c4945`](https://github.com/accounts-js/accounts/commit/3f1c4945526f27bdb51bf80ef65bcde6f9b033ed)]:
8+
- @accounts/mongo-password@0.33.0
9+
- @accounts/mongo-sessions@0.34.0
10+
311
## 0.34.0
412

513
### Minor Changes

packages/database-mongo/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@accounts/mongo",
3-
"version": "0.34.0",
3+
"version": "0.34.1",
44
"description": "MongoDB adaptor for accounts",
55
"main": "lib/index.js",
66
"typings": "lib/index.d.ts",
@@ -30,8 +30,8 @@
3030
"license": "MIT",
3131
"dependencies": {
3232
"@accounts/mongo-magic-link": "^0.1.1",
33-
"@accounts/mongo-password": "^0.32.2",
34-
"@accounts/mongo-sessions": "^0.33.0",
33+
"@accounts/mongo-password": "^0.33.0",
34+
"@accounts/mongo-sessions": "^0.34.0",
3535
"@accounts/types": "^0.33.1",
3636
"@types/mongodb": "^3.6.20",
3737
"mongodb": "^3.4.1",

packages/e2e/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"@accounts/client-password": "^0.32.2",
4141
"@accounts/graphql-api": "^0.33.2",
4242
"@accounts/graphql-client": "^0.33.1",
43-
"@accounts/mongo": "^0.34.0",
43+
"@accounts/mongo": "^0.34.1",
4444
"@accounts/password": "^0.32.2",
4545
"@accounts/rest-client": "^0.33.1",
4646
"@accounts/rest-express": "^0.33.1",

pnpm-lock.yaml

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)