Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release master #1226

Merged
merged 2 commits into from
Dec 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"packages/cli": "8.1.1",
"packages/core": "8.1.1",
"packages/examples": "8.0.4",
"packages/cli": "9.0.0",
"packages/core": "9.0.0",
"packages/examples": "9.0.0",
"packages/fetchable": "7.0.0"
}
30 changes: 30 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# Changelog

## [9.0.0](https://github.com/blacha/cogeotiff/compare/cli-v8.1.1...cli-v9.0.0) (2023-12-11)


### ⚠ BREAKING CHANGES

* rename all type from CogTiff to just Tiff ([#1227](https://github.com/blacha/cogeotiff/issues/1227))
* modify structure of tiff tags ([#1225](https://github.com/blacha/cogeotiff/issues/1225))

### Features

* **cli:** expose stats on tiles, empty, avg and overview size ([62bc6a7](https://github.com/blacha/cogeotiff/commit/62bc6a727615907c318fc8b4b06375b81bc17a00))
* **cli:** include file size if known ([5e90764](https://github.com/blacha/cogeotiff/commit/5e907640022953d396a14d4023633dfe8e14289e))
* color more output and add more tags ([fe4088b](https://github.com/blacha/cogeotiff/commit/fe4088b3f1f88a1248d803c29a563872aab4205c))
* export all tag value constants ([#1229](https://github.com/blacha/cogeotiff/issues/1229)) ([44757e5](https://github.com/blacha/cogeotiff/commit/44757e5ba5c98e992bb9fd72eb9993c727648b74))
* modify structure of tiff tags ([#1225](https://github.com/blacha/cogeotiff/issues/1225)) ([049e0bc](https://github.com/blacha/cogeotiff/commit/049e0bc3c4e15f8c095a3da4442ef144d372cf60))
* rename all type from CogTiff to just Tiff ([#1227](https://github.com/blacha/cogeotiff/issues/1227)) ([872263b](https://github.com/blacha/cogeotiff/commit/872263b11f1ab06853cb872de54a9d9dd745b647))


### Bug Fixes

* **cli:** if the tiff is fully sparse dont print NaN ([368aad2](https://github.com/blacha/cogeotiff/commit/368aad2d9ed80508195fd3700934e026d1106ed3))
* **cli:** remove console.log ([b4f22cb](https://github.com/blacha/cogeotiff/commit/b4f22cb47c3e64f523ad4955bc5389f341ada207))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @cogeotiff/core bumped from ^8.1.1 to ^9.0.0

## [8.1.1](https://github.com/blacha/cogeotiff/compare/cli-v8.1.0...cli-v8.1.1) (2023-11-14)


Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cogeotiff/cli",
"version": "8.1.1",
"version": "9.0.0",
"repository": {
"type": "git",
"url": "https://github.com/blacha/cogeotiff.git",
Expand All @@ -21,7 +21,7 @@
"@chunkd/middleware": "^11.0.0",
"@chunkd/fs": "^11.0.2",
"@chunkd/fs-aws": "^11.0.2",
"@cogeotiff/core": "^8.1.1",
"@cogeotiff/core": "^9.0.0",
"@linzjs/tracing": "^1.1.1",
"ansi-colors": "^4.1.1",
"cmd-ts": "^0.13.0",
Expand Down
24 changes: 24 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Changelog

## [9.0.0](https://github.com/blacha/cogeotiff/compare/core-v8.1.1...core-v9.0.0) (2023-12-11)


### ⚠ BREAKING CHANGES

* rename all type from CogTiff to just Tiff ([#1227](https://github.com/blacha/cogeotiff/issues/1227))
* modify structure of tiff tags ([#1225](https://github.com/blacha/cogeotiff/issues/1225))

### Features

* color more output and add more tags ([fe4088b](https://github.com/blacha/cogeotiff/commit/fe4088b3f1f88a1248d803c29a563872aab4205c))
* export all tag value constants ([#1229](https://github.com/blacha/cogeotiff/issues/1229)) ([44757e5](https://github.com/blacha/cogeotiff/commit/44757e5ba5c98e992bb9fd72eb9993c727648b74))
* expose default read size so it can be easily overridden ([5786246](https://github.com/blacha/cogeotiff/commit/57862469229503c95ee274b555fc75d828b58529))
* expose gdal's NO_DATA as a getter on the image ([#1230](https://github.com/blacha/cogeotiff/issues/1230)) ([fc21a30](https://github.com/blacha/cogeotiff/commit/fc21a30d6754f37923b92ee4fe26c557ff6d9378))
* force some tags to always be arrays ([#1228](https://github.com/blacha/cogeotiff/issues/1228)) ([acc8f93](https://github.com/blacha/cogeotiff/commit/acc8f93eac6f311bdb9d0a6e97e28e2457867c91))
* modify structure of tiff tags ([#1225](https://github.com/blacha/cogeotiff/issues/1225)) ([049e0bc](https://github.com/blacha/cogeotiff/commit/049e0bc3c4e15f8c095a3da4442ef144d372cf60))
* rename all type from CogTiff to just Tiff ([#1227](https://github.com/blacha/cogeotiff/issues/1227)) ([872263b](https://github.com/blacha/cogeotiff/commit/872263b11f1ab06853cb872de54a9d9dd745b647))
* Tag SampleFormat should also be a array ([4216ddd](https://github.com/blacha/cogeotiff/commit/4216dddc1601bf44a1e604ff78e515f90ccdbdfa))


### Bug Fixes

* allow unknown compression types to be read ([9247a70](https://github.com/blacha/cogeotiff/commit/9247a709d6f049785614fa41b79bbadf2061a07e))

## [8.1.1](https://github.com/blacha/cogeotiff/compare/core-v8.1.0...core-v8.1.1) (2023-11-14)


Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cogeotiff/core",
"version": "8.1.1",
"version": "9.0.0",
"repository": {
"type": "git",
"url": "https://github.com/blacha/cogeotiff.git",
Expand Down
18 changes: 18 additions & 0 deletions packages/examples/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,24 @@
* dependencies
* @cogeotiff/core bumped from ^8.1.0 to ^8.1.1

## [9.0.0](https://github.com/blacha/cogeotiff/compare/examples-v8.0.4...examples-v9.0.0) (2023-12-11)


### ⚠ BREAKING CHANGES

* rename all type from CogTiff to just Tiff ([#1227](https://github.com/blacha/cogeotiff/issues/1227))

### Features

* rename all type from CogTiff to just Tiff ([#1227](https://github.com/blacha/cogeotiff/issues/1227)) ([872263b](https://github.com/blacha/cogeotiff/commit/872263b11f1ab06853cb872de54a9d9dd745b647))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @cogeotiff/core bumped from ^8.1.1 to ^9.0.0

## [8.0.1](https://github.com/blacha/cogeotiff/compare/examples-v8.0.0...examples-v8.0.1) (2023-08-05)


Expand Down
4 changes: 2 additions & 2 deletions packages/examples/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@cogeotiff/examples",
"private": true,
"version": "8.0.4",
"version": "9.0.0",
"repository": {
"type": "git",
"url": "https://github.com/blacha/cogeotiff.git",
Expand All @@ -21,7 +21,7 @@
},
"dependencies": {
"@chunkd/source-http": "^11.0.1",
"@cogeotiff/core": "^8.1.1",
"@cogeotiff/core": "^9.0.0",
"esbuild": "^0.19.2"
},
"devDependencies": {
Expand Down
Loading