Skip to content

Commit

Permalink
chore: version packages (#1254)
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 Jul 24, 2023
1 parent 3f1c494 commit 214b4b3
Show file tree
Hide file tree
Showing 13 changed files with 38 additions and 24 deletions.
6 changes: 0 additions & 6 deletions .changeset/purple-dryers-peel.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.34.0",
"@accounts/mongo": "^0.34.1",
"@accounts/password": "^0.32.2",
"@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.34.0",
"@accounts/mongo": "^0.34.1",
"@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.34.0",
"@accounts/mongo": "^0.34.1",
"@accounts/password": "^0.32.2",
"@accounts/rest-express": "^0.33.1",
"@accounts/server": "^0.33.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/database-mongo-magic-link/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"tslib": "2.3.1"
},
"devDependencies": {
"@accounts/mongo-password": "^0.32.2",
"@accounts/mongo-password": "^0.33.0",
"@types/jest": "27.0.2",
"@types/mongodb": "3.6.20",
"@types/node": "16.11.7",
Expand Down
6 changes: 6 additions & 0 deletions packages/database-mongo-password/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @accounts/mongo-password

## 0.33.0

### Minor Changes

- [#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 Meteor@2.5.1 - Mongo.createUser and Mongo.createSession bugfixes

## 0.32.4

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

## 0.34.0

### Minor Changes

- [#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 Meteor@2.5.1 - Mongo.createUser and Mongo.createSession bugfixes

## 0.33.0

### Minor 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.33.0",
"version": "0.34.0",
"description": "MongoDB sessions adaptor for accounts",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down
8 changes: 8 additions & 0 deletions packages/database-mongo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @accounts/mongo

## 0.34.1

### Patch Changes

- Updated dependencies [[`3f1c4945`](https://github.com/accounts-js/accounts/commit/3f1c4945526f27bdb51bf80ef65bcde6f9b033ed)]:
- @accounts/mongo-password@0.33.0
- @accounts/mongo-sessions@0.34.0

## 0.34.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 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.34.0",
"version": "0.34.1",
"description": "MongoDB adaptor for accounts",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -30,8 +30,8 @@
"license": "MIT",
"dependencies": {
"@accounts/mongo-magic-link": "^0.1.1",
"@accounts/mongo-password": "^0.32.2",
"@accounts/mongo-sessions": "^0.33.0",
"@accounts/mongo-password": "^0.33.0",
"@accounts/mongo-sessions": "^0.34.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.34.0",
"@accounts/mongo": "^0.34.1",
"@accounts/password": "^0.32.2",
"@accounts/rest-client": "^0.33.1",
"@accounts/rest-express": "^0.33.1",
Expand Down
16 changes: 8 additions & 8 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 214b4b3

Please sign in to comment.