File tree 9 files changed +84
-12
lines changed 9 files changed +84
-12
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "packages/cli" : " 5.6 .0" ,
3
- "packages/builder" : " 5.5 .0" ,
4
- "packages/core" : " 5.5 .0" ,
5
- "packages/tar" : " 5.4.1 "
2
+ "packages/cli" : " 6.0 .0" ,
3
+ "packages/builder" : " 6.0 .0" ,
4
+ "packages/core" : " 6.0 .0" ,
5
+ "packages/tar" : " 6.0.0 "
6
6
}
Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ ## [ 6.0.0] ( https://github.com/linz/cotar/compare/builder-v5.5.0...builder-v6.0.0 ) (2023-12-11)
4
+
5
+
6
+ ### ⚠ BREAKING CHANGES
7
+
8
+ * split cotar builder from @cotar/core ([ #481 ] ( https://github.com/linz/cotar/issues/481 ) )
9
+
10
+ ### Features
11
+
12
+ * split cotar builder from @cotar/core ([ #481 ] ( https://github.com/linz/cotar/issues/481 ) ) ([ b8b801d] ( https://github.com/linz/cotar/commit/b8b801dd360e4a3ec7a9964f0f63f2066a49403d ) )
13
+
14
+
15
+ ### Dependencies
16
+
17
+ * The following workspace dependencies were updated
18
+ * dependencies
19
+ * @cotar/core bumped from ^5.5.0 to ^6.0.0
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @cotar/builder" ,
3
- "version" : " 5.5 .0" ,
3
+ "version" : " 6.0 .0" ,
4
4
"main" : " build/src/index.js" ,
5
5
"types" : " build/src/index.d.ts" ,
6
6
"repository" : {
19
19
},
20
20
"license" : " MIT" ,
21
21
"dependencies" : {
22
- "@cotar/core" : " ^5.5 .0" ,
22
+ "@cotar/core" : " ^6.0 .0" ,
23
23
"@sindresorhus/fnv1a" : " ^3.0.0" ,
24
24
"binparse" : " ^2.0.1"
25
25
},
Original file line number Diff line number Diff line change 3
3
All notable changes to this project will be documented in this file.
4
4
See [ Conventional Commits] ( https://conventionalcommits.org ) for commit guidelines.
5
5
6
+ ## [ 6.0.0] ( https://github.com/linz/cotar/compare/cli-v5.6.0...cli-v6.0.0 ) (2023-12-11)
7
+
8
+
9
+ ### ⚠ BREAKING CHANGES
10
+
11
+ * split cotar builder from @cotar/core ([ #481 ] ( https://github.com/linz/cotar/issues/481 ) )
12
+
13
+ ### Features
14
+
15
+ * ** cli:** allow validating external indexes ([ #489 ] ( https://github.com/linz/cotar/issues/489 ) ) ([ 46b7305] ( https://github.com/linz/cotar/commit/46b73054a7339e9651448623a46a6f3dcf545e7c ) )
16
+ * split cotar builder from @cotar/core ([ #481 ] ( https://github.com/linz/cotar/issues/481 ) ) ([ b8b801d] ( https://github.com/linz/cotar/commit/b8b801dd360e4a3ec7a9964f0f63f2066a49403d ) )
17
+ * switch to node-next modules to catch missing ".js" extensions ([ #428 ] ( https://github.com/linz/cotar/issues/428 ) ) ([ e598397] ( https://github.com/linz/cotar/commit/e598397742064eb539c9e73b43cefc6c925713fd ) )
18
+
19
+
20
+ ### Dependencies
21
+
22
+ * The following workspace dependencies were updated
23
+ * dependencies
24
+ * @cotar/core bumped from ^5.5.0 to ^6.0.0
25
+ * @cotar/builder bumped from ^5.5.0 to ^6.0.0
26
+ * @cotar/tar bumped from ^5.4.1 to ^6.0.0
27
+
6
28
## [ 5.6.0] ( https://github.com/linz/cotar/compare/cli-v5.5.0...cli-v5.6.0 ) (2022-11-16)
7
29
8
30
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @cotar/cli" ,
3
- "version" : " 5.6 .0" ,
3
+ "version" : " 6.0 .0" ,
4
4
"main" : " index.js" ,
5
5
"license" : " MIT" ,
6
6
"repository" : {
23
23
"dependencies" : {
24
24
"@chunkd/fs" : " ^11.0.2" ,
25
25
"@chunkd/source-file" : " ^11.0.0" ,
26
- "@cotar/core" : " ^5.5 .0" ,
27
- "@cotar/builder" : " ^5.5 .0" ,
28
- "@cotar/tar" : " ^5.4.1 " ,
26
+ "@cotar/core" : " ^6.0 .0" ,
27
+ "@cotar/builder" : " ^6.0 .0" ,
28
+ "@cotar/tar" : " ^6.0.0 " ,
29
29
"binparse" : " ^2.0.1" ,
30
30
"cmd-ts" : " ^0.13.0" ,
31
31
"pino" : " ^8.1.0" ,
Original file line number Diff line number Diff line change @@ -44,6 +44,26 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
44
44
45
45
46
46
47
+ ## [ 6.0.0] ( https://github.com/linz/cotar/compare/core-v5.5.0...core-v6.0.0 ) (2023-12-11)
48
+
49
+
50
+ ### ⚠ BREAKING CHANGES
51
+
52
+ * split cotar builder from @cotar/core ([ #481 ] ( https://github.com/linz/cotar/issues/481 ) )
53
+ * remove v1 index logic ([ #479 ] ( https://github.com/linz/cotar/issues/479 ) )
54
+
55
+ ### Features
56
+
57
+ * ** core:** increase the default packing factor from 115% to 120% to reduce hash searches ([ #367 ] ( https://github.com/linz/cotar/issues/367 ) ) ([ e34c9c3] ( https://github.com/linz/cotar/commit/e34c9c3464b0e4e46bbe5ef95ef5e12185b66d20 ) )
58
+ * remove v1 index logic ([ #479 ] ( https://github.com/linz/cotar/issues/479 ) ) ([ fbd3980] ( https://github.com/linz/cotar/commit/fbd39805f98f856c8b290370511558ba6cfe458d ) )
59
+ * split cotar builder from @cotar/core ([ #481 ] ( https://github.com/linz/cotar/issues/481 ) ) ([ b8b801d] ( https://github.com/linz/cotar/commit/b8b801dd360e4a3ec7a9964f0f63f2066a49403d ) )
60
+ * switch to node-next modules to catch missing ".js" extensions ([ #428 ] ( https://github.com/linz/cotar/issues/428 ) ) ([ e598397] ( https://github.com/linz/cotar/commit/e598397742064eb539c9e73b43cefc6c925713fd ) )
61
+
62
+
63
+ ### Bug Fixes
64
+
65
+ * ** core:** remove binparse from cotar reader ([ #478 ] ( https://github.com/linz/cotar/issues/478 ) ) ([ 822f646] ( https://github.com/linz/cotar/commit/822f64664d91d3a6f9e548f72d8c99e5e05ceee1 ) )
66
+
47
67
## [ 5.5.0] ( https://github.com/linz/cotar/compare/core-v5.4.0...core-v5.5.0 ) (2022-11-15)
48
68
49
69
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @cotar/core" ,
3
- "version" : " 5.5 .0" ,
3
+ "version" : " 6.0 .0" ,
4
4
"main" : " build/src/index.js" ,
5
5
"types" : " build/src/index.d.ts" ,
6
6
"repository" : {
Original file line number Diff line number Diff line change 3
3
All notable changes to this project will be documented in this file.
4
4
See [ Conventional Commits] ( https://conventionalcommits.org ) for commit guidelines.
5
5
6
+ ## [ 6.0.0] ( https://github.com/linz/cotar/compare/tar-v5.4.1...tar-v6.0.0 ) (2023-12-11)
7
+
8
+
9
+ ### ⚠ BREAKING CHANGES
10
+
11
+ * split cotar builder from @cotar/core ([ #481 ] ( https://github.com/linz/cotar/issues/481 ) )
12
+
13
+ ### Features
14
+
15
+ * split cotar builder from @cotar/core ([ #481 ] ( https://github.com/linz/cotar/issues/481 ) ) ([ b8b801d] ( https://github.com/linz/cotar/commit/b8b801dd360e4a3ec7a9964f0f63f2066a49403d ) )
16
+
6
17
## [ 5.4.1] ( https://github.com/linz/cotar/compare/v5.4.0...v5.4.1 ) (2022-07-07)
7
18
8
19
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @cotar/tar" ,
3
- "version" : " 5.4.1 " ,
3
+ "version" : " 6.0.0 " ,
4
4
"main" : " build/src/index.js" ,
5
5
"types" : " build/src/index.d.ts" ,
6
6
"repository" : {
You can’t perform that action at this time.
0 commit comments