Skip to content
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
45 changes: 31 additions & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,38 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [unreleased]

### Added
- Test that code locations load successfully (#197)

### Changed
- Validation error handling
- Install cjval, val3dity (2.4.0) & cjio in tools image.
- Various improvements to the documentation.
- Filter "Pand ten onrechte opgevoerd" from BAG (#193)

### Removed
- removed rf_force_lod11

### Fixed
- **[#324](https://github.com/3DBAG/3dbag-pipeline/pull/324)** - Fix dagster concurrency: Refactored AHN LAZ file download concurrency management using Dagster's tag-based concurrency limits
- **[#316](https://github.com/3DBAG/3dbag-pipeline/pull/316)** - Updated Docker base images and improved projection data handling
- **[#247](https://github.com/3DBAG/3dbag-pipeline/pull/247)** - Deployment and release improvements with Docker-based deployment
- **[#205](https://github.com/3DBAG/3dbag-pipeline/pull/205)** - Added connection and transfer to podzilla server
- GH Action docker startup failure.
- Exe version reporting (#192)
- **[#255](https://github.com/3DBAG/3dbag-pipeline/pull/255)** - Remove AHN 200m tiles from pipeline: Major rework to use whole indexed AHN tiles instead of 200m tiles for roofer
- **[#293](https://github.com/3DBAG/3dbag-pipeline/pull/293)** - Updated AHN5 checksums using Het Waterschapshuis index
- **[#273](https://github.com/3DBAG/3dbag-pipeline/pull/273)** - Fixed AHN5 PDAL issue by storing filename even when PDAL fails
- **[#278](https://github.com/3DBAG/3dbag-pipeline/pull/278)** - Fixed metadata storage for tiles without hash matched
- **[#297](https://github.com/3DBAG/3dbag-pipeline/pull/297)** - Refactored and optimized lasindex behavior
- **[#211](https://github.com/3DBAG/3dbag-pipeline/pull/211)** - Added global attribute specifications and validation using 3dbag-specs
- **[#203](https://github.com/3DBAG/3dbag-pipeline/pull/203)** - Added GPKG validation with GEOS
- **[#193](https://github.com/3DBAG/3dbag-pipeline/pull/193)** - Filter "Pand ten onrechte opgevoerd" from BAG
- **[#221](https://github.com/3DBAG/3dbag-pipeline/pull/221)** - Automated 3D Tiles generation with tyler
- **[#231](https://github.com/3DBAG/3dbag-pipeline/pull/231)** - Test and deploy 3dtiles, fix roofer config and validation
- **[#295](https://github.com/3DBAG/3dbag-pipeline/pull/295)** - Improved failing behavior for AHN assets
- **[#261](https://github.com/3DBAG/3dbag-pipeline/pull/261)** - Fixed partition mismatch between AHN and reconstruction assets
- **[#257](https://github.com/3DBAG/3dbag-pipeline/pull/257)** - Handle requests.exceptions.ChunkedEncodingError
- **[#200](https://github.com/3DBAG/3dbag-pipeline/pull/200)** - Allow different thread count per job
- **[#192](https://github.com/3DBAG/3dbag-pipeline/pull/192)** - Fix exe version reporting
- **[#174](https://github.com/3DBAG/3dbag-pipeline/pull/174)** - Updated copyrights and licenses
- **[#197](https://github.com/3DBAG/3dbag-pipeline/pull/197)** - Test that code locations load successfully
- **[#269](https://github.com/3DBAG/3dbag-pipeline/pull/269)** - Updated test data
- **[#148](https://github.com/3DBAG/3dbag-pipeline/pull/148)** - Added reference date configuration for BAG

### Other Updates
- Multiple Docker image updates and tool version bumps
- Formatting, logging improvements, and minor fixes
- Documentation updates
- Dependency upgrades
- Small bug fixes and typo corrections
- Configuration adjustments

## [2024.12.16]

Expand Down
5 changes: 5 additions & 0 deletions scripts/generate-changelog.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
git log 9e01ff013c4d3b858b44fc6b4cdb0026df865d86..HEAD --pretty=format:"%h%n%s%n%b%n----" > commits_full.txt

gh pr list --state all --limit 100 --json number,title,body,mergedAt,closedAt,createdAt --jq ".[] | \"#\" + (.number|tostring) + \" \" + .title + \"\n\" + .body + \"\n----\"" > prs_full.txt

Generate a condensed changelog from the attached commit and pr messages since the git commit 9e01ff013c4d3b858b44fc6b4cdb0026df865d86 . The changelog should focus on the github pull requests, and link each major pull request since the mentioned git commit. The change descriptions should be terse. There are commits that are small changes such as updating docker images, formatting, typo fixes and other fixes with minimal or missing description. These commits should be listed under the collective "Other updates".
Loading