Skip to content

Commit 92ca8b7

Browse files
committed
Bump version to: v0.3.16 [skip ci]
1 parent c22c748 commit 92ca8b7

File tree

13 files changed

+48
-48
lines changed

13 files changed

+48
-48
lines changed

example/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "example",
33
"private": true,
4-
"version": "0.3.15",
4+
"version": "0.3.16",
55
"type": "module",
66
"scripts": {
77
"start": "node --watch server.js"
@@ -10,6 +10,6 @@
1010
"esbuild": "^0.21.4",
1111
"react": "^18.3.1",
1212
"react-dom": "^18.3.1",
13-
"teamplay": "^0.3.15"
13+
"teamplay": "^0.3.16"
1414
}
1515
}

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.3.15",
2+
"version": "0.3.16",
33
"npmClient": "yarn",
44
"packages": [
55
"packages/*",

packages/backend/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@teamplay/backend",
3-
"version": "0.3.15",
3+
"version": "0.3.16",
44
"description": "Create new ShareDB backend instance",
55
"type": "module",
66
"main": "index.js",
@@ -13,11 +13,11 @@
1313
},
1414
"dependencies": {
1515
"@startupjs/sharedb-mingo-memory": "^4.0.0-1",
16-
"@teamplay/schema": "^0.3.15",
17-
"@teamplay/server-aggregate": "^0.3.15",
18-
"@teamplay/sharedb-access": "^0.3.15",
19-
"@teamplay/sharedb-schema": "^0.3.15",
20-
"@teamplay/utils": "^0.3.15",
16+
"@teamplay/schema": "^0.3.16",
17+
"@teamplay/server-aggregate": "^0.3.16",
18+
"@teamplay/sharedb-access": "^0.3.16",
19+
"@teamplay/sharedb-schema": "^0.3.16",
20+
"@teamplay/utils": "^0.3.16",
2121
"@types/ioredis-mock": "^8.2.5",
2222
"ioredis": "^5.3.2",
2323
"ioredis-mock": "^8.9.0",

packages/cache/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@teamplay/cache",
3-
"version": "0.3.15",
3+
"version": "0.3.16",
44
"type": "module",
55
"description": "Helpers for doing auto-caching and memoization",
66
"main": "index.js",
@@ -12,7 +12,7 @@
1212
"access": "public"
1313
},
1414
"dependencies": {
15-
"@teamplay/debug": "^0.3.15"
15+
"@teamplay/debug": "^0.3.16"
1616
},
1717
"license": "MIT"
1818
}

packages/channel/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@teamplay/channel",
33
"type": "module",
4-
"version": "0.3.15",
4+
"version": "0.3.16",
55
"description": "WebSocket/SockJS 2-way communication channel",
66
"main": "index.js",
77
"exports": {

packages/debug/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@teamplay/debug",
3-
"version": "0.3.15",
3+
"version": "0.3.16",
44
"type": "module",
55
"description": "Debugging helpers",
66
"main": "index.js",

packages/schema/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@teamplay/schema",
33
"type": "module",
4-
"version": "0.3.15",
4+
"version": "0.3.16",
55
"description": "Utils to work with json-schema",
66
"main": "index.js",
77
"exports": {

packages/server-aggregate/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@teamplay/server-aggregate",
3-
"version": "0.3.15",
3+
"version": "0.3.16",
44
"description": "ShareDB middleware to allow defining aggregations only on the server",
55
"publishConfig": {
66
"access": "public"

packages/sharedb-access/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@teamplay/sharedb-access",
3-
"version": "0.3.15",
3+
"version": "0.3.16",
44
"description": "ShareDB access-control middleware",
55
"publishConfig": {
66
"access": "public"

packages/sharedb-schema/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@teamplay/sharedb-schema",
3-
"version": "0.3.15",
3+
"version": "0.3.16",
44
"description": "ShareDB schema validation middleware",
55
"type": "module",
66
"main": "lib/index.js",

packages/teamplay/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "teamplay",
3-
"version": "0.3.15",
3+
"version": "0.3.16",
44
"description": "Full-stack signals ORM with multiplayer",
55
"type": "module",
66
"main": "index.js",
@@ -23,12 +23,12 @@
2323
},
2424
"dependencies": {
2525
"@nx-js/observer-util": "^4.1.3",
26-
"@teamplay/backend": "^0.3.15",
27-
"@teamplay/cache": "^0.3.15",
28-
"@teamplay/channel": "^0.3.15",
29-
"@teamplay/debug": "^0.3.15",
30-
"@teamplay/schema": "^0.3.15",
31-
"@teamplay/utils": "^0.3.15",
26+
"@teamplay/backend": "^0.3.16",
27+
"@teamplay/cache": "^0.3.16",
28+
"@teamplay/channel": "^0.3.16",
29+
"@teamplay/debug": "^0.3.16",
30+
"@teamplay/schema": "^0.3.16",
31+
"@teamplay/utils": "^0.3.16",
3232
"diff-match-patch": "^1.0.5",
3333
"events": "^3.3.0",
3434
"json0-ot-diff": "^1.1.2",

packages/utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@teamplay/utils",
33
"type": "module",
4-
"version": "0.3.15",
4+
"version": "0.3.16",
55
"description": "Isomorphic utils for internal cross-package usage",
66
"main": "index.js",
77
"exports": {

yarn.lock

+23-23
Original file line numberDiff line numberDiff line change
@@ -2618,16 +2618,16 @@ __metadata:
26182618
languageName: node
26192619
linkType: hard
26202620

2621-
"@teamplay/backend@npm:^0.3.15, @teamplay/backend@workspace:packages/backend":
2621+
"@teamplay/backend@npm:^0.3.16, @teamplay/backend@workspace:packages/backend":
26222622
version: 0.0.0-use.local
26232623
resolution: "@teamplay/backend@workspace:packages/backend"
26242624
dependencies:
26252625
"@startupjs/sharedb-mingo-memory": "npm:^4.0.0-1"
2626-
"@teamplay/schema": "npm:^0.3.15"
2627-
"@teamplay/server-aggregate": "npm:^0.3.15"
2628-
"@teamplay/sharedb-access": "npm:^0.3.15"
2629-
"@teamplay/sharedb-schema": "npm:^0.3.15"
2630-
"@teamplay/utils": "npm:^0.3.15"
2626+
"@teamplay/schema": "npm:^0.3.16"
2627+
"@teamplay/server-aggregate": "npm:^0.3.16"
2628+
"@teamplay/sharedb-access": "npm:^0.3.16"
2629+
"@teamplay/sharedb-schema": "npm:^0.3.16"
2630+
"@teamplay/utils": "npm:^0.3.16"
26312631
"@types/ioredis-mock": "npm:^8.2.5"
26322632
ioredis: "npm:^5.3.2"
26332633
ioredis-mock: "npm:^8.9.0"
@@ -2641,15 +2641,15 @@ __metadata:
26412641
languageName: unknown
26422642
linkType: soft
26432643

2644-
"@teamplay/cache@npm:^0.3.15, @teamplay/cache@workspace:packages/cache":
2644+
"@teamplay/cache@npm:^0.3.16, @teamplay/cache@workspace:packages/cache":
26452645
version: 0.0.0-use.local
26462646
resolution: "@teamplay/cache@workspace:packages/cache"
26472647
dependencies:
2648-
"@teamplay/debug": "npm:^0.3.15"
2648+
"@teamplay/debug": "npm:^0.3.16"
26492649
languageName: unknown
26502650
linkType: soft
26512651

2652-
"@teamplay/channel@npm:^0.3.15, @teamplay/channel@workspace:packages/channel":
2652+
"@teamplay/channel@npm:^0.3.16, @teamplay/channel@workspace:packages/channel":
26532653
version: 0.0.0-use.local
26542654
resolution: "@teamplay/channel@workspace:packages/channel"
26552655
dependencies:
@@ -2659,13 +2659,13 @@ __metadata:
26592659
languageName: unknown
26602660
linkType: soft
26612661

2662-
"@teamplay/debug@npm:^0.3.15, @teamplay/debug@workspace:packages/debug":
2662+
"@teamplay/debug@npm:^0.3.16, @teamplay/debug@workspace:packages/debug":
26632663
version: 0.0.0-use.local
26642664
resolution: "@teamplay/debug@workspace:packages/debug"
26652665
languageName: unknown
26662666
linkType: soft
26672667

2668-
"@teamplay/schema@npm:^0.3.15, @teamplay/schema@workspace:packages/schema":
2668+
"@teamplay/schema@npm:^0.3.16, @teamplay/schema@workspace:packages/schema":
26692669
version: 0.0.0-use.local
26702670
resolution: "@teamplay/schema@workspace:packages/schema"
26712671
dependencies:
@@ -2675,13 +2675,13 @@ __metadata:
26752675
languageName: unknown
26762676
linkType: soft
26772677

2678-
"@teamplay/server-aggregate@npm:^0.3.15, @teamplay/server-aggregate@workspace:packages/server-aggregate":
2678+
"@teamplay/server-aggregate@npm:^0.3.16, @teamplay/server-aggregate@workspace:packages/server-aggregate":
26792679
version: 0.0.0-use.local
26802680
resolution: "@teamplay/server-aggregate@workspace:packages/server-aggregate"
26812681
languageName: unknown
26822682
linkType: soft
26832683

2684-
"@teamplay/sharedb-access@npm:^0.3.15, @teamplay/sharedb-access@workspace:packages/sharedb-access":
2684+
"@teamplay/sharedb-access@npm:^0.3.16, @teamplay/sharedb-access@workspace:packages/sharedb-access":
26852685
version: 0.0.0-use.local
26862686
resolution: "@teamplay/sharedb-access@workspace:packages/sharedb-access"
26872687
dependencies:
@@ -2693,7 +2693,7 @@ __metadata:
26932693
languageName: unknown
26942694
linkType: soft
26952695

2696-
"@teamplay/sharedb-schema@npm:^0.3.15, @teamplay/sharedb-schema@workspace:packages/sharedb-schema":
2696+
"@teamplay/sharedb-schema@npm:^0.3.16, @teamplay/sharedb-schema@workspace:packages/sharedb-schema":
26972697
version: 0.0.0-use.local
26982698
resolution: "@teamplay/sharedb-schema@workspace:packages/sharedb-schema"
26992699
dependencies:
@@ -2704,7 +2704,7 @@ __metadata:
27042704
languageName: unknown
27052705
linkType: soft
27062706

2707-
"@teamplay/utils@npm:^0.3.15, @teamplay/utils@workspace:packages/utils":
2707+
"@teamplay/utils@npm:^0.3.16, @teamplay/utils@workspace:packages/utils":
27082708
version: 0.0.0-use.local
27092709
resolution: "@teamplay/utils@workspace:packages/utils"
27102710
dependencies:
@@ -6587,7 +6587,7 @@ __metadata:
65876587
esbuild: "npm:^0.21.4"
65886588
react: "npm:^18.3.1"
65896589
react-dom: "npm:^18.3.1"
6590-
teamplay: "npm:^0.3.15"
6590+
teamplay: "npm:^0.3.16"
65916591
languageName: unknown
65926592
linkType: soft
65936593

@@ -15073,19 +15073,19 @@ __metadata:
1507315073
languageName: node
1507415074
linkType: hard
1507515075

15076-
"teamplay@npm:^0.3.15, teamplay@workspace:packages/teamplay":
15076+
"teamplay@npm:^0.3.16, teamplay@workspace:packages/teamplay":
1507715077
version: 0.0.0-use.local
1507815078
resolution: "teamplay@workspace:packages/teamplay"
1507915079
dependencies:
1508015080
"@jest/globals": "npm:^29.7.0"
1508115081
"@nx-js/observer-util": "npm:^4.1.3"
1508215082
"@startupjs/sharedb-mingo-memory": "npm:^4.0.0-1"
15083-
"@teamplay/backend": "npm:^0.3.15"
15084-
"@teamplay/cache": "npm:^0.3.15"
15085-
"@teamplay/channel": "npm:^0.3.15"
15086-
"@teamplay/debug": "npm:^0.3.15"
15087-
"@teamplay/schema": "npm:^0.3.15"
15088-
"@teamplay/utils": "npm:^0.3.15"
15083+
"@teamplay/backend": "npm:^0.3.16"
15084+
"@teamplay/cache": "npm:^0.3.16"
15085+
"@teamplay/channel": "npm:^0.3.16"
15086+
"@teamplay/debug": "npm:^0.3.16"
15087+
"@teamplay/schema": "npm:^0.3.16"
15088+
"@teamplay/utils": "npm:^0.3.16"
1508915089
"@testing-library/react": "npm:^15.0.7"
1509015090
diff-match-patch: "npm:^1.0.5"
1509115091
events: "npm:^3.3.0"

0 commit comments

Comments
 (0)