Skip to content

Commit c1a9237

Browse files
chore(release): 3.0.0-rc.1 [skip ci]
# [3.0.0-rc.1](v2.0.0...v3.0.0-rc.1) (2023-12-01) ### Bug Fixes * re-add Blob support ([12f0e75](12f0e75)) ### Features * return `ArrayBuffer` instead of `Blob` ([689eafd](689eafd)) ### BREAKING CHANGES * Blobs require making the `pack` interface async * Return type of `pack` is now `ArrayBuffer`
1 parent 59f43b5 commit c1a9237

File tree

2 files changed

+133
-115
lines changed

2 files changed

+133
-115
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
# [3.0.0-rc.1](https://github.com/peers/js-binarypack/compare/v2.0.0...v3.0.0-rc.1) (2023-12-01)
2+
3+
4+
### Bug Fixes
5+
6+
* re-add Blob support ([12f0e75](https://github.com/peers/js-binarypack/commit/12f0e75ab8a7e699330e53541901dbe07be536b1))
7+
8+
9+
### Features
10+
11+
* return `ArrayBuffer` instead of `Blob` ([689eafd](https://github.com/peers/js-binarypack/commit/689eafd471fccb7eae0d68528b764d691e9d96b2))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* Blobs require making the `pack` interface async
17+
* Return type of `pack` is now `ArrayBuffer`
18+
119
# [2.0.0](https://github.com/peers/js-binarypack/compare/v1.0.2...v2.0.0) (2023-06-22)
220

321

package.json

Lines changed: 115 additions & 115 deletions
Original file line numberDiff line numberDiff line change
@@ -1,118 +1,118 @@
11
{
22
"name": "peerjs-js-binarypack",
3-
"version": "2.0.0",
4-
"description": "BinaryPack serialization",
5-
"homepage": "https://github.com/peers/js-binarypack",
6-
"main": "dist/binarypack.cjs",
7-
"module": "dist/binarypack.mjs",
8-
"source": "lib/binarypack.ts",
9-
"types": "dist/binarypack.d.ts",
10-
"type": "module",
11-
"exports": {
12-
".": {
13-
"import": {
14-
"types": "./dist/binarypack.d.ts",
15-
"default": "./dist/binarypack.mjs"
16-
},
17-
"require": {
18-
"types": "./dist/binarypack.d.ts",
19-
"default": "./dist/binarypack.cjs"
20-
}
21-
}
22-
},
23-
"scripts": {
24-
"watch": "parcel watch",
25-
"build": "parcel build",
26-
"format": "biome format --write .",
27-
"lint": "eslint --ext .js,.ts .",
28-
"check": "tsc --noEmit"
29-
},
30-
"repository": {
31-
"type": "git",
32-
"url": "https://github.com/peers/js-binarypack"
33-
},
34-
"funding": {
35-
"type": "opencollective",
36-
"url": "https://opencollective.com/peer"
37-
},
38-
"collective": {
39-
"type": "opencollective",
40-
"url": "https://opencollective.com/peer"
41-
},
42-
"author": "Eric Zhang",
43-
"contributors": [
44-
{
45-
"name": "Eric Zhang",
46-
"email": "[email protected]"
47-
},
48-
{
49-
"name": "Jonas Gloning",
50-
"email": "[email protected]"
51-
},
52-
{
53-
"name": "afrokick",
54-
"email": "[email protected]"
55-
},
56-
{
57-
"name": "manvalls",
58-
"email": "[email protected]"
59-
},
60-
{
61-
"name": "Michelle Bu",
62-
"email": "[email protected]"
63-
},
64-
{
65-
"name": "Liu Cong",
66-
"email": "[email protected]"
67-
},
68-
{
69-
"name": "Michelle Bu",
70-
"email": "[email protected]"
71-
},
72-
{
73-
"name": "lmb",
74-
"email": "[email protected]"
75-
},
76-
{
77-
"name": "orcaman",
78-
"email": "[email protected]"
79-
},
80-
{
81-
"name": "Godfrey Chan",
82-
"email": "[email protected]"
83-
},
84-
{
85-
"name": "Jarrett Cruger",
86-
"email": "[email protected]"
87-
},
88-
{
89-
"name": "Rossi Lorenzo",
90-
"email": "[email protected]"
91-
},
92-
{
93-
"name": "divec",
94-
"email": "[email protected]"
95-
},
96-
{
97-
"name": "renovate[bot]",
98-
"email": "29139614+renovate[bot]@users.noreply.github.com"
99-
}
100-
],
101-
"devDependencies": {
102-
"@biomejs/biome": "1.4.1",
103-
"@jest/globals": "^29.7.0",
104-
"@parcel/packager-ts": "^2.8.3",
105-
"@parcel/transformer-typescript-types": "^2.8.3",
106-
"@semantic-release/changelog": "^6.0.2",
107-
"@semantic-release/git": "^10.0.1",
108-
"@typescript-eslint/eslint-plugin": "^6.0.0",
109-
"eslint": "^8.34.0",
110-
"parcel": "^2.8.3",
111-
"semantic-release": "^20.1.0",
112-
"typescript": "^5.0.0"
113-
},
114-
"license": "MIT",
115-
"engines": {
116-
"node": ">= 14.0.0"
117-
}
3+
"version": "3.0.0-rc.1",
4+
"description": "BinaryPack serialization",
5+
"homepage": "https://github.com/peers/js-binarypack",
6+
"main": "dist/binarypack.cjs",
7+
"module": "dist/binarypack.mjs",
8+
"source": "lib/binarypack.ts",
9+
"types": "dist/binarypack.d.ts",
10+
"type": "module",
11+
"exports": {
12+
".": {
13+
"import": {
14+
"types": "./dist/binarypack.d.ts",
15+
"default": "./dist/binarypack.mjs"
16+
},
17+
"require": {
18+
"types": "./dist/binarypack.d.ts",
19+
"default": "./dist/binarypack.cjs"
20+
}
21+
}
22+
},
23+
"scripts": {
24+
"watch": "parcel watch",
25+
"build": "parcel build",
26+
"format": "biome format --write .",
27+
"lint": "eslint --ext .js,.ts .",
28+
"check": "tsc --noEmit"
29+
},
30+
"repository": {
31+
"type": "git",
32+
"url": "https://github.com/peers/js-binarypack"
33+
},
34+
"funding": {
35+
"type": "opencollective",
36+
"url": "https://opencollective.com/peer"
37+
},
38+
"collective": {
39+
"type": "opencollective",
40+
"url": "https://opencollective.com/peer"
41+
},
42+
"author": "Eric Zhang",
43+
"contributors": [
44+
{
45+
"name": "Eric Zhang",
46+
"email": "[email protected]"
47+
},
48+
{
49+
"name": "Jonas Gloning",
50+
"email": "[email protected]"
51+
},
52+
{
53+
"name": "afrokick",
54+
"email": "[email protected]"
55+
},
56+
{
57+
"name": "manvalls",
58+
"email": "[email protected]"
59+
},
60+
{
61+
"name": "Michelle Bu",
62+
"email": "[email protected]"
63+
},
64+
{
65+
"name": "Liu Cong",
66+
"email": "[email protected]"
67+
},
68+
{
69+
"name": "Michelle Bu",
70+
"email": "[email protected]"
71+
},
72+
{
73+
"name": "lmb",
74+
"email": "[email protected]"
75+
},
76+
{
77+
"name": "orcaman",
78+
"email": "[email protected]"
79+
},
80+
{
81+
"name": "Godfrey Chan",
82+
"email": "[email protected]"
83+
},
84+
{
85+
"name": "Jarrett Cruger",
86+
"email": "[email protected]"
87+
},
88+
{
89+
"name": "Rossi Lorenzo",
90+
"email": "[email protected]"
91+
},
92+
{
93+
"name": "divec",
94+
"email": "[email protected]"
95+
},
96+
{
97+
"name": "renovate[bot]",
98+
"email": "29139614+renovate[bot]@users.noreply.github.com"
99+
}
100+
],
101+
"devDependencies": {
102+
"@biomejs/biome": "1.4.1",
103+
"@jest/globals": "^29.7.0",
104+
"@parcel/packager-ts": "^2.8.3",
105+
"@parcel/transformer-typescript-types": "^2.8.3",
106+
"@semantic-release/changelog": "^6.0.2",
107+
"@semantic-release/git": "^10.0.1",
108+
"@typescript-eslint/eslint-plugin": "^6.0.0",
109+
"eslint": "^8.34.0",
110+
"parcel": "^2.8.3",
111+
"semantic-release": "^20.1.0",
112+
"typescript": "^5.0.0"
113+
},
114+
"license": "MIT",
115+
"engines": {
116+
"node": ">= 14.0.0"
117+
}
118118
}

0 commit comments

Comments
 (0)