From 300deb99721dfe9008e3072f399b605679f71ec4 Mon Sep 17 00:00:00 2001 From: Francisco Valdez de la Fuente Date: Fri, 16 Jun 2023 10:31:12 -0700 Subject: [PATCH 1/3] docs: add warning about dev mode (#6734) --- docs/content/Deployment/Production-Checklist.mdx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/content/Deployment/Production-Checklist.mdx b/docs/content/Deployment/Production-Checklist.mdx index 2b5fdf40c1bab..7e64106e0ad65 100644 --- a/docs/content/Deployment/Production-Checklist.mdx +++ b/docs/content/Deployment/Production-Checklist.mdx @@ -20,7 +20,9 @@ deployment. When running Cube in production environments, make sure development mode is disabled both on API Instances and Refresh Worker. Running Cube in development -mode in a production environment can lead to security vulnerabilities. You can +mode in a production environment can lead to security vulnerabilities. +Enabling Development Mode in Cube Cloud is not recommended. +Development Mode will expose your data to the internet. You can read more on the differences between [production and development mode here][link-cubejs-dev-vs-prod]. From 1f92ba6f5407f82703c8920b27a3a3e5a16fea41 Mon Sep 17 00:00:00 2001 From: Pavel Tiunov Date: Fri, 16 Jun 2023 20:26:46 -0700 Subject: [PATCH 2/3] fix: Support unescaped `\\N` as NULL value for Snowflake driver (#6735) Fixes #6693 --- .../fixtures/snowflake.json | 3 +- .../cubejs-testing-drivers/src/dataset.ts | 49 +++- .../__snapshots__/snowflake-full.test.ts.snap | 257 ++++++++++++++++++ .../cubestore-sql-tests/src/tests.rs | 2 +- rust/cubestore/cubestore/src/import/mod.rs | 2 +- 5 files changed, 307 insertions(+), 6 deletions(-) diff --git a/packages/cubejs-testing-drivers/fixtures/snowflake.json b/packages/cubejs-testing-drivers/fixtures/snowflake.json index effc39c7d8681..384bd9b58b2b0 100644 --- a/packages/cubejs-testing-drivers/fixtures/snowflake.json +++ b/packages/cubejs-testing-drivers/fixtures/snowflake.json @@ -109,7 +109,6 @@ "querying Products: dimensions -- doesn't work wo ordering", "querying ECommerce: total quantity, avg discount, total sales, total profit by product + order + total -- rounding in athena", "querying ECommerce: total sales, total profit by month + order (date) + total -- doesn't work with the BigQuery", - "querying ECommerce: total quantity, avg discount, total sales, total profit by product + order + total -- noisy test", - "querying BigECommerce: partitioned pre-agg" + "querying ECommerce: total quantity, avg discount, total sales, total profit by product + order + total -- noisy test" ] } \ No newline at end of file diff --git a/packages/cubejs-testing-drivers/src/dataset.ts b/packages/cubejs-testing-drivers/src/dataset.ts index e758882b91e9a..27d21bb6f5873 100644 --- a/packages/cubejs-testing-drivers/src/dataset.ts +++ b/packages/cubejs-testing-drivers/src/dataset.ts @@ -156,8 +156,53 @@ export const ECommerce = { export const BigECommerce = { select: (cast: Cast) => { - const { GENERATE_BIG_SERIES } = cast; - const data = ECommerce.select(cast); + const { GENERATE_BIG_SERIES, DATE_PREFIX, DATE_SUFFIX } = cast; + const data = ` + select 3060 as row_id, 'CA-2017-131492' as order_id, ${DATE_PREFIX}'2020-10-19'${DATE_SUFFIX} as order_date, 'HH-15010' as customer_id, 'San Francisco' as city, 'Furniture' as category, 'Tables' as sub_category, 'Anderson Hickey Conga Table Tops & Accessories' as product_name, 24.36800 as sales, 2 as quantity, 0.20000 as discount, -3.35060 as profit union all + select 523 as row_id, 'CA-2017-145142' as order_id, ${DATE_PREFIX}'2020-01-23'${DATE_SUFFIX} as order_date, 'MC-17605' as customer_id, 'Detroit' as city, 'Furniture' as category, 'Tables' as sub_category, 'Balt Solid Wood Rectangular Table' as product_name, 210.98000 as sales, 2 as quantity, 0.00000 as discount, 21.09800 as profit union all + select 9584 as row_id, 'CA-2017-116127' as order_id, ${DATE_PREFIX}'2020-06-25'${DATE_SUFFIX} as order_date, 'SB-20185' as customer_id, 'New York City' as city, 'Furniture' as category, 'Bookcases' as sub_category, 'DMI Eclipse Executive Suite Bookcases' as product_name, 400.78400 as sales, 1 as quantity, 0.20000 as discount, -5.00980 as profit union all + select 8425 as row_id, 'CA-2017-150091' as order_id, ${DATE_PREFIX}'2020-10-12'${DATE_SUFFIX} as order_date, 'NP-18670' as customer_id, 'Lakewood' as city, 'Furniture' as category, 'Bookcases' as sub_category, 'Global Adaptabilites Bookcase, Cherry/Storm Gray Finish' as product_name, 2154.90000 as sales, 5 as quantity, 0.00000 as discount, 129.29400 as profit union all + select 2655 as row_id, 'CA-2017-112515' as order_id, ${DATE_PREFIX}'2020-09-17'${DATE_SUFFIX} as order_date, 'AS-10225' as customer_id, 'Provo' as city, 'Furniture' as category, 'Bookcases' as sub_category, 'Global Adaptabilites Bookcase, Cherry/Storm Gray Finish' as product_name, 1292.94000 as sales, 3 as quantity, 0.00000 as discount, 77.57640 as profit union all + select 2952 as row_id, 'CA-2017-134915' as order_id, ${DATE_PREFIX}'2020-11-12'${DATE_SUFFIX} as order_date, 'EM-14140' as customer_id, 'Glendale' as city, 'Furniture' as category, 'Chairs' as sub_category, 'Harbour Creations 67200 Series Stacking Chairs' as product_name, 113.88800 as sales, 2 as quantity, 0.20000 as discount, 9.96520 as profit union all + select 9473 as row_id, 'CA-2017-102925' as order_id, ${DATE_PREFIX}'2020-11-05'${DATE_SUFFIX} as order_date, 'CD-12280' as customer_id, 'New York City' as city, 'Furniture' as category, 'Chairs' as sub_category, 'Harbour Creations 67200 Series Stacking Chairs' as product_name, 128.12400 as sales, 2 as quantity, 0.10000 as discount, 24.20120 as profit union all + select 5220 as row_id, 'CA-2017-145653' as order_id, ${DATE_PREFIX}'2020-09-01'${DATE_SUFFIX} as order_date, 'CA-12775' as customer_id, 'Detroit' as city, 'Furniture' as category, 'Chairs' as sub_category, 'Harbour Creations 67200 Series Stacking Chairs' as product_name, 498.26000 as sales, 7 as quantity, 0.00000 as discount, 134.53020 as profit union all + select 4031 as row_id, 'CA-2017-124296' as order_id, ${DATE_PREFIX}'2020-12-24'${DATE_SUFFIX} as order_date, 'CS-12355' as customer_id, 'Lafayette' as city, 'Furniture' as category, 'Chairs' as sub_category, 'Iceberg Nesting Folding Chair, 19w x 6d x 43h' as product_name, 232.88000 as sales, 4 as quantity, 0.00000 as discount, 60.54880 as profit union all + select 8621 as row_id, 'US-2017-119319' as order_id, ${DATE_PREFIX}'2020-11-06'${DATE_SUFFIX} as order_date, 'LC-17050' as customer_id, 'Dallas' as city, 'Furniture' as category, 'Furnishings' as sub_category, 'Linden 10 Round Wall Clock, Black' as product_name, 30.56000 as sales, 5 as quantity, 0.60000 as discount, -19.86400 as profit union all + select 3059 as row_id, 'CA-2017-131492' as order_id, ${DATE_PREFIX}'2020-10-19'${DATE_SUFFIX} as order_date, 'HH-15010' as customer_id, 'San Francisco' as city, 'Furniture' as category, 'Furnishings' as sub_category, 'Linden 10 Round Wall Clock, Black' as product_name, 30.56000 as sales, 2 as quantity, 0.00000 as discount, 10.39040 as profit union all + select 7425 as row_id, 'CA-2017-135069' as order_id, ${DATE_PREFIX}'2020-04-10'${DATE_SUFFIX} as order_date, 'BS-11755' as customer_id, 'Philadelphia' as city, 'Furniture' as category, 'Furnishings' as sub_category, 'Linden 10 Round Wall Clock, Black' as product_name, 36.67200 as sales, 3 as quantity, 0.20000 as discount, 6.41760 as profit union all + select 849 as row_id, 'CA-2017-107503' as order_id, ${DATE_PREFIX}'2020-01-01'${DATE_SUFFIX} as order_date, 'GA-14725' as customer_id, 'Lorain' as city, 'Furniture' as category, 'Furnishings' as sub_category, 'Linden 10 Round Wall Clock, Black' as product_name, 48.89600 as sales, 4 as quantity, 0.20000 as discount, 8.55680 as profit union all + select 6205 as row_id, 'CA-2017-145660' as order_id, ${DATE_PREFIX}'2020-12-01'${DATE_SUFFIX} as order_date, 'MG-17650' as customer_id, 'Marion' as city, 'Furniture' as category, 'Furnishings' as sub_category, 'Magna Visual Magnetic Picture Hangers' as product_name, 7.71200 as sales, 2 as quantity, 0.20000 as discount, 1.73520 as profit union all + select 1494 as row_id, 'CA-2017-139661' as order_id, ${DATE_PREFIX}'2020-10-30'${DATE_SUFFIX} as order_date, 'JW-15220' as customer_id, 'Vancouver' as city, 'Furniture' as category, 'Furnishings' as sub_category, 'Magna Visual Magnetic Picture Hangers' as product_name, 9.64000 as sales, 2 as quantity, 0.00000 as discount, 3.66320 as profit union all + select 3934 as row_id, 'CA-2017-123001' as order_id, ${DATE_PREFIX}'2020-09-02'${DATE_SUFFIX} as order_date, 'AW-10840' as customer_id, 'Bakersfield' as city, 'Office Supplies' as category, 'Art' as sub_category, 'OIC #2 Pencils, Medium Soft' as product_name, 9.40000 as sales, 5 as quantity, 0.00000 as discount, 2.72600 as profit union all + select 3448 as row_id, 'CA-2017-102554' as order_id, ${DATE_PREFIX}'2020-06-11'${DATE_SUFFIX} as order_date, 'KN-16705' as customer_id, 'Auburn' as city, 'Office Supplies' as category, 'Art' as sub_category, 'OIC #2 Pencils, Medium Soft' as product_name, 3.76000 as sales, 2 as quantity, 0.00000 as discount, 1.09040 as profit union all + select 6459 as row_id, 'US-2017-133361' as order_id, ${DATE_PREFIX}'2020-05-14'${DATE_SUFFIX} as order_date, 'AJ-10780' as customer_id, 'Baltimore' as city, 'Office Supplies' as category, 'Art' as sub_category, 'OIC #2 Pencils, Medium Soft' as product_name, 3.76000 as sales, 2 as quantity, 0.00000 as discount, 1.09040 as profit union all + select 6272 as row_id, 'CA-2017-102379' as order_id, ${DATE_PREFIX}'2020-12-02'${DATE_SUFFIX} as order_date, 'BB-11545' as customer_id, 'Oakland' as city, 'Office Supplies' as category, 'Art' as sub_category, 'Panasonic KP-380BK Classic Electric Pencil Sharpener' as product_name, 179.90000 as sales, 5 as quantity, 0.00000 as discount, 44.97500 as profit union all + select 9619 as row_id, 'CA-2017-160633' as order_id, ${DATE_PREFIX}'2020-11-16'${DATE_SUFFIX} as order_date, 'BS-11380' as customer_id, 'Bowling' as city, 'Office Supplies' as category, 'Art' as sub_category, 'Panasonic KP-380BK Classic Electric Pencil Sharpener' as product_name, 86.35200 as sales, 3 as quantity, 0.20000 as discount, 5.39700 as profit union all + select 1013 as row_id, 'CA-2017-118437' as order_id, ${DATE_PREFIX}'2020-06-17'${DATE_SUFFIX} as order_date, 'PF-19165' as customer_id, 'Olympia' as city, 'Office Supplies' as category, 'Storage' as sub_category, 'Project Tote Personal File' as product_name, 14.03000 as sales, 1 as quantity, 0.00000 as discount, 4.06870 as profit union all + select 4012 as row_id, 'CA-2017-100811' as order_id, ${DATE_PREFIX}'2020-11-21'${DATE_SUFFIX} as order_date, 'CC-12475' as customer_id, 'Philadelphia' as city, 'Office Supplies' as category, 'Storage' as sub_category, 'Recycled Eldon Regeneration Jumbo File' as product_name, 39.29600 as sales, 4 as quantity, 0.20000 as discount, 3.92960 as profit union all + select 2595 as row_id, 'CA-2017-149048' as order_id, ${DATE_PREFIX}'2020-05-13'${DATE_SUFFIX} as order_date, 'BM-11650' as customer_id, 'Columbus' as city, 'Office Supplies' as category, 'Envelopes' as sub_category, 'Tyvek Side-Opening Peel & Seel Expanding Envelopes' as product_name, 180.96000 as sales, 2 as quantity, 0.00000 as discount, 81.43200 as profit union all + select 2329 as row_id, 'CA-2017-138422' as order_id, ${DATE_PREFIX}'2020-09-23'${DATE_SUFFIX} as order_date, 'KN-16705' as customer_id, 'Columbus' as city, 'Office Supplies' as category, 'Envelopes' as sub_category, 'Wausau Papers Astrobrights Colored Envelopes' as product_name, 14.35200 as sales, 3 as quantity, 0.20000 as discount, 5.20260 as profit union all + select 4227 as row_id, 'CA-2017-120327' as order_id, ${DATE_PREFIX}'2020-11-11'${DATE_SUFFIX} as order_date, 'WB-21850' as customer_id, 'Columbus' as city, 'Office Supplies' as category, 'Fasteners' as sub_category, 'Vinyl Coated Wire Paper Clips in Organizer Box, 800/Box' as product_name, 45.92000 as sales, 4 as quantity, 0.00000 as discount, 21.58240 as profit union all + select 6651 as row_id, 'US-2017-124779' as order_id, ${DATE_PREFIX}'2020-09-08'${DATE_SUFFIX} as order_date, 'BF-11020' as customer_id, 'Arlington' as city, 'Office Supplies' as category, 'Fasteners' as sub_category, 'Vinyl Coated Wire Paper Clips in Organizer Box, 800/Box' as product_name, 45.92000 as sales, 5 as quantity, 0.20000 as discount, 15.49800 as profit union all + select 8673 as row_id, 'CA-2017-163265' as order_id, ${DATE_PREFIX}'2020-02-16'${DATE_SUFFIX} as order_date, 'JS-16030' as customer_id, 'Decatur' as city, 'Office Supplies' as category, 'Fasteners' as sub_category, 'Vinyl Coated Wire Paper Clips in Organizer Box, 800/Box' as product_name, 18.36800 as sales, 2 as quantity, 0.20000 as discount, 6.19920 as profit union all + select 1995 as row_id, 'CA-2017-133648' as order_id, ${DATE_PREFIX}'2020-06-25'${DATE_SUFFIX} as order_date, 'ML-17755' as customer_id, 'Columbus' as city, 'Office Supplies' as category, 'Fasteners' as sub_category, 'Plymouth Boxed Rubber Bands by Plymouth' as product_name, 11.30400 as sales, 3 as quantity, 0.20000 as discount, -2.11950 as profit union all + select 7310 as row_id, 'CA-2017-112172' as order_id, ${DATE_PREFIX}'2020-06-10'${DATE_SUFFIX} as order_date, 'MM-18280' as customer_id, 'New York City' as city, 'Office Supplies' as category, 'Fasteners' as sub_category, 'Plymouth Boxed Rubber Bands by Plymouth' as product_name, 14.13000 as sales, 3 as quantity, 0.00000 as discount, 0.70650 as profit union all + select 3717 as row_id, 'CA-2017-144568' as order_id, ${DATE_PREFIX}'2020-05-29'${DATE_SUFFIX} as order_date, 'JO-15550' as customer_id, 'Omaha' as city, 'Office Supplies' as category, 'Fasteners' as sub_category, 'Plymouth Boxed Rubber Bands by Plymouth' as product_name, 23.55000 as sales, 5 as quantity, 0.00000 as discount, 1.17750 as profit union all + select 4882 as row_id, 'CA-2017-143567' as order_id, ${DATE_PREFIX}'2020-11-02'${DATE_SUFFIX} as order_date, 'TB-21175' as customer_id, 'Columbus' as city, 'Technology' as category, 'Accessories' as sub_category, 'Logitech diNovo Edge Keyboard' as product_name, 2249.91000 as sales, 9 as quantity, 0.00000 as discount, 517.47930 as profit union all + select 5277 as row_id, 'CA-2017-147333' as order_id, ${DATE_PREFIX}'2020-12-14'${DATE_SUFFIX} as order_date, 'KL-16555' as customer_id, 'Columbus' as city, 'Technology' as category, 'Accessories' as sub_category, 'Kingston Digital DataTraveler 16GB USB 2.0' as product_name, 44.75000 as sales, 5 as quantity, 0.00000 as discount, 8.50250 as profit union all + select 6125 as row_id, 'CA-2017-145772' as order_id, ${DATE_PREFIX}'2020-06-03'${DATE_SUFFIX} as order_date, 'SS-20140' as customer_id, 'Los Angeles' as city, 'Technology' as category, 'Accessories' as sub_category, 'Kingston Digital DataTraveler 16GB USB 2.1' as product_name, 44.75000 as sales, 5 as quantity, 0.00000 as discount, 8.50250 as profit union all + select 2455 as row_id, 'CA-2017-140949' as order_id, ${DATE_PREFIX}'2020-03-17'${DATE_SUFFIX} as order_date, 'DB-13405' as customer_id, 'New York City' as city, 'Technology' as category, 'Accessories' as sub_category, 'Kingston Digital DataTraveler 16GB USB 2.2' as product_name, 71.60000 as sales, 8 as quantity, 0.00000 as discount, 13.60400 as profit union all + select 2661 as row_id, 'CA-2017-123372' as order_id, ${DATE_PREFIX}'2020-11-28'${DATE_SUFFIX} as order_date, 'DG-13300' as customer_id, 'Columbus' as city, 'Technology' as category, 'Phones' as sub_category, 'Google Nexus 5' as product_name, 1979.89000 as sales, 11 as quantity, 0.00000 as discount, 494.97250 as profit union all + select 3083 as row_id, 'US-2017-132297' as order_id, ${DATE_PREFIX}'2020-05-27'${DATE_SUFFIX} as order_date, 'DW-13480' as customer_id, 'Louisville' as city, 'Technology' as category, 'Phones' as sub_category, 'Google Nexus 6' as product_name, 539.97000 as sales, 3 as quantity, 0.00000 as discount, 134.99250 as profit union all + select 4161 as row_id, 'CA-2017-115546' as order_id, ${DATE_PREFIX}'2020-05-14'${DATE_SUFFIX} as order_date, 'AH-10465' as customer_id, 'New York City' as city, 'Technology' as category, 'Phones' as sub_category, 'Google Nexus 7' as product_name, 539.97000 as sales, 3 as quantity, 0.00000 as discount, 134.99250 as profit union all + select 8697 as row_id, 'CA-2017-119284' as order_id, ${DATE_PREFIX}'2020-06-15'${DATE_SUFFIX} as order_date, 'TS-21205' as customer_id, 'Columbus' as city, 'Technology' as category, 'Phones' as sub_category, 'HTC One' as product_name, 239.97600 as sales, 3 as quantity, 0.20000 as discount, 26.99730 as profit union all + select 7698 as row_id, 'CA-2017-151799' as order_id, ${DATE_PREFIX}'2020-12-14'${DATE_SUFFIX} as order_date, 'BF-11170' as customer_id, 'Columbus' as city, 'Technology' as category, 'Copiers' as sub_category, 'Canon PC1080F Personal Copier' as product_name, 1199.98000 as sales, 2 as quantity, 0.00000 as discount, 467.99220 as profit union all + select 7174 as row_id, 'US-2017-141677' as order_id, ${DATE_PREFIX}'2020-03-26'${DATE_SUFFIX} as order_date, 'HK-14890' as customer_id, 'Houston' as city, 'Technology' as category, 'Copiers' as sub_category, 'Canon PC1080F Personal Copier' as product_name, 2399.96000 as sales, 5 as quantity, 0.20000 as discount, 569.99050 as profit union all + select 9618 as row_id, 'CA-2017-160633' as order_id, ${DATE_PREFIX}'2020-11-16'${DATE_SUFFIX} as order_date, 'BS-11380' as customer_id, 'Columbus' as city, 'Technology' as category, 'Copiers' as sub_category, 'Hewlett Packard 610 Color Digital Copier / Printer' as product_name, 899.98200 as sales, 3 as quantity, 0.40000 as discount, 74.99850 as profit union all + select 8958 as row_id, 'CA-2017-105620' as order_id, ${DATE_PREFIX}'2020-12-25'${DATE_SUFFIX} as order_date, 'JH-15430' as customer_id, 'Columbus' as city, 'Technology' as category, 'Machines' as sub_category, 'Lexmark 20R1285 X6650 Wireless All-in-One Printer' as product_name, NULL as sales, 2 as quantity, 0.50000 as discount, -7.20000 as profit union all + select 8878 as row_id, 'CA-2017-126928' as order_id, ${DATE_PREFIX}'2020-09-17'${DATE_SUFFIX} as order_date, 'GZ-14470' as customer_id, 'Morristown' as city, 'Technology' as category, 'Machines' as sub_category, 'Lexmark 20R1285 X6650 Wireless All-in-One Printer' as product_name, 600.00000 as sales, 4 as quantity, 0.00000 as discount, 225.60000 as profit union all + select 7293 as row_id, 'CA-2017-109183' as order_id, ${DATE_PREFIX}'2020-12-04'${DATE_SUFFIX} as order_date, 'LR-16915' as customer_id, 'Columbus' as city, 'Technology' as category, 'Machines' as sub_category, 'Okidata C610n Printer' as product_name, 649.00000 as sales, 2 as quantity, 0.50000 as discount, -272.58000 as profit + `; if (!GENERATE_BIG_SERIES) { return `SELECT row_id as id, row_id, order_id, order_date, city, category, sub_category, product_name, sales, quantity, discount, profit from (${data}) d`; } diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-full.test.ts.snap index 09a34bb3d7a96..0239cf19c7fee 100644 --- a/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-full.test.ts.snap +++ b/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-full.test.ts.snap @@ -2275,6 +2275,263 @@ Array [ ] `; +exports[`Queries with the @cubejs-backend/snowflake-driver querying BigECommerce: partitioned pre-agg 1`] = ` +Array [ + Object { + "BigECommerce.orderDate": "2020-01-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-01-01T00:00:00.000", + "BigECommerce.productName": "Balt Solid Wood Rectangular Table", + "BigECommerce.totalQuantity": "2", + }, + Object { + "BigECommerce.orderDate": "2020-01-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-01-01T00:00:00.000", + "BigECommerce.productName": "Linden 10 Round Wall Clock, Black", + "BigECommerce.totalQuantity": "4", + }, + Object { + "BigECommerce.orderDate": "2020-02-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-02-01T00:00:00.000", + "BigECommerce.productName": "Vinyl Coated Wire Paper Clips in Organizer Box, 800/Box", + "BigECommerce.totalQuantity": "2", + }, + Object { + "BigECommerce.orderDate": "2020-03-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-03-01T00:00:00.000", + "BigECommerce.productName": "Canon PC1080F Personal Copier", + "BigECommerce.totalQuantity": "5", + }, + Object { + "BigECommerce.orderDate": "2020-03-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-03-01T00:00:00.000", + "BigECommerce.productName": "Kingston Digital DataTraveler 16GB USB 2.2", + "BigECommerce.totalQuantity": "8", + }, + Object { + "BigECommerce.orderDate": "2020-04-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-04-01T00:00:00.000", + "BigECommerce.productName": "Linden 10 Round Wall Clock, Black", + "BigECommerce.totalQuantity": "3", + }, + Object { + "BigECommerce.orderDate": "2020-05-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-05-01T00:00:00.000", + "BigECommerce.productName": "Google Nexus 6", + "BigECommerce.totalQuantity": "3", + }, + Object { + "BigECommerce.orderDate": "2020-05-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-05-01T00:00:00.000", + "BigECommerce.productName": "Google Nexus 7", + "BigECommerce.totalQuantity": "3", + }, + Object { + "BigECommerce.orderDate": "2020-05-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-05-01T00:00:00.000", + "BigECommerce.productName": "OIC #2 Pencils, Medium Soft", + "BigECommerce.totalQuantity": "2", + }, + Object { + "BigECommerce.orderDate": "2020-05-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-05-01T00:00:00.000", + "BigECommerce.productName": "Plymouth Boxed Rubber Bands by Plymouth", + "BigECommerce.totalQuantity": "5", + }, + Object { + "BigECommerce.orderDate": "2020-05-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-05-01T00:00:00.000", + "BigECommerce.productName": "Tyvek Side-Opening Peel & Seel Expanding Envelopes", + "BigECommerce.totalQuantity": "2", + }, + Object { + "BigECommerce.orderDate": "2020-06-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-06-01T00:00:00.000", + "BigECommerce.productName": "DMI Eclipse Executive Suite Bookcases", + "BigECommerce.totalQuantity": "1", + }, + Object { + "BigECommerce.orderDate": "2020-06-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-06-01T00:00:00.000", + "BigECommerce.productName": "HTC One", + "BigECommerce.totalQuantity": "3", + }, + Object { + "BigECommerce.orderDate": "2020-06-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-06-01T00:00:00.000", + "BigECommerce.productName": "Kingston Digital DataTraveler 16GB USB 2.1", + "BigECommerce.totalQuantity": "5", + }, + Object { + "BigECommerce.orderDate": "2020-06-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-06-01T00:00:00.000", + "BigECommerce.productName": "OIC #2 Pencils, Medium Soft", + "BigECommerce.totalQuantity": "2", + }, + Object { + "BigECommerce.orderDate": "2020-06-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-06-01T00:00:00.000", + "BigECommerce.productName": "Plymouth Boxed Rubber Bands by Plymouth", + "BigECommerce.totalQuantity": "6", + }, + Object { + "BigECommerce.orderDate": "2020-06-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-06-01T00:00:00.000", + "BigECommerce.productName": "Project Tote Personal File", + "BigECommerce.totalQuantity": "1", + }, + Object { + "BigECommerce.orderDate": "2020-09-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-09-01T00:00:00.000", + "BigECommerce.productName": "Global Adaptabilites Bookcase, Cherry/Storm Gray Finish", + "BigECommerce.totalQuantity": "3", + }, + Object { + "BigECommerce.orderDate": "2020-09-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-09-01T00:00:00.000", + "BigECommerce.productName": "Harbour Creations 67200 Series Stacking Chairs", + "BigECommerce.totalQuantity": "7", + }, + Object { + "BigECommerce.orderDate": "2020-09-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-09-01T00:00:00.000", + "BigECommerce.productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer", + "BigECommerce.totalQuantity": "4", + }, + Object { + "BigECommerce.orderDate": "2020-09-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-09-01T00:00:00.000", + "BigECommerce.productName": "OIC #2 Pencils, Medium Soft", + "BigECommerce.totalQuantity": "5", + }, + Object { + "BigECommerce.orderDate": "2020-09-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-09-01T00:00:00.000", + "BigECommerce.productName": "Vinyl Coated Wire Paper Clips in Organizer Box, 800/Box", + "BigECommerce.totalQuantity": "5", + }, + Object { + "BigECommerce.orderDate": "2020-09-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-09-01T00:00:00.000", + "BigECommerce.productName": "Wausau Papers Astrobrights Colored Envelopes", + "BigECommerce.totalQuantity": "3", + }, + Object { + "BigECommerce.orderDate": "2020-10-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-10-01T00:00:00.000", + "BigECommerce.productName": "Anderson Hickey Conga Table Tops & Accessories", + "BigECommerce.totalQuantity": "2", + }, + Object { + "BigECommerce.orderDate": "2020-10-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-10-01T00:00:00.000", + "BigECommerce.productName": "Global Adaptabilites Bookcase, Cherry/Storm Gray Finish", + "BigECommerce.totalQuantity": "5", + }, + Object { + "BigECommerce.orderDate": "2020-10-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-10-01T00:00:00.000", + "BigECommerce.productName": "Linden 10 Round Wall Clock, Black", + "BigECommerce.totalQuantity": "2", + }, + Object { + "BigECommerce.orderDate": "2020-10-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-10-01T00:00:00.000", + "BigECommerce.productName": "Magna Visual Magnetic Picture Hangers", + "BigECommerce.totalQuantity": "2", + }, + Object { + "BigECommerce.orderDate": "2020-11-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-11-01T00:00:00.000", + "BigECommerce.productName": "Google Nexus 5", + "BigECommerce.totalQuantity": "11", + }, + Object { + "BigECommerce.orderDate": "2020-11-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-11-01T00:00:00.000", + "BigECommerce.productName": "Harbour Creations 67200 Series Stacking Chairs", + "BigECommerce.totalQuantity": "4", + }, + Object { + "BigECommerce.orderDate": "2020-11-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-11-01T00:00:00.000", + "BigECommerce.productName": "Hewlett Packard 610 Color Digital Copier / Printer", + "BigECommerce.totalQuantity": "3", + }, + Object { + "BigECommerce.orderDate": "2020-11-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-11-01T00:00:00.000", + "BigECommerce.productName": "Linden 10 Round Wall Clock, Black", + "BigECommerce.totalQuantity": "5", + }, + Object { + "BigECommerce.orderDate": "2020-11-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-11-01T00:00:00.000", + "BigECommerce.productName": "Logitech diNovo Edge Keyboard", + "BigECommerce.totalQuantity": "9", + }, + Object { + "BigECommerce.orderDate": "2020-11-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-11-01T00:00:00.000", + "BigECommerce.productName": "Panasonic KP-380BK Classic Electric Pencil Sharpener", + "BigECommerce.totalQuantity": "3", + }, + Object { + "BigECommerce.orderDate": "2020-11-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-11-01T00:00:00.000", + "BigECommerce.productName": "Recycled Eldon Regeneration Jumbo File", + "BigECommerce.totalQuantity": "4", + }, + Object { + "BigECommerce.orderDate": "2020-11-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-11-01T00:00:00.000", + "BigECommerce.productName": "Vinyl Coated Wire Paper Clips in Organizer Box, 800/Box", + "BigECommerce.totalQuantity": "4", + }, + Object { + "BigECommerce.orderDate": "2020-12-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-12-01T00:00:00.000", + "BigECommerce.productName": "Canon PC1080F Personal Copier", + "BigECommerce.totalQuantity": "2", + }, + Object { + "BigECommerce.orderDate": "2020-12-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-12-01T00:00:00.000", + "BigECommerce.productName": "Iceberg Nesting Folding Chair, 19w x 6d x 43h", + "BigECommerce.totalQuantity": "4", + }, + Object { + "BigECommerce.orderDate": "2020-12-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-12-01T00:00:00.000", + "BigECommerce.productName": "Kingston Digital DataTraveler 16GB USB 2.0", + "BigECommerce.totalQuantity": "5", + }, + Object { + "BigECommerce.orderDate": "2020-12-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-12-01T00:00:00.000", + "BigECommerce.productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer", + "BigECommerce.totalQuantity": "2", + }, + Object { + "BigECommerce.orderDate": "2020-12-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-12-01T00:00:00.000", + "BigECommerce.productName": "Magna Visual Magnetic Picture Hangers", + "BigECommerce.totalQuantity": "2", + }, + Object { + "BigECommerce.orderDate": "2020-12-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-12-01T00:00:00.000", + "BigECommerce.productName": "Okidata C610n Printer", + "BigECommerce.totalQuantity": "2", + }, + Object { + "BigECommerce.orderDate": "2020-12-01T00:00:00.000", + "BigECommerce.orderDate.month": "2020-12-01T00:00:00.000", + "BigECommerce.productName": "Panasonic KP-380BK Classic Electric Pencil Sharpener", + "BigECommerce.totalQuantity": "5", + }, +] +`; + exports[`Queries with the @cubejs-backend/snowflake-driver querying Customers: dimensions 1`] = ` Array [ Object { diff --git a/rust/cubestore/cubestore-sql-tests/src/tests.rs b/rust/cubestore/cubestore-sql-tests/src/tests.rs index 7181aadc070bf..06159ba703f37 100644 --- a/rust/cubestore/cubestore-sql-tests/src/tests.rs +++ b/rust/cubestore/cubestore-sql-tests/src/tests.rs @@ -1969,7 +1969,7 @@ async fn create_table_with_location(service: Box) { file.write_all("5,New York,\"\",2021-01-25 19:12:23 UTC\n".as_bytes()) .await .unwrap(); - file.write_all("6,New York,\"\",\"\\N\"\n".as_bytes()) + file.write_all("6,New York,\\\\N,\"\\N\"\n".as_bytes()) .await .unwrap(); diff --git a/rust/cubestore/cubestore/src/import/mod.rs b/rust/cubestore/cubestore/src/import/mod.rs index fc693a6f7487b..86ccc04f616ac 100644 --- a/rust/cubestore/cubestore/src/import/mod.rs +++ b/rust/cubestore/cubestore/src/import/mod.rs @@ -132,7 +132,7 @@ impl ImportFormat { let value_buf = parser.next_value()?; let value = value_buf.as_ref(); - if value == "" || value == "\\N" { + if value == "" || value == "\\N" || value == "\\\\N" { row[*insert_pos] = TableValue::Null; } else { let mut value_buf_opt = Some(value_buf); From d3c06a7cd724a9cab5ba06d515e00b5e855d438d Mon Sep 17 00:00:00 2001 From: Pavel Tiunov Date: Fri, 16 Jun 2023 20:28:44 -0700 Subject: [PATCH 3/3] v0.33.27 --- CHANGELOG.md | 11 ++++++ lerna.json | 2 +- packages/cubejs-athena-driver/CHANGELOG.md | 8 ++++ packages/cubejs-athena-driver/package.json | 4 +- packages/cubejs-bigquery-driver/CHANGELOG.md | 8 ++++ packages/cubejs-bigquery-driver/package.json | 4 +- packages/cubejs-cli/CHANGELOG.md | 8 ++++ packages/cubejs-cli/package.json | 6 +-- packages/cubejs-crate-driver/CHANGELOG.md | 8 ++++ packages/cubejs-crate-driver/package.json | 6 +-- packages/cubejs-cubestore-driver/CHANGELOG.md | 8 ++++ packages/cubejs-cubestore-driver/package.json | 4 +- .../CHANGELOG.md | 8 ++++ .../package.json | 4 +- .../cubejs-dbt-schema-extension/CHANGELOG.md | 8 ++++ .../cubejs-dbt-schema-extension/package.json | 6 +-- packages/cubejs-docker/CHANGELOG.md | 8 ++++ packages/cubejs-docker/package.json | 38 +++++++++---------- packages/cubejs-dremio-driver/CHANGELOG.md | 8 ++++ packages/cubejs-dremio-driver/package.json | 4 +- packages/cubejs-druid-driver/CHANGELOG.md | 8 ++++ packages/cubejs-druid-driver/package.json | 4 +- packages/cubejs-duckdb-driver/CHANGELOG.md | 8 ++++ packages/cubejs-duckdb-driver/package.json | 6 +-- packages/cubejs-firebolt-driver/CHANGELOG.md | 8 ++++ packages/cubejs-firebolt-driver/package.json | 6 +-- packages/cubejs-ksql-driver/CHANGELOG.md | 8 ++++ packages/cubejs-ksql-driver/package.json | 4 +- .../cubejs-materialize-driver/CHANGELOG.md | 8 ++++ .../cubejs-materialize-driver/package.json | 6 +-- packages/cubejs-mysql-driver/CHANGELOG.md | 8 ++++ packages/cubejs-mysql-driver/package.json | 4 +- packages/cubejs-postgres-driver/CHANGELOG.md | 8 ++++ packages/cubejs-postgres-driver/package.json | 4 +- .../cubejs-query-orchestrator/CHANGELOG.md | 8 ++++ .../cubejs-query-orchestrator/package.json | 4 +- packages/cubejs-questdb-driver/CHANGELOG.md | 8 ++++ packages/cubejs-questdb-driver/package.json | 6 +-- packages/cubejs-redshift-driver/CHANGELOG.md | 8 ++++ packages/cubejs-redshift-driver/package.json | 4 +- packages/cubejs-schema-compiler/CHANGELOG.md | 8 ++++ packages/cubejs-schema-compiler/package.json | 4 +- packages/cubejs-server-core/CHANGELOG.md | 8 ++++ packages/cubejs-server-core/package.json | 8 ++-- packages/cubejs-server/CHANGELOG.md | 8 ++++ packages/cubejs-server/package.json | 8 ++-- packages/cubejs-serverless-aws/CHANGELOG.md | 8 ++++ packages/cubejs-serverless-aws/package.json | 4 +- .../cubejs-serverless-google/CHANGELOG.md | 8 ++++ .../cubejs-serverless-google/package.json | 4 +- packages/cubejs-serverless/CHANGELOG.md | 8 ++++ packages/cubejs-serverless/package.json | 4 +- packages/cubejs-testing-drivers/CHANGELOG.md | 11 ++++++ packages/cubejs-testing-drivers/package.json | 16 ++++---- packages/cubejs-testing-shared/CHANGELOG.md | 8 ++++ packages/cubejs-testing-shared/package.json | 6 +-- packages/cubejs-testing/CHANGELOG.md | 8 ++++ packages/cubejs-testing/package.json | 12 +++--- packages/cubejs-trino-driver/CHANGELOG.md | 8 ++++ packages/cubejs-trino-driver/package.json | 4 +- rust/cubestore/CHANGELOG.md | 11 ++++++ rust/cubestore/package.json | 2 +- 62 files changed, 356 insertions(+), 99 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc724a4df6366..c8d9f7cef0f84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + + +### Bug Fixes + +* Support unescaped `\\N` as NULL value for Snowflake driver ([#6735](https://github.com/cube-js/cube/issues/6735)) ([1f92ba6](https://github.com/cube-js/cube/commit/1f92ba6f5407f82703c8920b27a3a3e5a16fea41)), closes [#6693](https://github.com/cube-js/cube/issues/6693) + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) diff --git a/lerna.json b/lerna.json index 9c4d5e4e113a1..5108fe50619e1 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "0.33.26", + "version": "0.33.27", "npmClient": "yarn", "useWorkspaces": true, "packages": [ diff --git a/packages/cubejs-athena-driver/CHANGELOG.md b/packages/cubejs-athena-driver/CHANGELOG.md index a2fe82212338a..955d459e8f259 100644 --- a/packages/cubejs-athena-driver/CHANGELOG.md +++ b/packages/cubejs-athena-driver/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/athena-driver + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) **Note:** Version bump only for package @cubejs-backend/athena-driver diff --git a/packages/cubejs-athena-driver/package.json b/packages/cubejs-athena-driver/package.json index 350dc7bf51a5e..a31852d430932 100644 --- a/packages/cubejs-athena-driver/package.json +++ b/packages/cubejs-athena-driver/package.json @@ -2,7 +2,7 @@ "name": "@cubejs-backend/athena-driver", "description": "Cube.js Athena database driver", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "repository": { "type": "git", "url": "https://github.com/cube-js/cube.git", @@ -37,7 +37,7 @@ }, "devDependencies": { "@cubejs-backend/linter": "^0.33.0", - "@cubejs-backend/testing-shared": "^0.33.26", + "@cubejs-backend/testing-shared": "^0.33.27", "@types/ramda": "^0.27.40", "typescript": "~4.9.5" }, diff --git a/packages/cubejs-bigquery-driver/CHANGELOG.md b/packages/cubejs-bigquery-driver/CHANGELOG.md index fdc41d3ecefb5..10a22a0dc3458 100644 --- a/packages/cubejs-bigquery-driver/CHANGELOG.md +++ b/packages/cubejs-bigquery-driver/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/bigquery-driver + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) **Note:** Version bump only for package @cubejs-backend/bigquery-driver diff --git a/packages/cubejs-bigquery-driver/package.json b/packages/cubejs-bigquery-driver/package.json index 72a96038c1e49..52f1c2a576b7d 100644 --- a/packages/cubejs-bigquery-driver/package.json +++ b/packages/cubejs-bigquery-driver/package.json @@ -2,7 +2,7 @@ "name": "@cubejs-backend/bigquery-driver", "description": "Cube.js BigQuery database driver", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "repository": { "type": "git", "url": "https://github.com/cube-js/cube.git", @@ -36,7 +36,7 @@ "ramda": "^0.27.2" }, "devDependencies": { - "@cubejs-backend/testing-shared": "^0.33.26", + "@cubejs-backend/testing-shared": "^0.33.27", "@types/dedent": "^0.7.0", "@types/ramda": "^0.27.40", "typescript": "~4.9.5" diff --git a/packages/cubejs-cli/CHANGELOG.md b/packages/cubejs-cli/CHANGELOG.md index d62b9d80001da..e26cd58a18861 100644 --- a/packages/cubejs-cli/CHANGELOG.md +++ b/packages/cubejs-cli/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package cubejs-cli + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) **Note:** Version bump only for package cubejs-cli diff --git a/packages/cubejs-cli/package.json b/packages/cubejs-cli/package.json index cd9a8ea7aad59..041999ed3a54e 100644 --- a/packages/cubejs-cli/package.json +++ b/packages/cubejs-cli/package.json @@ -2,7 +2,7 @@ "name": "cubejs-cli", "description": "Cube.js Command Line Interface", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "repository": { "type": "git", "url": "https://github.com/cube-js/cube.git", @@ -31,7 +31,7 @@ ], "dependencies": { "@cubejs-backend/dotenv": "^9.0.2", - "@cubejs-backend/schema-compiler": "^0.33.26", + "@cubejs-backend/schema-compiler": "^0.33.27", "@cubejs-backend/shared": "^0.33.26", "chalk": "^2.4.2", "cli-progress": "^3.10", @@ -50,7 +50,7 @@ }, "devDependencies": { "@cubejs-backend/linter": "^0.33.0", - "@cubejs-backend/server": "^0.33.26", + "@cubejs-backend/server": "^0.33.27", "@oclif/command": "^1.8.0", "@types/cli-progress": "^3.8.0", "@types/cross-spawn": "^6.0.2", diff --git a/packages/cubejs-crate-driver/CHANGELOG.md b/packages/cubejs-crate-driver/CHANGELOG.md index f5de7dedbf9ad..73e3fffb0418b 100644 --- a/packages/cubejs-crate-driver/CHANGELOG.md +++ b/packages/cubejs-crate-driver/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/crate-driver + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) **Note:** Version bump only for package @cubejs-backend/crate-driver diff --git a/packages/cubejs-crate-driver/package.json b/packages/cubejs-crate-driver/package.json index 5a45b67efcb6b..765b4a511f3f4 100644 --- a/packages/cubejs-crate-driver/package.json +++ b/packages/cubejs-crate-driver/package.json @@ -2,7 +2,7 @@ "name": "@cubejs-backend/crate-driver", "description": "Cube.js Crate database driver", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "repository": { "type": "git", "url": "https://github.com/cube-js/cube.git", @@ -28,14 +28,14 @@ "lint:fix": "eslint --fix src/* --ext .ts" }, "dependencies": { - "@cubejs-backend/postgres-driver": "^0.33.26", + "@cubejs-backend/postgres-driver": "^0.33.27", "@cubejs-backend/shared": "^0.33.26", "pg": "^8.7.1" }, "license": "Apache-2.0", "devDependencies": { "@cubejs-backend/linter": "^0.33.0", - "@cubejs-backend/testing-shared": "^0.33.26", + "@cubejs-backend/testing-shared": "^0.33.27", "testcontainers": "^8.12", "typescript": "~4.9.5" }, diff --git a/packages/cubejs-cubestore-driver/CHANGELOG.md b/packages/cubejs-cubestore-driver/CHANGELOG.md index 4be49aadaa55c..71be5f8f03cad 100644 --- a/packages/cubejs-cubestore-driver/CHANGELOG.md +++ b/packages/cubejs-cubestore-driver/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/cubestore-driver + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) **Note:** Version bump only for package @cubejs-backend/cubestore-driver diff --git a/packages/cubejs-cubestore-driver/package.json b/packages/cubejs-cubestore-driver/package.json index 48b4143e59925..92b2201ed7e79 100644 --- a/packages/cubejs-cubestore-driver/package.json +++ b/packages/cubejs-cubestore-driver/package.json @@ -2,7 +2,7 @@ "name": "@cubejs-backend/cubestore-driver", "description": "Cube Store driver", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "repository": { "type": "git", "url": "https://github.com/cube-js/cube.git", @@ -27,7 +27,7 @@ }, "dependencies": { "@cubejs-backend/base-driver": "^0.33.26", - "@cubejs-backend/cubestore": "^0.33.26", + "@cubejs-backend/cubestore": "^0.33.27", "@cubejs-backend/shared": "^0.33.26", "csv-write-stream": "^2.0.0", "flatbuffers": "23.3.3", diff --git a/packages/cubejs-databricks-jdbc-driver/CHANGELOG.md b/packages/cubejs-databricks-jdbc-driver/CHANGELOG.md index 314d1794ebbcd..8aabf5ef0bbe5 100644 --- a/packages/cubejs-databricks-jdbc-driver/CHANGELOG.md +++ b/packages/cubejs-databricks-jdbc-driver/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/databricks-jdbc-driver + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) diff --git a/packages/cubejs-databricks-jdbc-driver/package.json b/packages/cubejs-databricks-jdbc-driver/package.json index 1bc6c51823862..47cf856a170be 100644 --- a/packages/cubejs-databricks-jdbc-driver/package.json +++ b/packages/cubejs-databricks-jdbc-driver/package.json @@ -2,7 +2,7 @@ "name": "@cubejs-backend/databricks-jdbc-driver", "description": "Cube.js Databricks database driver", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "license": "Apache-2.0", "repository": { "type": "git", @@ -33,7 +33,7 @@ "@azure/storage-blob": "^12.9.0", "@cubejs-backend/base-driver": "^0.33.26", "@cubejs-backend/jdbc-driver": "^0.33.26", - "@cubejs-backend/schema-compiler": "^0.33.26", + "@cubejs-backend/schema-compiler": "^0.33.27", "@cubejs-backend/shared": "^0.33.26", "inquirer": "^8.0.0", "node-fetch": "^2.6.1", diff --git a/packages/cubejs-dbt-schema-extension/CHANGELOG.md b/packages/cubejs-dbt-schema-extension/CHANGELOG.md index e5798263d2200..d1de558ac4f44 100644 --- a/packages/cubejs-dbt-schema-extension/CHANGELOG.md +++ b/packages/cubejs-dbt-schema-extension/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/dbt-schema-extension + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) **Note:** Version bump only for package @cubejs-backend/dbt-schema-extension diff --git a/packages/cubejs-dbt-schema-extension/package.json b/packages/cubejs-dbt-schema-extension/package.json index d3dbac451dd08..49c67c933ab35 100644 --- a/packages/cubejs-dbt-schema-extension/package.json +++ b/packages/cubejs-dbt-schema-extension/package.json @@ -2,7 +2,7 @@ "name": "@cubejs-backend/dbt-schema-extension", "description": "Cube.js dbt Schema Extension", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "repository": { "type": "git", "url": "https://github.com/cube-js/cube.git", @@ -25,14 +25,14 @@ "lint:fix": "eslint --fix src/* --ext .ts,.js" }, "dependencies": { - "@cubejs-backend/schema-compiler": "^0.33.26", + "@cubejs-backend/schema-compiler": "^0.33.27", "fs-extra": "^9.1.0", "inflection": "^1.12.0", "node-fetch": "^2.6.1" }, "devDependencies": { "@cubejs-backend/linter": "^0.33.0", - "@cubejs-backend/testing": "^0.33.26", + "@cubejs-backend/testing": "^0.33.27", "@types/generic-pool": "^3.1.9", "@types/jest": "^26.0.24", "jest": "^26.6.3", diff --git a/packages/cubejs-docker/CHANGELOG.md b/packages/cubejs-docker/CHANGELOG.md index f471db9c41ae9..1d99829099367 100644 --- a/packages/cubejs-docker/CHANGELOG.md +++ b/packages/cubejs-docker/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube.js/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/docker + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) **Note:** Version bump only for package @cubejs-backend/docker diff --git a/packages/cubejs-docker/package.json b/packages/cubejs-docker/package.json index 5b482f0a8099d..858362e2124f6 100644 --- a/packages/cubejs-docker/package.json +++ b/packages/cubejs-docker/package.json @@ -1,6 +1,6 @@ { "name": "@cubejs-backend/docker", - "version": "0.33.26", + "version": "0.33.27", "description": "Cube.js In Docker (virtual package)", "author": "Cube Dev, Inc.", "license": "Apache-2.0", @@ -9,33 +9,33 @@ "node": "^14.0.0 || ^16.0.0 || >=17.0.0" }, "dependencies": { - "@cubejs-backend/athena-driver": "^0.33.26", - "@cubejs-backend/bigquery-driver": "^0.33.26", + "@cubejs-backend/athena-driver": "^0.33.27", + "@cubejs-backend/bigquery-driver": "^0.33.27", "@cubejs-backend/clickhouse-driver": "^0.33.26", - "@cubejs-backend/crate-driver": "^0.33.26", - "@cubejs-backend/databricks-jdbc-driver": "^0.33.26", - "@cubejs-backend/dbt-schema-extension": "^0.33.26", - "@cubejs-backend/dremio-driver": "^0.33.26", - "@cubejs-backend/druid-driver": "^0.33.26", - "@cubejs-backend/duckdb-driver": "^0.33.26", + "@cubejs-backend/crate-driver": "^0.33.27", + "@cubejs-backend/databricks-jdbc-driver": "^0.33.27", + "@cubejs-backend/dbt-schema-extension": "^0.33.27", + "@cubejs-backend/dremio-driver": "^0.33.27", + "@cubejs-backend/druid-driver": "^0.33.27", + "@cubejs-backend/duckdb-driver": "^0.33.27", "@cubejs-backend/elasticsearch-driver": "^0.33.26", - "@cubejs-backend/firebolt-driver": "^0.33.26", + "@cubejs-backend/firebolt-driver": "^0.33.27", "@cubejs-backend/hive-driver": "^0.33.26", - "@cubejs-backend/ksql-driver": "^0.33.26", - "@cubejs-backend/materialize-driver": "^0.33.26", + "@cubejs-backend/ksql-driver": "^0.33.27", + "@cubejs-backend/materialize-driver": "^0.33.27", "@cubejs-backend/mongobi-driver": "^0.33.26", "@cubejs-backend/mssql-driver": "^0.33.26", - "@cubejs-backend/mysql-driver": "^0.33.26", + "@cubejs-backend/mysql-driver": "^0.33.27", "@cubejs-backend/oracle-driver": "^0.33.26", - "@cubejs-backend/postgres-driver": "^0.33.26", + "@cubejs-backend/postgres-driver": "^0.33.27", "@cubejs-backend/prestodb-driver": "^0.33.26", - "@cubejs-backend/questdb-driver": "^0.33.26", - "@cubejs-backend/redshift-driver": "^0.33.26", - "@cubejs-backend/server": "^0.33.26", + "@cubejs-backend/questdb-driver": "^0.33.27", + "@cubejs-backend/redshift-driver": "^0.33.27", + "@cubejs-backend/server": "^0.33.27", "@cubejs-backend/snowflake-driver": "^0.33.26", "@cubejs-backend/sqlite-driver": "^0.33.26", - "@cubejs-backend/trino-driver": "^0.33.26", - "cubejs-cli": "^0.33.26", + "@cubejs-backend/trino-driver": "^0.33.27", + "cubejs-cli": "^0.33.27", "typescript": "~4.9.5" }, "resolutions": { diff --git a/packages/cubejs-dremio-driver/CHANGELOG.md b/packages/cubejs-dremio-driver/CHANGELOG.md index 52527e9937dd8..ec203f4f35eb8 100644 --- a/packages/cubejs-dremio-driver/CHANGELOG.md +++ b/packages/cubejs-dremio-driver/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/dremio-driver + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) **Note:** Version bump only for package @cubejs-backend/dremio-driver diff --git a/packages/cubejs-dremio-driver/package.json b/packages/cubejs-dremio-driver/package.json index 09ef5c28cd23e..0644e2b06cd2b 100644 --- a/packages/cubejs-dremio-driver/package.json +++ b/packages/cubejs-dremio-driver/package.json @@ -2,7 +2,7 @@ "name": "@cubejs-backend/dremio-driver", "description": "Cube.js Dremio driver", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "repository": { "type": "git", "url": "https://github.com/cube-js/cube.git", @@ -18,7 +18,7 @@ }, "dependencies": { "@cubejs-backend/base-driver": "^0.33.26", - "@cubejs-backend/schema-compiler": "^0.33.26", + "@cubejs-backend/schema-compiler": "^0.33.27", "@cubejs-backend/shared": "^0.33.26", "axios": "^0.21.1", "moment-timezone": "^0.5.31", diff --git a/packages/cubejs-druid-driver/CHANGELOG.md b/packages/cubejs-druid-driver/CHANGELOG.md index 9d9987b3975b8..c1e007b65d3c5 100644 --- a/packages/cubejs-druid-driver/CHANGELOG.md +++ b/packages/cubejs-druid-driver/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/druid-driver + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) **Note:** Version bump only for package @cubejs-backend/druid-driver diff --git a/packages/cubejs-druid-driver/package.json b/packages/cubejs-druid-driver/package.json index 15d6820b463e0..ed81cd6e70868 100644 --- a/packages/cubejs-druid-driver/package.json +++ b/packages/cubejs-druid-driver/package.json @@ -2,7 +2,7 @@ "name": "@cubejs-backend/druid-driver", "description": "Cube.js Druid database driver", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "license": "Apache-2.0", "repository": { "type": "git", @@ -29,7 +29,7 @@ ], "dependencies": { "@cubejs-backend/base-driver": "^0.33.26", - "@cubejs-backend/schema-compiler": "^0.33.26", + "@cubejs-backend/schema-compiler": "^0.33.27", "@cubejs-backend/shared": "^0.33.26", "axios": "^0.21.1", "moment-timezone": "^0.5.31" diff --git a/packages/cubejs-duckdb-driver/CHANGELOG.md b/packages/cubejs-duckdb-driver/CHANGELOG.md index 93a0014c2a8e6..9e9d3671e2e18 100644 --- a/packages/cubejs-duckdb-driver/CHANGELOG.md +++ b/packages/cubejs-duckdb-driver/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/duckdb-driver + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) **Note:** Version bump only for package @cubejs-backend/duckdb-driver diff --git a/packages/cubejs-duckdb-driver/package.json b/packages/cubejs-duckdb-driver/package.json index 60c27e86d9eb4..b47638b83cb95 100644 --- a/packages/cubejs-duckdb-driver/package.json +++ b/packages/cubejs-duckdb-driver/package.json @@ -2,7 +2,7 @@ "name": "@cubejs-backend/duckdb-driver", "description": "Cube.js DuckDB database driver", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "repository": { "type": "git", "url": "https://github.com/cube-js/cube.git", @@ -28,7 +28,7 @@ }, "dependencies": { "@cubejs-backend/base-driver": "^0.33.26", - "@cubejs-backend/schema-compiler": "^0.33.26", + "@cubejs-backend/schema-compiler": "^0.33.27", "@cubejs-backend/shared": "^0.33.26" }, "optionalDependencies": { @@ -37,7 +37,7 @@ "license": "Apache-2.0", "devDependencies": { "@cubejs-backend/linter": "^0.33.0", - "@cubejs-backend/testing-shared": "^0.33.26", + "@cubejs-backend/testing-shared": "^0.33.27", "@types/jest": "^26.0.14", "@types/node": "^14", "jest": "^26.6.3", diff --git a/packages/cubejs-firebolt-driver/CHANGELOG.md b/packages/cubejs-firebolt-driver/CHANGELOG.md index a57b3d1793d7d..92569ad960bf0 100644 --- a/packages/cubejs-firebolt-driver/CHANGELOG.md +++ b/packages/cubejs-firebolt-driver/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/firebolt-driver + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) **Note:** Version bump only for package @cubejs-backend/firebolt-driver diff --git a/packages/cubejs-firebolt-driver/package.json b/packages/cubejs-firebolt-driver/package.json index 4b380980bfd1e..3d16b73694228 100644 --- a/packages/cubejs-firebolt-driver/package.json +++ b/packages/cubejs-firebolt-driver/package.json @@ -2,7 +2,7 @@ "name": "@cubejs-backend/firebolt-driver", "description": "Cube.js Firebolt database driver", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "repository": { "type": "git", "url": "https://github.com/cube-js/cube.git", @@ -29,14 +29,14 @@ }, "dependencies": { "@cubejs-backend/base-driver": "^0.33.26", - "@cubejs-backend/schema-compiler": "^0.33.26", + "@cubejs-backend/schema-compiler": "^0.33.27", "@cubejs-backend/shared": "^0.33.26", "firebolt-sdk": "^0.1.14" }, "license": "Apache-2.0", "devDependencies": { "@cubejs-backend/linter": "^0.33.0", - "@cubejs-backend/testing-shared": "^0.33.26", + "@cubejs-backend/testing-shared": "^0.33.27", "typescript": "~4.9.5" }, "publishConfig": { diff --git a/packages/cubejs-ksql-driver/CHANGELOG.md b/packages/cubejs-ksql-driver/CHANGELOG.md index 292a2ed0b1efa..4b2d9e9e6b789 100644 --- a/packages/cubejs-ksql-driver/CHANGELOG.md +++ b/packages/cubejs-ksql-driver/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/ksql-driver + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) **Note:** Version bump only for package @cubejs-backend/ksql-driver diff --git a/packages/cubejs-ksql-driver/package.json b/packages/cubejs-ksql-driver/package.json index 7a8c79cfe2bb4..d432f3795a50e 100644 --- a/packages/cubejs-ksql-driver/package.json +++ b/packages/cubejs-ksql-driver/package.json @@ -2,7 +2,7 @@ "name": "@cubejs-backend/ksql-driver", "description": "Cube.js ksql database driver", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "repository": { "type": "git", "url": "https://github.com/cube-js/cube.git", @@ -26,7 +26,7 @@ }, "dependencies": { "@cubejs-backend/base-driver": "^0.33.26", - "@cubejs-backend/schema-compiler": "^0.33.26", + "@cubejs-backend/schema-compiler": "^0.33.27", "@cubejs-backend/shared": "^0.33.26", "async-mutex": "0.3.2", "axios": "^0.21.1", diff --git a/packages/cubejs-materialize-driver/CHANGELOG.md b/packages/cubejs-materialize-driver/CHANGELOG.md index aec1144dab359..69a1c406fb938 100644 --- a/packages/cubejs-materialize-driver/CHANGELOG.md +++ b/packages/cubejs-materialize-driver/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/materialize-driver + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) **Note:** Version bump only for package @cubejs-backend/materialize-driver diff --git a/packages/cubejs-materialize-driver/package.json b/packages/cubejs-materialize-driver/package.json index 929c44b49bb33..205ddc78e1d8f 100644 --- a/packages/cubejs-materialize-driver/package.json +++ b/packages/cubejs-materialize-driver/package.json @@ -2,7 +2,7 @@ "name": "@cubejs-backend/materialize-driver", "description": "Cube.js Materialize database driver", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "repository": { "type": "git", "url": "https://github.com/cube-js/cube.git", @@ -28,7 +28,7 @@ }, "dependencies": { "@cubejs-backend/base-driver": "^0.33.26", - "@cubejs-backend/postgres-driver": "^0.33.26", + "@cubejs-backend/postgres-driver": "^0.33.27", "@cubejs-backend/shared": "^0.33.26", "@types/pg": "^8.6.0", "pg": "^8.6.0", @@ -38,7 +38,7 @@ "license": "Apache-2.0", "devDependencies": { "@cubejs-backend/linter": "^0.33.0", - "@cubejs-backend/testing": "^0.33.26", + "@cubejs-backend/testing": "^0.33.27", "typescript": "~4.9.5" }, "publishConfig": { diff --git a/packages/cubejs-mysql-driver/CHANGELOG.md b/packages/cubejs-mysql-driver/CHANGELOG.md index b5e702d3494f5..c5d86e504c618 100644 --- a/packages/cubejs-mysql-driver/CHANGELOG.md +++ b/packages/cubejs-mysql-driver/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/mysql-driver + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) **Note:** Version bump only for package @cubejs-backend/mysql-driver diff --git a/packages/cubejs-mysql-driver/package.json b/packages/cubejs-mysql-driver/package.json index e01fa55d684a3..a6655fcf5edca 100644 --- a/packages/cubejs-mysql-driver/package.json +++ b/packages/cubejs-mysql-driver/package.json @@ -2,7 +2,7 @@ "name": "@cubejs-backend/mysql-driver", "description": "Cube.js Mysql database driver", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "repository": { "type": "git", "url": "https://github.com/cube-js/cube.git", @@ -35,7 +35,7 @@ }, "devDependencies": { "@cubejs-backend/linter": "^0.33.0", - "@cubejs-backend/testing-shared": "^0.33.26", + "@cubejs-backend/testing-shared": "^0.33.27", "@types/generic-pool": "^3.1.9", "@types/jest": "^26.0.23", "jest": "^26.6.3", diff --git a/packages/cubejs-postgres-driver/CHANGELOG.md b/packages/cubejs-postgres-driver/CHANGELOG.md index c21f3709b6134..e8b0d69da3082 100644 --- a/packages/cubejs-postgres-driver/CHANGELOG.md +++ b/packages/cubejs-postgres-driver/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/postgres-driver + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) **Note:** Version bump only for package @cubejs-backend/postgres-driver diff --git a/packages/cubejs-postgres-driver/package.json b/packages/cubejs-postgres-driver/package.json index 9b91c3e6ef744..e4b96c1ba480d 100644 --- a/packages/cubejs-postgres-driver/package.json +++ b/packages/cubejs-postgres-driver/package.json @@ -2,7 +2,7 @@ "name": "@cubejs-backend/postgres-driver", "description": "Cube.js Postgres database driver", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "repository": { "type": "git", "url": "https://github.com/cube-js/cube.git", @@ -38,7 +38,7 @@ "license": "Apache-2.0", "devDependencies": { "@cubejs-backend/linter": "^0.33.0", - "@cubejs-backend/testing-shared": "^0.33.26", + "@cubejs-backend/testing-shared": "^0.33.27", "testcontainers": "^8.4.0", "typescript": "~4.9.5" }, diff --git a/packages/cubejs-query-orchestrator/CHANGELOG.md b/packages/cubejs-query-orchestrator/CHANGELOG.md index 23263e96b33ea..36c6281dc45f4 100644 --- a/packages/cubejs-query-orchestrator/CHANGELOG.md +++ b/packages/cubejs-query-orchestrator/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/query-orchestrator + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) **Note:** Version bump only for package @cubejs-backend/query-orchestrator diff --git a/packages/cubejs-query-orchestrator/package.json b/packages/cubejs-query-orchestrator/package.json index 063be747e3621..35d6fab8a2e26 100644 --- a/packages/cubejs-query-orchestrator/package.json +++ b/packages/cubejs-query-orchestrator/package.json @@ -2,7 +2,7 @@ "name": "@cubejs-backend/query-orchestrator", "description": "Cube.js Query Orchestrator and Cache", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "repository": { "type": "git", "url": "https://github.com/cube-js/cube.git", @@ -31,7 +31,7 @@ ], "dependencies": { "@cubejs-backend/base-driver": "^0.33.26", - "@cubejs-backend/cubestore-driver": "^0.33.26", + "@cubejs-backend/cubestore-driver": "^0.33.27", "@cubejs-backend/shared": "^0.33.26", "csv-write-stream": "^2.0.0", "es5-ext": "0.10.53", diff --git a/packages/cubejs-questdb-driver/CHANGELOG.md b/packages/cubejs-questdb-driver/CHANGELOG.md index a1568d92b1439..526651b2e7e2e 100644 --- a/packages/cubejs-questdb-driver/CHANGELOG.md +++ b/packages/cubejs-questdb-driver/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/questdb-driver + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) **Note:** Version bump only for package @cubejs-backend/questdb-driver diff --git a/packages/cubejs-questdb-driver/package.json b/packages/cubejs-questdb-driver/package.json index aa8881b8dc0fe..32f9d97e70c23 100644 --- a/packages/cubejs-questdb-driver/package.json +++ b/packages/cubejs-questdb-driver/package.json @@ -2,7 +2,7 @@ "name": "@cubejs-backend/questdb-driver", "description": "Cube.js QuestDB database driver", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "repository": { "type": "git", "url": "https://github.com/cube-js/cube.git", @@ -28,7 +28,7 @@ }, "dependencies": { "@cubejs-backend/base-driver": "^0.33.26", - "@cubejs-backend/schema-compiler": "^0.33.26", + "@cubejs-backend/schema-compiler": "^0.33.27", "@cubejs-backend/shared": "^0.33.26", "@types/pg": "^8.6.0", "moment": "^2.24.0", @@ -38,7 +38,7 @@ "license": "Apache-2.0", "devDependencies": { "@cubejs-backend/linter": "^0.33.0", - "@cubejs-backend/testing-shared": "^0.33.26", + "@cubejs-backend/testing-shared": "^0.33.27", "testcontainers": "^8.4.0", "typescript": "~4.9.5" }, diff --git a/packages/cubejs-redshift-driver/CHANGELOG.md b/packages/cubejs-redshift-driver/CHANGELOG.md index dc67c0cb4bf7d..9bf5d46c2f4aa 100644 --- a/packages/cubejs-redshift-driver/CHANGELOG.md +++ b/packages/cubejs-redshift-driver/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/redshift-driver + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) **Note:** Version bump only for package @cubejs-backend/redshift-driver diff --git a/packages/cubejs-redshift-driver/package.json b/packages/cubejs-redshift-driver/package.json index 13bdccd013e57..a5f97af8e94da 100644 --- a/packages/cubejs-redshift-driver/package.json +++ b/packages/cubejs-redshift-driver/package.json @@ -2,7 +2,7 @@ "name": "@cubejs-backend/redshift-driver", "description": "Cube.js Redshift database driver", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "repository": { "type": "git", "url": "https://github.com/cube-js/cube.git", @@ -28,7 +28,7 @@ "@aws-sdk/client-s3": "^3.17.0", "@aws-sdk/s3-request-presigner": "^3.17.0", "@cubejs-backend/base-driver": "^0.33.26", - "@cubejs-backend/postgres-driver": "^0.33.26", + "@cubejs-backend/postgres-driver": "^0.33.27", "@cubejs-backend/shared": "^0.33.26" }, "license": "Apache-2.0", diff --git a/packages/cubejs-schema-compiler/CHANGELOG.md b/packages/cubejs-schema-compiler/CHANGELOG.md index 6f85b02d76f6b..03e0d1454fda7 100644 --- a/packages/cubejs-schema-compiler/CHANGELOG.md +++ b/packages/cubejs-schema-compiler/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/schema-compiler + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) diff --git a/packages/cubejs-schema-compiler/package.json b/packages/cubejs-schema-compiler/package.json index d2314315b4f4d..e9f5b09c42d52 100644 --- a/packages/cubejs-schema-compiler/package.json +++ b/packages/cubejs-schema-compiler/package.json @@ -2,7 +2,7 @@ "name": "@cubejs-backend/schema-compiler", "description": "Cube schema compiler", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "repository": { "type": "git", "url": "https://github.com/cube-js/cube.git", @@ -59,7 +59,7 @@ "devDependencies": { "@apla/clickhouse": "^1.5.5", "@cubejs-backend/linter": "^0.33.0", - "@cubejs-backend/query-orchestrator": "^0.33.26", + "@cubejs-backend/query-orchestrator": "^0.33.27", "@types/babel__code-frame": "^7.0.2", "@types/babel__generator": "^7.6.2", "@types/babel__parser": "^7.1.1", diff --git a/packages/cubejs-server-core/CHANGELOG.md b/packages/cubejs-server-core/CHANGELOG.md index a6c7133ea27d0..87420b0061005 100644 --- a/packages/cubejs-server-core/CHANGELOG.md +++ b/packages/cubejs-server-core/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/server-core + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) diff --git a/packages/cubejs-server-core/package.json b/packages/cubejs-server-core/package.json index 1f6b13772c74e..7324e18901afe 100644 --- a/packages/cubejs-server-core/package.json +++ b/packages/cubejs-server-core/package.json @@ -2,7 +2,7 @@ "name": "@cubejs-backend/server-core", "description": "Cube.js base component to wire all backend components together", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "repository": { "type": "git", "url": "https://github.com/cube-js/cube.git", @@ -32,8 +32,8 @@ "@cubejs-backend/api-gateway": "^0.33.26", "@cubejs-backend/cloud": "^0.33.26", "@cubejs-backend/dotenv": "^9.0.2", - "@cubejs-backend/query-orchestrator": "^0.33.26", - "@cubejs-backend/schema-compiler": "^0.33.26", + "@cubejs-backend/query-orchestrator": "^0.33.27", + "@cubejs-backend/schema-compiler": "^0.33.27", "@cubejs-backend/shared": "^0.33.26", "@cubejs-backend/templates": "^0.33.26", "codesandbox-import-utils": "^2.1.12", @@ -56,7 +56,7 @@ "ws": "^7.5.3" }, "devDependencies": { - "@cubejs-backend/cubestore-driver": "^0.33.26", + "@cubejs-backend/cubestore-driver": "^0.33.27", "@cubejs-backend/linter": "^0.33.0", "@cubejs-client/playground": "^0.33.26", "@types/cross-spawn": "^6.0.2", diff --git a/packages/cubejs-server/CHANGELOG.md b/packages/cubejs-server/CHANGELOG.md index 67c1ac008800e..5ff3ae4d7b701 100644 --- a/packages/cubejs-server/CHANGELOG.md +++ b/packages/cubejs-server/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/server + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) **Note:** Version bump only for package @cubejs-backend/server diff --git a/packages/cubejs-server/package.json b/packages/cubejs-server/package.json index 88478a3400c3f..102722299c4c7 100644 --- a/packages/cubejs-server/package.json +++ b/packages/cubejs-server/package.json @@ -2,7 +2,7 @@ "name": "@cubejs-backend/server", "description": "Cube.js all-in-one server", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "types": "index.d.ts", "repository": { "type": "git", @@ -40,10 +40,10 @@ "jest:shapshot": "jest --updateSnapshot test" }, "dependencies": { - "@cubejs-backend/cubestore-driver": "^0.33.26", + "@cubejs-backend/cubestore-driver": "^0.33.27", "@cubejs-backend/dotenv": "^9.0.2", "@cubejs-backend/native": "^0.33.26", - "@cubejs-backend/server-core": "^0.33.26", + "@cubejs-backend/server-core": "^0.33.27", "@cubejs-backend/shared": "^0.33.26", "@oclif/color": "^1.0.0", "@oclif/command": "^1.8.13", @@ -62,7 +62,7 @@ }, "devDependencies": { "@cubejs-backend/linter": "^0.33.0", - "@cubejs-backend/query-orchestrator": "^0.33.26", + "@cubejs-backend/query-orchestrator": "^0.33.27", "@oclif/dev-cli": "^1.23.1", "@types/body-parser": "^1.19.0", "@types/cors": "^2.8.8", diff --git a/packages/cubejs-serverless-aws/CHANGELOG.md b/packages/cubejs-serverless-aws/CHANGELOG.md index 0f1809ef7e328..c3e560db337a2 100644 --- a/packages/cubejs-serverless-aws/CHANGELOG.md +++ b/packages/cubejs-serverless-aws/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/serverless-aws + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) **Note:** Version bump only for package @cubejs-backend/serverless-aws diff --git a/packages/cubejs-serverless-aws/package.json b/packages/cubejs-serverless-aws/package.json index 7ab230935d774..6b98d9ba5c49c 100644 --- a/packages/cubejs-serverless-aws/package.json +++ b/packages/cubejs-serverless-aws/package.json @@ -2,7 +2,7 @@ "name": "@cubejs-backend/serverless-aws", "description": "Cube.js Serverless AWS support", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "repository": { "type": "git", "url": "https://github.com/cube-js/cube.git", @@ -13,7 +13,7 @@ }, "main": "index.js", "dependencies": { - "@cubejs-backend/serverless": "^0.33.26", + "@cubejs-backend/serverless": "^0.33.27", "aws-sdk": "^2.404.0" }, "devDependencies": { diff --git a/packages/cubejs-serverless-google/CHANGELOG.md b/packages/cubejs-serverless-google/CHANGELOG.md index 5c140c211792d..3fc27afa28933 100644 --- a/packages/cubejs-serverless-google/CHANGELOG.md +++ b/packages/cubejs-serverless-google/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/serverless-google + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) **Note:** Version bump only for package @cubejs-backend/serverless-google diff --git a/packages/cubejs-serverless-google/package.json b/packages/cubejs-serverless-google/package.json index 02f1f11369c5b..cd7d91c565140 100644 --- a/packages/cubejs-serverless-google/package.json +++ b/packages/cubejs-serverless-google/package.json @@ -2,7 +2,7 @@ "name": "@cubejs-backend/serverless-google", "description": "Cube.js Serverless Google support", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "repository": { "type": "git", "url": "https://github.com/cube-js/cube.git", @@ -13,7 +13,7 @@ }, "main": "index.js", "dependencies": { - "@cubejs-backend/serverless": "^0.33.26", + "@cubejs-backend/serverless": "^0.33.27", "@google-cloud/pubsub": "^2.5.0" }, "devDependencies": { diff --git a/packages/cubejs-serverless/CHANGELOG.md b/packages/cubejs-serverless/CHANGELOG.md index 4dba60a90f4c0..b2434e25a63ed 100644 --- a/packages/cubejs-serverless/CHANGELOG.md +++ b/packages/cubejs-serverless/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/serverless + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) **Note:** Version bump only for package @cubejs-backend/serverless diff --git a/packages/cubejs-serverless/package.json b/packages/cubejs-serverless/package.json index d2de365d15c49..2acfb0bc7fdca 100644 --- a/packages/cubejs-serverless/package.json +++ b/packages/cubejs-serverless/package.json @@ -2,7 +2,7 @@ "name": "@cubejs-backend/serverless", "description": "Cube.js Serverless", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "repository": { "type": "git", "url": "https://github.com/cube-js/cube.git", @@ -13,7 +13,7 @@ }, "main": "index.js", "dependencies": { - "@cubejs-backend/server-core": "^0.33.26", + "@cubejs-backend/server-core": "^0.33.27", "cors": "^2.8.5", "serverless-express": "^2.0.11" }, diff --git a/packages/cubejs-testing-drivers/CHANGELOG.md b/packages/cubejs-testing-drivers/CHANGELOG.md index cf13a95ce30ce..20408ba178fff 100644 --- a/packages/cubejs-testing-drivers/CHANGELOG.md +++ b/packages/cubejs-testing-drivers/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube.js/compare/v0.33.26...v0.33.27) (2023-06-17) + + +### Bug Fixes + +* Support unescaped `\\N` as NULL value for Snowflake driver ([#6735](https://github.com/cube-js/cube.js/issues/6735)) ([1f92ba6](https://github.com/cube-js/cube.js/commit/1f92ba6f5407f82703c8920b27a3a3e5a16fea41)), closes [#6693](https://github.com/cube-js/cube.js/issues/6693) + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) diff --git a/packages/cubejs-testing-drivers/package.json b/packages/cubejs-testing-drivers/package.json index e70918be4e86e..f3e590fab4b73 100644 --- a/packages/cubejs-testing-drivers/package.json +++ b/packages/cubejs-testing-drivers/package.json @@ -1,6 +1,6 @@ { "name": "@cubejs-backend/testing-drivers", - "version": "0.33.26", + "version": "0.33.27", "description": "Cube.js drivers test suite", "author": "Cube Dev, Inc.", "license": "MIT", @@ -43,17 +43,17 @@ "dist/src" ], "dependencies": { - "@cubejs-backend/athena-driver": "^0.33.26", + "@cubejs-backend/athena-driver": "^0.33.27", "@cubejs-backend/base-driver": "^0.33.26", - "@cubejs-backend/cubestore-driver": "^0.33.26", + "@cubejs-backend/cubestore-driver": "^0.33.27", "@cubejs-backend/dotenv": "^9.0.2", "@cubejs-backend/linter": "^0.33.0", - "@cubejs-backend/postgres-driver": "^0.33.26", - "@cubejs-backend/query-orchestrator": "^0.33.26", - "@cubejs-backend/redshift-driver": "^0.33.26", - "@cubejs-backend/server-core": "^0.33.26", + "@cubejs-backend/postgres-driver": "^0.33.27", + "@cubejs-backend/query-orchestrator": "^0.33.27", + "@cubejs-backend/redshift-driver": "^0.33.27", + "@cubejs-backend/server-core": "^0.33.27", "@cubejs-backend/shared": "^0.33.26", - "@cubejs-backend/testing-shared": "^0.33.26", + "@cubejs-backend/testing-shared": "^0.33.27", "@cubejs-client/core": "^0.33.12", "@cubejs-client/ws-transport": "^0.33.12", "@jest/globals": "^26.6.2", diff --git a/packages/cubejs-testing-shared/CHANGELOG.md b/packages/cubejs-testing-shared/CHANGELOG.md index 084db143867da..7970c3a947cee 100644 --- a/packages/cubejs-testing-shared/CHANGELOG.md +++ b/packages/cubejs-testing-shared/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube.js/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/testing-shared + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) diff --git a/packages/cubejs-testing-shared/package.json b/packages/cubejs-testing-shared/package.json index fa62505a6e989..ed0141ec4f709 100644 --- a/packages/cubejs-testing-shared/package.json +++ b/packages/cubejs-testing-shared/package.json @@ -1,6 +1,6 @@ { "name": "@cubejs-backend/testing-shared", - "version": "0.33.26", + "version": "0.33.27", "description": "Cube.js Testing Helpers", "author": "Cube Dev, Inc.", "license": "Apache-2.0", @@ -21,8 +21,8 @@ ], "dependencies": { "@cubejs-backend/dotenv": "^9.0.2", - "@cubejs-backend/query-orchestrator": "^0.33.26", - "@cubejs-backend/schema-compiler": "^0.33.26", + "@cubejs-backend/query-orchestrator": "^0.33.27", + "@cubejs-backend/schema-compiler": "^0.33.27", "@cubejs-backend/shared": "^0.33.26", "dedent": "^0.7.0", "node-fetch": "^2.6.7", diff --git a/packages/cubejs-testing/CHANGELOG.md b/packages/cubejs-testing/CHANGELOG.md index 90d63ae911259..6ed5434b08c59 100644 --- a/packages/cubejs-testing/CHANGELOG.md +++ b/packages/cubejs-testing/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube.js/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/testing + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) **Note:** Version bump only for package @cubejs-backend/testing diff --git a/packages/cubejs-testing/package.json b/packages/cubejs-testing/package.json index 26e9b5408f9a9..61eb95bb5b9b1 100644 --- a/packages/cubejs-testing/package.json +++ b/packages/cubejs-testing/package.json @@ -1,6 +1,6 @@ { "name": "@cubejs-backend/testing", - "version": "0.33.26", + "version": "0.33.27", "description": "Cube.js e2e tests", "author": "Cube Dev, Inc.", "license": "Apache-2.0", @@ -87,13 +87,13 @@ "birdbox-fixtures" ], "dependencies": { - "@cubejs-backend/cubestore-driver": "^0.33.26", + "@cubejs-backend/cubestore-driver": "^0.33.27", "@cubejs-backend/dotenv": "^9.0.2", - "@cubejs-backend/postgres-driver": "^0.33.26", - "@cubejs-backend/query-orchestrator": "^0.33.26", - "@cubejs-backend/schema-compiler": "^0.33.26", + "@cubejs-backend/postgres-driver": "^0.33.27", + "@cubejs-backend/query-orchestrator": "^0.33.27", + "@cubejs-backend/schema-compiler": "^0.33.27", "@cubejs-backend/shared": "^0.33.26", - "@cubejs-backend/testing-shared": "^0.33.26", + "@cubejs-backend/testing-shared": "^0.33.27", "@cubejs-client/ws-transport": "^0.33.12", "dedent": "^0.7.0", "fs-extra": "^8.1.0", diff --git a/packages/cubejs-trino-driver/CHANGELOG.md b/packages/cubejs-trino-driver/CHANGELOG.md index 3cd5a7f2952e0..6a0c2d81928a0 100644 --- a/packages/cubejs-trino-driver/CHANGELOG.md +++ b/packages/cubejs-trino-driver/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube/compare/v0.33.26...v0.33.27) (2023-06-17) + +**Note:** Version bump only for package @cubejs-backend/trino-driver + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) **Note:** Version bump only for package @cubejs-backend/trino-driver diff --git a/packages/cubejs-trino-driver/package.json b/packages/cubejs-trino-driver/package.json index 67d03b864dd98..a1147aeac6dbe 100644 --- a/packages/cubejs-trino-driver/package.json +++ b/packages/cubejs-trino-driver/package.json @@ -2,7 +2,7 @@ "name": "@cubejs-backend/trino-driver", "description": "Cube.js Trino database driver", "author": "Cube Dev, Inc.", - "version": "0.33.26", + "version": "0.33.27", "repository": { "type": "git", "url": "https://github.com/cube-js/cube.git", @@ -27,7 +27,7 @@ "dependencies": { "@cubejs-backend/base-driver": "^0.33.26", "@cubejs-backend/prestodb-driver": "^0.33.26", - "@cubejs-backend/schema-compiler": "^0.33.26", + "@cubejs-backend/schema-compiler": "^0.33.27", "@cubejs-backend/shared": "^0.33.26", "presto-client": "^0.12.2", "ramda": "^0.27.0", diff --git a/rust/cubestore/CHANGELOG.md b/rust/cubestore/CHANGELOG.md index 5bfc502f0c789..6afc72ba85a27 100644 --- a/rust/cubestore/CHANGELOG.md +++ b/rust/cubestore/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.33.27](https://github.com/cube-js/cube.js/compare/v0.33.26...v0.33.27) (2023-06-17) + + +### Bug Fixes + +* Support unescaped `\\N` as NULL value for Snowflake driver ([#6735](https://github.com/cube-js/cube.js/issues/6735)) ([1f92ba6](https://github.com/cube-js/cube.js/commit/1f92ba6f5407f82703c8920b27a3a3e5a16fea41)), closes [#6693](https://github.com/cube-js/cube.js/issues/6693) + + + + + ## [0.33.26](https://github.com/cube-js/cube/compare/v0.33.25...v0.33.26) (2023-06-14) diff --git a/rust/cubestore/package.json b/rust/cubestore/package.json index b250c332662f5..d07467d03dc88 100644 --- a/rust/cubestore/package.json +++ b/rust/cubestore/package.json @@ -1,6 +1,6 @@ { "name": "@cubejs-backend/cubestore", - "version": "0.33.26", + "version": "0.33.27", "description": "Cube.js pre-aggregation storage layer.", "main": "dist/src/index.js", "typings": "dist/src/index.d.ts",