Skip to content

Commit

Permalink
Added release notes for 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
subkanthi committed Oct 17, 2024
1 parent d4a431a commit 85a4b31
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
42 changes: 42 additions & 0 deletions release-notes/2.4.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
## What's Changed
* Update state_storage.md by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/771
* Update README.md to include state storage link by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/772
* Updated offset state storage documentation. by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/774
* Update state_storage.md to include schema storage. by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/775
* Update state_storage.md to include postgresql offsets by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/776
* Testflows new kafka tests by @Selfeer in https://github.com/Altinity/clickhouse-sink-connector/pull/738
* Update quickstart.md to start sink connector service by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/785
* Added logic to get latest release from github by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/786
* Update quickstart.md with script to set environment variable. by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/787
* Update quickstart_postgres.md by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/788
* Added updates to script by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/789
* Added single.threaded flag to Mariadb test to validate replication in… by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/781
* Update production_setup.md by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/796
* Changed logging level to info for STRUCT EMPTY not a valid CDC record by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/795
* Update production_setup.md to include max_paritions_per_insert by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/804
* Added logic to commit batch in single threaded mode by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/802
* Update production_setup.md , fixed broken link by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/809
* Added support for DROP CONSTRAINT by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/807
* Update config.ym by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/813
* Removed logic of duplicating instances of DebeziumOffsetStorage by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/833
* Support MySQL point by @poweroftrue in https://github.com/Altinity/clickhouse-sink-connector/pull/815
* Support MySQL Polygons by @poweroftrue in https://github.com/Altinity/clickhouse-sink-connector/pull/853
* Added Integration test for testing POINT data type in MySQL by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/851
* Upgrade debezium to 2.7.1.Final by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/792
* Set log retention max size to 100M by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/805
* Added integration test to validate database.override.map in snapshot.mode=initial mode by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/818
* Log docker tag in startup by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/841
* Upgrade clickhouse.jdbc.version to 0.6.5 by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/832
* Single threaded documentation by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/822
* add ddl.retry by @Selfeer in https://github.com/Altinity/clickhouse-sink-connector/pull/865
* Refactored DDL processing logic by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/839
* Testflows updates by @Selfeer in https://github.com/Altinity/clickhouse-sink-connector/pull/873
* Added test to replicate generated columns in postgreSQL by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/777
* Added function to retrieve a map of column name and is_nullable as bo… by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/852
* Added test for MySQL DDL with partitions by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/784
* 773 add sink connector client step to purge schema history so that newer tables can be added by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/779

## New Contributors
* @poweroftrue made their first contribution in https://github.com/Altinity/clickhouse-sink-connector/pull/815

**Full Changelog**: https://github.com/Altinity/clickhouse-sink-connector/compare/2.3.0...2
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import org.apache.logging.log4j.Logger;
import org.junit.Assert;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
Expand Down Expand Up @@ -838,6 +839,7 @@ public void testRenameIsDeletedColumn() {
}

@Test
@Disabled
public void testPartitionedByRangeTable() {
String sql = "CREATE TABLE `city` (\n" +
" `ID` int NOT NULL AUTO_INCREMENT,\n" +
Expand Down

0 comments on commit 85a4b31

Please sign in to comment.