Skip to content

Commit

Permalink
Remove parentheses from release notes PR link (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacBlanco authored Jan 30, 2025
1 parent 2c9fee6 commit 0a13cd7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ private String generateReleaseNotes(
List<ReleaseNoteItem> items = new ArrayList<>(releaseNotesByCategory.get(category));
sort(items, new ReleaseNoteItemComparator());
for (ReleaseNoteItem item : items) {
document.append("\n").append(item.getFormatted("*", 0)).append(format(" (`#%1$d <https://github.com/prestodb/presto/pull/%1$d>`_)", item.pullRequest.getId()));
document.append("\n").append(item.getFormatted("*", 0)).append(format(" `#%1$d <https://github.com/prestodb/presto/pull/%1$d>`_", item.pullRequest.getId()));
}
document.append("\n\n");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ Release 0.231

SPI Changes
___________
* Change ``ConnectorMetadata#commitPartition`` into async operation, and rename it to ``ConnectorMetadata#commitPartitionAsync``. (`#2 <https://github.com/prestodb/presto/pull/2>`_)
* Change ``ConnectorMetadata#commitPartition`` into async operation, and rename it to ``ConnectorMetadata#commitPartitionAsync``. `#2 <https://github.com/prestodb/presto/pull/2>`_

Raptor Changes
______________
* Fix an issue where DATE_TRUNC may produce incorrect results at certain timestamp in America/Sao_Paulo. (`#1 <https://github.com/prestodb/presto/pull/1>`_)
* Improve correctness check for RowType columns. Add specific validation checks for the individual fields when validating a row column. (`#2 <https://github.com/prestodb/presto/pull/2>`_)
* Add table_supports_delta_delete property in Raptor to allow deletion happening in background. DELETE queries in Raptor can now delete data logically but relying on compactors to delete physical data. (`#2 <https://github.com/prestodb/presto/pull/2>`_)
* Replace the ``SchemaTableName`` parameter in ``ConnectorMetadata#createView`` with a ``ConnectorTableMetadata``. (`#1 <https://github.com/prestodb/presto/pull/1>`_)
* Rename error code from ``RAPTOR_LOCAL_FILE_SYSTEM_ERROR`` to ``RAPTOR_FILE_SYSTEM_ERROR``. (`#1 <https://github.com/prestodb/presto/pull/1>`_)
* Remove unused FilterVoidLambda interface in ArrayFilterFunction. (`#2 <https://github.com/prestodb/presto/pull/2>`_)
* Change ``storage.data-directory` from path to URI. For existing deployment on local flash, a scheme header "file://" should be added to the original config value. (`#1 <https://github.com/prestodb/presto/pull/1>`_)
* Fix an issue where DATE_TRUNC may produce incorrect results at certain timestamp in America/Sao_Paulo. `#1 <https://github.com/prestodb/presto/pull/1>`_
* Improve correctness check for RowType columns. Add specific validation checks for the individual fields when validating a row column. `#2 <https://github.com/prestodb/presto/pull/2>`_
* Add table_supports_delta_delete property in Raptor to allow deletion happening in background. DELETE queries in Raptor can now delete data logically but relying on compactors to delete physical data. `#2 <https://github.com/prestodb/presto/pull/2>`_
* Replace the ``SchemaTableName`` parameter in ``ConnectorMetadata#createView`` with a ``ConnectorTableMetadata``. `#1 <https://github.com/prestodb/presto/pull/1>`_
* Rename error code from ``RAPTOR_LOCAL_FILE_SYSTEM_ERROR`` to ``RAPTOR_FILE_SYSTEM_ERROR``. `#1 <https://github.com/prestodb/presto/pull/1>`_
* Remove unused FilterVoidLambda interface in ArrayFilterFunction. `#2 <https://github.com/prestodb/presto/pull/2>`_
* Change ``storage.data-directory` from path to URI. For existing deployment on local flash, a scheme header "file://" should be added to the original config value. `#1 <https://github.com/prestodb/presto/pull/1>`_
**Credits**
===========
Expand Down

0 comments on commit 0a13cd7

Please sign in to comment.