Releases: zerebubuth/openstreetmap-cgimap
Release version 2.0.1
What's Changed
- Replace old openstreetmap-cgimap-bin Debian package in #452
(changes by @mmd-osm unless stated otherwise)
Full Changelog: v2.0.0...v2.0.1
Release version 2.0.0
Breaking changes
- OAuth 1.0a removal in #354
- Basic auth removal in #362
- Remove obsolete --readonly command line parameter in #443
- Rework changeset json output according to Rails implementation in #439
Important
Command line parameters to enable/disable OAuth 1.0a and Basic Auth (--basic_auth_support
and --oauth_10_support
) have been removed!
Performance
- Immediately reject repeated attempts to lock the same changeset in #421
- tiles_for_area: vector instead of set in #437
- [perf] Only copy tags to old tables for ids that are known to have tags in #425
- Enable libpqxx stream_to for selected tables in #427
- std::from_chars for number parsing in #431
- Set locale only once per request in #430
- Simplify std::regex in #436
- Simplified is_valid_bearer_token_char by @Woazboat in #444
- memcached: add non-zero expiration value in #422
Misc changes
- Update apache fcgi module link in readme by @Woazboat in #396
- Remove multi-backend support in #395
- Added missing brotli libs in Dockerfile stage 2 in #397
- Fix libxml++ contrib library compiler options by @Woazboat in #398
- Add build on Ubuntu 24.04 in #399
- Docker image smoke test in #400
- Deprecate test support for Ubuntu 20.04 by @Woazboat in #405
- Sync test db schema with upstream openstreetmap-website by @Woazboat in #403
- Unit test: user in status pending cannot upload changesets in #406
- Add importer role by @Woazboat in #410
- Propagate request context to handlers by @Woazboat in #411
- Adding sjparser lib in #416
- rate_limiter-update: consumed bytes may be larger than maxdebt in #429
- Refactor cmake install and package definitions by @Woazboat in #381
- Debian package build in #447
- Build debian packages by @Firefishy in #449
(changes by @mmd-osm unless stated otherwise)
Full Changelog: v0.9.3...v2.0.0
Release version 0.9.3
Release version 0.9.2
Note: Releases 0.9.x will be the last ones before OAuth 1.0a and Basic Auth will be removed.
Bug fixes
- Revert "Skip changeset discussions unless requested" (#402)
Release version 0.9.1
Note: Releases 0.9.x will be the last ones before OAuth 1.0a and Basic Auth will be removed.
Breaking changes
- Added support for brotli response body compression (#375)
- Drop support for staticxml backend in production code (#376)
- Require YAJL v2 in CMakeLists (#373)
Performance
- JSON generation
- SQL queries and libpqxx
- Misc
Refactoring
- CMake, code quality checks and third party libs management
- Move modified libxml++ lib to contrib directory(#367)
- Create separate cmake files for contrib libs by @Woazboat (#369)
- Remove duplicated cmake test definition by @Woazboat (#370)
- Remove unused catch2 automake reporter header file by @Woazboat (#371)
- Integrate clang-tidy in cmake build by @Woazboat (#382)
- A bit of refactoring in XML / JSON writer (#366)
- Change some enums to enum class (#372)
- Minor router cleanups (#377)
- Some cleanups from @Woazboat psql-array-iterator branch (#384)
- Use raw string literal for bearer token regex by @Woazboat (#387)
- Use std::forward for forwarding references instead of std::move by @Woazboat (#386)
- pqxx::field wrapper for psql_array_to_vector (#391)
(changes by @mmd-osm unless stated otherwise)
Full Changelog: v0.9.0...v0.9.1
Release version 0.9.0
Note: Releases 0.9.x will be the last ones before OAuth 1.0a and Basic Auth will be removed.
Breaking changes
- Replace autotools by cmake by @Woazboat in #317 and @mmd-osm in #358
- Refer to the README for updated instructions on how to build CGImap
- New option to generate Debian ppa files using
cpack
Bug fixes
- Fix json output incorrectly truncating coordinates by @Woazboat in #364
- Fix test_parse_id_list unit test failure on ARM64 in #347
- Adjustments for changes in underlying libpqxx 7.x.x library version in #301
- Fix program option
--instances
in #339 - Daemon mode improvements (multiple PRs)
- Check node lat lon not NaN or infinite by @Woazboat in (7d058d5)
Performance
- Use std::string / std::string_view for psql_array_to_vector by @Woazboat in #344
- Reduce temporary allocations for xml serialization by @Woazboat in #342
Refactoring
- Migrate unit tests to Catch2 framework, increased unit test coverage (multiple PRs)
- Code cleanups (multiple PRs)
Full Changelog: v0.8.10...v0.9.0
Release version 0.8.10
New features
Refactoring
- process_post_put_request: small cleanups (#298)
Full Changelog: v0.8.9...v0.8.10
Release version 0.8.9
New features
- Add moderators specific rate limiting settings by @DavidKarlas (#294)
- Add Retry-After http header in 509 response by @DavidKarlas (#295)
- Add ids to changeset comments output by @AntonKhorev (#289)
Bug fixes
- Fix vector reserve in pqsql select for historic n/w/r by @Woazboat (#282)
- Replace deprecated std::iterator with direct member type declarations by @Woazboat (#279)
- Check user state, only allow db changes for confirmed and active users by @mmd-osm (#284)
- Fix commented out Dockerfile config in lighttpd.conf by @AntonKhorev (#287)
- Add more test files to gitignore by @AntonKhorev (#288)
New Contributors
- @Woazboat made their first contribution in #282
- @AntonKhorev made their first contribution in #287
- @DavidKarlas made their first contribution in #294
Full Changelog: v0.8.8...v0.8.9
Release version 0.8.8
Bug fixes:
- Undo "Replace custom array parser by pqxx::array_parser" (#277)
Release version 0.8.7
Minor release includes support for Ubuntu 22.04
New features:
- Add config options to disable Basic Auth/OAuth1.0a (#262)
Refactoring:
- With the change to C++17, a number of boost libraries and functions have been replaced by their std:: counterparts.
- Added a dependency on the fmt library to ease a future transition from boost::format to std::format (C++20).
- The (cross request-) changeset cache has been removed. This reduces the number of open database connections by one.
Detailed list:
- Adjustments for Ubuntu 22.04 (#255)
- Reduce usage of shared_ptr (#256)
- More code simplifications (#257)
- Some more cleanup (#258)
- More shared_ptr cleanups (#259)
- Migrate boost::variant to std::variant (#260)
- Replace custom array parser by pqxx::array_parser (#261)
- More boost cleanups (#263)
- Move pqxx util functions away from libcgimap_core.so (#264)
- Replace ostringstream formatting by fmt (#265)
- Remove changeset cache (#266)
- Cleanup autotools (#267)
- Update autotools m4 (#269)
- Adding a few more test cases (#270)
- Fix copy&paste error (#272)
- Init some member vars (#273)
- Added new configure option --enable-fmt-header (#274)
Breaking changes:
- Remove Vagrant (#271)
- Parameter
--cachesize
has been removed as part of #266 - Added a dependency on the fmt library