@ceramicnetwork/pinning-aggregation 1.2.10 → 2.0.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +4 -28
- package/lib/index.js.map +1 -1
- package/package.json +18 -26
- package/CHANGELOG.md +0 -807
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Pinning Aggregation
|
|
2
|
+

|
|
3
|
+
[](https://lbesson.mit-license.org/)
|
|
4
|
+
[](https://discord.gg/6VRZpGP)
|
|
5
|
+
[](https://twitter.com/ceramicnetwork)
|
|
2
6
|
|
|
3
7
|
> This package contains aggregation of backends for pinning IPFS commits
|
|
4
8
|
|
|
5
|
-
See [PINNING.md](https://github.com/ceramicnetwork/js-ceramic/blob/develop/docs/PINNING.md) for details.
|
|
9
|
+
See [PINNING.md](https://github.com/ceramicnetwork/js-ceramic/blob/develop/docs/PINNING.md) for details.
|
package/lib/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type CID from '
|
|
1
|
+
import type { CID } from 'multiformats/cid';
|
|
2
2
|
import type { CidList, PinningBackend, PinningBackendStatic, PinningInfo, IpfsApi } from '@ceramicnetwork/common';
|
|
3
3
|
export declare class UnknownPinningService extends Error {
|
|
4
4
|
constructor(designator: string | null);
|
package/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"src/","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,GAAG,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"src/","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,kBAAkB,CAAA;AAC3C,OAAO,KAAK,EACV,OAAO,EACP,cAAc,EACd,oBAAoB,EACpB,WAAW,EACX,OAAO,EACR,MAAM,wBAAwB,CAAA;AAI/B,qBAAa,qBAAsB,SAAQ,KAAK;gBAClC,UAAU,EAAE,MAAM,GAAG,IAAI;CAGtC;AAWD,qBAAa,kBAAmB,YAAW,cAAc;IACvD,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAA;IACnB,QAAQ,CAAC,QAAQ,EAAE,cAAc,EAAE,CAAA;IAEnC,MAAM,CAAC,KAAK,CACV,IAAI,EAAE,OAAO,EACb,iBAAiB,EAAE,MAAM,EAAE,EAC3B,OAAO,GAAE,KAAK,CAAC,oBAAoB,CAAM,GACxC,kBAAkB;gBAgBT,QAAQ,EAAE,cAAc,EAAE;IAatC,IAAI,IAAI,IAAI;IAQN,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;IAQtB,GAAG,CAAC,GAAG,EAAE,GAAG,GAAG,OAAO,CAAC,IAAI,CAAC;IAS5B,KAAK,CAAC,GAAG,EAAE,GAAG,GAAG,OAAO,CAAC,IAAI,CAAC;IAS9B,EAAE,IAAI,OAAO,CAAC,OAAO,CAAC;IAUtB,IAAI,IAAI,OAAO,CAAC,WAAW,CAAC;CAInC"}
|
package/lib/index.js
CHANGED
|
@@ -1,38 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
-
}) : (function(o, m, k, k2) {
|
|
6
|
-
if (k2 === undefined) k2 = k;
|
|
7
|
-
o[k2] = m[k];
|
|
8
|
-
}));
|
|
9
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
-
}) : function(o, v) {
|
|
12
|
-
o["default"] = v;
|
|
13
|
-
});
|
|
14
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
-
if (mod && mod.__esModule) return mod;
|
|
16
|
-
var result = {};
|
|
17
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
-
__setModuleDefault(result, mod);
|
|
19
|
-
return result;
|
|
20
|
-
};
|
|
21
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
-
exports.PinningAggregation = exports.UnknownPinningService = void 0;
|
|
23
|
-
const base64 = __importStar(require("@stablelib/base64"));
|
|
24
|
-
const sha256 = __importStar(require("@stablelib/sha256"));
|
|
25
|
-
class UnknownPinningService extends Error {
|
|
1
|
+
import * as base64 from '@stablelib/base64';
|
|
2
|
+
import * as sha256 from '@stablelib/sha256';
|
|
3
|
+
export class UnknownPinningService extends Error {
|
|
26
4
|
constructor(designator) {
|
|
27
5
|
super(`Unknown pinning service ${designator}`);
|
|
28
6
|
}
|
|
29
7
|
}
|
|
30
|
-
exports.UnknownPinningService = UnknownPinningService;
|
|
31
8
|
const textEncoder = new TextEncoder();
|
|
32
9
|
function uniq(input) {
|
|
33
10
|
return [...new Set(input)];
|
|
34
11
|
}
|
|
35
|
-
class PinningAggregation {
|
|
12
|
+
export class PinningAggregation {
|
|
36
13
|
constructor(backends) {
|
|
37
14
|
this.backends = backends;
|
|
38
15
|
const allIds = this.backends.map((b) => b.id).join('\n');
|
|
@@ -82,5 +59,4 @@ class PinningAggregation {
|
|
|
82
59
|
return Object.assign({}, ...perBackend);
|
|
83
60
|
}
|
|
84
61
|
}
|
|
85
|
-
exports.PinningAggregation = PinningAggregation;
|
|
86
62
|
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"src/","sources":["index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"src/","sources":["index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ceramicnetwork/pinning-aggregation",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-alpha.1",
|
|
4
4
|
"description": "Aggregated pinning",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ceramic",
|
|
@@ -8,14 +8,19 @@
|
|
|
8
8
|
"filecoin",
|
|
9
9
|
"pinning"
|
|
10
10
|
],
|
|
11
|
-
"
|
|
12
|
-
"
|
|
11
|
+
"type": "module",
|
|
12
|
+
"main": "./lib/index.js",
|
|
13
|
+
"types": "./lib/index.d.ts",
|
|
13
14
|
"files": [
|
|
14
15
|
"lib"
|
|
15
16
|
],
|
|
17
|
+
"sideEffects": false,
|
|
18
|
+
"exports": {
|
|
19
|
+
".": "./lib/index.js"
|
|
20
|
+
},
|
|
16
21
|
"scripts": {
|
|
17
22
|
"test": "../../node_modules/.bin/jest --silent --coverage",
|
|
18
|
-
"build": "../../node_modules/.bin/tsc
|
|
23
|
+
"build": "../../node_modules/.bin/tsc --project tsconfig.json",
|
|
19
24
|
"prepublishOnly": "npm run build",
|
|
20
25
|
"prebuild": "npm run clean",
|
|
21
26
|
"lint": "../../node_modules/.bin/eslint ./src --ext .js,.jsx,.ts,.tsx",
|
|
@@ -24,34 +29,21 @@
|
|
|
24
29
|
"author": "Sergey Ukustov <sergey@ukstv.me>",
|
|
25
30
|
"license": "(Apache-2.0 OR MIT)",
|
|
26
31
|
"directories": {
|
|
27
|
-
"lib": "lib"
|
|
32
|
+
"lib": "./lib"
|
|
28
33
|
},
|
|
29
34
|
"dependencies": {
|
|
30
|
-
"@stablelib/base64": "^1.0.
|
|
31
|
-
"@stablelib/sha256": "^1.0.
|
|
35
|
+
"@stablelib/base64": "^1.0.1",
|
|
36
|
+
"@stablelib/sha256": "^1.0.1"
|
|
32
37
|
},
|
|
33
38
|
"devDependencies": {
|
|
34
|
-
"@ceramicnetwork/common": "^
|
|
35
|
-
"@ceramicnetwork/pinning-ipfs-backend": "^
|
|
36
|
-
"@ceramicnetwork/pinning-powergate-backend": "^
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
+
"@ceramicnetwork/common": "^2.0.0-alpha.1",
|
|
40
|
+
"@ceramicnetwork/pinning-ipfs-backend": "^2.0.0-alpha.1",
|
|
41
|
+
"@ceramicnetwork/pinning-powergate-backend": "^2.0.0-alpha.1",
|
|
42
|
+
"ipfs-core-types": "~0.9.0",
|
|
43
|
+
"multiformats": "^9.5.4"
|
|
39
44
|
},
|
|
40
45
|
"publishConfig": {
|
|
41
46
|
"access": "public"
|
|
42
47
|
},
|
|
43
|
-
"
|
|
44
|
-
"moduleFileExtensions": [
|
|
45
|
-
"js",
|
|
46
|
-
"json",
|
|
47
|
-
"ts"
|
|
48
|
-
],
|
|
49
|
-
"testRegex": ".(spec|test).ts$",
|
|
50
|
-
"transform": {
|
|
51
|
-
"^.+\\.ts$": "ts-jest"
|
|
52
|
-
},
|
|
53
|
-
"testEnvironment": "node",
|
|
54
|
-
"resolver": "jest-resolver-enhanced"
|
|
55
|
-
},
|
|
56
|
-
"gitHead": "929f5822c905a9fd8162400ae73cf3b0ef814061"
|
|
48
|
+
"gitHead": "fb9c06e9cdce755eede1a2563ce62f8083e4e06a"
|
|
57
49
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,807 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
## [1.2.10](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.2.9...@ceramicnetwork/pinning-aggregation@1.2.10) (2022-01-09)
|
|
7
|
-
|
|
8
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
## [1.2.9](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.2.7...@ceramicnetwork/pinning-aggregation@1.2.9) (2022-01-09)
|
|
15
|
-
|
|
16
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
## [1.2.8](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.2.7...@ceramicnetwork/pinning-aggregation@1.2.8) (2022-01-09)
|
|
23
|
-
|
|
24
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
## [1.2.7](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.2.7-rc.0...@ceramicnetwork/pinning-aggregation@1.2.7) (2021-12-23)
|
|
32
|
-
|
|
33
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
## [1.2.7-rc.0](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.2.6...@ceramicnetwork/pinning-aggregation@1.2.7-rc.0) (2021-12-23)
|
|
40
|
-
|
|
41
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
## [1.2.6](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.2.6-rc.0...@ceramicnetwork/pinning-aggregation@1.2.6) (2021-12-08)
|
|
48
|
-
|
|
49
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
## 1.2.6-rc.0 (2021-12-08)
|
|
56
|
-
|
|
57
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
## [1.2.5](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.2.5-rc.2...@ceramicnetwork/pinning-aggregation@1.2.5) (2021-12-06)
|
|
64
|
-
|
|
65
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
## 1.2.5-rc.2 (2021-12-06)
|
|
72
|
-
|
|
73
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
## [1.2.5-rc.1](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.2.5-rc.0...@ceramicnetwork/pinning-aggregation@1.2.5-rc.1) (2021-12-01)
|
|
80
|
-
|
|
81
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
## [1.2.5-rc.0](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.2.4...@ceramicnetwork/pinning-aggregation@1.2.5-rc.0) (2021-11-17)
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
### Bug Fixes
|
|
91
|
-
|
|
92
|
-
* resolve merge conflicts during merge from `main` ([#1848](https://github.com/ceramicnetwork/js-ceramic/issues/1848)) ([6772fc6](https://github.com/ceramicnetwork/js-ceramic/commit/6772fc6c61bc9daadfd3f6d6ecf3de2bb100450d))
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
## [1.2.4](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.2.4-rc.0...@ceramicnetwork/pinning-aggregation@1.2.4) (2021-11-17)
|
|
99
|
-
|
|
100
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
## [1.2.4-rc.0](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.2.3...@ceramicnetwork/pinning-aggregation@1.2.4-rc.0) (2021-11-12)
|
|
107
|
-
|
|
108
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
## [1.2.3](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.2.3-rc.0...@ceramicnetwork/pinning-aggregation@1.2.3) (2021-11-12)
|
|
115
|
-
|
|
116
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
## [1.2.3-rc.0](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.2.2...@ceramicnetwork/pinning-aggregation@1.2.3-rc.0) (2021-11-03)
|
|
123
|
-
|
|
124
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
## [1.2.2](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.2.2-rc.2...@ceramicnetwork/pinning-aggregation@1.2.2) (2021-11-03)
|
|
131
|
-
|
|
132
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
## [1.2.2-rc.2](/compare/@ceramicnetwork/pinning-aggregation@1.2.2-rc.0...@ceramicnetwork/pinning-aggregation@1.2.2-rc.2) (2021-10-20)
|
|
139
|
-
|
|
140
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
## [1.2.2-rc.0](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.2.1...@ceramicnetwork/pinning-aggregation@1.2.2-rc.0) (2021-10-20)
|
|
147
|
-
|
|
148
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
## [1.2.1](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.2.1-rc.0...@ceramicnetwork/pinning-aggregation@1.2.1) (2021-10-20)
|
|
155
|
-
|
|
156
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
## [1.2.1-rc.0](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.2.0...@ceramicnetwork/pinning-aggregation@1.2.1-rc.0) (2021-10-14)
|
|
163
|
-
|
|
164
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
# [1.2.0](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.2.0-rc.1...@ceramicnetwork/pinning-aggregation@1.2.0) (2021-10-14)
|
|
171
|
-
|
|
172
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
# [1.2.0-rc.1](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.2.0-rc.0...@ceramicnetwork/pinning-aggregation@1.2.0-rc.1) (2021-09-18)
|
|
179
|
-
|
|
180
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
# [1.2.0-rc.0](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.1.4...@ceramicnetwork/pinning-aggregation@1.2.0-rc.0) (2021-09-17)
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
### Bug Fixes
|
|
190
|
-
|
|
191
|
-
* **common, logger:** Clean up dependencies ([#1164](https://github.com/ceramicnetwork/js-ceramic/issues/1164)) ([191ad31](https://github.com/ceramicnetwork/js-ceramic/commit/191ad310b87ac9aba97bb84b122908337f35aa11))
|
|
192
|
-
* **core:** ipfs subscribe, pin version ([#1454](https://github.com/ceramicnetwork/js-ceramic/issues/1454)) ([fc9c5e7](https://github.com/ceramicnetwork/js-ceramic/commit/fc9c5e77ef84be448744b92fb35d5e3bf06f264d))
|
|
193
|
-
* CID version fix ([#638](https://github.com/ceramicnetwork/js-ceramic/issues/638)) ([a4f4390](https://github.com/ceramicnetwork/js-ceramic/commit/a4f4390ea561e991cae93dd26b9b122d10caef32))
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
### Features
|
|
197
|
-
|
|
198
|
-
* Pass issuer to verifyJWS ([#1542](https://github.com/ceramicnetwork/js-ceramic/issues/1542)) ([3c60b0c](https://github.com/ceramicnetwork/js-ceramic/commit/3c60b0c43267e29e17fd1f676f25bf11c2ab06d5))
|
|
199
|
-
* **common:** Miscellaneous renames from document-based to stream-based terminology ([#1290](https://github.com/ceramicnetwork/js-ceramic/issues/1290)) ([2ca935e](https://github.com/ceramicnetwork/js-ceramic/commit/2ca935ec22e7c7fb2f8b96180a4a791264ab57d3))
|
|
200
|
-
* **tile-doctype:** Update Tile API ([#1180](https://github.com/ceramicnetwork/js-ceramic/issues/1180)) ([90973ee](https://github.com/ceramicnetwork/js-ceramic/commit/90973ee32352e260cb040e687720095b145b4702))
|
|
201
|
-
* upgrade 3id did resolver ([#1108](https://github.com/ceramicnetwork/js-ceramic/issues/1108)) ([24ef6d4](https://github.com/ceramicnetwork/js-ceramic/commit/24ef6d45c6ce1dae828447ffdaa9e57f3f5e9b00))
|
|
202
|
-
* **core:** Rename several packages to remove redundant "ceramic-" prefix ([#460](https://github.com/ceramicnetwork/js-ceramic/issues/460)) ([8a86fb6](https://github.com/ceramicnetwork/js-ceramic/commit/8a86fb68b5f895f64e79a2585a5f854dd6c42088))
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
### Reverts
|
|
206
|
-
|
|
207
|
-
* Revert "chore(release):" ([26ed474](https://github.com/ceramicnetwork/js-ceramic/commit/26ed474717edaf2a276d5ffba063054f5a12e5e2))
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
## [1.1.4](/compare/@ceramicnetwork/pinning-aggregation@1.1.4-rc.0...@ceramicnetwork/pinning-aggregation@1.1.4) (2021-09-16)
|
|
214
|
-
|
|
215
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
## [1.1.4-rc.0](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.1.3...@ceramicnetwork/pinning-aggregation@1.1.4-rc.0) (2021-09-08)
|
|
222
|
-
|
|
223
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
## [1.1.3](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.1.3-rc.0...@ceramicnetwork/pinning-aggregation@1.1.3) (2021-09-08)
|
|
230
|
-
|
|
231
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
## [1.1.3-rc.0](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.1.2...@ceramicnetwork/pinning-aggregation@1.1.3-rc.0) (2021-09-02)
|
|
238
|
-
|
|
239
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
## [1.1.2](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.1.2-rc.7...@ceramicnetwork/pinning-aggregation@1.1.2) (2021-08-25)
|
|
246
|
-
|
|
247
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
## [1.1.2-rc.7](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.1.2-rc.6...@ceramicnetwork/pinning-aggregation@1.1.2-rc.7) (2021-08-24)
|
|
254
|
-
|
|
255
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
## [1.1.2-rc.6](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.1.2-rc.5...@ceramicnetwork/pinning-aggregation@1.1.2-rc.6) (2021-08-23)
|
|
262
|
-
|
|
263
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
## 1.1.2-rc.5 (2021-08-23)
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
### Bug Fixes
|
|
273
|
-
|
|
274
|
-
* **ci:** remove private flag ([9974009](https://github.com/ceramicnetwork/js-ceramic/commit/9974009be69382f2a2caf59f4ff72bf6aa12491b))
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
## [1.1.2-rc.4](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.1.2-rc.3...@ceramicnetwork/pinning-aggregation@1.1.2-rc.4) (2021-08-22)
|
|
281
|
-
|
|
282
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
## [1.1.2-rc.3](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@1.1.2-rc.2...@ceramicnetwork/pinning-aggregation@1.1.2-rc.3) (2021-08-22)
|
|
289
|
-
|
|
290
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
## 1.1.2-rc.2 (2021-08-22)
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
### Bug Fixes
|
|
300
|
-
|
|
301
|
-
* **ci:** remove flag from npm ci cmd ([b8ca310](https://github.com/ceramicnetwork/js-ceramic/commit/b8ca3102963096626a46a3c78c705da26e977021))
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
## [1.1.2-rc.1](/compare/@ceramicnetwork/pinning-aggregation@1.1.2-rc.0...@ceramicnetwork/pinning-aggregation@1.1.2-rc.1) (2021-08-19)
|
|
308
|
-
|
|
309
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
## [1.1.2-rc.0](/compare/@ceramicnetwork/pinning-aggregation@1.1.1...@ceramicnetwork/pinning-aggregation@1.1.2-rc.0) (2021-08-13)
|
|
316
|
-
|
|
317
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
## [1.1.1](/compare/@ceramicnetwork/pinning-aggregation@1.1.0-rc.1...@ceramicnetwork/pinning-aggregation@1.1.1) (2021-08-11)
|
|
324
|
-
|
|
325
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
# [1.1.0](/compare/@ceramicnetwork/pinning-aggregation@1.1.0-rc.1...@ceramicnetwork/pinning-aggregation@1.1.0) (2021-08-11)
|
|
332
|
-
|
|
333
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
# [1.1.0-rc.1](/compare/@ceramicnetwork/pinning-aggregation@1.1.0-rc.0...@ceramicnetwork/pinning-aggregation@1.1.0-rc.1) (2021-07-30)
|
|
340
|
-
|
|
341
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
# [1.1.0-rc.0](/compare/@ceramicnetwork/pinning-aggregation@1.0.8-rc.0...@ceramicnetwork/pinning-aggregation@1.1.0-rc.0) (2021-07-16)
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
### Features
|
|
351
|
-
|
|
352
|
-
* Pass issuer to verifyJWS (#1542) 3c60b0c, closes #1542
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
## [1.0.8-rc.0](/compare/@ceramicnetwork/pinning-aggregation@1.0.7...@ceramicnetwork/pinning-aggregation@1.0.8-rc.0) (2021-06-30)
|
|
359
|
-
|
|
360
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
## [1.0.7](/compare/@ceramicnetwork/pinning-aggregation@1.0.7-rc.0...@ceramicnetwork/pinning-aggregation@1.0.7) (2021-06-22)
|
|
367
|
-
|
|
368
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
## [1.0.7-rc.0](/compare/@ceramicnetwork/pinning-aggregation@1.0.6...@ceramicnetwork/pinning-aggregation@1.0.7-rc.0) (2021-06-21)
|
|
375
|
-
|
|
376
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
## [1.0.6](/compare/@ceramicnetwork/pinning-aggregation@1.0.5...@ceramicnetwork/pinning-aggregation@1.0.6) (2021-06-06)
|
|
383
|
-
|
|
384
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
## [1.0.5](/compare/@ceramicnetwork/pinning-aggregation@1.0.4...@ceramicnetwork/pinning-aggregation@1.0.5) (2021-06-03)
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
### Bug Fixes
|
|
394
|
-
|
|
395
|
-
* **core:** ipfs subscribe, pin version (#1454) fc9c5e7, closes #1454
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
## [1.0.4](/compare/@ceramicnetwork/pinning-aggregation@1.0.4-rc.0...@ceramicnetwork/pinning-aggregation@1.0.4) (2021-05-31)
|
|
402
|
-
|
|
403
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
## [1.0.4-rc.0](/compare/@ceramicnetwork/pinning-aggregation@1.0.3...@ceramicnetwork/pinning-aggregation@1.0.4-rc.0) (2021-05-28)
|
|
410
|
-
|
|
411
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
## [1.0.3](/compare/@ceramicnetwork/pinning-aggregation@1.0.2...@ceramicnetwork/pinning-aggregation@1.0.3) (2021-05-25)
|
|
418
|
-
|
|
419
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
## [1.0.2](/compare/@ceramicnetwork/pinning-aggregation@1.0.1...@ceramicnetwork/pinning-aggregation@1.0.2) (2021-05-20)
|
|
426
|
-
|
|
427
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
## [1.0.1](/compare/@ceramicnetwork/pinning-aggregation@1.0.0...@ceramicnetwork/pinning-aggregation@1.0.1) (2021-05-13)
|
|
434
|
-
|
|
435
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
# [1.0.0](/compare/@ceramicnetwork/pinning-aggregation@1.0.0-rc.6...@ceramicnetwork/pinning-aggregation@1.0.0) (2021-05-06)
|
|
442
|
-
|
|
443
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
# [1.0.0-rc.6](/compare/@ceramicnetwork/pinning-aggregation@1.0.0-rc.5...@ceramicnetwork/pinning-aggregation@1.0.0-rc.6) (2021-04-29)
|
|
450
|
-
|
|
451
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
# [1.0.0-rc.5](/compare/@ceramicnetwork/pinning-aggregation@1.0.0-rc.4...@ceramicnetwork/pinning-aggregation@1.0.0-rc.5) (2021-04-28)
|
|
458
|
-
|
|
459
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
# [1.0.0-rc.4](/compare/@ceramicnetwork/pinning-aggregation@1.0.0-rc.3...@ceramicnetwork/pinning-aggregation@1.0.0-rc.4) (2021-04-23)
|
|
466
|
-
|
|
467
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
# [1.0.0-rc.3](/compare/@ceramicnetwork/pinning-aggregation@1.0.0-rc.2...@ceramicnetwork/pinning-aggregation@1.0.0-rc.3) (2021-04-20)
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
### Features
|
|
477
|
-
|
|
478
|
-
* **common:** Miscellaneous renames from document-based to stream-based terminology (#1290) 2ca935e, closes #1290
|
|
479
|
-
* **tile-doctype:** Update Tile API (#1180) 90973ee, closes #1180
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
# [1.0.0-rc.2](/compare/@ceramicnetwork/pinning-aggregation@1.0.0-rc.1...@ceramicnetwork/pinning-aggregation@1.0.0-rc.2) (2021-04-19)
|
|
487
|
-
|
|
488
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
# [1.0.0-rc.1](/compare/@ceramicnetwork/pinning-aggregation@0.2.2-rc.2...@ceramicnetwork/pinning-aggregation@1.0.0-rc.1) (2021-04-19)
|
|
495
|
-
|
|
496
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
## [0.2.2-rc.2](/compare/@ceramicnetwork/pinning-aggregation@0.2.1...@ceramicnetwork/pinning-aggregation@0.2.2-rc.2) (2021-04-19)
|
|
503
|
-
|
|
504
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
## [0.2.2-rc.0](/compare/@ceramicnetwork/pinning-aggregation@0.2.1...@ceramicnetwork/pinning-aggregation@0.2.2-rc.0) (2021-04-02)
|
|
511
|
-
|
|
512
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
## [0.2.1](/compare/@ceramicnetwork/pinning-aggregation@0.2.0...@ceramicnetwork/pinning-aggregation@0.2.1) (2021-04-02)
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
### Bug Fixes
|
|
522
|
-
|
|
523
|
-
* **common, logger:** Clean up dependencies (#1164) 191ad31, closes #1164
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
## [0.2.1-rc.4](/compare/@ceramicnetwork/pinning-aggregation@0.2.0...@ceramicnetwork/pinning-aggregation@0.2.1-rc.4) (2021-03-26)
|
|
530
|
-
|
|
531
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
## [0.2.1-rc.3](/compare/@ceramicnetwork/pinning-aggregation@0.2.0...@ceramicnetwork/pinning-aggregation@0.2.1-rc.3) (2021-03-26)
|
|
538
|
-
|
|
539
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
## [0.2.1-rc.2](/compare/@ceramicnetwork/pinning-aggregation@0.2.0...@ceramicnetwork/pinning-aggregation@0.2.1-rc.2) (2021-03-26)
|
|
546
|
-
|
|
547
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
## [0.2.1-rc.1](/compare/@ceramicnetwork/pinning-aggregation@0.2.1-rc.0...@ceramicnetwork/pinning-aggregation@0.2.1-rc.1) (2021-03-25)
|
|
554
|
-
|
|
555
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
## [0.2.1-rc.0](/compare/@ceramicnetwork/pinning-aggregation@0.2.0...@ceramicnetwork/pinning-aggregation@0.2.1-rc.0) (2021-03-25)
|
|
562
|
-
|
|
563
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
# [0.2.0](/compare/@ceramicnetwork/pinning-aggregation@0.2.0-rc.1...@ceramicnetwork/pinning-aggregation@0.2.0) (2021-03-22)
|
|
570
|
-
|
|
571
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
# [0.2.0-rc.1](/compare/@ceramicnetwork/pinning-aggregation@0.2.0-rc.0...@ceramicnetwork/pinning-aggregation@0.2.0-rc.1) (2021-03-15)
|
|
578
|
-
|
|
579
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
# [0.2.0-rc.0](/compare/@ceramicnetwork/pinning-aggregation@0.1.15-rc.9...@ceramicnetwork/pinning-aggregation@0.2.0-rc.0) (2021-03-12)
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
### Features
|
|
589
|
-
|
|
590
|
-
* upgrade 3id did resolver (#1108) 24ef6d4, closes #1108
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
## [0.1.15-rc.9](/compare/@ceramicnetwork/pinning-aggregation@0.1.15-rc.8...@ceramicnetwork/pinning-aggregation@0.1.15-rc.9) (2021-03-10)
|
|
597
|
-
|
|
598
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
## [0.1.15-rc.8](/compare/@ceramicnetwork/pinning-aggregation@0.1.15-rc.6...@ceramicnetwork/pinning-aggregation@0.1.15-rc.8) (2021-03-09)
|
|
605
|
-
|
|
606
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
## [0.1.15-rc.7](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@0.1.14...@ceramicnetwork/pinning-aggregation@0.1.15-rc.7) (2021-02-25)
|
|
613
|
-
|
|
614
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
## [0.1.15-rc.6](/compare/@ceramicnetwork/pinning-aggregation@0.1.15-rc.5...@ceramicnetwork/pinning-aggregation@0.1.15-rc.6) (2021-02-24)
|
|
621
|
-
|
|
622
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
## [0.1.15-rc.5](/compare/@ceramicnetwork/pinning-aggregation@0.1.15-rc.3...@ceramicnetwork/pinning-aggregation@0.1.15-rc.5) (2021-02-23)
|
|
629
|
-
|
|
630
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
## [0.1.15-rc.4](/compare/@ceramicnetwork/pinning-aggregation@0.1.15-rc.3...@ceramicnetwork/pinning-aggregation@0.1.15-rc.4) (2021-02-23)
|
|
637
|
-
|
|
638
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
## [0.1.15-rc.3](/compare/@ceramicnetwork/pinning-aggregation@0.1.15-rc.2...@ceramicnetwork/pinning-aggregation@0.1.15-rc.3) (2021-02-23)
|
|
645
|
-
|
|
646
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
## [0.1.15-rc.2](/compare/@ceramicnetwork/pinning-aggregation@0.1.15-rc.0...@ceramicnetwork/pinning-aggregation@0.1.15-rc.2) (2021-02-22)
|
|
653
|
-
|
|
654
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
## [0.1.15-rc.0](/compare/@ceramicnetwork/pinning-aggregation@0.1.14...@ceramicnetwork/pinning-aggregation@0.1.15-rc.0) (2021-02-22)
|
|
661
|
-
|
|
662
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
## [0.1.14](/compare/@ceramicnetwork/pinning-aggregation@0.1.14-rc.0...@ceramicnetwork/pinning-aggregation@0.1.14) (2021-02-04)
|
|
669
|
-
|
|
670
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
## [0.1.14-rc.0](/compare/@ceramicnetwork/pinning-aggregation@0.1.13...@ceramicnetwork/pinning-aggregation@0.1.14-rc.0) (2021-01-29)
|
|
677
|
-
|
|
678
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
## [0.1.13](/compare/@ceramicnetwork/pinning-aggregation@0.1.12...@ceramicnetwork/pinning-aggregation@0.1.13) (2021-01-21)
|
|
685
|
-
|
|
686
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
## [0.1.12](/compare/@ceramicnetwork/pinning-aggregation@0.1.11...@ceramicnetwork/pinning-aggregation@0.1.12) (2021-01-13)
|
|
693
|
-
|
|
694
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
## [0.1.11](/compare/@ceramicnetwork/pinning-aggregation@0.1.10...@ceramicnetwork/pinning-aggregation@0.1.11) (2021-01-13)
|
|
701
|
-
|
|
702
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
## [0.1.10](/compare/@ceramicnetwork/pinning-aggregation@0.1.9...@ceramicnetwork/pinning-aggregation@0.1.10) (2021-01-13)
|
|
709
|
-
|
|
710
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
## [0.1.9](/compare/@ceramicnetwork/pinning-aggregation@0.1.8...@ceramicnetwork/pinning-aggregation@0.1.9) (2021-01-07)
|
|
717
|
-
|
|
718
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
## [0.1.8](/compare/@ceramicnetwork/pinning-aggregation@0.1.7...@ceramicnetwork/pinning-aggregation@0.1.8) (2021-01-07)
|
|
725
|
-
|
|
726
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
## [0.1.7](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@0.1.6...@ceramicnetwork/pinning-aggregation@0.1.7) (2020-12-29)
|
|
733
|
-
|
|
734
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
## [0.1.6](/compare/@ceramicnetwork/pinning-aggregation@0.1.5...@ceramicnetwork/pinning-aggregation@0.1.6) (2020-12-23)
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
### Reverts
|
|
744
|
-
|
|
745
|
-
* Revert "chore(release):" 26ed474
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
## [0.1.5](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@0.1.5-alpha.0...@ceramicnetwork/pinning-aggregation@0.1.5) (2020-12-17)
|
|
752
|
-
|
|
753
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
## [0.1.5-alpha.0](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@0.1.4...@ceramicnetwork/pinning-aggregation@0.1.5-alpha.0) (2020-12-14)
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
### Bug Fixes
|
|
763
|
-
|
|
764
|
-
* CID version fix ([#638](https://github.com/ceramicnetwork/js-ceramic/issues/638)) ([a4f4390](https://github.com/ceramicnetwork/js-ceramic/commit/a4f4390ea561e991cae93dd26b9b122d10caef32))
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
## [0.1.4](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@0.1.3...@ceramicnetwork/pinning-aggregation@0.1.4) (2020-12-08)
|
|
771
|
-
|
|
772
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
## [0.1.3](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@0.1.2...@ceramicnetwork/pinning-aggregation@0.1.3) (2020-12-01)
|
|
779
|
-
|
|
780
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
## [0.1.2](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@0.1.1...@ceramicnetwork/pinning-aggregation@0.1.2) (2020-11-30)
|
|
787
|
-
|
|
788
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
## [0.1.1](https://github.com/ceramicnetwork/js-ceramic/compare/@ceramicnetwork/pinning-aggregation@0.1.0...@ceramicnetwork/pinning-aggregation@0.1.1) (2020-11-26)
|
|
795
|
-
|
|
796
|
-
**Note:** Version bump only for package @ceramicnetwork/pinning-aggregation
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
# 0.1.0 (2020-11-24)
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
### Features
|
|
806
|
-
|
|
807
|
-
* **core:** Rename several packages to remove redundant "ceramic-" prefix ([#460](https://github.com/ceramicnetwork/js-ceramic/issues/460)) ([8a86fb6](https://github.com/ceramicnetwork/js-ceramic/commit/8a86fb68b5f895f64e79a2585a5f854dd6c42088))
|