Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@cubejs-backend/api-gateway

cube-js80.8kApache-2.01.3.7TypeScript support: included

Cube.js API Gateway

readme

Cube — Semantic Layer for Data Applications


WebsiteGetting StartedDocsExamplesBlogSlackX

npm version GitHub Actions FOSSA Status

Cube is the universal semantic layer for modern data applications. Born in the cloud era, Cube represents the next evolution of OLAP technology, helping data engineers and application developers access data from modern data stores, organize it into consistent definitions, and deliver it to every application.

Learn more about connecting Cube to data sources and analytics & visualization tools.

Cube was designed to work with all SQL-enabled data sources, including cloud data warehouses like Snowflake or Google BigQuery, query engines like Presto or Amazon Athena, and application databases like Postgres. Cube has a built-in relational caching engine to provide sub-second latency and high concurrency for API requests.

For more details, see the introduction page in our documentation.

Why Cube?

As data infrastructure evolved from traditional relational databases to cloud data platforms, OLAP capabilities that once lived in specialized servers like SQL Server Analysis Services and Oracle Essbase were left behind. Today's organizations face several challenges:

  1. Analytics Modeling and Multidimensionality. Modern cloud data platforms excel at processing large volumes of data but lack native support for multidimensional analysis and modeling. Cube brings OLAP-style analytics to these platforms, enabling consistent metric definitions and multidimensional analysis.

  2. Performance Optimization. While cloud data warehouses have improved query performance through column-oriented storage and distributed processing, they still struggle with complex analytical workloads. Cube provides intelligent caching and pre-aggregation strategies that dramatically improve query response times.

  3. Access Control and Governance. Securing and governing access to data across all consuming applications remains critical. Cube offers robust access control to ensure consistent security across your entire data ecosystem.

  4. API Flexibility. Legacy OLAP tools were limited in how they exposed data. Cube provides modern REST, GraphQL, and SQL APIs along with support for traditional MDX and DAX interfaces, making it a truly universal semantic layer.

Cube is the missing OLAP engine for the cloud data platform era that provides the necessary infrastructure and features to implement efficient data modeling, access control, and performance optimizations without duplicating analytics modeling, data, or security permissions across different tools.

Getting Started 🚀

Cube Cloud

Cube Cloud is the fastest way to get started with Cube. It provides managed infrastructure as well as an instant and free access for development projects and proofs of concept.

Get started now

For a step-by-step guide on Cube Cloud, see the docs.

Docker

Alternatively, you can get started with Cube locally or self-host it with Docker.

Once Docker is installed, in a new folder for your project, run the following command:

docker run -p 4000:4000 \
  -p 15432:15432 \
  -v ${PWD}:/cube/conf \
  -e CUBEJS_DEV_MODE=true \
  cubejs/cube

Then, open http://localhost:4000 in your browser to continue setup.

For a step-by-step guide on Docker, see the docs.

Resources

Contributing

There are many ways you can contribute to Cube! Here are a few possibilities:

  • Star this repo and follow us on X.
  • Add Cube to your stack on Stackshare.
  • Upvote issues with 👍 reaction so we know what's the demand for particular issue to prioritize it within road map.
  • Create issues every time you feel something is missing or goes wrong.
  • Ask questions on Stack Overflow with cube.js tag if others can have these questions as well.
  • Provide pull requests for all open issues and especially for those with help wanted and good first issue labels.

All sort of contributions are welcome and extremely helpful 🙌 Please refer to the contribution guide for more information.

License

Cube Client is MIT licensed.

Cube Backend is Apache 2.0 licensed.

FOSSA Status

changelog

Change Log

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

1.3.7 (2025-04-23)

Bug Fixes

  • schema-compiler: Fix not working timeshift in views (#9504) (9319b0d)

Features

  • schema-compiler: Custom granularities support for Amazon Athena/Presto dialect (#9472) (4c1520e)
  • schema-compiler: Support custom granularities with Year-Month intervals for AWS Redshift dialect (#9489) (2fc53f2)
  • schema-compiler: Support overriding title, description, meta, and format on view members (#9496) (e0179c5)

1.3.6 (2025-04-22)

Bug Fixes

Features

  • mssql-driver: Return numeric result values as strings (#9485) (52da601)

1.3.5 (2025-04-17)

Bug Fixes

  • cubesql: Disallow mixing measure and dimension filters in a single FilterOp (#9486) (858f6d5)

1.3.4 (2025-04-17)

Bug Fixes

  • schema-compiler: Make RefreshKeySql timezone-aware (#9479) (fa2adb9)

1.3.3 (2025-04-16)

Features

  • client-core: Add fetch timeout and network retry options (#9484) (b8de1a4)

1.3.2 (2025-04-16)

Bug Fixes

  • schema-compiler: Allow calling cube functions in yaml python blocks (#9473) (61ef9da)
  • schema-compiler: Allow escaping of curly braces in yaml models (#9469) (0a8cf07)

Features

  • duckdb-driver: Add support for installing and loading DuckDB Community Extensions (#9169) (c97f99a)

1.3.1 (2025-04-14)

Bug Fixes

  • schema-compiler: Fix incorrect transpilation of yaml models (#9465) (e732fa2)

1.3.0 (2025-04-11)

Bug Fixes

  • schema-compiler: Do not drop join hints when view member is not itself owned (#9444) (b5ddd11)
  • schema-compiler: Fix cubes inheritance (#9386) (409d74d)
  • schema-compiler: Fix incorrect native bulk transpilation if there are no JS files (#9453) (610820f)
  • server: Fix incorrect native result wrapper processing via webSockets (#9458) (a4e76c4)

Features

  • cubesql: Remove bottom-up extraction completely (#9183) (c528ebe)
  • databricks-jdbc-driver: Add export bucket support for Google Cloud Storage (#9445) (a247bf9)
  • databricks-jdbc-driver: Switch to the latest OSS Databricks JDBC driver (#9450) (819edde)

1.2.33 (2025-04-10)

Bug Fixes

  • cubeorchestrator: Fix incorrect null-values parsing from CubeStore Result (#9443) (fcb5711)
  • schema-compiler: ExportNamedDeclaration for variables object (#9390) (b16e8dd)

Features

  • schema-compiler: Implement bulk processing for js transpilation in native (#9427) (c274b2a)

1.2.32 (2025-04-08)

Bug Fixes

  • schema-compiler: Use join paths from pre-aggregation declaration instead of building join tree from scratch (#9431) (aea3a6c)
  • tesseract: Fix issues with member expressions over multi stage (#9416) (14ae6a4)

1.2.31 (2025-04-08)

Bug Fixes

  • schema-compiler: Fix BigQuery DATE_ADD push down template for years/quarters/months (#9432) (5845c88)

Features

  • PatchMeasure member expression (#9218) (128280a)
  • schema-compiler: Use LRUCache for js data models compiled vm.Scripts (#9424) (e923a0f)
  • server-core: Use LRU for OrchestratorStorage (#9425) (ede37f8)

1.2.30 (2025-04-04)

Bug Fixes

Features

  • schema-compiler: generate join sql using dimension refs when po… (#9413) (8fc4f7c)

1.2.29 (2025-04-02)

Bug Fixes

  • cubesql: Penalize CrossJoins in favor of wrapper (#9414) (a48963d)
  • schema-compiler: Respect ungrouped alias in measures (#9411) (f0829d7)
  • schema-compiler: Use segments as-is in rollupPreAggregation (#9391) (cb7b643)

1.2.28 (2025-04-01)

Bug Fixes

  • cubesql: Allow more filters in CubeScan before aggregation pushdown (#9409) (351ac7a)
  • schema-compiler: Fix BigQuery DATETIME_TRUNC() week processing (#9380) (6c8564f)
  • schema-compiler: Fix date alignment for week-based custom granularities (#9405) (8b6c490)
  • schema-compiler: Fix model validation for aliased included members for views (#9398) (f5e69f7)
  • schema-compiler: Skip syntax check for transpiled files (#9395) (c624e88)
  • tesseract: Support rolling window with multiple granularities (#9382) (6ff9331)

Features

  • clickhouse-driver: Allow to enable compression, thanks @Graphmaxer (#9341) (78ac7b2)
  • databricks-jdbc-driver: Switch to the latest OSS Databricks JDBC driver (#9376) (29fdd61)
  • tesseract: Custom granularities support (#9400) (dc93e40)
  • tesseract: Support for rolling window without date range (#9364) (fd94b02)

1.2.27 (2025-03-25)

Features

  • snowflake-driver: Ability to use encrypted private keys for auth (#9371) (ab54e28)

1.2.26 (2025-03-21)

Bug Fixes

  • databricks-jdbc-driver: Allow paths in s3/azure export buckets (#9365) (f133737)
  • redshift-driver: Use Redshift-specific schema query (#9363) (beaf8eb), closes #3876
  • schema-compiler: Fix doubled calls to convertTz() for compound time dimensions with custom granularities (#9369) (0dc8320)

1.2.25 (2025-03-20)

Bug Fixes

  • backend-native: Fix result wrapper parsing (#9361) (1b70644)
  • schema-compiler: Handle measures with dimension-only member expressions (#9335) (2f7a128)
  • schema-compiler: support unary operators in DAP filters (#9366) (fff8af2)

Features

  • duckdb-driver: Fix numeric filter comparisons in DuckDB (#9328) (969508d), closes #9281 #9281
  • server-core,api-gateway: Allow manual rebuilding pre-aggregation partitions within date Range (#9342) (b5701e3)

1.2.24 (2025-03-18)

Bug Fixes

  • cubesql: Disable projection_push_down DF optimizer (#9356) (a15442c)

Features

  • Implement disable_post_processing in /v1/sql (#9331) (c336b10)

1.2.23 (2025-03-17)

Features

  • docker: Security upgrade node from 20.17.0 to 20.19.0 (#9350) (6cacff9)

1.2.22 (2025-03-14)

Bug Fixes

  • cubesql: Functions without arguments alias as plain function name (#9338) (de10c23)

Features

  • tesseract: Segments and MemberExpressions segments support (#9336) (b2c03e7)

1.2.21 (2025-03-11)

Bug Fixes

  • cubejs-native: cubesql query logger span_id (#9325) (568d306)

Features

  • cubesql: Move dimensions-only projections to dimensions for push-to-Cube wrapper (#9318) (ca62aa0)

1.2.20 (2025-03-10)

Bug Fixes

  • Allow config http protocol to be passed to clickhouse driver. (#9195) (0c15b01)

Features

  • Add SQL queries support in /v1/sql endpoint (#9301) (7eba663)

1.2.19 (2025-03-08)

Features

  • pinot-driver: Add enableNullHandling to query options using env var (#9310) (df763cc)

1.2.18 (2025-03-06)

Bug Fixes

  • cubesql: Calculate proper limit and offset for CubeScan in nested limits case (#8924) (0e95f18)
  • cubesql: Make cube join check stricter (#9043) (feaf03b)
  • query-orchestrator: Fix improper pre-aggregation buildRange construction for non UTC timezones (#9284) (ef12d8d)
  • tesseract: Don't generate COALESCE with single argument (#9300) (3174be1)
  • tesseract: fix wrong default alias for symbols with digits in name (#9299) (329d228)

Features

  • cubesql: Support multiple columns on each side in ungrouped-grouped join condition (#9282) (e25d5c1)

1.2.17 (2025-03-05)

Bug Fixes

  • api-gateway: Support proxy when fetching jwk for token validation (#9286) (60870c8)
  • cubesql: Use pushdown-pullup scheme for FilterSimplifyReplacer (#9278) (ab5a64e)
  • docker: apt-get install ca-certificates in latest and local Dockerfiles (1fca9ee)
  • query-orchestrator: Fix dropping temp tables during pre-agg creation (#9295) (eb3d980)
  • schema-compiler: Fix ORDER BY clause generation for queries with td with filters (#9296) (1c8ce4f)

Features

  • duckdb-driver: Add databasePath and motherDuckToken config options (6f43138)

1.2.16 (2025-03-04)

Bug Fixes

  • cubejs-native: sql over http drop sessions, correct error (#9297) (6fad670)

1.2.15 (2025-03-03)

Bug Fixes

  • cubejs-client-ngx: Configure package-level Lerna publish directory for Angular (#9189) (ef799f5)

Features

  • schema-compiler: auto include hierarchy dimensions (#9288) (162c5b4)
  • tesseract: Pre-aggregation planning fallback (#9230) (08650e2)

1.2.14 (2025-02-28)

Features

  • server-core: add fastReloadEnabled option to CompilerApi (#9289) (122a3a3)

1.2.13 (2025-02-26)

Bug Fixes

  • cubesql: Split __user WHERE predicate into separate filter node (#8812) (83baf7b)

1.2.12 (2025-02-26)

Bug Fixes

  • api-gateway: data scope check (#9264) (75095e1)
  • cubesql: Generate typed null literals (#9238) (1dfa10d)
  • cubesql: Match CubeScan timestamp literal types to member types (#9275) (4a4e82b)
  • native: Jinja - pass kwargs correctly into Python (#9276) (9d1c3f8)
  • server-core: Handle empty query in getSqlGenerator (#9270) (350a438)

1.2.11 (2025-02-25)

Bug Fixes

  • cubesql: Break cost symmetry for (non)-push-to-Cube WrappedSelect (#9155) (2c0e443)
  • cubesql: Generate proper projection wrapper for duplicated members in CubeScanNode (#9233) (aba6430)

1.2.10 (2025-02-24)

Bug Fixes

  • redshift-driver: Fix empty tableColumnTypes for external (Spectrum) tables (#9251) (fa318a1)
  • schema-compiler: Fix sql generation for rolling_window queries with multiple time dimensions (#9124) (52a664e)

Features

  • cubejs-server-core: support proxy in http agent transport (#9263) (89c74ce)

1.2.9 (2025-02-21)

Bug Fixes

  • schema-compiler: Fix allowNonStrictDateRangeMatch pre-agg match for dateRange queries without granularities (#9258) (00fe682)

1.2.8 (2025-02-21)

Bug Fixes

  • backend-native: Handle closed channel on Rust side (#9242) (1203291)

Features

  • cubeclient: Add short_title to dimensions and measures (#9256) (584b3dc)

1.2.7 (2025-02-20)

Bug Fixes

  • schema-compiler: hierarchies to respect prefix value (#9239) (19d1b33)

Reverts

  • schema-compiler: Revert breaking changes in models transpilation (#9240) (28bca42)

1.2.6 (2025-02-18)

Bug Fixes

  • api-gateway: Fix CompareDateRange queries native transformations (#9232) (9c6153d)
  • schema-compiler: Correct models transpilation in native in multitenant environments (#9234) (84f90c0)

Features

  • schema-compiler: Boost models transpilation 10-13x times (using SWC instead of Babel) (#9225) (2dd9a4a)

Performance Improvements

  • cubesql: Avoid allocations in MetaContext methods (#9228) (ba753d0)

1.2.5 (2025-02-13)

Bug Fixes

  • cubesql: Fix SELECT DISTINCT on pushdown (#9144) (6483f66)

Features

1.2.4 (2025-02-11)

Bug Fixes

Features

  • cubesql: Add projection flattening rule (#9165) (8cfb253)
  • cubesql: Allow providing API type when getting load request meta (#9202) (ae5d977)
  • server-core: Introduce CUBEJS_REFRESH_WORKER_CONCURRENCY env and update default concurrency settings for drivers (#9168) (7ef6282)

1.2.3 (2025-02-06)

Bug Fixes

  • cubejs-backend-native: support context_to_cube_store_router_id (#9200) (f93edd3)

1.2.2 (2025-02-06)

Bug Fixes

  • dremio-driver: Correct dremio date interval functions (#9193) (7cf2287)
  • schema-compiler: Fix queries with time dimensions without granularities don't hit pre-aggregations with allow_non_strict_date_range_match=true (#9102) (eff0736)
  • testing: avoid cypress crashes (#9196) (364d181)

Features

  • cubejs-server-core: add contextToCubeStoreRouterId config option (#9197) (6ee0e41)

1.2.1 (2025-02-06)

Features

  • schema-compiler: Move transpiling to worker threads (under the flag) (#9188) (7451452)
  • tesseract: Subqueries support (#9108) (0dbf3bb)

1.2.0 (2025-02-05)

Bug Fixes

  • @cubejs-client/ngx: Update APF configuration and build settings for Angular 12+ compatibility (#9152) Thanks to @HaidarZ! (57bcbc4)
  • cubejs-playground: update query builder (#9175) (4e9ed0e)
  • cubejs-playground: update query builder (#9184) (247ac0c)
  • cubesql: Avoid panics during filter rewrites (#9166) (4c8de88)
  • databricks-jdbc-driver: Fix extract epoch from timestamp SQL Generation (#9160) (9a73857)
  • schema-compiler: make sure view members are resolvable in DAP (#9059) (e7b992e)

Features

  • cubeclient: Add hierarchies to Cube meta (#9180) (56dbf9e)
  • cubesql: Add filter flattening rule (#9148) (92a4b8e)
  • cubesql: Add separate ungrouped_scan flag to wrapper replacer context (#9120) (50bdbe7)
  • snowflake-driver: set QUOTED_IDENTIFIERS_IGNORE_CASE=FALSE by default (#9172) (164b783)
  • Support complex join conditions for grouped joins (#9157) (28c1e3b)

1.1.18 (2025-01-27)

Bug Fixes

  • api-gateway: Fix graphql query result processing via native results (#9146) (7974eac)

1.1.17 (2025-01-27)

Bug Fixes

  • presto-driver: optimize testConnection() to issue get nodes() instead of heavy show catalogs (#9109) (6d6df53)
  • schema-compiler: Move create table name check to underlying driver for Postgres, MySQL, Oracle (#9112) (5fb81cc)

Features

  • api-gateway: Async native query results transformations (#8961) (3822107)
  • cubesql: Support %s in format (#9129) (be140ec), closes #9126
  • databricks-driver: Enable Azure AD authentication via Client Secret (#9104) (f121e4d)
  • schema-compiler: Add flag for using named timezones in MySQL Query class (#9111) (5a540db)
  • snowflake-driver: Add ignore case statements flag (#9131) (db3b0fd)

1.1.16 (2025-01-22)

Bug Fixes

  • api-gateway: Allow querying time dimensions with custom granularity (#9068) (80f10ce)
  • client-ws-transport: Flush send queue in close() to avoid race (#9101) (d9bc147)
  • cubejs-client-react: useCubeQuery initial loading state (#9117) (81f9b58)
  • cubesql: Add forgotten Distinct in ast_size_outside_wrapper cost component (#8882) (a64272e)
  • cubesql: Fix condition for joining two date range filters (#9113) (39190e0)
  • cubesql: Pass proper in_projection flag in non-trivial wrapper pull up rule (#9097) (8f0758e)
  • druid-driver: Fix case sensitivity in like flow (#8658) (6d75c60)
  • gateway: dryRun to return pre-rewritten queries (#9091) (f48495c)
  • Install python3 executable for node-gyp (#8998) (9700dc8)
  • schema-compiler: hierarchies on extended cubes (#9100) (c8f24f7)
  • schema-compiler: update hierarchies handling to use object pattern (#9121) (42cbc8e)
  • typo for DBeaver in comments change DBEver to DBeaver (#9092) (aab9e8f)

Features

Performance Improvements

1.1.15 (2025-01-13)

Bug Fixes

1.1.14 (2025-01-09)

Bug Fixes

  • cubesql: add title field to Dimension Metadata (#9084) (9653a23)

1.1.13 (2025-01-09)

Bug Fixes

  • clickhouse-driver: Support overriding Username & Password from Driver Config (#9085) (c5aa6cc)
  • cubejs-cli: Fix content type and body after switching from request to node-fetch (#9088) (bf332ef)
  • schema-compiler: Handle member expressions in keyDimensions (#9083) (056a1d8)

1.1.12 (2025-01-09)

Bug Fixes

  • api-gateway: fix DAP RLS issue with denied queries and python conf (#9054) (e661d2a)
  • backend-native: Fix request sequence span ids (#9077) (d48ef99)
  • backend-native: Pass req.securityContext to Python config (#9049) (95021f2)
  • cubejs-client-core: hierarchy typings (#9042) (7c38845)
  • dremio-driver: Fix stale version of testing-shared dependency (#9079) (ee826e1)
  • schema-compiler: fix time dimension granularity origin formatting in local timezone (#9071) (c97526f)
  • tesseract: sqlAlias support (f254f64)

Features

  • cubejs-client-core: Fill missing dates with custom measure value (#8843) (ed3f6c9)
  • cubesql: Penalize zero members in wrapper (#8927) (171ea35)
  • duckdb-driver: Add support for installing and loading DuckDB Extensions. (#8744) (0e6ecd9)
  • server-core: Support for scheduledRefreshTimeZones as function, passing securityContext (#9002) (10e47fc)
  • tesseract: Make measure an entry point for multi-fact join for now and support template for params (#9053) (cb507c1)
  • vertica-driver: Introduce VerticaDriver (#9081) (c43340d), closes #2 #5 #6

1.1.11 (2024-12-16)

Bug Fixes

  • TypeError: Cannot read properties of undefined (reading 'joins') (14adaeb)

1.1.10 (2024-12-16)

Bug Fixes

  • api-gateway: allow switch sql user when the new user is the same (#9037) (a69c28f)
  • api-gateway: make sure DAP works sql pushdown (#9021) (23695b2)
  • cubestore: Allow create an index from expressions (#9006) (222cab8)
  • schema-compiler: fix DAP with query_rewrite and python config (#9033) (849790f)
  • schema-compiler: join relationship aliases (ad4e8e3)

Features

  • cubesql: Basic VALUES support in rewrite engine (#9041) (368671f)
  • dremio-driver: Add Dremio Cloud Support (#8956) (d2c2fcd)
  • tesseract: Support multiple join paths within single query (#9047) (b62446e)

1.1.9 (2024-12-08)

Bug Fixes

  • cubesql: Allow aggregation pushdown only for unlimited CubeScan (#8929) (5b10a68)
  • ksql-driver: Select queries for ksql allowed only from Cube Store. In order to query ksql create pre-aggregation first if Kafka download isn't enabled (0c2f701)

Features

  • schema-compiler: folders support, hierarchies improvements (#9018) (2012281)

1.1.8 (2024-12-05)

Bug Fixes

  • clickhouse-driver: Replace error cause with string formatting (#8977) (e948856)
  • clickhouse-driver: Tune ClickHouse errors: remove SQL, catch ping failure (#8983) (811a7ce)
  • cubesql: fix unhandled timestamp unwrapping in df/transform_response (#8952) (4ea0740)
  • cubestore: Disable writing cachestore logs by default to reduce use of disk space (#9003) (7ccd607)
  • dev_env_setup: Fix incorrect arguments processing and make console output more user-friendly (#8999) (ead97b4)
  • dev_env_setup: use relative packages everywhere (#8910) (ae823c9)
  • ensure public is in sync with isVisible when using DAP (#8980) (a3ed6ea)
  • fix data access policies condition logic (#8976) (47e7897)
  • ksql-driver: Kafka, list of brokers (#9009) (31d4b46)
  • schema-compiler: fix FILTER_PARAMS to populate set and notSet filters in cube's SQL query (#8937) (6d82f18), closes #9009 #8793
  • schema-compiler: Fix incorrect sql generation for view queries referencing measures from joined cubes (#8991) (cd7490e)
  • schema-compiler: Fix ungrouped cumulative queries incorrect sql generation (#8981) (82ba01a)
  • schema-compiler: Undefined columns for lambda pre-aggregation queries referencing dimensions from joined cubes (#8946) (41b49f4)
  • schema-compiler: use query timezone for time granularity origin (#8936) (1beba2d)
  • server-core: fix improper requestId retrieval in DAP (#9017) (4e366d3)
  • server-core: fix member level access policy evaluation (#8992) (ff89d65)

Features

  • cubejs-api-gateway: alternative auth headers (#8987) (eb33d1a)
  • databricks-driver: Support for intervals and CURRENT_DATE for sql push down (#9000) (f61afc3)
  • duckdb-driver: remove unnecessary installing and loading HttpFS extension (#8375) (0aee4fc)
  • firebolt: Automatically start the engine after connection (#9001) (8f45afa)
  • pinot-driver: add optional oAuth headers (#8953) (7b1f797)
  • sqlplanner: Extract alias logic from the symbols (#8919) (d1b07f1)

Performance Improvements

  • cubestore: ProjectionAboveLimit query optimization (#8984) (8a53481)
  • cubestore: Update DataFusion pointer to new GroupsAccumulator changes (#8985) (4613628)

1.1.7 (2024-11-20)

Bug Fixes

Features

  • clickhouse-driver: Switch from apla-clickhouse to @clickhouse/client (#8928) (e25e65f)

1.1.6 (2024-11-17)

Bug Fixes

  • playground: fix version check for yaml model generation (#8944) (ab8ad2b)
  • schema-compiler: Time dimension filter for lambda cubes (#8957) (eca7e4d)

1.1.5 (2024-11-13)

Bug Fixes

  • schema-compiler: fix Maximum call stack size exceeded if FILTER_PARAMS are used inside dimensions/measures (#8867) (8e7c5c7)

Features

1.1.4 (2024-11-12)

Bug Fixes

  • cubesql: Add checks that projection/filters/fetch in TableScan is empty (#8883) (a7bab04)
  • cubesql: Pass null_equals_null through egraph (#8776) (e02f612)
  • schema-compiler: set missed CUBESQL_SQL_PUSH_DOWN to true by default in convertTzForRawTimeDimension flag (#8931) (9482807)

Features

  • api-gateway: Meta - expose aliasMember for members in View (#8945) (c127f36)

1.1.3 (2024-11-08)

Bug Fixes

  • cubesql: Don't show meta OLAP queries in query history (#8336) (78a5fc3)
  • cubesql: Fix NULLS FIRST/LAST SQL push down for several dialects (#8895) (61c5ac6)
  • fileRepository: create repositoryPath if not exists (#8909) (4153e4d)
  • patch isVisible when applying member level access policies (#8921) (2bb1d21)

Reverts

  • Revert "chore: release script - push tag and commit manually (#8897)" (d7dc5fe), closes #8897

1.1.2 (2024-11-01)

Features

1.1.1 (2024-10-31)

Bug Fixes

Features

  • drivers: introduce Apache Pinot (#8689) (0659c84)
  • redshift-driver: introspection for external schemas/tables (e.g. Spectrum) (#8849) (fa4b3b8)
  • support context_to_roles in Python configuration (#8880) (aadce4f)

1.1.0 (2024-10-24)

Note: Version bump only for package cubejs

1.0.4 (2024-10-23)

Bug Fixes

  • cubejs-server-core: driverError overriding (#8852) (b7306d2)
  • return client customized error, if present, on auth fail in playground (#8842) (5cce98d), closes #CORE-1134

Reverts

  • Revert "fix(cubejs-server-core): driverError overriding (#8852)" (#8854) (67eaa1c), closes #8852 #8854

1.0.3 (2024-10-22)

Features

  • bigquery-driver: optimize testConnection() with free of charge request (#8845) (99ad335)
  • redshift-driver: optimize testConnection() with just establishing connection without real query (#8847) (3c20346)

Reverts

  • Revert "feat(base-driver): add an option to skip connection test probes (#8833)" (#8846) (d1698ce), closes #8833 #8846

1.0.2 (2024-10-21)

Bug Fixes

Features

1.0.1 (2024-10-16)

Features

  • cubesql: QueryRouter - remove some MySQL functionality (#8818) (5935964)
  • firebolt-driver: Use driver's own test connection method, thanks @ptiurin (#8815) (70a36d8)

1.0.0 (2024-10-15)

Features

BREAKING CHANGES

  • Enabling CUBESQL_SQL_PUSH_DOWN is backward incompatible to many default behaviors of SQL API

0.36.11 (2024-10-14)

Features

  • snowflake-driver: OAuth token path support (#8808) (9d5b7e8)

0.36.10 (2024-10-14)

Features

0.36.9 (2024-10-14)

Bug Fixes

  • cubejs-testing: Fix TZ env var for snapshots update script (#8811) (51d85d3)
  • cubesql: Fix TRUNC SQL push down for Databricks (#8803) (95088cc)
  • cubesql: Ignore __user IS NOT NULL filter (#8796) (c1e542a)
  • Error after renaming post aggregate (#8805) (d2773a7)

Features

  • cubestore: Metastore - increase parallelism to 2 (#8807) (4d2de83)

0.36.8 (2024-10-11)

Bug Fixes

  • cubestore: don't add all measures to default preagg index (#8789) (fd1d09a)
  • playground: fix not showing granularities for time dimension (#8794) (d77a512)
  • Render LIMIT 0 and OFFSET 0 properly in SQL templates (#8781) (6b17731)

Features

  • Inherit all env variables to Cube Store (auto provisioning) (#3045) (4902e6f)
  • playground: custom granularities support (#8743) (336fad4)
  • prestodb-driver: Added support export bucket, gcs only (#8797) (8c7dcbb)
  • Renaming of Post Aggregate into Multi Stage (#8798) (bd42c44)
  • snowflake-driver: support DefaultAzureCredential and Managed Indentity auth for export bucket (#8792) (cf4beff)

0.36.7 (2024-10-08)

Bug Fixes

  • Add explicit parameters limit in PostgreSQL and Redshift drivers (#8784) (ad6abec)

Features

  • cubesql: Support DATE_PART SQL push down with Databricks (#8779) (8fa0d53)

0.36.6 (2024-10-03)

Bug Fixes

  • schema-compiler: Support minutes and seconds for cubestore format interval (#8773) (a7a515d)

0.36.5 (2024-10-02)

Bug Fixes

  • firebolt-driver: use default api endpoint if not provided (#8767) (779eacd)
  • schema-compiler: fix FILTER_PARAMS flow in pre aggregations filtering (#8761) (41ed9cc)

Features

  • cubesqlplanner: Base joins support (#8656) (a2e604e)
  • snowflake-driver: support azure exports buckets (#8730) (37c6ccc)

0.36.4 (2024-09-27)

Bug Fixes

  • duckdb-driver: fix timeStampCast and dateBin (#8748) (a292c3f)
  • schema-compiler: Warn when COUNT(*) is used with a cube/view where count is not defined (#8667) (4739d94)

Features

  • client-core: timeseries for custom intervals (#8742) (ae989e1)
  • schema-compiler: expose custom granularities details via meta API and query annotation (#8740) (c58e97a)

0.36.3 (2024-09-26)

Bug Fixes

  • schema-compiler: fix FILTER_PARAMS propagation from view to cube's SQL query (#8721) (ec2c2ec)

0.36.2 (2024-09-18)

Bug Fixes

  • cubejs-testing: cypress - fix rollup tests (#8725) (23c9cda)
  • cubesql: Support new QuickSight meta queries (148e4cf)
  • schema-compiler: correct origin timestamp initialization in Granularity instance (#8710) (11e941d)

Features

  • client-core: extend client types with custom granularity support (#8724) (21a63e2)
  • cubejs-playground: add support for ungrouped and offset options (#8719) (7d77b4a)
  • cubesql: Support [I]LIKE ... ESCAPE ... SQL push down (2bda0dd)
  • schema-compiler: exact match preagg with custom granularity without the need for allow_non_strict_date_range_match option (#8712) (47c4d78)
  • schema-compiler: expose custom granularities via meta API (#8703) (4875b8e)

0.36.1 (2024-09-16)

Bug Fixes

  • schema-compiler: Add missing “quarter” time unit to granularity definitions (#8708) (e8d81f2)

Features

  • schema-compiler: Reference granularities in a proxy dimension (#8664) (b7674f3)
  • snowflake-driver: Upgrade snowflake-sdk to 1.13.1 (fix Node.js 20+ crash) (#8713) (84bc8de)

0.36.0 (2024-09-13)

BREAKING CHANGES

  • Remove support for USER_CONTEXT (#8705) (8a796f8) - This functionality was deprecated starting from v0.26.0. Please migrate to SECURITY_CONTEXT.
  • chore!: Remove support for checkAuthMiddleware (86eadb3) - checkAuthMiddleware option was deprecated in 0.26.0, because this option was tightly bound to Express. Since Cube.js supports HTTP and WebSockets as transports, we want our authentication API to not rely on transport-specific details. We now recommend using checkAuth.
  • feat(cubesql)!: Enable CUBESQL_SQL_NO_IMPLICIT_ORDER by default (f22e1ef) - It's started to be true. it means that SQL API will not add ordering to queries that doesn't specify ORDER BY, previusly it was true only for ungrouped queries.
  • chore!: /v1/run-scheduled-refresh - was removed (7213ae7) - Removing this method since Cube is designed and supposed to be run as a cluster, rather than a serverless application, in a production setting. Use the Orchestration API instead.
  • chore!: Remove cache & queue driver for Redis (eac704e) - Starting from v0.32, Cube Store is used as default cache and queue engine. Article: https://cube.dev/blog/replacing-redis-with-cube-store
  • chore!: Support for Node.js 16 was removed (8b83021) - Node.js is EOL, it was deprecated in v0.35.0.
  • feat(docker)!: Remove rxvt-unicode (was used as TERM) (fb9cb75) - It was not usefull, at the same time this TERM requires a lot of libraries to be installed. It costs 148 MB of additional disk space.
  • cubejs-client/playground: New query builder & new chart prototyping (6099144) - Playground was upgraded to Playground 2.0 and Chart Prototyping, previously available in Cube Cloud only.

Features

  • cubesql: Support information_schema.sql_implementation_info meta table (841f59a)
  • databricks-jdbc-driver: Support Java higher then 11 (03c278d)
  • docker-jdk: Upgrade JDK to 17 from 11 (c3a1ccd)
  • docker: Upgrade Node.js to 20.17.0 (9fedf78)
  • docker: Upgrade OpenSSL to 3 from (1.1) (97159e7)
  • docker: Upgrade OS to bookworm from bullseye (67e9521)
  • docker: Upgrade Python to 3.11 from 3.9 (7684579)
  • schema-compiler: Support custom granularities (#8537) (2109849)
  • schema-compiler: Support custom granularities for Cube Store queries (#8684) (f7c07a7)
  • Upgrade aws-sdk to 3.650.0 (0671e4a)

0.35.81 (2024-09-12)

Bug Fixes

  • api-gateway: fixes an issue where queries to get the total count of results were incorrectly applying sorting from the original query and also were getting default ordering applied when the query ordering was stripped out (#8060) Thanks @rdwoodring! (863f370)
  • cubesql: Use load meta with user change for SQL generation calls (#8693) (0f7bb3d)
  • Updated jsonwebtoken in all packages (#8282) Thanks @jlloyd-widen ! (ca7c292)

Features

0.35.80 (2024-09-09)

Bug Fixes

  • schema-compiler: propagate FILTER_PARAMS from view to inner cube's SELECT (#8466) (c0466fd)

Features

  • cubesql: Fill pg_description table with cube and members descriptions (#8618) (2288c18)
  • cubesql: Support join with type coercion (#8608) (46b3a36)

0.35.79 (2024-09-04)

Bug Fixes

  • schema-compiler: correct string casting for BigQuery (#8651) (f6ac9c2)
  • schema-compiler: correct string casting for Databricks (#8652) (5cf71d9)
  • schema-compiler: correct string casting for MySQL (#8650) (9408bb4)
  • schema-compiler: correct string concatenation and casting for MS SQL (#8649) (0e9f9f1)
  • schema-compiler: Support CURRENT_DATE SQL push down for BigQuery (9aebd6b)

Features

  • cubejs-api-gateway: Support returning new security context from check_auth (#8585) (704a96c)

0.35.78 (2024-08-27)

Bug Fixes

  • cubesql: Don't clone AST on pre-planning step (#8644) (03277b0)
  • cubesql: Don't clone response, improve performance (#8638) (4366299)
  • cubesql: Fix non-injective functions split rules, make them variadic (#8563) (ed33403)
  • cubesql: Normalize incoming date_part and date_trunc tokens (#8583) (f985265)

Features

  • cubejs-api-gateway: Add description to V1CubeMeta, V1CubeMetaDimension and V1CubeMetaMeasure in OpenAPI (#8597) (1afa934)
  • cubesql: Introduce max sessions limit (#8616) (dfcb596)
  • cubesql: Upgrade serde, serde_json - performance boost (#8636) (b4754db)
  • schema-compiler: detect boolean columns for schema generation (#8637) (178d98f)

0.35.77 (2024-08-26)

Bug Fixes

  • Row deduplication query isn't triggered in views if multiple entry join path is used (#8631) (1668175)
  • View builds incorrect join graph if join paths partially shared (#8632) Thanks @barakcoh for the fix hint! (5ca76db), closes #8499

Features

  • cubesql: CubeScan - don't clone strings for non stream response (#8633) (df364be)

0.35.76 (2024-08-24)

Bug Fixes

  • Invalid interval when querying multiple negative interval windows within Cube Store (#8626) (716b26a)

0.35.75 (2024-08-22)

Bug Fixes

  • Internal: ParserError("Expected AND, found: INTERVAL") in case of trailing and leading window parts are defined for pre-aggregated rolling window measure (#8611) (18d0620)

0.35.74 (2024-08-22)

Bug Fixes

Features

0.35.73 (2024-08-21)

Bug Fixes

  • cubesql: Reduce memory usage while converting to DataFrame (#8598) (604085e)
  • cubesql: Use date_part => date_part + date_trunc split only with appropriate date_part argument (#8552) (9387072)
  • cubestore: Reduce memory usage while converting to DataFrame (#8599) (15f9a0f)

Features

  • cubejs-schema-compiler: Support FILTER_GROUP in YAML models (#8574) (f3b8b19)

0.35.72 (2024-08-16)

Note: Version bump only for package cubejs

0.35.71 (2024-08-15)

Note: Version bump only for package cubejs

0.35.70 (2024-08-14)

Bug Fixes

  • cubesql: Don't push down aggregate to grouped query with filters (df3334c)

0.35.69 (2024-08-12)

Bug Fixes

  • cubesql: Split PowerBI count distinct expression (6a518d3)

0.35.68 (2024-08-12)

Bug Fixes

  • cubestore: Docker - install ca-certificates (#8571) (da40ff6)
  • schema-compiler: incorrect sql for query with same dimension with different granularities (#8564) (b8ec20e)

Features

  • cubesql: Support variable number of scalar function arguments in split rewrites (#8534) (2300fe8)

0.35.67 (2024-08-07)

Features

  • cubesqlplanner: Native SQL planner implementation first steps (#8506) (fab9c48)
  • cubesql: Support push down cast type templates (556ca7c)

0.35.66 (2024-08-06)

Bug Fixes

0.35.65 (2024-07-26)

Bug Fixes

  • cubestore: Import - validate http response for error (#8520) (d462b89)

Features

  • native: Add datetime types support to generate_series() UDTF (#8511) (99b3c65)

0.35.64 (2024-07-24)

Bug Fixes

  • native: Fix build failures caused by new ShutdownMode param (#8514) (80d10fd)
  • server: Start native api gateway only under the flag (not when port specified) (#8516) (b533859)

Features

Performance Improvements

  • cubesql: More complete usage of member_name_to_expr caching (#8497) (3f369e3)

0.35.63 (2024-07-24)

Bug Fixes

  • cubesql: Apply IN as = transformation with push down disabled (152fca0)

Features

  • cubesql: Support float*interval and interval/float (#8496) (300f8fc)

0.35.62 (2024-07-22)

Bug Fixes

  • schema-compiler: Replace all toDateTime with toDateTime64 in ClickHouseQuery adapter to handle dates before 1970 (#8390) Thanks @Ilex4524 ! )j (f6cff1a)

Features

  • native: Initial support for native api-gateway (#8472) (d917d6f)
  • rust/cubeclient: Upgrade reqwest to 0.12.5 (hyper 1) (#8498) (f77c3aa)

Performance Improvements

  • cubesql: Replaced LogicalPlanData::find_member with a caching version (#8469) (858d965)

0.35.61 (2024-07-19)

Bug Fixes

  • cubejs-questdb-driver: fix obsolete column name in SHOW TABLES (#8493) Thanks @puzpuzpuz! (f135933)
  • cubesql: Transform IN filter with one value to = with all expressions (671e067)

Features

  • cubesql: Support Null input type in SUM and AVG functions (5ce589a)

0.35.60 (2024-07-17)

Bug Fixes

  • cubesql: Fix "unable to represent JsFunction in Python" in queries when using python for cube configuration (#8449) (bcef222)
  • server-core: Headers sent multiple times from dev-server handlers crashes it (#8463) (45bbb8a)

Features

0.35.59 (2024-07-13)

Bug Fixes

  • Compile data model only once per each version (#8452) (2b3bdcd)

Features

  • cubejs-databricks-jdbc-driver: read-only mode (#8440) (6d2f97a)

0.35.58 (2024-07-10)

Bug Fixes

  • cubesql: Fix incorrect dateRange when filtering over date_trunc'd column in outer query (90ce14e)
  • postgres-driver: Don't throw errors for pseudo fields like __user (9c01c1b)
  • postgres-driver: Mapping for generic int as int8 (#8338) (3202d8d)

0.35.57 (2024-07-05)

Bug Fixes

  • cubesql: Don't put aggregate functions in Projection on split (4ff4086)
  • cubesql: Make CAST(COUNT(*) as float) work properly in some situations (#8423) (3ff5c9f)

Features

  • cubesql: Remove implicit order by clause (#8380) (3e7d325)

0.35.56 (2024-07-03)

Bug Fixes

  • cubesql: Correctly type pg_index fields (edadaf1)
  • cubesql: Realias outer projection on flatten (8cbcd7b)

Features

  • docker: Upgrade node from 18.20.1-bullseye-slim to 18.20.3-bullseye-slim (#8426) (57bd39a)
  • Make graceful shutdown add fatal messages in postgres (8fe1af2)

0.35.55 (2024-06-28)

Bug Fixes

  • cubejs-databricks-jdbc-driver: Remove inquirer library (reduce image size) (#8408) (682354b)

Features

  • docker: Reduce image size by 52.62 mb (remove duckdb sources) (#8407) (81bf1ad)
  • sqlite-driver: Upgrade sqlite3 to 5.1.7 (#8406) (115ce9c)

0.35.54 (2024-06-26)

Features

  • to_date rolling window type syntax (#8399) (eb7755d)
  • cubesql: Interval(MonthDayNano) multiplication and decomposition (576f7f7)

0.35.53 (2024-06-26)

Features

  • cubesql: Decimal128 i.e. NUMERIC(,) literal generation for SQL push down (43e29f9)
  • cubestore: Docker - upgrade to bookworm (bfd560c)
  • cubestore: Support openssl 3 (upgrade rdkafka) (f4874d6)

0.35.52 (2024-06-20)

Note: Version bump only for package cubejs

0.35.51 (2024-06-20)

Bug Fixes

  • cube: Rebuild of PreAggregations with aggregating indexes (#8326) (cc1de4f)
  • cubesql: Support CAST projection split (bcbe47b)
  • schema-compiler: add escape sequence to Snowflake QueryFilter (13d10f6)

Features

  • cubesql: support timestamp subtract date in SQL API, tests (#8372) (1db6a5c)
  • duckdb-driver: Upgrade to DuckDB 1.0.0 (#8373) (e41fa9f)

Performance Improvements

  • cubesql: Make incremental rule scheduler distinguish between generation 0 and 1 (719d8cf)

0.35.50 (2024-06-17)

Bug Fixes

  • cubesql: Proper interval dataframe values and better formatting (57e1d74)

0.35.49 (2024-06-14)

Features

  • cubesql: Implement timestamp subtraction and epoch extraction from intervals (1239e15)

0.35.48 (2024-06-14)

Bug Fixes

  • client-react: udpate td with a compare date range (#8339) (9ef51f7)
  • cubesql: Rollup don't work over subquery with asterisk projection (#8354) (0bc0306)
  • use tablesSchema over direct information schema (#8347) (a4ca555)

Features

  • cubesql: support GREATEST/LEAST SQL functions (#8325) (c13a28e)

Performance Improvements

  • cubesql: Use an incremental rule scheduler for egg (5892df7)

0.35.47 (2024-06-07)

Bug Fixes

  • cubesql: Rollup doesn't work over aliased columns (#8334) (98e7529)

0.35.46 (2024-06-06)

Bug Fixes

  • cubestore: Channel closed in query queue cache (#8327) (8898fb1)

0.35.45 (2024-06-05)

Bug Fixes

  • cubesql: Don't duplicate time dimensions (577220d)
  • cubesql: Support DATE_TRUNC equals literal string (69ba0ee)

Performance Improvements

  • cubesql: Improve rewrite engine performance (4f78b8a)

0.35.44 (2024-06-04)

Bug Fixes

  • databricks-jdbc-driver: Rolling window & count_distinct_approx (HLL) (#8323) (5969f0d)
  • query-orchestrator: Range intersection for 6 digits timestamp, fix #8320 (#8322) (667e95b)

0.35.43 (2024-05-31)

Bug Fixes

  • native: CLR - handle 1 level circular references for objects & arrays (#8314) (7e8e1ff)
  • native: Python - don't crash on extend_context (#8315) (e7e7067)

Features

0.35.42 (2024-05-30)

Features

0.35.41 (2024-05-27)

Features

  • databricks-driver: Support HLL feature with export bucket (#8301) (7f97af4)

0.35.40 (2024-05-24)

Bug Fixes

  • cubesql: Match inDateRange as time dimension date range in AND (64f176a)
  • cubesql: Propagate error from api-gateway to SQL API (#8297) (1a93d3d)

Features

  • cubesql: Support DATE_TRUNC InList filter (48e7ad4)

0.35.39 (2024-05-24)

Bug Fixes

  • cubesql: Fix time dimension range filter chaining with OR operator (757c4c5)

Features

  • cubesql: Flatten list expression rewrites to improve performance (96c1549)
  • schema-compiler: Support multi time dimensions for rollup pre-aggregations (#8291) (8b0a056)

0.35.38 (2024-05-22)

Bug Fixes

  • bigquery-driver: Transform numeric value (big.js) to string (#8290) (65c3f55)

Features

  • bigquery-driver: Upgrade @google-cloud SDK to 7 (#8289) (57ef124)
  • clickhouse-driver: SQL API PUSH down - support datetrunc, timestamp_literal (45bc230)
  • clickhouse-driver: Support countDistinctApprox (4d36279)
  • duckdb-driver: Upgrade DuckDB to 0.10.2 (#8284) (b057bca)

0.35.37 (2024-05-20)

Bug Fixes

  • cubesql: Make param render respect dialect's reuse params flag (9c91af2)

0.35.36 (2024-05-17)

Bug Fixes

  • cubesql: Do not generate large graphs for large IN filters (f29c9e4)

0.35.35 (2024-05-17)

Bug Fixes

  • cubesql: Remove incorrect LOWER match rules and fallback to SQL pushdown (#8246) (6c39f37)
  • cubesql: Remove prefix underscore from aliases (#8266) (24e8977)
  • schema-compiler: Fix failing of WHERE FALSE queries (#8265) (e63b4ab)

Features

0.35.34 (2024-05-15)

Bug Fixes

  • cubestore: S3 - STS credentials (align aws-creds to 0.36 in fork) (#8264) (1a5b27d)

0.35.33 (2024-05-15)

Bug Fixes

  • cubesql: Fix Databricks identifier quotes (a20f4b2)
  • Mismatched input '10000'. Expecting: '?', 'ALL', <integer> for post-aggregate members in Athena (#8262) (59834e7)

Features

  • cubesql: Rewrites for pushdown of subqueries with empty source (#8188) (86a58a5)
  • firebolt: Switch to the new auth method (#8182) (e559114)

0.35.32 (2024-05-14)

Features

  • cubesql: Flatten IN lists expressions to improve performance (#8235) (66aa01d)
  • databricks-jdbc-driver: Support HLL (#8257) (da231ed)

0.35.31 (2024-05-13)

Features

  • cubestore: Support HLL from Apache DataSketches (for DataBricks) (#8241) (baf2667)
  • Support probing LIMIT 0 queries (117f332)

0.35.30 (2024-05-10)

Bug Fixes

  • cubesql: Add alias to rebased window expressions (990a767)
  • cubesql: Reuse query params in push down (b849f34)
  • schema-compiler: Convert timezone for time dimensions in measures (0bea221)
  • schema-compiler: respect view prefix and member alias in hierarc… (#8231) (59fddea)
  • Unexpected keyword WITH for rolling window measures in BigQuery (9468f90), closes #8193
  • Unrecognized name when regular measures are selected with multiplied ones (617fd11), closes #8206

Features

  • cubesql: Support window frame SQL push down (5469dbc)

0.35.29 (2024-05-03)

Bug Fixes

  • Apply time shift after timezone conversions to avoid double casts (#8229) (651b9e0)
  • schema-compiler: support string measures in views (#8194) (fadfd1f)

0.35.28 (2024-05-02)

Bug Fixes

0.35.27 (2024-05-02)

Bug Fixes

  • cubestore: Queue - remove queue item payload on ack (reduce compaction) (#8225) (ac58583)
  • cubestore: Queue - truncate unused queue rows via TTL (#8227) (70ecbef)

Features

  • cubestore: Allow to truncate queue item payloads via system command (#8226) (75d4eac)

0.35.26 (2024-05-02)

Bug Fixes

  • gateway: Don't process meta with onlyCompilerId flag set (76ae23e)
  • gateway: missed v1 graphql-to-json endpoint (a24d69b)
  • gateway: Optimize filterVisibleItemsInMeta performance (b0fdbd3)
  • schema-compiler: foreign keys assignment (#8208) (74affc4)

Features

  • schema-compiler: hierarchies (#8102) (c98683f)
  • schema-compiler: Upgrade cron-parser to 4.9, fix #8203 (#8214) (f643c4b)
  • Support post-aggregate time shifts for prior period lookup support (#8215) (a9f55d8)

0.35.25 (2024-04-29)

Bug Fixes

  • cubesql: Disallow ematching cycles (4902c6d)
  • cubestore: Error in optimization for nested boolean expressions (#7891) (e5d20d2)

Features

  • Rolling YTD, QTD and MTD measure support (#8196) (bfc0708)

0.35.24 (2024-04-26)

Bug Fixes

  • cubesql: Fix date_trunc over column offset in filters (1a602be)
  • cubestore: S3 - STS credentials (backport fix for 0.32.3) (#8195) (9d9cb4a)

0.35.23 (2024-04-25)

Bug Fixes

  • client-core: castNumerics option for CubeApi (#8186) (6ff2208)

Features

0.35.22 (2024-04-22)

Bug Fixes

  • cubestore: S3 - wrong credentials (1313cdd)

0.35.21 (2024-04-19)

Bug Fixes

  • cubestore: MINIORemoteFs - use only simple auth from S3 client (#8170) (66403ad)
  • Logical boolean measure filter for post aggregate measures support (92cee95)
  • native: Better error message on unexpected values while streaming (#8172) (bcf3438)

0.35.20 (2024-04-18)

Features

  • Allow all calculated measure types in post aggregate measures (66f3acc)
  • Post aggregate raw dimension with date range support (23411cf)

0.35.19 (2024-04-18)

Features

  • cubesql: Update egg and remove some clones (#8164) (fe20d35)
  • Post aggregate measure filter support (120f22b)

0.35.18 (2024-04-17)

Features

  • Post aggregate no granularity time dimension support (f7a99f6)
  • Post aggregate view support (#8161) (acb507d)

0.35.17 (2024-04-16)

Bug Fixes

  • cubestore: Fix wrong optimization in total count queries (#7964) (7a8ddf0)
  • ungrouped not getting applied for MSSQL (#7997) Thanks @UsmanYasin ! (3fac97c)

Features

0.35.16 (2024-04-16)

Features

  • Post aggregate time dimensions support (4071e8a)

0.35.15 (2024-04-15)

Features

  • Post aggregate filter support (49131ea)

0.35.14 (2024-04-15)

Bug Fixes

  • server-core: Handle schemaPath default value correctly everywhere (refix) (#8152) (678f17f)

0.35.13 (2024-04-15)

Features

0.35.12 (2024-04-12)

Bug Fixes

  • snowflake-driver: Unable to detect a Project Id in the current environment for GCS export bucket (03ca8fa)

Reverts

  • Revert "fix(server-core): Handle schemaPath default value correctly everywhere (#8131)" (22a6f8b), closes #8131

0.35.11 (2024-04-11)

Bug Fixes

  • cubesql: Support latest Metabase, fix #8105 (#8130) (c82bb10)
  • server-core: Handle schemaPath default value correctly everywhere (#8131) (23bd621)

Features

  • cubestore: Enable jemalloc allocator for RocksDB on linux GNU (#8104) (ee7bcee)

0.35.10 (2024-04-09)

Bug Fixes

  • cubesql: has_schema_privilege - compatiblity with PostgreSQL (#8098) (42586cf)

0.35.9 (2024-04-08)

Features

  • cubestore: Upgrade rust to 1.77.0-nightly (635124704 2024-01-27) (#7640) (5aa5abb)
  • docker: Security upgrade Node.js from 18.19.1 to 18.20.1 (#8094) (51921cc)

0.35.8 (2024-04-05)

Bug Fixes

  • schema-compiler: quote case sensitive idents (#8063) (6273532)

Features

  • cubestore: Queue - optimize list/pending operations (#7998) (815be2f)

0.35.7 (2024-04-03)

Features

  • cross: Upgrade LLVM from 14 to 18 (02042024) (#8064) (9b30eac)
  • cubestore: Upgrade LLVM from 14 to 18 (#8068) (d1f0cbc)

0.35.6 (2024-04-02)

Bug Fixes

  • cubesql: Remove binary expression associative rewrites (19f6245)
  • cubestore: RocksStore - migrate table by truncate (unknown tables) (#8053) (509d895)

Features

  • cubestore: CacheStore - allow to disable logs (#8027) (ce6303c)
  • Ungrouped query pre-aggregation support (#8058) (2ca99de)

0.35.5 (2024-03-28)

Bug Fixes

  • cubesql: SQL push down of ORDER BY causes Invalid query format: "order[0][0]" with value fails to match the required pattern: /^[a-zA-Z0-9_]+.[a-zA-Z0-9_]+$/ (#8032) (0681725)
  • cubestore: RocksStore - improve panic safety on migration (#8031) (f81e2cb)
  • Multiplied count measure can be used as additive measure in pre-… (#8033) (f36959c)
  • schema-compiler: Upgrade babel/traverse to 7.24 (GHSA-67hx-6x53-jw92) (#8002) (9848e51)

0.35.4 (2024-03-27)

Bug Fixes

  • cubesql: Flatten aliasing breaks wrapped select ORDER BY expressions (#8004) (eea88ec)
  • query-orchestrator: Missing dataSource in pre-aggregation preview query (#7989) (d3012c8)

Features

  • cubesql: Support DISTINCT push down (fc79188)

0.35.3 (2024-03-22)

Bug Fixes

  • Render all distinct counts as 1 for ungrouped queries to not fail ratio measures (#7987) (f756e4b)

0.35.2 (2024-03-22)

Bug Fixes

  • cubesql: Fix timestamp parsing format string (938b13c)
  • mssql-driver: Unsupported option opt.evictionRunIntervalMillis, refs #7951 (#7977) (53f013a)

Features

  • cubesql: Flatten rules to allow multiple level transformation queries be executed by split and SQL push down (#7979) (f078adc)
  • cubesql: Parse timestamp strings as Date32 (4ba5a80)
  • cubesql: Support a ^ b exponentiation (914b058)
  • cubestore: Queue - reduce memory usage (#7975) (e9848e8)
  • cubestore: Reduce memory usage while writting WALs (#7967) (ee9fa71)
  • query-orchestrator: Queue - improve performance (#7983) (56d48fb)

Reverts

  • Revert "feat(schema-compiler): composite key generation (#7929)" (61e4c45), closes #7929

0.35.1 (2024-03-18)

Bug Fixes

  • cubestore: Wrong calculation of default compaction trigger size (too often compaction) (#7960) (2f4b75b)

Features

  • docker: Security upgrade node from 18.19.0 to 18.19.1 (#7924) (f33d03e)
  • duckdb-driver: Upgrade DuckDB to v0.10 (#7920) (0e9103a)
  • mssql-driver: Upgrade mssql to 10.0.2 (Node.js 17+ compatiblity), fix #7951 (7adaea6)
  • schema-compiler: composite key generation (#7929) (5a27200)

0.35.0 (2024-03-14)

Bug Fixes

  • cubesql: Don't ignore second filter over same time dimension (03e7f3a)
  • cubestore-driver: Compatibility with Node.js 18 (localhost resolved to ipv6) (f7a4fab)

Features

  • docker: Upgrade Node.js to 18.x (8b5b923)

0.34.62 (2024-03-13)

Bug Fixes

  • cubesql: Fix push down column remapping (8221a53)
  • Job API - correct handling on missed pre_aggregation (#7907) (6fcaff4)
  • Job API - correct handling when job is not_found (#7894) (cae1866)
  • query-orchestrator: Job API - builds are not triggered, fix #7726 (#7909) (738dbde)

0.34.61 (2024-03-11)

Bug Fixes

  • cubesql: Error out when temporary table already exists (1a0a324)
  • cubesql: Fix push down CASE with expr (f1d1242)
  • cubesql: Fix push down column remapping (c7736cc)
  • cubesql: Partition pruning doesn't work when view uses proxy member (#7866) (c02a07f), closes #6623
  • cubesql: Trim ".0" postfix when converting Float toUtf8` (3131f94)
  • Wrong sql generation when multiple primary keys used (#6689) Thanks @alexanderlz ! (2540a22)

Features

  • clickhouse-driver: Support export bucket for S3 (write only) (#7849) (db7e2c1)
  • clickhouse-driver: Support S3 export for readOnly mode (7889aad)
  • cubesql: Support FETCH ... n ROWS ONLY (53b0c14)
  • query-orchestrator: Support unload (export bucket) for readOnly drivers (76ce7ed)

Reverts

  • Revert "fix(cubesql): Fix push down column remapping" (#7895) (dec8901), closes #7895

0.34.60 (2024-03-02)

Bug Fixes

  • Bump max connect retries for Cube Store (00a6ec0)
  • client-core: incorrect index in movePivotItem (#6684) Thanks to @telunc! (82217b2)
  • cubesql: Allow different Timestamp types in DATEDIFF (de9ef08)
  • cubesql: Incorrect CASE WHEN generated during ungrouped filtered count (#7859) (f970937), closes #7858
  • cubesql: Prioritize ungrouped aggregate scans over ungrouped projection scans so most of the members can be pushed down without wrapping (#7865) (addde0d)
  • cubesql: Remove excessive limit on inner wrapped queries (#7864) (b97268f)

Features

0.34.59 (2024-02-28)

Bug Fixes

  • cubesql: Replace only simple ungrouped measures in projections to avoid aggregate over aggregate statements (#7852) (fa2a89b)
  • Ungrouped filtered count should contain CASE WHEN statement bu… (#7853) (8c37a40)

0.34.58 (2024-02-27)

Bug Fixes

  • clickhouse-driver: Correct support for Enum8/16 (#7814) (db37fc3)
  • cubesql: Ambiguous reference in case of same two 16 char prefixes are in query (5051f66)
  • cubesql: Continue wait error is being thrown to users (cb2376c)

Features

0.34.57 (2024-02-26)

Bug Fixes

  • cubesql: ungrouped query can be routed to Cube Store (#7810) (b122837)
  • cubesql: Can't find rewrite due to AST node limit reached for remaining non-equivalent date and timestamp constant folding rules (b79f697)
  • cubesql: More readable error message during SQL generation (d9a7194)
  • cubesql: Support Z postfix in Timestamp response transformation (c013c91)
  • cubesql: Timestamp equals filter support (754a0df)
  • cubesql: writerOrChannel.resolve is not a function (abc95e2)

Features

  • cubesql: WHERE SQL push down (#7808) (98b5709)
  • cubesql: Allow replacement of aggregation functions in SQL push down (#7811) (97fa757)
  • cubesql: Support placeholders in OFFSET, FETCH ... (60aad90)
  • cubesql: Support temporary tables (7022611)
  • duckdb-driver: Add support for local fs duckdb database path (#7799) (77cc883)

0.34.56 (2024-02-20)

Bug Fixes

  • cubesql: Allow NULL values in CASE (a97acdc)
  • cubesql: Streaming still applies default limit (a96831d)
  • Gracefully handle logical expressions in FILTER_PARAMS and introduce FILTER_GROUP to allow use FILTER_PARAMS for logical expressions (#7766) (736070d)

0.34.55 (2024-02-15)

Bug Fixes

  • Cannot read properties of null (reading 'includes') (9b50382)
  • cubesql: Quote FROM alias for SQL push down to avoid name clas… (#7755) (4e2732a)

Features

0.34.54 (2024-02-13)

Bug Fixes

  • cubesql: Cannot read properties of undefined (reading 'preAggregation') with enabled SQL push down (ac2cc17)

0.34.53 (2024-02-13)

Bug Fixes

  • cubesql: SQL push down can be incorrectly routed to Cube Store pre-aggregations (#7752) (1a6451c)

0.34.52 (2024-02-13)

Bug Fixes

  • cubesql: Support new Metabase meta queries (0bc09fd)
  • cubestore: Error in queries with GROUP BY DIMENSION (#7743) (b9fcc60)
  • cubestore: Use file_name instead of id for in memory chunks (#7704) (9e2e925)

Features

  • cubesql: Always Prefer SQL push down over aggregation in Datafusion (#7751) (b4b0f05)
  • cubesql: EXTRACT(EPOCH, ...) support (#7734) (b4deacd)
  • cubesql: Support TimestampNanosecond in CASE (69aed08)
  • cubesql: Support Athena OFFSET and LIMIT push down (00c2a6b)
  • duckdb-driver: pass Cube user agent (6b7aff6)

0.34.51 (2024-02-11)

Bug Fixes

  • cubesql: Enable constant folding for unary minus exprs (704d05a)
  • cubesql: Fix CASE type with NULL values (2b7cc30)
  • cubesql: Stabilize split operations for SQL push down (#7725) (6241e5e)
  • native: Don't crash after query cancellation (40726ba)
  • native: Handle JsAsyncChannel error (without panic) (#7729) (5480978)
  • playground: replace antd daterange picker (#7735) (484f1ca)

Features

  • Add ungrouped flag to GraphQL API (#7746) (6111fbb)
  • cubesql: Extend DATEDIFF push down support (ecaaf1c)
  • cubestore: CREATE TABLE IF NOT EXISTS support (#7451) (79c5e92)

0.34.50 (2024-01-31)

Bug Fixes

  • cubestore: Single job process don't stop after job done (#7706) (b84a345)
  • Merge streaming methods to one interface to allow SQL API use batching and Databricks batching implementation (#7695) (73ad72d)
  • playground: replace antd popover for settings (#7699) (56b44ee)

0.34.49 (2024-01-26)

Bug Fixes

  • Revert drillMembers include in views as it's a breaking change. Need to re-introduce it through evaluation on cube level and validating drillMembers are included in view (#7692) (6cbbaa0)

0.34.48 (2024-01-25)

Bug Fixes

  • cubesql: Fix unary minus operator precedence (d5a935a)
  • cubesql: Segment mixed with a filter and a date range filter may affect push down of inDateRange filter to time dimension (#7684) (f29a7be)
  • cubesql: Support Sigma Sunday week granularity (3d492eb)
  • Join order is incorrect for snowflake schema views with defined join paths (#7689) (454d456), closes #7663

Features

  • cubesql: Support KPI chart in Thoughtspot (dbab39e)
  • cubesql: Support unwrapping BINARY expr from SUM(<expr>) (#7683) (ce93cc7)
  • View members inherit title, format and drillMembers attribute (#7617) Thanks @CallumWalterWhite ! (302a756)

0.34.47 (2024-01-23)

Features

  • cubesql: TO_CHAR - support more formats, correct NULL handling (#7671) (2d1e2d2)
  • duckdb-driver: Support advanced configuration for S3 via env variables (#7544) (4862195)

0.34.46 (2024-01-18)

Bug Fixes

Features

  • cubesql: Cache plan rewrites with and without replaced parameters (#7670) (c360d3c)

0.34.45 (2024-01-16)

Features

0.34.44 (2024-01-15)

Bug Fixes

  • query-orchestrator: QueryQueue - reduce trafic (unexpected call for query stage) (#7646) (ecf3826)

Features

  • query-orchestrator: Queue - reduce traffic for processing (Cube Store only) (#7644) (7db90fb)

0.34.43 (2024-01-11)

Bug Fixes

0.34.42 (2024-01-07)

Features

  • cubesql: Compiler cache for rewrite rules (#7604) (995889f)

0.34.41 (2024-01-02)

Bug Fixes

  • @cubejs-client/ngx: set module to fesm2015 (#7571) Thanks @loremaps! (aaa8bfd), closes #7570
  • cubesql: Enable Visitor on GROUP BY expressions (#7575) (bcc1a89)
  • cubestore: Panic in hash join (#7573) (aa6c08b)
  • databricks-jdbc-driver: Time series queries with rolling window & time dimension (#7564) (79d033e)
  • Do not fail extractDate on missing result set (c8567ef)

Features

0.34.40 (2023-12-21)

Features

  • cubesql: Do not run split re-aggregate for trivial push down to improve wide table queries (#7567) (8dbf879)

0.34.39 (2023-12-21)

Bug Fixes

  • base-driver: Support parsing intervals with month|quarter|year granularity (#7561) (24c850c)
  • clickhouse-driver: Correct parsing for DateTime('timezone') (#7565) (d39e4a2)

Features

  • jdbc-driver: Upgrade java to ^0.14 (to support new JDK & Node.js) (#7566) (fe10c9b)

0.34.38 (2023-12-19)

Bug Fixes

  • dremio-driver: Fix generation of time series SQL (#7503) (7e84d4c)

Features

  • native: NodeObjSerializer - support serializing sequences (#7560) (c19679d)

0.34.37 (2023-12-19)

Bug Fixes

  • clickhouse-driver: Initial support for DateTime64, fix #7537 (#7538) (401e9e1)
  • Internal: Error during planning: No field named for pre-aggregat… (#7554) (412213c)

Features

  • client-core: Add meta field for Cube type definition (#7527) (75e201d)
  • cubesql: Avoid pushing split down for trivial selects to optimi… (#7556) (2bf86e5)
  • native: Support Python 3.12 (#7550) (618a81e)

0.34.36 (2023-12-16)

Bug Fixes

  • cubesql: Improve performance for wide table querying (#7534) (0f877d4)

0.34.35 (2023-12-13)

Bug Fixes

  • cubesql: Support Sigma Computing table schema sync (d87bd19)

Features

0.34.34 (2023-12-12)

Bug Fixes

  • api-gateway: Catch error from contextToApiScopes (#7521) (0214472)
  • api-gateway: Fallback to global error middelware for async handlers (#7520) (74b0862)
  • api-gateway: Removed hasOwnProperty check for request object (#7517) (2129a1b)
  • deps: Upgrade qs (CVE-2022-24999) (#7518) (55422a1)

0.34.33 (2023-12-11)

Features

  • duckdb-driver: Declare user agent information (#7490) (59557e8)
  • query-orchestrator: Reduce number of touches for pre-aggregations (#7515) (c22eb91)

0.34.32 (2023-12-07)

Bug Fixes

  • query-orchestrator: Queue - clear timer on streaming (#7501) (ac2357d)

Features

  • cubesql: Add CURRENT_DATE function definitions for Postgres and Snowflake so those can be pushed down (ac1ca88)

0.34.31 (2023-12-07)

Bug Fixes

  • cubesql: Avoid constant folding for current_date() function duri… (#7498) (e86f4be)

Features

  • cubesql: Support Utf8 * Interval expression (ea1fa9c)

0.34.30 (2023-12-04)

Bug Fixes

  • cubestore: InplaceAggregate for boolean columns (#7432) (a6d3579)
  • View tries to join cube twice in case there's join ambiguity (#7487) (66f7c17)

0.34.29 (2023-12-01)

Bug Fixes

  • schema-compiler: td.isDateOperator is not a function (#7483) (31c272a)

0.34.28 (2023-11-30)

Features

  • server-core: Relative imports resolution for custom drivers (#7480) (8f180b3)

0.34.27 (2023-11-30)

Features

  • client-ngx: enable ivy (#7479) (a3c2bbb)
  • cubesql: Provide password supplied by Postgres connection as a 3rd argument of check_sql_auth() (#7471) (ee3c19f), closes #5430

0.34.26 (2023-11-28)

Bug Fixes

  • cubesql: Missing template backslash escaping (#7465) (4a08de5)
  • query-orchestartor: Queue - fix possible memory leak with timer (#7466) (535a676)
  • schema-compiler: Incorrect excludes resolution, fix #7100 (#7468) (f89ef8d)
  • schema-compiler: Missing pre-aggregation filter for partitioned pre-aggregation via view, fix #6623 (#7454) (567b92f)

Features

  • cubesql: Support SQL push down for several functions (79e5ac8)
  • cubestore-driver: Queue - protect possible race condition with hearbeat/cancellation on error (#7467) (9c0ad07)

0.34.25 (2023-11-24)

Bug Fixes

  • api-gateway: Handle invalid query (invalid JSON) as 400 Bad Request (#7455) (c632727)
  • mongobi-driver: Correct time zone conversion for minutes, fix #7152 (#7456) (5ae2009)
  • Validation problem with ECDSA SSL keys (#7453) (567d2ca)

0.34.24 (2023-11-23)

Bug Fixes

  • athena-driver: Allow to pass custom credentials, fix #7407 (#7429) (f005c5b)
  • cubestore: Natural order for Int96 and Decimal96 (#7419) (5671a5c)

Features

  • cubestore: Metrics - track command for data/cache/queue (#7430) (91db103)
  • schema-compiler: add dimension primaryKey property to transform result (#7443) (baabd41)

0.34.23 (2023-11-19)

Bug Fixes

  • duckdb-driver: Crash with high concurrency (unsuccessful or closed pending query result) (#7424) (a2e42ac)
  • Match additive pre-aggregations with missing members for views and proxy members (#7433) (e236079)

Features

  • cubesql: Support - (unary minus) SQL push down (a0a2e12)
  • cubesql: Support NOT SQL push down (#7422) (7b1ff0d)
  • cubestore-driver: Queue - protect possible race condition on removing orphaned queries (#7426) (7142e9c)
  • duckdb-driver: Upgrade to 0.9.2 (#7425) (d630243)
  • native: Jinja - print tracebacks for Python errors (#7435) (734094c)

0.34.22 (2023-11-16)

Bug Fixes

  • cubesql: Window PARTITION BY, ORDER BY queries fail for SQL push down (62b359f)

Features

  • cubesql: Ambiguous column references for SQL push down (c5f1648)

0.34.21 (2023-11-15)

Features

  • cubesql: SQL push down support for synthetic fields (#7418) (d2bdc1b)
  • cubesql: Support SQL push down for more functions (#7406) (b1606da)

0.34.20 (2023-11-14)

Bug Fixes

  • Expose isVisible and public properties in meta consistently (35ca1d0)

Features

  • cubesql: Support [NOT] IN SQL push down (c64994a)
  • druid-driver: Retrieve types for columns with new Druid versions (#7414) (b25c199)

0.34.19 (2023-11-11)

Bug Fixes

  • support for format in typings for measures (#7401) (1f7e1b3)

Features

0.34.18 (2023-11-10)

Bug Fixes

  • Non-additive pre-aggregations based on proxy dimension doesn't match anymore (#7396) (910a49d)

0.34.17 (2023-11-09)

Bug Fixes

  • cubestore-driver: Check introspection results on import (#7382) (a8b8ad0)
  • duckdb-driver: Compatibility issue with Cube Store for DATE type (#7394) (3e1389b)

0.34.16 (2023-11-06)

Features

0.34.15 (2023-11-06)

Bug Fixes

  • cubestore: Fix broadcasting for worker services (#7375) (1726632)
  • Single value non-additive pre-aggregation match in views (9666f24)

0.34.14 (2023-11-05)

Bug Fixes

  • Views with proxy dimensions and non-additive measures don't not match pre-aggregations (#7374) (7189720), closes #7099

Features

  • cubesql: SQL push down for several ANSI SQL functions (ac2bf15)
  • cubesql: SQL push down support for IS NULL and IS NOT NULL expressions (9b3c27d)

0.34.13 (2023-10-31)

Bug Fixes

  • cubesql: SQL push down for limit and offset for ungrouped queries (67da8c3)
  • cubestore: Error with pre-aggregation and filters containing comma. (#7364) (ac4037e)

Features

  • cubestore: Introduce limit for cache_max_entry_size (#7363) (2295fe0)

0.34.12 (2023-10-30)

Bug Fixes

  • duckdb-driver: Specify schema for information_schema queries (#7355) (60f2078)

Features

  • cubestore-driver: Queue - protect possible race condition on cancellation (#7356) (a788954)

0.34.11 (2023-10-29)

Features

  • cubesql: Allow changing current user through SET user = ? (#7350) (2c9c8d6)
  • cubestore: Queue - expose queueId for LIST/ACTIVE/PENDING/TO_CANCEL (#7351) (7b1a0c0)
  • query-orchestrator: Pass queueId for orphaned query cancellation (#7353) (08ce078)
  • query-orchestrator: Use real queueId in processQuery for events (#7352) (bf83762)

0.34.10 (2023-10-27)

Features

  • cubesql: Introduce CUBESQL_DISABLE_STRICT_AGG_TYPE_MATCH to avoid aggregation type checking during querying (#7316) (61089f0)

0.34.9 (2023-10-26)

Bug Fixes

Features

0.34.8 (2023-10-25)

Bug Fixes

  • cubesql: column does not exist in case of ORDER BY is called on CASE column (8ec80e8)

Features

  • cubesql: Aggregation over dimensions support (#7290) (745ae38)

0.34.7 (2023-10-23)

Features

  • native: Jinja - passing filters via TemplateContext from Python (#7284) (1e92352)

0.34.6 (2023-10-20)

Bug Fixes

  • cubestore: Window function don't work with only one Following bound (#7216) (a0d23cb)
  • docs: update marketing-ui version (#7249) (0b6755c)
  • native: Init logger earlier without javascript side (silient errors) (#7228) (1f6d49d)
  • native: Jinja - enable autoescape for .jinja (old naming) files (#7243) (abf5a0c)

Features

  • native: Jinja - passing variables via TemplateContext from Python (#7280) (e3dec88)

0.34.5 (2023-10-16)

Features

  • duckdb-driver: upgrade duckdb driver to 0.9.1 (#7174) (f9889d4)
  • native: Support SafeString for Python & Jinja (#7242) (c6069cd)

0.34.4 (2023-10-14)

Bug Fixes

  • cross: Enable shared python for aarch64-unknown-linux-gnu (#7225) (2c4f48a)

0.34.3 (2023-10-12)

Bug Fixes

  • native: Improve error on scheduling Python task (#7222) (c14c025)

Features

  • native: Enable Python support for Linux/ARM64 (#7220) (5486e26)

0.34.2 (2023-10-12)

Bug Fixes

  • native: Correct compilation for Linux ARM64 (#7215) (669c86c)
  • playground: rollup designer view members (#7214) (b08e27b)

Features

  • native: Support jinja inside yml in fallback build (without python) (#7203) (e3e7e0e)

0.34.1 (2023-10-09)

Bug Fixes

  • @cubejs-client/vue: Do not add time dimension as order member if granularity is set to none (#7165) (1557be6)
  • cubesql: Support unaliased columns for SQL push down (#7199) (e92e15c)
  • duckdb-driver: allow setting default schema (#7181) (a52c4d6)
  • More descriptive error message for incorrect incremental: true non-partitioned setting (7e12e4e)

Features

  • cubesql: Support SET ROLE name (d02077e)
  • cubestore: Size limit for RocksStore logs file (#7201) (43bb693)

0.34.0 (2023-10-03)

Note: Version bump only for package cubejs

0.33.65 (2023-10-02)

Bug Fixes

  • @cubejs-client/vue: Pivot config can use null from heuristics (#7167) (e7043bb)

Features

  • python: Evaluate Jinja templates inside .yml and .yaml (#7182) (69e9437)
  • python: Support [@template](https://github.com/template).function("name") definitions (#7183) (33823e8)

0.33.64 (2023-09-30)

Bug Fixes

  • cubestore: Escape regex symbols in all versions of like operator (#7176) (e58af39)
  • cubestore: Escape regex symbols in like operator (#7175) (b88c3f3)
  • cubestore: Wrong pre-aggregations count distinct approx count when using PostgreSQL database (#7170) (1d1d4f0)
  • databricks-jdbc-driver: ensure default UID property is set (#7168) (0f357f8)
  • SQL push down expressions incorrectly cache used cube names (c5f0b03)

Features

0.33.63 (2023-09-26)

Features

  • cubesql: Tableau Standard Gregorian missing date groupings support through SQL push down and some other functions(#7172) (1339f57)
  • snowflake-driver: Upgrade snowflake driver to 1.8.0 (#7171) (06a66c6)

0.33.62 (2023-09-25)

Features

  • native: Jinja - support dynamic Python objects (methods, call, fields) (#7162) (6a5f70c)

0.33.61 (2023-09-22)

Features

0.33.60 (2023-09-22)

Bug Fixes

  • cubesql: dataRange filter isn't being push down to time dimension in case of other filters are used (a4edfae), closes #6312

Features

  • docker: Python - disable buffering for STDOUT (PYTHONUNBUFFERED) (#7153) (5cd0a17)

0.33.59 (2023-09-20)

Features

  • cubesql: EXTRACT SQL push down (#7151) (e30c4da)
  • cubesql: Add ability to filter dates inclusive of date being passed in when using <= or >= (#7041) Thanks @darapuk ! (6b9ae70)
  • native: Cube.py - support all options (#7145) (5e5fb18)

0.33.58 (2023-09-18)

Bug Fixes

  • cubejs-client/core: drillDown - check dateRange before destructuring (#7138) (21a7cc2)
  • docs: layout styles (f5e5372)
  • schema-compiler: YAML - crash on empty string/null, fix #7126 (#7141) (73f5ca7)
  • schema-compiler: YAML - crash on unammed measure/dimension/join, refs #7033 (#7142) (5c6a065)
  • server-core: Validation - cors.optionsSuccessStatus should be a number (#7144) (1d58d4f)

Features

  • new methods for step-by-step db schema fetching (#7058) (a362c20)

0.33.57 (2023-09-15)

Bug Fixes

  • cubesql: ORDER BY references outer alias instead of inner expression for SQL push down (778e16c)
  • cubestore: Eviction - schedule compaction as blocking task (#7133) (009b1d6)
  • docs: change header layout (#7136) (581faad)
  • redshift-driver: resolves issue where redshift column order can come back in a different order, causing pre-aggregations across partitions to encounter a union all error (#6965) Thanks @jskarda829 @magno32 ! (30356d9)

Features

  • Config - improve validation (use strict mode) (#6892) (5e39b9b)
  • cubesql: CONCAT function support for SQL push down (da24afe)
  • cubesql: DATE_TRUNC support for SQL push down (#7132) (ae80eb1)
  • cubestore: Int96 and Decimal96 support (#6952) (0262d67)
  • native: Cube.py - support orchestratorOptions/http/jwt (#7135) (7ab977f)

0.33.56 (2023-09-13)

Features

  • native: Cube.py - introduce config decorator (#7131) (84fad15)
  • native: Cube.py - support pre_aggregations_schema (#7130) (5fc3b8d)
  • native: Initial support for Python 3.12 (#7129) (cc81cd2)
  • native: Python - support tuple type (#7128) (2518e16)

0.33.55 (2023-09-12)

Features

  • client-core: castNumerics option (#7123) (9aed9ac)
  • cubestore: Cache - auto trigger for full compaction (#7120) (675a0a0)
  • native: Cube.py - support semanticLayerSync/schemaVersion (#7124) (1df04da)
  • native: Jinja - support passing Map/Seq to Python (#7125) (b7762a1)

0.33.54 (2023-09-12)

Bug Fixes

  • cubestore: COUNT(*) don't work on subquery with aggregation (#7117) (fa48e92)
  • cubestore: Fix error in projection pushdown (#7119) (88ef3d6)

Features

  • cubesql: ORDER BY SQL push down support (#7115) (49ea3cf)
  • cubestore: Increase parallelism for Cache Store (#7114) (ad1b146)

0.33.53 (2023-09-08)

Features

0.33.52 (2023-09-07)

Features

0.33.51 (2023-09-06)

Features

  • cubesql: Support inet_server_addr stub (9ecb180)
  • native: Cube.py - support contextToAppId/contextToOrchestratorId (#6725) (77e8432)
  • native: cube.py - support file_repository (#7107) (806db35)

0.33.50 (2023-09-04)

Bug Fixes

  • cubestore: Eviction - correct size counting for old keys (#7097) (8ded651)

Features

  • cubesql: Support Date32 to Timestamp coercion (54bdfee)
  • cubestore: Eviction - truncate expired keys (#7081) (327f2dc)

0.33.49 (2023-08-31)

Bug Fixes

  • databricks-driver: Uppercase filter values doesn't match in contains filter (#7067) (1e29bb3)
  • mongobi-driver: Invalid configuration for mysql2 connection (#6352) Thanks @loremaps! (edaf326), closes #5527

Features

  • cubesql: Support multiple values in SET (41af344)
  • cubestore: Support eviction for cache (#7034) (2f16cdf)

0.33.48 (2023-08-23)

Features

  • cubesql: Ungrouped queries support (#7056) (1b5c161)
  • cubestore: Optimize CACHE SET on update (uneeded clone) (#7035) (8aea083)
  • cubestore: Optimize QUEUE ACK/CANCEL, CACHE DELETE (#7054) (ac7d1a8)

0.33.47 (2023-08-15)

Bug Fixes

  • cubestore: Reduce memory usage while truncating (#7031) (29080d7)

Features

  • cubesql: Support LIMIT for SQL push down (1b5c19f)

0.33.46 (2023-08-14)

Bug Fixes

  • cubestore: Missing filter in the middle of an index prunes unnecessary partitions (5690d8d)

Features

  • cubesql: Initial SQL push down support for BigQuery, Clickhouse and MySQL (38467ab)

0.33.45 (2023-08-13)

Features

  • cubesql: CASE WHEN SQL push down (#7029) (80e4a60)
  • cubesql: Whole SQL query push down to data sources (#6629) (0e8a76a)

0.33.44 (2023-08-11)

Bug Fixes

  • cubejs-schema-compiler: cube level public should take precedence over dimension level public (#7005) (2161227)
  • cubestore: Store value_version for secondary index as u32 (#7019) (c8cfd62)

Features

0.33.43 (2023-08-04)

Bug Fixes

  • cubestore: Mark nullable fields for system.cache/queue/queue_results (#6984) (9e64e71)
  • duckdb-driver: Throw error on broken connection (#6981) (e64116d)
  • duckdb: reuse connection (#6983) (dc6c154)

Features

  • cubestore: Limit push down for system tables (cache, queue, queue_results) (#6977) (ace2054)
  • duckdb-driver: Allow to specify memory_limit as env variable (#6982) (84211b2)

0.33.42 (2023-08-03)

Bug Fixes

Features

  • schema-compiler: allow passing a catalog (#6964) (680f545)

0.33.41 (2023-07-28)

Bug Fixes

Features

0.33.40 (2023-07-27)

Features

  • cubestore: Tracking data amount using in processing (#6887) (92cae7a)
  • duckdb-driver: bump duckdb version (9678ebb)

0.33.39 (2023-07-25)

Features

0.33.38 (2023-07-21)

Note: Version bump only for package cubejs

0.33.37 (2023-07-20)

Bug Fixes

  • schema: Jinja - show source line in error message (#6885) (ec3ce22)

0.33.36 (2023-07-13)

Features

0.33.35 (2023-07-12)

Note: Version bump only for package cubejs

0.33.34 (2023-07-12)

Features

0.33.33 (2023-07-08)

Features

  • schema: Support multitenancy for jinja templates (#6793) (fb59e59)

0.33.32 (2023-07-07)

Bug Fixes

  • databricks-jdbc-driver: Return NULL as NULL instead of false for boolean (#6791) (7eb02f5)

Features

0.33.31 (2023-07-01)

Bug Fixes

  • cubestore: FreeInMemoryChunks fires if there is no inmemory chunks (#6771) (f9cfd77)
  • databricks-jdbc-driver: Return NULL decimal as NULL instead of 0 (#6768) (c2ab19d)

0.33.30 (2023-06-23)

Features

0.33.29 (2023-06-20)

Features

0.33.28 (2023-06-19)

Bug Fixes

  • native: Correct support detection (disable on darwin-aaarch64) (#6737) (53c6ee9)
  • schema: Load jinja engine only when jinja templates exist (#6741) (75469a6)

0.33.27 (2023-06-17)

Bug Fixes

  • Support unescaped \\N as NULL value for Snowflake driver (#6735) (1f92ba6), closes #6693

0.33.26 (2023-06-14)

Bug Fixes

  • Correct duration for refresh sheduler interval warning (#6724) (3482d29)
  • cubestore: Out of memory on partition compaction (#6705) (980b898)

Features

  • native: Python - support int64 (#6709) (34497ab)
  • presto-driver: Set query timeout as query_max_run_time to avoid orphaned queries after query timeout (d6332cf)
  • schema: Initial support for jinja templates (#6704) (338d1b7)

0.33.25 (2023-06-07)

Bug Fixes

0.33.24 (2023-06-05)

Bug Fixes

  • ksql-driver: Reduce default concurrency to 1 as ksql doesn't support multiple queries at the same time right now (4435661)
  • Multi data source CUBEJS_CONCURRENCY env (#6683) (6beb0fb)
  • native: Allow to load Python extensions (export public symbols) (d95cddc)

Features

  • cubesql: Support CURRENT_DATE scalar function (ec928a6)
  • cubestore: Priorities for job types (#6502) (a457c5d)
  • native: Publish python builds for darwin platform (#6664) (edcf8f2)
  • native: Python - support async functions (9232af5)
  • native: Python - support more functions in cube.py (#6687) (1d10c5b)

0.33.23 (2023-06-01)

Bug Fixes

  • ci: Publish - cubestore use gtar on windows (9feaf49)
  • docker: Install libpython3-dev on building step (11245d2)

0.33.22 (2023-05-31)

Features

0.33.21 (2023-05-31)

Note: Version bump only for package cubejs

0.33.20 (2023-05-31)

Note: Version bump only for package cubejs

0.33.19 (2023-05-30)

Bug Fixes

  • mssql-driver: Handle BigInt and other mismatched types (9cebfef), closes #6658

Features

  • native: Publish builds with Python 3.9, 3.10 for Linux (#6666) (0b1c7b8)

0.33.18 (2023-05-29)

Features

  • native: Initial support for cube.py (Python configuration) (#6465) (9086be4)

0.33.17 (2023-05-29)

Bug Fixes

  • mssql-driver: Server crashes on streaming errors (2e81345)

0.33.16 (2023-05-28)

Bug Fixes

  • mssql-driver: Pre-aggregations builds hang up if over 10K of rows (#6661) (9b20ff4)

0.33.15 (2023-05-26)

Bug Fixes

  • athena-driver: Internal: Error during planning: Coercion from [Utf8, Utf8] to the signature Exact([Utf8, Timestamp(Nanosecond, None)]) failed for athena pre-aggregations (#6655) (46f7dbd)
  • Put temp table strategy drop under lock to avoid missing table r… (#6642) (05fcdca)

0.33.14 (2023-05-25)

Reverts

  • Revert "feat(native): Initial support for cube.py (Python configuration) (#6465)" (95e9581), closes #6465

0.33.13 (2023-05-25)

Features

  • native: Initial support for cube.py (Python configuration) (#6465) (c41af63)

0.33.12 (2023-05-22)

Bug Fixes

  • client-core: drill down check the parent date range bounds (#6639) (5da5e61)
  • Invalid query format: "filters[0]" does not match any of the allowed types for or query (a3b4cd6)

0.33.11 (2023-05-22)

Bug Fixes

Features

  • cubestore: Optimization of inmemory chunk operations for streaming (#6354) (146798a)
  • docker: Install DuckDB as built-in driver (b1e77bd)
  • duckdb-driver: Upgrade DuckDB to 0.8 (7d91f9f)
  • Improve LangChain support (15e51bc)

0.33.10 (2023-05-19)

Bug Fixes

  • remove noisy Warning: Attribute filter.dimension is deprecated. Please use 'member' instead of 'dimension' (546227a)

0.33.9 (2023-05-18)

Bug Fixes

  • databricks-jdbc-driver: Error: [Databricks]jdbc Parameters cannot be used with normal Statement objects, use PreparedStatements instead. (328bb79), closes #6627
  • Invalid query format: "filters[0]" does not match any of the allowed types if queryRewrite is using non string values (ac57b4c)

0.33.8 (2023-05-17)

Bug Fixes

  • athena-driver: Fix partitioned pre-aggregations and column values with , through export bucket (#6596) (1214cab)
  • graphql: exclude empty cubes, revert equals/notEquals type (#6619) (fab1b6a)

Features

  • bigquery-driver: Specify timeout for job on testConnection (#6588) (d724f09)
  • cubestore-driver: Queue - protect possible race condition (query def) #6616) (60294de)

0.33.7 (2023-05-16)

Bug Fixes

  • Limit override isn't respected in queryRewrite (#6605) (172c39b)

Features

  • cubestore-driver: Queue - protect race conditions (#6598) (d503598)
  • cubestore: Queue - allow to GET by processingId (#6608) (f0c1156)
  • cubestore: Queue - delete results via scheduler (#6515) (8e1ab20)

0.33.6 (2023-05-13)

Bug Fixes

  • cubesql: Improve NULL comparison with int/bool (de1be39)
  • cubestore: Optimize unique constraint check on insert (c227ae9)
  • cubestore: Schedule compaction without blocking rw loop (f9bbbac)
  • LIMIT is not enforced (#6586) (8ca5234)
  • snowflake-driver: Bind variable ? not set for partitioned pre-aggregations (#6594) (0819075)

Features

  • cubestore: Queue - support cancel, ack, result_blocking by processingId (#6551) (2e82839)
  • cubestore: Support custom CSV delimiters (#6597) (f8c2c88)

0.33.5 (2023-05-11)

Bug Fixes

Features

  • cubestore: Support converting Int16/32, UInt16/32 for DataFrame (#6569) (5e0fd4f)

0.33.4 (2023-05-07)

Bug Fixes

  • docs: fix views example in style guide (1296ddb)
  • join_path for JS schemas and * includes with prefix (#6555) (c76bbef)

Features

  • cubestore: Projection in kafka streaming queries (#6479) (e0495a9)

0.33.3 (2023-05-05)

Bug Fixes

  • databricks-driver: Increase default JDBC acquire timeout to 2 minutes as it can take more time to reconnect (dde9bc4)
  • databricks-driver: Remove package.json dependency from DatabricksDriver to avoid package.json not found issues (#6521) Thanks @carlagouveia ! (b3ac7a1)
  • graphql: Pre-aggregations aren't used for GraphQL queries with date range (#6549) (a343f4d)
  • snowflake-driver: Float exported as decimal for pre-aggregations (#6544) (7c8b8de)

Features

  • docker: Security upgrade node from 16.19.1 to 16.20 (#6547) (5523935)

0.33.2 (2023-05-04)

Bug Fixes

  • cubejs-playground: remove less file import (#6537) (2a4de4b)
  • cubestore: Queue - protect possible race condition on GET_RESULT_BLOCKING (#6535) (d962c05)

Features

  • cubestore-driver: Queue - track orphaned set result (f97fbdc)
  • cubestore: Queue - allow to do merge_extra, heartbeat by processingId (#6534) (bf8df29)
  • cubestore: Queue - expose processingId in queue_add (#6540) (24b4798)
  • cubestore: Queue - expose processingId in queue_retrieve (#6530) (43913ce)
  • cubestore: Queue - return success marker on ack (set result) (e8814bf)

0.33.1 (2023-05-03)

Bug Fixes

  • firebolt-driver: Automatically cast boolean parameters (#6531) (90136dc)
  • snowflake-driver: Revert read-only mode until useOriginalSqlPreAggregations flow is fixed for read only (#6532) (20651a9)

0.33.0 (2023-05-02)

Note: Version bump only for package cubejs

0.32.31 (2023-05-02)

Bug Fixes

  • bigquery-driver: Revert read-only implementation as LIMIT 1 queries generate too much usage (#6523) (f023484)
  • cubesql: Streaming error logging (e27a525)

Features

  • cubesql: psqlodbc driver support (fcfc7ea)
  • Support snake case security_context in COMPILE_CONTEXT (#6519) (feb3fe3)

0.32.30 (2023-04-28)

Bug Fixes

  • Always log authentication errors for debugging purpose (2c309b7)
  • cubejs-playground: SL-58 CC-1686 text and icon fixes (#6490) (1fa96f0)
  • cubesql: Resolve Grafana introspection issues (db32377)
  • cubestore: Error in Sparse HLL entry parsing (#6498) (9719cdc)
  • model style guide, views folder (#6493) (1fa7f99)
  • snowflake-driver: Int is exported to pre-aggregations as decimal… (#6513) (3710b11)

Features

  • bigquery-driver: CI, read-only, streaming and unloading (#6495) (4c07431)
  • gateway: GraphQL snake case support (#6480) (45a46d0)
  • playground: cube type tag, public cubes (#6482) (cede7a7)

0.32.29 (2023-04-25)

Bug Fixes

  • api-gateway: passing defaultApiScope env to the contextToApiScopesFn (#6485) (b2da950)
  • schema-compiler: yml backtick escaping (#6478) (39a9ac0)
  • server-core: Display refresh scheduler interval error as warning (#6473) (771f661)

Features

0.32.28 (2023-04-19)

Bug Fixes

  • mssql-driver: release stream connection (#6453) (7113fa1)
  • schema-compiler: Incorrect camelize for meta (#6444) (c82844e)
  • segment not found for path if rollup with segment is used within rollupJoin (6a3ca80)

Features

  • cubesql: Support new Thoughtspot introspection (a04c83a)
  • cubesql: Support psql's \list command (0b30def)
  • playground: use snake case for data models (398993a)
  • using snake case for model files, model templates updates (#6447) (37e3180)

0.32.27 (2023-04-14)

Bug Fixes

  • Do not use in memory cache for more than 5 minutes to avoid any long term discrepancies with upstream cache (aea2daf)
  • ksql-driver: Drop table with the topic to avoid orphaned topics (b113841)
  • Limit pre-aggregations API memory usage by introducing partition loading concurrency (f565371)

0.32.26 (2023-04-13)

Bug Fixes

  • cli: Validate command - allow node require (#6416) (ead63d8)
  • Ensure expired in memory cache value can't be used even in case renewalThreshold hasn't been met (64f5878)
  • re-export FileRepository (#6425) (52c9252)

Features

  • schema-compiler: JS - support snake_case for any properties (#6396) (f1b4c0b)

0.32.25 (2023-04-12)

Bug Fixes

  • schema-compiler: Yaml - crash on fully commented file (#6413) (29d2eae)
  • server-core: turn off the jobs API renewQuery flag (#6414) (81dddb1)

Features

  • api-gateway, server-core: Orchestration API telemetry (#6419) (af0854d)
  • api-gateway, server-core: Renamed Permissions to ApiScopes (#6397) (800a96b)
  • duckdb-driver: Support countDistinctApprox (#6409) (6b1fadb)

0.32.24 (2023-04-10)

Reverts

  • Revert "feat(docker): Install DuckDB as built-in driver" (99ea6c1)

0.32.23 (2023-04-10)

Bug Fixes

  • Fix typo in driver name, DuckDB (c53a31c)

Features

  • docker: Install DuckDB as built-in driver (41a0ca1)

0.32.22 (2023-04-10)

Bug Fixes

Features

  • ducksdb-driver: Initial support (#6403) (00e41bf)
  • prestodb-driver: Add schema filter to informationSchemaQuery (#6382) Thanks @maatumo ! (cbf4620)
  • schema-compiler: Yaml - report error on misconfiguration (object instead of array) (#6407) (29e3778)

0.32.21 (2023-04-06)

Bug Fixes

  • cubestore: Query Cache - correct size calculation (complex TableValue) (#6400) (b0e3c88)
  • databricks-jdbc: startsWith, endsWith, contains filters (#6401) (7eeea60)

Features

  • cubestore: Introduce system.query_cache table (#6399) (a5e4bd3)

0.32.20 (2023-04-05)

Features

  • cubestore: Query cache - limits by time_to_idle and max_capacity (#6132) (edd220f)
  • cubestore: Separate configuration for count of metastore and cachestore snapshots (#6388) (df73851)
  • questdb-driver: Add SSL support (#6395) (e9a4458)

0.32.19 (2023-04-03)

Features

  • cubesql: Support date_trunc = literal date filter (#6376) (0ef53cb)
  • cubestore: Increase default TRANSPORT_MAX_FRAME_SIZE to 32Mb (#6381) (73f7ea9)
  • schema-compiler: Support new aliases for join.relationship (#6367) (34a18d8)
  • Support quarter(s) in dateRange for timeDimensions (#6385) (5a08721)

0.32.18 (2023-04-02)

Bug Fixes

  • athena-driver: Correct handling for NULL values (#6171) (a1f4cd4)
  • playground: SQL API default port 15432 (416a9de)

Features

  • Cube based includes and meta exposure (#6380) (ead4ac0)
  • cubestore: Allow to configure max message_size/frame_size for transport (#6369) (be7d40b)
  • schema-compiler: Introduce public field (alias for shown) (#6361) (6d0c66a)

0.32.17 (2023-03-29)

Bug Fixes

Features

  • schema-compiler: Introduce support for sqlTable (syntactic sugar) (#6360) (c73b368)
  • sqlite-driver: Upgrade sqlite3 from 5.0.11 to 5.1.6, refs #6340 (#6287) (4ec1da3)

Reverts

  • Revert "docs(schema): replace camel-case properties with snake-case" (4731f4a)
  • Revert "docs: use snake-case property names" (eb97883)

0.32.16 (2023-03-27)

Note: Version bump only for package cubejs

0.32.15 (2023-03-24)

Bug Fixes

  • cubesql: Allow any aggregation for number measure as it can be a wildcard (48f8828)
  • cubestore-driver: Fix informationSchemaQuery (#6338) (387020d)
  • cubestore: RocksStore - specify TTL for WAL to protect logs uploading (#6345) (3a9cba4)

Features

  • cubestore: Use XXH3 checksum alg for RocksDB (#6339) (866f965)
  • playground: BI connection guides, frontend integration snippets (#6341) (8fdeb1b)

0.32.14 (2023-03-23)

Bug Fixes

  • cubestore: Create table failed: Internal: Directory not empty (os error 39) for local dir storage (103cabe)
  • Use last rollup table types to avoid type guessing for unionWithSourceData lambda queries (#6337) (15badfe)

0.32.13 (2023-03-22)

Bug Fixes

  • cubestore-driver: Queue - correct APM events (#6251) (f4fdfc0)
  • cubestore: A single-character boolean value in csv is parsed incorrectly (#6325) (ce8f3e2)

0.32.12 (2023-03-22)

Bug Fixes

  • cubesql: Support quicksight AVG Rebase window exprs: Physical plan does not support logical expression SUM(x) PARTITION BY (#6328) (5a5d7e4)
  • cubestore: If job has been scheduled to non-existent node it'd hang around forever (#6242) (69ef0b6)
  • cubestore: Retying download from external locations (#6321) (50841d9)

Features

  • cubestore-driver: Support timestamp(3) as a column type (#6324) (71dbca4)
  • server-core, query-orchestrator: sql-runner - supp… (#6142) (32c603d)

0.32.11 (2023-03-21)

Bug Fixes

  • cubesql: Ignore timestamps which can't be represented as nanoseconds instead of failing (e393b06)
  • cubesql: Quicksight AVG measures support (#6323) (ada0afd)

0.32.10 (2023-03-20)

Bug Fixes

  • Refresh Scheduler - empty securityContext in driverFactory (#6316) (dd4c9d5)

0.32.9 (2023-03-18)

Bug Fixes

  • cubesql: Unexpected response from Cube, Field "count" doesn't exist in row (6bdc91d)

0.32.8 (2023-03-17)

Bug Fixes

  • cubesql: Catch error on TcpStream.peer_addr() (#6300) (d74a1f0)
  • cubesql: Use writable streams with plain objects instead of JSON.stringify pipe for streaming capability (#6306) (a9b19fa)
  • cubestore: Panic: index out of bounds: the len is 0 but the index is 0 (#6311) (41dbbc0)
  • query-orchestrator: queues reconciliation logic (#6286) (b45def4)

Features

  • cubestore: RocksStore - panic protection for broken rw loop (#6293) (1f2db32)

0.32.7 (2023-03-14)

Bug Fixes

  • Cross data source rollupLambda uses incorrect refreshKey (#6288) (f87be98)

0.32.6 (2023-03-14)

Bug Fixes

Features

0.32.5 (2023-03-13)

Bug Fixes

  • Allow to specify cubestore as cacheAndQueueDriver from config, fix #6279 (#6280) (6b48c65)
  • api-gateway: permissions cache removed (#6276) (03be6d2)
  • cubestore: Setup format_version = 5 (previusly used with RocksDB 6.20.3) (#6283) (5126d00)
  • hive-driver: Follow DriverInterface for query method, fix #6281 (#6282) (e81aba9)

0.32.4 (2023-03-10)

Bug Fixes

  • api-gateway: contextToPermissions default permissions parameter (#6268) (b234afc)
  • api-gateway: permissions cache removed (#6271) (cd32266)
  • api-gateway: permissions error message (#6269) (53d71a2)
  • api-gateway: permissions unit test fix (#6270) (15df7c1)
  • Catch exception from extendContext (unhandledRejection) (#6256) (9fa0bd9)
  • cubesql: Failed printing to stdout: Resource temporarily unavailable (#6272) (d8dd8a6)

Features

  • cubestore/docker: Upgrade CLang to 15 (979246b)
  • cubestore/docker: Upgrade OS to bullseye (c512586)
  • cubestore: Support quarter intervals (#6266) (35cc5c8)
  • cubestore: Upgrade RocksDB to 7.9.2 (0.20) (#6221) (92bbef3)

0.32.3 (2023-03-07)

Features

0.32.2 (2023-03-07)

Bug Fixes

Features

  • connection validation and logging (#6233) (6dc48f8)
  • cubestore: QUEUE - support extended flag for retrieve (#6248) (9f23924)
  • Enable drop pre-aggregations without touch by default. NOTE: This change may adversely affect deployments which has incorrectly configured Refresh Worker instance. (291977b)
  • Support rollupLambda across different cubes and data sources (#6245) (fa284a4)

0.32.1 (2023-03-03)

Bug Fixes

  • cubesql: Replace stream buffering with async implementation (#6127) (5186d30)

0.32.0 (2023-03-02)

Features

  • docker: Remove gcc/g++/cmake/python from final images (bb0a0e7)
  • docker: Upgrade Node.js to 16.x (8fe0e04)

Breaking changes

  • Use cubestore driver for queue & cache (a54aef)
  • Remove absolute import for @cubejs-backend/server-core (361848)
  • Remove absolute import for @cubejs-backend/schema-compiler (f3669)
  • Remove absolute import for @cubejs-backend/query-orchestrator (578c9)
  • Remove support for Node.js 12, 15 (78d76f1)

0.31.69 (2023-03-01)

Bug Fixes

  • cubestore: Wrong triggering of table deactivation in some cases (#6119) (523c0c2)
  • Throw error message on misconfiguration with Cube Store as queue/cache driver. (#6199) (ae06ef7)

0.31.68 (2023-02-28)

Bug Fixes

  • cubestore: Metastore logs are uploaded without the corresponding snapshot (#6222) (cfa4b47)
  • jdbc-driver, databricks-jdbc-driver: clearTimeout on validate catch, temp table name (#6220) (c2c7118)

0.31.67 (2023-02-27)

Bug Fixes

  • Reconcile streaming queries in case of cluster execution (#6204) (dcf7866)
  • schema-compiler: skip empty YAML files (b068f7f)

Features

0.31.66 (2023-02-27)

Bug Fixes

Features

  • cubestore: Streaming ingestion optimizations (#6198) (fb896ba)
  • docker: Use Debian (bullseye) for dev images (#6202) (b4c922a)

0.31.65 (2023-02-23)

Bug Fixes

  • oracle-driver: Release connection after query execution (#5469) (ff1af78)

0.31.64 (2023-02-21)

Bug Fixes

Features

  • cubesql: Remove unexpected clone (reduce memory consumption) (#6185) (904556b)
  • cubestore: Allow tinyint type (map as Int) (#6174) (47571e5)

0.31.63 (2023-02-20)

Bug Fixes

  • cubesql: CAST(column AS DATE) to DateTrunc day (8f6fbe2)
  • cubestore: Support realiasing for information schema tables (#6155) (423a3ec)
  • databricks-jdbc-driver: export table drops twice in Databricks (#6177) (a62d9f0)
  • playground: closing the last query tab (aaa75f4)

Features

0.31.62 (2023-02-13)

Bug Fixes

Features

  • cubestore: Introduce information_schema.columns (#6152) (c70b155)

0.31.61 (2023-02-10)

Note: Version bump only for package cubejs

0.31.60 (2023-02-10)

Bug Fixes

Features

  • cubesql: Redesign member pushdown to support more advanced join… (#6122) (3bb85e4)
  • cubestore: Disable MetastoreEvents for queue & cache (#6126) (0fd20cb)
  • cubestore: Limit pushdown (#5604) (f593ffe)
  • cubestore: Support SYS DROP QUERY CACHE + metrics (#6131) (e8d2670)

0.31.59 (2023-02-06)

Bug Fixes

  • server-core: config validation if custom ContextAcceptor is (#6120) (6524a84)

Features

  • api-gateway, server-core: added endpoint to fetch db schema (#5852) (8ffcfd2)

0.31.58 (2023-02-02)

Bug Fixes

  • jdbc-driver: streamQuery connection release (#6108) (3426e6e)

Features

  • cubesql: Improve catching of panic's reason (#6107) (c8cf300)
  • cubestore: Queue - support custom orphaned timeout (#6090) (d6702ab)
  • native: Correct error handling for neon::channel.send (#6106) (f71255a)
  • snowflake-sdk: Security upgrade snowflake-sdk from 1.6.14 to 1.6.18 (#6097) (1f10c8a)

0.31.57 (2023-02-02)

Features

  • cubejs-api-gateway: Add scope check to sql runner (#6053) (d79d3aa)
  • cubejs-server-core: add dbType to dataSources (#6089) (5c84467)
  • cubestore: Cache/Queue - implement migrations (truncating) (#6083) (e8daf5e)
  • cubestore: Queue - correct sort over priority (+created) (#6094) (bd489cd)

0.31.56 (2023-01-31)

Bug Fixes

  • (dimensions.type.ownedByCube = true) is not allowed if dynamic schemas outside of schema folder are used (88b09bd)
  • cubesql: Allow Thoughtspot EXTRACT YEAR AS date (22d0ad9)
  • cubestore-driver: Correct cancellation handling (#6087) (03089ce)
  • playground: filter nullish refs (9732af6)

Features

0.31.55 (2023-01-26)

Bug Fixes

  • cubesql: Correct Thoughtspot day in quarter offset (d62079e)

Features

  • cubestore-driver: Queue - support persistent flag/stream handling (#6046) (5b12ec8)
  • new logo with background (#6062) (7c3601b)

0.31.54 (2023-01-25)

Bug Fixes

  • cubestore: Support macOS 11 for standalone binary (#6060) (6d2dff7)

Features

  • cubestore: Filter for data from kafka streams (#6054) (3b1b1ab)
  • cubestore: Queue - improve orphaned detection + optimizations (#6051) (70e68ae)

0.31.53 (2023-01-24)

Bug Fixes

  • Last lambda partition is incorrectly filtered in case of middle partition is filtered out (656edcf)

Features

  • cubestore: Correct metrics for queue/cache (ignore long commands) (#6047) (1d5a1f6)

0.31.52 (2023-01-23)

Bug Fixes

Features

  • api-gateway, server-core: Added dataSources method (#5789) (128d017)
  • cubestore: Support multiple parallel QUEUE RESULT_BLOCKING (#6038) (d8be78a)
  • cubestore: Upgrade warp to 0.3.3 (use crates.io instead of git) (#6043) (d2307a8)
  • new dark scheme at README (#6044) (a44ebbb)

0.31.51 (2023-01-21)

Bug Fixes

  • Incorrect partition filter for real time partitions (6520279)

0.31.50 (2023-01-21)

Bug Fixes

  • Lambda pre-aggregations aren't served by external refresh instance (bd45720)
  • Real time partitions seal just after created (882a7df)

0.31.49 (2023-01-20)

Bug Fixes

  • Content version gets updated on build range change (0adc634)
  • cubestore-driver: Unexpected token u in JSON at position 0 (#6037) (1d00521)

0.31.48 (2023-01-20)

Features

  • cubesql: Postgres protocol - stream support (#6025) (d5786df)
  • cubesql: Streams - cancel query and drop conection handling (8c585f2)
  • cubestore: Collect metrics for queue/cache commands (#6032) (9ac7d0c)
  • cubestore: Support negative priority for queue (#6031) (9924a1a)
  • streaming desync (#6034) (a4c8b09)

0.31.47 (2023-01-18)

Bug Fixes

  • Re-use external connection for CubeStore in queue (#6028) (ff724f7)

Features

0.31.46 (2023-01-18)

Bug Fixes

  • athena-driver: Help user to understand CUBEJS_AWS_S3_OUTPUT_LOCATION parameter is missing (#5991) Thanks @fbalicchia ! (eedd12a)
  • Do not fail if partitions are not ready for specified date range interval but there's at least one ready for pre-aggregation (#6026) (2d39fe4)

Features

  • query-orchestrator: Introduce CubeStoreQueueDriver (#6014) (f4744bf)

0.31.45 (2023-01-16)

Bug Fixes

  • cubestore: Panic on combination of Union All and single select in root Union All (#6012) (0d1a3d8)
  • Do not update structure version on build range end update (#6015) (7891b6c)

Features

0.31.44 (2023-01-16)

Bug Fixes

  • Rollups are sorted by name in rollups params of pre-aggregations (#6011) (235ec70)

0.31.43 (2023-01-16)

Bug Fixes

  • cubestore: Panic when nested Union All (#6010) (331242e)
  • fix a mistake in the websocket context acceptance mechanism (#6006) (1d8a9bd)

Features

  • Pre-aggregations API for rollupLambda support (#6009) (b90b3f2)

0.31.42 (2023-01-15)

Bug Fixes

  • cubestore: Large memory consumption while waiting for the queue cache (#6004) (8c029bb)
  • cubestore: Large memory consumption while waiting for the queue cache: drop context (#6005) (b39920f)

Features

  • api-gateway: added result filter for sql-runner (#5985) (89f1b92)
  • Multiple rollups in rollupLambda support (#6008) (84fff0d)
  • native: Channel.resolve/reject without lock (#6001) (9133a3b)

0.31.41 (2023-01-13)

Bug Fixes

  • cubestore: Metastore get_tables_with_path cache is not work correctly (#6000) (75699c8)

Features

0.31.40 (2023-01-12)

Features

  • cubesql: Support date_trunc over column filter (c9e71e6)
  • docker: Alpine - migrate to 3.15 (3.14 was removed) (#5997) (cf9078a)
  • Hooks for the context rejection mechanism (#5901) (b6f0506)

0.31.39 (2023-01-12)

Bug Fixes

  • cubesql: Query cancellation for simple query protocol (#5987) (aae758f)

Features

  • Re-use connection to Cube Store from externalDriver (#5993) (69a35ed)

0.31.38 (2023-01-11)

Bug Fixes

  • athena-driver: Add catalog config (#5835) Thanks @tkislan ! (c33a5c5)
  • athena-driver: TypeError: table.join is not a function (#5988) (4e56a04), closes #5143
  • Delete CUBEJS_DROP_PRE_AGG_WITHOUT_TOUCH pre-aggregations only after refresh end to avoid cold start removals (#5982) (58ad02f)

Features

  • cubesql: Improve memory usage in writting for pg-wire (#4870) (401fbcf)
  • docker: Upgrade Node.js to 14.21.1 (#5970) (0394ed2)

0.31.37 (2023-01-09)

Bug Fixes

  • Remove missed cacheFn console.log (ec9e56b)

Features

  • cubejs-api-gateway: added endpoint to run sql query directly (#5786) (61d5798)
  • cubestore: Support lazy initialization for CacheStore (#5933) (37b4a95)

0.31.36 (2023-01-08)

Bug Fixes

  • graphql non capital cube name issue (#5680) Thanks @MattFanto! (47956ea), closes #5643
  • Potential OOM due to recursion while recovering Cube Store websocket (8a0fd1f)

Features

  • cubestore: Set metastore current snapshot system command (#5940) (f590a20)

0.31.35 (2023-01-07)

Bug Fixes

  • client-core: Added type CubesMap for cubeMap in Meta (#5897) (92d1ccb)
  • cubestore: Get query execution results even after web socket disconnect (#5931) (c6ccc1a)
  • cubestore: Maintain minimum count of metastore snapshots (#5925) (b303aa6)
  • Reduce memory footprint for pre-aggregations with many partitions by caching partition SQL (5f72d8f)

Features

  • cubejs-cli: add type-checking for cube.js files to newly-generated projects (ba31d4f)
  • cubesql: Support NULLIF in projection (129fc58)
  • cubesql: Support Thoughtspot starts/ends LIKE exprs (e6798cc)

0.31.34 (2023-01-05)

Bug Fixes

  • client-core: move @babel/runtime to dependencies (#5917) (67221af)
  • Reuse queries cache in refresh worker pre-aggregation iterator to reduce memory usage in high concurrency environment (4ae21fa)

0.31.33 (2023-01-03)

Bug Fixes

  • @cubejs-client/core: add missing Series.shortTitle typing (#5860) (5dd78b9)

Features

0.31.32 (2022-12-28)

Features

  • cubesql: Allow postprocessing with JOIN below Cube query limit (56f5399)
  • cubesql: Support LEFT, RIGHT in projection (282ad3a)
  • cubestore: Direct kafka download support for ksql streams and t… (#5880) (fcb5c5e)
  • cubestore: Installer - download binary without GH API (#5885) (51a0f39)

0.31.31 (2022-12-23)

Bug Fixes

  • cubesql: Improve Thoughtspot WHERE IN support (6212efe)
  • cubesql: Support Thoughtspot DATEADD queries (58b5669)

Features

  • cubestore-driver: Introduce CUBEJS_CUBESTORE_NO_HEART_BEAT_TIMEOUT env (e67e800)
  • cubestore: Initial support for KV cache (#5861) (498d4b5)
  • playground: allow for query renaming (#5862) (681a2d8)

0.31.30 (2022-12-22)

Bug Fixes

  • cubesql: Improve Thoughtspot compatibility (4d6511a)
  • cubestore-driver: Increase retry timeout to avoid endless loop connection retries (8bd19fa)
  • Pre-aggregation table is not found after it was successfully created for CUBEJS_DROP_PRE_AGG_WITHOUT_TOUCH strategy (#5858) (f602fee)

Features

0.31.29 (2022-12-18)

Bug Fixes

  • Error: WebSocket is not open: readyState 2 (CLOSING) (#5846) (a5be099)

0.31.28 (2022-12-16)

Features

  • Support string, time and boolean measures (#5842) (4543ede)

0.31.27 (2022-12-16)

Bug Fixes

  • api-gateway: pre-aggregations/jobs auth middleware (#5840) (b527cd9)

0.31.26 (2022-12-13)

Bug Fixes

  • cubestore: Temporary disable compression to check if it fixes running on Mac OS X Ventura (8e89427), closes #5712
  • trino-driver: Timezone issue fix (#5731) Thanks @yuraborue ! (70df903)

Features

  • cubestore: Introduce pre-aggregation table touch and allow to drop tables without touch using CUBEJS_DROP_PRE_AGG_WITHOUT_TOUCH env (#5794) (ad6c1e8)
  • persistent queue (#5793) (02a8e02)

0.31.25 (2022-12-10)

Bug Fixes

  • cubesql: normalize column names in filter node (#5788) (28aa008)

0.31.24 (2022-12-09)

Bug Fixes

  • cubesql: Support CAST in HAVING clause (17ba3e2)

Features

  • api-gateway, server-core: Added dataSources list to extended meta (#5743) (2c5db32)

Reverts

  • Revert "feat(api-gateway, server-core): Added dataSources list to extended meta (#5743)" (#5785) (3c61467), closes #5743 #5785
  • Revert "chore(cubejs-api-gateway): added endpoint to run sql query directly (#5723)" (#5784) (f1140de), closes #5723 #5784

0.31.23 (2022-12-09)

Bug Fixes

Features

0.31.22 (2022-12-07)

Bug Fixes

  • cubesql: Metabase - auto-generated charts for cubes containing string dimensions (#5728) (72be686)
  • cubestore: Added long running job fetches burst network (385c4a6)
  • cubestore: Increase default stale stream timeout to allow replays to catch up with large kafka streams (43cf0b1)
  • cubestore: Row with id 1 is not found for SchemaRocksTable -- fix log replay order during metastore loading from dump (b74c072)
  • playground: reload the page in case chunks got stale (#5646) (2215595)
  • return failed query request ids (#5729) (22cd580)

Features

0.31.21 (2022-12-06)

Bug Fixes

  • cubestore: Error in processing loop: Row with id is not found for JobRocksTable for streaming jobs (f2de503)
  • cubestore: Avoid streaming jobs waiting for regular jobs to complete (#5725) (89d5bf4)
  • cubestore: Chunk all streaming input into bigger chunks based on time spent in write chunk operations and remove sequence gap checks as those fail for tables (1f2d9bf)
  • cubestore: Replay streams with earliest offset even for latest setting after failure (7ca71f5)
  • cubestore: ReplayHandle reconcile fails due to merge ReplayHandles with Chunks (#5713) (ac213a7)
  • cubestore: Streaming jobs stuck as stale (1cf3432)
  • databricks-jdbc: Databricks pre-aggregations schema with UC (#5726) (6281471)
  • playground: clear search value (#5720) (5b177f2)
  • More explanatory No pre-aggregation partitions were built yet message (#5702) (ec39baa)

0.31.20 (2022-12-02)

Bug Fixes

  • clickhouse-driver: Make ClickHouse driver readOnly by default (e6a85d1), closes #5479
  • clickhouse-driver: ParserError("Expected ',' or ')' after column definition, found: (") when Nullable(Float64) is present (81b2247)
  • cubesql: Fix escape symbols in LIKE expressions (5f3cd50)
  • cubestore: Orphaned replay handles after table drop (0e4b876)
  • cubestore: Sort by seq column to reduce Unexpected sequence increase gap (b5f06d0)
  • oracle-driver: Make oracle driver readOnly by default so pre-aggregations can be used (5efccba)

Features

  • cubesql: Support Thoughtspot include filter search (745fe5d)
  • cubesql: Support ThoughtSpot search filters (ee0fde4)

0.31.19 (2022-11-29)

Bug Fixes

  • Incorrect filter pushdown when filtering two left-joined tables (#5685) (c775869), closes #3777
  • packages/cubejs-client-core/package.json to reduce vulnerabilities (#5352) (76e8e43)
  • packages/cubejs-client-vue/package.json to reduce vulnerabilities (#5361) (effc694)
  • packages/cubejs-query-orchestrator/package.json to reduce vulnerabilities (#5347) (3442ddf)
  • packages/cubejs-schema-compiler/package.json to reduce vulnerabilities (#5359) (cd81554)
  • packages/cubejs-schema-compiler/package.json to reduce vulnerabilities (#5408) (6b7a95f)
  • packages/cubejs-templates/package.json to reduce vulnerabilities (#5342) (825605a)

Features

  • catalog support for the Databricks driver (#5666) (de5ba9a)

0.31.18 (2022-11-28)

Bug Fixes

  • cubesql: Prevent infinite limit push down (f26d40a)
  • cubesql: Push down projection to CubeScan with literals (207616d)

Features

0.31.17 (2022-11-23)

Features

0.31.16 (2022-11-23)

Features

  • ksql-driver: Support offset earliest, replays and per partition streaming (#5663) (3a79d02)

0.31.15 (2022-11-17)

Bug Fixes

  • @cubejs-backend/snowflake-driver: Make CUBEJS_DB_SNOWFLAKE_CLIENT_SESSION_KEEP_ALIVE=true by default (be12c40)
  • extends YAML support (982885e)
  • client-react: check meta changes (4c44551)
  • druid-driver: Respect day light saving (#5613) (388c992)
  • packages/cubejs-client-core/package.json to reduce vulnerabilities (#5415) (fb2de68)
  • packages/cubejs-client-react/package.json to reduce vulnerabilities (#5390) (0ab9c30)
  • packages/cubejs-databricks-jdbc-driver/package.json to reduce vulnerabilities (#5413) (6a891f0)
  • packages/cubejs-databricks-jdbc-driver/package.json to reduce vulnerabilities (#5429) (a45c9a8)
  • packages/cubejs-query-orchestrator/package.json to reduce vulnerabilities (#5409) (5e9fe68)
  • packages/cubejs-templates/package.json to reduce vulnerabilities (#5403) (c9706cb)
  • server-core: Force flush events if their count is greater than the agent frame size (#5602) (17d1d98)

Features

  • databricks-jdbc: jdbc (jar) driver update (#5610) (aacd8cd)
  • databricks-jdbc: jdbc (jar) driver update (#5612) (372ed71)
  • docs: add new component to display code snippets side-by-side (146328c)
  • Replace YAML parser to provide more meaningful parse errors (9984066)
  • Support snake case in YAML relationship field (f20fe6b)

Reverts

  • Revert "feat(databricks-jdbc): jdbc (jar) driver update (#5610)" (#5611) (23ed416), closes #5610 #5611

0.31.14 (2022-11-14)

Bug Fixes

  • cubesql: Allow referencing CTEs in UNION (7f5bc83)
  • cubesql: Keep CubeScan literal values relation (6d3856a)
  • playground: schemaVersion updates (5c4880f)

Features

0.31.13 (2022-11-08)

Bug Fixes

Features

  • export bucket CVS files escape symbol support (#5570) (09ceffb)
  • notStartsWith/notEndsWith filters support (#5579) (8765833)
  • YAML snake case and .yaml extension support (#5578) (c8af286)

0.31.12 (2022-11-05)

Bug Fixes

  • Cannot read property 'apply' of undefined on missed dimension sql (#5559) (6f85096)
  • YAML filter support (fb6fade)
  • cubestore: Fix partition pruning (#5548) (8bc4aee)
  • No column found in case non equals filter query incorrectly matched against rollup with no dimensions (#5552) (73b3203)
  • TypeError: Cannot read property 'dimension' of undefined for rolling window rollup without time dimension (#5553) (03c3b6f)

Features

  • Trino driver (e58c392)
  • cubesql: Support Skyvia date granularities (df69d93)

0.31.11 (2022-11-02)

Bug Fixes

  • @cubejs-backend/prestodb-driver: Replace double escaping in contain filter (#5529) (7870705), closes #5528
  • cubestore: Fix streaming index (#5550) (061305e)

Features

0.31.10 (2022-11-01)

Bug Fixes

  • Revert back strict shown checks behavior for consistency reasons (#5551) (c3ee4e6), closes #5542

0.31.9 (2022-11-01)

Bug Fixes

  • @cubejs-client/core: startsWith and endsWith to filterOperatorsForMember (#5544) (583de4a)
  • You requested hidden member in case of rolling window measure is being used in a view (#5546) (c00ea43)

0.31.8 (2022-10-30)

Bug Fixes

  • cubesql: Count measure type changed from u64 to i64 (#5535) (f568851)

Features

  • YAML support (#5539) (29c19db)
  • cubesql: Support BOOL_AND, BOOL_OR aggregate functions (#5533) (a2e6e38)
  • cubesql: Support Sigma Computing number filters (f2f2abd)
  • cubesql: Thoughspot - count distinct with year and month (#5450) (d44baad)

0.31.7 (2022-10-27)

Bug Fixes

Features

  • cubesql: Support is null, is not null in SELECT (d499c47)
  • cubesql: Support Sigma Computing string filters (d18b971)

0.31.6 (2022-10-20)

Bug Fixes

  • docker: Correct lock for deps with yarn.lock (#5509) (97ca524)

Features

0.31.5 (2022-10-20)

Bug Fixes

  • cubesql: Use real database name in Postgres meta layer (031a90f)

Features

  • cubesql: Allow EXTRACT field to be parsed as a string (cad1e0b)
  • cubestore: CC-1133 - add headers to telemetry request (#5473) (26fa817)
  • pre-aggregations build jobs API endpoint (#5251) (4aee3ef)

0.31.4 (2022-10-13)

Bug Fixes

  • cubestore: Extension planner for LogicalAlias error (#5459) (8153459)
  • druid-driver: query timezone fix (#5372) (ccad5fc)

Features

0.31.3 (2022-10-08)

Bug Fixes

0.31.2 (2022-10-08)

Bug Fixes

  • Added connection test completed successfully log (#5444) (a8e1180)
  • Temp tables dropped for ksql after successfully created (#5445) (7726c82)
  • cubesql: Handle Panic on simple query executiony (#5394) (84dc442)

Features

  • mssql-driver: add column type mapping for a bit type (#5442) (0ed7ba4)
  • Includes and Excludes directives for Cube Views (#5437) (7c35604)
  • cubesql: Support boolean decoding in pg-wire (#5436) (4fd2ee6)

0.31.1 (2022-10-04)

Bug Fixes

  • Cube not found for path due to FILTER_PARAMS are used in members (#5417) (bfe76bf)
  • extensions: fix SELECT handling in the Funnels extensions (#5397) (041f591)
  • playground: bar chart pivot config (36b9ec2)

Features

  • console-ui: show error stack trace (7ab15c6)

0.31.0 (2022-10-03)

  • feat!: Cube Views implementation (#5278) (9937356), closes #5278

Bug Fixes

  • cubesql: Allow derived tables to have a dot in column name (#5391) (f83009c)
  • cubesql: cast strings to timestamp (#5331) (a706258)
  • cubesql: Metabase - substring __user (#5328) (a25c8bf)
  • cubesql: udf format_type prepared statement fix (#5260) (307ed1b)
  • cubesql: WHERE Lower / Upper in list with multiply items (#5376) (2269b2b)
  • cubestore: Aggregate function MERGE not allowed for column type bytes (#5166) (7626ed5)
  • cubestore: Fix error: Internal: channel closed on the next request after cubestore cloud process got OOM (#5238) (cb81fdb)
  • postgres-driver: release method should not throw (#5395) (9423f46)
  • query-orchestrator: pre-aggs build range queries cache key alignment (#5377) (5896c4a)
  • schema-compiler: throw an error for the empty pre-aggs (#5392) (4afd604)

Features

  • cubesql: Holistics - in dates list filter (#5333) (94b6509)
  • cubesql: Support joins with distinct (#5340) (da4304f)
  • multiple data source (#5326) (334af8c)
  • cubesql: Add float8, bool casts (b345ade)
  • cubesql: Allow char_length function to be used with cubes (e99344f)
  • cubesql: Allow filter by exact year (Tableau) (#5367) (c31e59d)
  • cubesql: Holistics - support range of charts (#5325) (d16b4c2)
  • cubesql: Support date_trunc over column filter with <= (b30d239)
  • query-orchestrator: introduce unload without temp table (#5324) (3dcbd2e)
  • testing: databricks test suite (#5311) (b77f33b)

BREAKING CHANGES

  • The logic of how cubes are included in joins has been changed. There are multiple member reference constructs that are now forbidden and should be rewritten. You can't reference foreign cubes anymore to define members inside other cubes: ${ForeignCube}.foo. foo member should be defined in ForeignCube and referenced as ${ForeignCube.foo}. You also can't mix references and members without CUBE self-reference. For example ${ForeignCube.foo} + bar is invalid and ${ForeignCube.foo} + ${CUBE}.bar should be used instead. If not fixed, it'll lead to missing tables in the FROM clause.

0.30.75 (2022-09-22)

Bug Fixes

  • Cannot read 'map' property of undefined for rollupLambda in BigQuery (47f700f)
  • Invalid identifier day for month lambdaRollup (#5338) (bacc643)
  • cubesql: Allow interval sum chaining (eabbdc2)
  • databricks-driver: using the ILIKE operator in the DatabricksFilter.likeIgnoreCase method (#5334) (a81ca35)

0.30.74 (2022-09-20)

Features

  • cubesql: Support LOWER(?column) IN (?literal) (#5319) (2e85182)

0.30.73 (2022-09-19)

Features

  • cubesql: Increase limits for statements/portals/cursors (#5146) (363b42d)

Reverts

  • Revert "feat: strategy without creating temp table (#5299)" (0a3d646), closes #5299

0.30.72 (2022-09-18)

Bug Fixes

  • cubestore: Immediately restart stale streaming jobs to avoid processing gaps for sparse streams (60075af)

Features

  • Introduce rollupLambda rollup type (#5315) (6fd5ee4)
  • strategy without creating temp table (#5299) (8e8f500)
  • cubesql: starts_with, ends_with, LOWER(?column) = ?literal (#5310) (321b74f)

0.30.71 (2022-09-16)

Bug Fixes

  • @cubesj-backend/databricks-driver: Incorrect escaping of CSV passed to Cube Store -- Can't parse timestamp errors (21b139c)

Features

  • cubesql: Holistics - string not contains filter (#5307) (3e563db)
  • cubesql: Support filtering date within one granularity unit (427e846)
  • cubesql: Support startsWith/endsWidth filters (QuickSight) (#5302) (867279a)

0.30.70 (2022-09-14)

Features

  • cubejs-docker: latest-jdk image added to the release cycle (#5288) (155076a)

0.30.69 (2022-09-13)

Bug Fixes

Features

  • base-driver: Split BaseDriver to @cubejs-backend/base-driver (#5283) (ca7f9d2)
  • cubesql: Holistics - support range of charts (#5281) (f52c682)
  • cubesql: Support pg_catalog.pg_stats meta layer table (f2a1da2)

0.30.68 (2022-09-09)

Features

  • cubesql: Support IN for __user (ThoughtSpot) (#5269) (d9aaefc)
  • cubesql: Support interval multiplication (bb2e82a)

0.30.67 (2022-09-09)

Bug Fixes

  • freeze node.js dependencies for images (#5270) (7ea053e)
  • cubesql: Show MEASURE() instead of NUMBER() in measure aggregation type doesn't match error. (#5268) (a76059e)
  • schema-compiler: messed order in sub-query aggregate (#5257) (a6ad9f6)

Features

0.30.66 (2022-09-08)

Bug Fixes

  • driver's constructor parameters initializers (#5258) (08324a5)

0.30.65 (2022-09-07)

Bug Fixes

  • cubestore: Fix 'no such file or directory' after cubestore restart (#5247) (efaf897)

Features

  • cubesql: Holistics - support in subquery introspection query (#5248) (977a251)
  • cubesql: Holistics - support left join introspection query (#5249) (455d31f)
  • docker: Install CrateDB driver (#5252) (40fdfd6)

0.30.64 (2022-09-07)

Bug Fixes

  • cubesql: select column with the same name as table (#5235) (1a20f6f)

Features

  • cubesql: Holistics - support schema privilege query (#5240) (ae59ddf)
  • cubesql: Support nullif with scalars (#5241) (138dcae)
  • cubesql: Support yearly granularity (ThoughtSpot) (#5236) (416ddd8)

0.30.63 (2022-09-05)

Bug Fixes

  • databricks-driver: add deprecation of token in jdbc connection string (#5208) (e59d72c)
  • query-orchestrator: delete temp tables (#5231) (a39944a)

0.30.62 (2022-09-02)

Features

  • cubesql: Superset - serverside paging (#5204) (dfd695d)
  • cubesql: Support dow granularity (ThoughtSpot) (#5172) (0919e40)
  • cubesql: Support doy granularity (ThoughtSpot) (#5232) (be26775)

0.30.61 (2022-09-01)

Bug Fixes

  • Correct error message when no pre-aggregation partitions were built and API instance accessing those (82f2378)

Features

  • cubesql: Eliminate literal filter (true or true = true) (#5142) (7a6f8f9)
  • cubesql: Improve support (formats) for TO_TIMESTAMP function (#5218) (044c3e1)
  • cubesql: Push down limit through projection (#5206) (3c6ff7d)
  • cubesql: Support LOCALTIMESTAMP (0089a65)

0.30.60 (2022-08-28)

Bug Fixes

  • cubestore: Read an inline table only on the assigned worker (#5147) (15c2aa0)

0.30.59 (2022-08-26)

Bug Fixes

  • cubesql: Persist dbname from connection for pg-wire (#5165) (6bdf5df)
  • cubestore-driver: Correct syntax for string cast (#5160) (961a2f2)

Features

  • cubestore: Support Cast from timestamp to string (#5163) (651a584)

0.30.58 (2022-08-25)

Bug Fixes

  • @cubejs-backend/cubestore-driver: Aggregate function MERGE not allowed for column type bytes (#5164) (6cf5ad2)
  • @cubejs-backend/cubestore-driver: ParseError "Expected (, found: ..." (6ed62ae)

Features

  • cubesql: Support qtr granularity in DateTrunc for analytics queries (#5159) (ce13846)

0.30.57 (2022-08-25)

Bug Fixes

  • databricks-jdbc: databricks multiple downloads of jar (#5152) (ccb87bc)
  • databricks-jdbc: databricks user-agent (#5144) (a3a8b89)

Features

  • cubesql: DiscardAll in QE - clear prepared statements (b6fb724)
  • cubesql: Support new Superset version (#5154) (148a062)
  • cubesql: Support pg_catalog.pg_prepared_statements table (e03e557)
  • cubestore: Aggregating index in pre-aggregations (#5016) (0c3caca)
  • helm-charts: add values to configure service account (#5130) (2cc693c)

0.30.56 (2022-08-23)

Bug Fixes

  • cubesql: array_upper && array_lower UDFs return type fix (#5136) (9451a86)
  • cubesql: Normalize error messsage (ac00acb)

Features

  • Support usage of CTE (with realiasing) (e64db05)
  • cubesql: Disable optimizers for analytics queries (b710c95)

0.30.55 (2022-08-20)

Reverts

  • Revert "fix(cubejs): Fixes CubeStoreDriver user/password auth (#5123)" (3571d5a), closes #5123

0.30.54 (2022-08-19)

Bug Fixes

Features

  • @cubejs-client/vue3: support logical operator filters (#2950) (#5119) (077bb75)
  • cubesql: Catch panic on Portal (DF.stream) - return error to the client (a80cdc7)

0.30.53 (2022-08-18)

Note: Version bump only for package cubejs

0.30.52 (2022-08-18)

Bug Fixes

  • cubesql: SUM(CAST(rows.col AS Decimal(38, 10))) expression can't be coerced in Power BI (#5107) (0037fb4)
  • cubesql: Type coercion for CASE WHEN THEN (88b124d)

Features

  • cubesql: Support Redshift connection (ThoughtSpot) (b244d59)

0.30.51 (2022-08-17)

Bug Fixes

  • cubejs: Fixes build_range_end for preaggregatons REST API (#5110) (a1482e5)

0.30.50 (2022-08-16)

Note: Version bump only for package cubejs

0.30.49 (2022-08-16)

Bug Fixes

0.30.48 (2022-08-14)

Features

0.30.47 (2022-08-12)

Bug Fixes

  • mssql-driver: datetime2 mapping (#5057) (769104e)
  • server-core: determining custom drivers from the cube.js file (#5088) (23688db)

Features

  • cubejs: LambdaView: hybrid query of source tables and pre-aggregation tables. (#4718) (4ae826b)
  • cubesql: Datastudio - string startWith filter support (#5093) (3c21986)
  • cubesql: Metabase v0.44 support (#5097) (1b2f53b)
  • cubesql: Support COALESCE function (199c775)
  • cubesql: Support REGEXP_SUBSTR function (Redshift) (#5090) (3c9f024)

0.30.46 (2022-08-10)

Bug Fixes

Features

  • cubesql: Datastudio - aggr by month and day support (#5025) (da3ed59)
  • cubesql: Datastudio - between dates filter support (#5022) (20f7d64)
  • cubesql: Datastudio - Min/Max datetime aggregation support (#5021) (7cf1f75)
  • cubesql: Support DEALLOCATE in pg-wire (06b6476)
  • drivers: Bootstraps CrateDB driver (#4929) (db87b8f)
  • schema-compiler: aggregated sub query group by clause (#5078) (473398d)
  • sqlite-driver: Bump sqlite3 to ^5.0.11 (8a16cc7)

0.30.45 (2022-08-05)

Bug Fixes

  • cubestore: Support a space separated binary strings for varbinary fields in csv (#5061) (c67793e)
  • query-orchestrator: API instance throw on missing partitions (#5069) (7b16875)
  • query-orchestrator: excessive buildRange queries (d818611)

Features

  • cubesql: Support binary bitwise operators (>>, <<) (7363879)
  • cubesql: Support svv_tables table (Redshift) (#5060) (d3ed3ac)
  • max partitions per cube configuration (4b3739c)

0.30.44 (2022-08-01)

Bug Fixes

  • cubesql: Ignore IO's UnexpectedEof|BrokenPipe on handling error (98deb73)
  • server-core: driverFactory results assertion (5eaad01)

0.30.43 (2022-07-28)

Bug Fixes

  • cubesq: Ignore BrokenPipe/UnexpectedEOF as error in pg-wire (4ec01d2)

Features

  • cubesql: Security Context switching (Row Access) (731e1ab)
  • databricks-jdbc: UserAgentEntry property configuration for the databricks-jdbc driver (bccae12)

0.30.42 (2022-07-27)

Features

  • cubesql: Metabase - support Summarize by week of year (#5000) (37589a9)
  • server-core: disable health checks for API instances with rollup only mode (a6601e5)

0.30.41 (2022-07-27)

Bug Fixes

  • databricks-jdbc: postinstall script with accept_policy env (1e38791)

0.30.40 (2022-07-26)

Bug Fixes

  • client-react: update hooks for React 18 StrictMode (#4999) (fd6352c)
  • server-core: restoring health check for the API instances (bfaee0f)

0.30.39 (2022-07-25)

Bug Fixes

  • query-orchestrator: API instance throw on missing partitions (3bf0882)

0.30.38 (2022-07-25)

Features

  • cubesql: Define standard_conforming_strings (SQLAlchemy compatibility) (8fbc046), closes #L2994
  • cubesql: Support Cast(expr as Regclass) (e3cafe4)
  • cubesql: Support for new introspection query in SQLAlchemy (0dbc9e6), closes #L3381
  • cubesql: Support pg_catalog.pg_sequence table (fe057bf)
  • docker: jdk containers (90dbe9f)

Reverts

  • revert "docs: update Home page to use new grid (#4898)" (71bcdf8), closes #4898

0.30.37 (2022-07-20)

Bug Fixes

  • cubesql: Correct UDTF behavior with no batch sections (f52c89a)
  • cubestore: Optimize big plans send out for big number of workers (#4948) (79421af)

Features

  • cubesql: Add pg_constraint pg_type (e9beb5f)
  • cubestore: Stores build_range_end in table metadata (#4938) (69f730f)

0.30.36 (2022-07-18)

Features

  • cubesql: Metabase - support between numbers queries (#4916) (52a34fd)
  • cubesql: Metabase - support Summarize's Bins (#4926) (8fcdf1a)
  • cubesql: Metabase string contains / not contains filters (#4922) (e5abc09)
  • cubesql: Support has_schema_privilege UDF (7ba3148)
  • cubesql: Support pg_catalog.pg_statio_user_tables meta table (a4d9050)
  • cubesql: Support pg_total_relation_size UDF (cfca8ee)
  • cubesql: Support minus, multiply, division for binary expression in projection (#4899) (1fc653b)

0.30.35 (2022-07-14)

Bug Fixes

  • cubesql: Binary operations with dates and intervals (#4908) (a2a0cba)
  • server-core: CUBEJS_PRE_AGGREGATIONS_SCHEMA behavior (4838047)

Features

  • cubesql: Metabase - datetime filters with 'starting from' flag support (#4882) (4cc01f1)
  • cubesql: Support PREPARE queries in pg-wire (#4906) (2e2ae63)

Reverts

  • Revert "chore: Refactor Rollup config, fix warnings, and support more file extensions (#4541)" (272dd8b), closes #4541

0.30.34 (2022-07-12)

Bug Fixes

  • api-gateway: Sending "Incoming network usage" event after context resolver (#4896) (eecf776)
  • Cache allDefinitions Object.assign invocations to optimize highly dynamic schema SQL execution (#4894) (ad3fea8)
  • cubestore: Elaborate on can't be listed after upload error (bd1ec69)
  • cubestore: Fix index selection in case of AND in conditions (a0e03ab)
  • cubestore: removing HLL columns from indexes (#4884) (e7df6e8)
  • server-core: driverFactory result type checking (6913a49)

Features

  • cubesql: Metabase - BETWEEN filters support (#4852) (b191120)
  • cubesql: Metabase - filters with relative dates support (#4851) (423be2f)
  • cubesql: Support Extract(DAY/DOW), Binary (?expr + ?literal_expr) for rewriting (Metabase) (#4887) (2565705)
  • cubesql: Support Substring for rewriting (Metabase) (#4881) (8fadebd)
  • server-core: pre-aggregations building by API instances only if CUBEJS_PRE_AGGREGATIONS_BUILDER is set (a203513)

0.30.33 (2022-07-07)

Bug Fixes

  • server-core: original dbType behavior restored (#4874) (e4231e0)

0.30.32 (2022-07-07)

Bug Fixes

  • cubesql: Correct portal pagination (use PortalSuspended) in pg-wire (#4872) (63aad19)

Features

  • cubesql: Support grant tables (columns, tables) (a3d9493)

0.30.31 (2022-07-07)

Bug Fixes

Features

  • cubesql: Initial support for canceling queries in pg-wire (#4847) (bce0f99)

0.30.30 (2022-07-05)

Bug Fixes

  • drivers default concurrency values (4b7296f)
  • client-react: useIsMounted hook compatible with React 18 StrictMode (#4740) (aa7d3a4)
  • cubesql: Invalid argument error: all columns in a record batch must have the same length (895f8cf)

Features

  • cubesql: Superset ILIKE support for Search all filter options feature (2532040)
  • cubesql: Support Interval type for pg-wire (4c8a82c)
  • centralized concurrency setting (#4735) (1c897a1)
  • cubesql: Support for metabase literal queries (#4843) (6d45d55)
  • dbt metric should take table alias into account (#4842) Thanks @bartlomiejolma ! (413d8df)

0.30.29 (2022-07-01)

Bug Fixes

  • cubesql: Can't find rewrite due to timeout reached for bigger ORDER BY queries (b765838)

Features

  • cubesql: Initial support for DBeaver (#4831) (0a63152)
  • cubesql: Send parameters at once (initial handshake) for pg-wire (#4812) (645253f)
  • cubesql: Support Date type in pg-wire (Date32, Date64) (d0d08cf)
  • pg-srv: Introduce ToProtocolValue trait (encoding) (#4818) (4e35aee)

0.30.28 (2022-06-27)

Bug Fixes

  • cubesql: Correct sync behaviour for extended query in pg-wire (#4815) (ee1362f)
  • More explanatory error message on failed rollupJoin match (5808e37), closes #4746

0.30.27 (2022-06-24)

Bug Fixes

  • client-vue: Fix boolean operator in filter without using builderProps (#4782) (904171e)
  • cubesql: Correct TransactionStatus for Sync in pg-wire (90c6265)
  • cubesql: Return error on execute for unknown portal in pg-wire (0b87261)
  • cubesql: thread 'tokio-runtime-worker' panicked at 'called Option::unwrap() on a None value' in case of MEASURE() called on a dimension (5d62c5a)
  • questdb-driver: schema query error due to system tables (#4762) (5571a70)

Features

  • cubesql: Metabase interval date range filter support (#4763) (221715a)
  • cubesql: Support Numeric type (text + binary) in pg-wire (db7ec5c)
  • cubesql: Workaround for Metabase introspection query (ee7b3cf)
  • cubestore: Aggregating index (#4379) (a0bd36c), closes #4599 #4728

0.30.26 (2022-06-20)

Features

  • cubesql: Correct implementation for placeholder binder/finder in pg-wire (fa018bd)
  • cubesql: Replace timestamptz CAST with timestamp (9e7c1bd)
  • cubesql: Support Int8 for Bind + binary in pg-wire (f28fbd5)
  • cubesql: Support placeholders in WITH and LIMIT (#4768) (d444c0f)
  • cubesql: Workaround CTEs with subqueries (Sigma) (#4767) (d99a02f)

0.30.25 (2022-06-16)

Bug Fixes

  • cubejs-docker: fix typos in dev.Dockerfile (f1cdf55)
  • databricks-jdbc: communication link failure (9c3577d)

Features

0.30.24 (2022-06-14)

Features

  • databricks-jdbc-driver: Export bucket mount dir setting (483d094)

0.30.23 (2022-06-14)

Features

  • databricks-jdbc: jdbc implementation of the export bucket feature (d534e67)

0.30.22 (2022-06-14)

Bug Fixes

  • @cubejs-backend/databricks-jdbc-driver: Missing prefix during blob listing (0ffea61)

0.30.21 (2022-06-13)

Features

  • databricks-jdbc: improving performance (1ef4504)

0.30.20 (2022-06-11)

Bug Fixes

  • cubesql: Send Empty Query message on empty query (88e966d)

Features

  • cubesql: Support pg_catalog.pg_roles table (eed0727)
  • cubesql: Support pg_my_temp_schema, pg_is_other_temp_schema UDFs (c843491)

0.30.19 (2022-06-10)

Bug Fixes

  • api-gateway: correct calculation of total if there is a query property offset (c176891)

0.30.18 (2022-06-10)

Bug Fixes

  • cubesql: Simple query: fetch in pg-wire (ODBC) (fc7c0e0)

0.30.17 (2022-06-09)

Bug Fixes

  • cubesql: Simple query: commit/rollback in pg-wire (#4743) (3e03870)

Features

  • cubesql: Add Postgres pg_database meta layer table (64e65eb)
  • cubesql: add support public compount identifier in filters (#4742) (74aaef6)
  • cubesql: Workarounds for Tableau Desktop (ODBC) (951c4b5)

0.30.16 (2022-06-08)

Bug Fixes

  • cubesql: Allow binary encoding for all types in pg-wire (d456745)
  • cubesql: TIMESTAMP/TZ was wrong in some BIs (pg-wire) (dfdb5ff)

0.30.15 (2022-06-06)

Note: Version bump only for package cubejs

0.30.14 (2022-06-06)

Bug Fixes

  • databricks-jdbc: concurrency improvements (e7857f0)

Features

  • cubesql: Auto-closing hold cursos on transaction end (simple query) (79725ec)
  • cubesql: cast DECIMAL with default precision and scale (#4709) (771d179)
  • cubesql: Support CAST for name, int2/4/8 (#4711) (36fe891)
  • cubesql: Support CLOSE [name | ALL] (cursors) for pg-wire (#4712) (91048bd)
  • cubesql: Support Metabase pg_type introspection query (2401dbf)
  • helm-charts: Add imagePullSecrets in k8s manifest (#4491) (cdda813)

0.30.13 (2022-06-05)

Features

  • cubesql: PowerBI is not empty filter (e31ffdc)

0.30.12 (2022-06-03)

Features

  • databricks-jdbc: export bucket for azure via databricks api v2.0 (3d6b8c6)

0.30.11 (2022-06-03)

Bug Fixes

  • cubesql: array_lower, array_upper - correct behaviour (#4677) (a3f29d4)

Features

  • cubesql: Add pg_catalog.pg_matviews meta layer table (2fbc5f4)
  • cubesql: PowerBI contains filter support (#4646) (3cbd753)
  • cubesql: Support [NOT] ILIKE operator (96b05c8)
  • cubesql: Support ArrayIndex for scalars (419689e)

0.30.10 (2022-06-01)

Bug Fixes

  • cubesql: Handle Flush pg-wire message (f779e75)
  • cubesql: Store description on Portal in Finished state (f5f6566)

Features

  • cubesql: information_schema.constraint_column_usage meta table (1fe8312)
  • cubesql: information_schema.views meta table (490d721)
  • cubesql: Support ANY expressions (77e0672)
  • cubesql: Support current_database(), current_schema(), current_user for pg-wire (a18f68c)
  • cubesql: Support string for NULLIF (metabase pg_class query) (#4638) (ef962e7)
  • Initial support for FETCH/DECLARE (cursors) for simple query in pg-wire (#4601) (b160773)

0.30.9 (2022-05-31)

Bug Fixes

  • cubesql: Allow CASE with pg_attribute.atttypmod offset (fc09160)

Features

  • cubesql: Support comparison between strings and booleans (#4618) (e4352c3)

0.30.8 (2022-05-30)

Bug Fixes

  • cubesql: Empty results on JOIN with AND + OR in WHERE (#4608) (96c2f15)
  • cubesql: fix log error standalone (#4606) (3e3e010)
  • driver-materialize: filter non-materialized objects from schema (#4584) (a32a9a9)

Features

  • cubesql: Allow ::information_schema.cardinal_number casting (b198fb3)
  • cubesql: excel subquery column with same name (#4602) (ea3a0bc)
  • cubesql: PowerBI basic queries support (455ae07)
  • cubesql: Support array_upper, array_lower UDFs (5a3b6bb)
  • cubesql: Support to_char UDF (#4600) (48077a9)
  • schema-compiler: allowNonStrictDateRangeMatch flag support for the pre-aggregations with time dimension (#4582) (31d9fae)

0.30.7 (2022-05-26)

Bug Fixes

  • cubesql: Correct command completion for SET in pg-wire (ab42e54)
  • playground: query validation (2052895)

Features

  • cubesql: Support escaped string literals, E'str' (ef9700d)
  • cubesql: Support multiple stmts for simple query in pg-wire (0f645cb)

0.30.6 (2022-05-24)

Bug Fixes

  • cubesql: Normalize column names for joins and aliased columns (7faadc9)

Features

  • cubesql: Support _pg_truetypid, _pg_truetypmod UDFs (1436a76)

0.30.5 (2022-05-23)

Bug Fixes

  • schema-compiler: exclude non-included dimensions from drillMembers (#4569) (c1f12d1)

Features

0.30.4 (2022-05-20)

Bug Fixes

  • cubesql: Skip returning of schema for special queries in pg-wire (479ec78)
  • cubesql: Wrong format in RowDescription, support i16/i32/f32 (0c52cd6)
  • cubestore: Prevent deleting a schema that contains tables (2824fb2)
  • playground: refresh stale tokens (#4551) (80ce87d)
  • playground: Remove all time time dimension without granularity (#4564) (054f488)
  • refresh worker force queue reconcile logic (#4529) (144e97d)

Features

  • Download streaming select * from table originalSql pre-aggregations directly (#4537) (a62d81a)
  • cubesql: Allow ::oid casting (bb31838)
  • cubesql: Initial support for type receivers (452f504)
  • cubesql: Support ||, correct schema/catalog/ordinal_position (6d6cbf5)
  • cubesql: Support DISCARD [ALL | PLANS | SEQUENCES | TEMPORARY |… (#4560) (390c764)
  • cubesql: Support IS TRUE|FALSE (4d227b1)
  • cubestore: Adds minio s3 region env to cubestore cloud storage (#4539) Thanks @olejeglejeg! (739d79c)

0.30.3 (2022-05-17)

Bug Fixes

  • cubesql: Add support for all types to pg_catalog.format_type UDF (c49c55a)
  • cubesql: Coerce empty subquery result to NULL (e59d2fb)
  • cubesql: Fix several UDFs to return correct row amount (f1e0223)

Features

  • cubesql: Ignore pg_catalog schema for UDFs (ab2a0da)

0.30.2 (2022-05-16)

Features

  • cubesql: Superset Postgres protocol support (#4535) (394248f)

0.30.1 (2022-05-14)

Bug Fixes

  • materialize-driver: commit cursor on release (#4526) (441581c)

Features

  • cubesql: Add CUBEJS_PG_SQL_PORT env support and SQL API reference docs (#4531) (de60d71)
  • cubesql: Provide specific error messages for not matched expressions (e035780)
  • cubesql: Support quarter field in date_part SQL function (7fdf4ac)

0.30.0 (2022-05-11)

Features

  • cubesql: Support dynamic key in ArrayIndex expression (#4504) (115dd55)
  • streamlined-config: CUBEJS_EXTERNAL_DEFAULT and CUBEJS_SCHEDULED_REFRESH_DEFAULT defaults changed to "true" (#4367) (d52adaf)

0.29.57 (2022-05-11)

Bug Fixes

  • cubesql: Fix format_type udf usage with tables (a49b2b4)
  • cubesql: Reject SELECT INTO queries gracefully (8b67ff7)
  • drivers: Fixes error when data result is empty for AthenaDriver (1e7e203)

Features

0.29.56 (2022-05-06)

Bug Fixes

  • docker: Pack redshift driver for dev docker image, fix #4497 (c80fffc)

Features

  • cubesql: Correct support for regclass in CAST expr (#4499) (cdab58a)
  • cubesql: More descriptive error messages (812db77)
  • cubesql: Partial support for Tableau's table_cat query (#4466) (f1956d3)
  • cubesql: Support pg_catalog.pg_enum postgres table (2db445a)
  • cubesql: Support pg_get_constraintdef UDF (#4487) (7a3018d)
  • cubesql: Support pg_type_is_visible postgres udf (47fc285)
  • cubestore: Wires ParquetMetadataCache (#4297) (e20f0e7)

0.29.55 (2022-05-04)

Bug Fixes

  • cubesql: Correct handling for boolean type (cff6c8b)
  • cubesql: Tableau new regclass query fast fix (2a7ff1e)

Features

  • cubesql: Tableau cubes without count measure support (931e2f5)

0.29.54 (2022-05-03)

Bug Fixes

  • Disable UPX compressing for Cube Store arm64-linux-gnu, fix #4474 (#4476) (3cb8586)
  • Make dimensions and measures nullable fields for GraphQL API (#4477) Thanks @MarkLyck ! (84e298e), closes #4399
  • cubesql: Using same alias on column yields Option.unwrap() panic (a674c5f)
  • Prestodb timestamp cast to work in prestodb and athena (#4419) Thanks @apzeb ! (8f8f61a), closes #4221

Features

  • cubejs: rollupJoin between multiple databases (#4371) (6cd77d5)
  • cubesql: Tableau boolean filters support (33aa5f1)
  • cubesql: Tableau cast projection queries support (71ec644)
  • cubesql: Tableau contains support (71dcad0)
  • cubesql: Tableau min max number dimension support (2abe13e)
  • cubesql: Tableau not null filter support (d48d0e0)
  • cubesql: Tableau week support (6d987ea)
  • Detailed client TS types (#4446) Thanks @reify-thomas-smith ! (977cce0), closes #4202

0.29.53 (2022-04-29)

Bug Fixes

  • @cubejs-client/core: Correct LogicalAndFilter/LogicalOrFilter types: allow any filter types in and / or (#4343) Thanks @tchell ! (699a2f4)
  • @cubejs-client/core: fix HTTP poll not working if Cube API stops and recovers (#3506) Thanks @rongfengliang ! (c207c3c)
  • cubejs-playground: fix history header scrolling in graphql explorer (#4410) (a8b82b5)
  • cubesql: fix pg_constraint confkey type (#4462) (82c25fd)
  • cubestore: Index selection for different permutations of columns in a group by omits sorted indexes (#4455) (fb31edd)
  • playground: change the url on query change (5c59298)

Features

  • @cubejs-client/core: Accept immutable queries (#4366) Thanks @reify-thomas-smith! (19b1514), closes #4160
  • client-core: Add HTTP status code to RequestError (#4412) (6ec4fdf)
  • client-vue: boolean filters support (#4314) (8a3bb3d)
  • cubesql: Aggregate aggregate split to support Tableau extract date part queries (532b4ee)
  • cubesql: Projection aggregate split to support Tableau casts (#4435) (1550774)
  • cubesql: Support for pg_get_userbyid, pg_table_is_visible UDFs (64f8885)
  • cubesql: Support generate_subscripts UDTF (a29551a)
  • cubesql: Support get_expr query for Pg/Tableau (#4421) (4d4918f)
  • cubesql: Support information_schema._pg_expandarray postgres UDTF (#4439) (1af4290)
  • cubesql: Support pg_catalog.pg_am table (24b231d)
  • cubesql: Support Timestamp, TimestampTZ for pg-wire (0b38b3d)
  • cubesql: Support unnest UDTF (110bdf8)
  • cubesql: Tableau default having support (4d432c0)
  • cubesql: Tableau Min, Max timestamp queries support (48ee34e)
  • cubesql: Tableau range of dates support (ef56133)
  • cubesql: Tableau relative date range support (87a3817)
  • cubesql: Unwrap filter casts for Tableau (0a39420)
  • packages: Materialize driver (#4320) (d40d13b)
  • playground: display error stack traces (#4438) (0932cda)

0.29.52 (2022-04-23)

Note: Version bump only for package cubejs

0.29.51 (2022-04-22)

Bug Fixes

  • cubesql: Bool encoding for text format in pg-wire (7faf34b)
  • cubesql: current_schema() UDF (69a75dc)
  • cubesql: Proper handling for Postgresql table reference (35f5635)
  • playground: chart templates (#4426) (ebc83a9)

Features

  • cubesql: Correlated subqueries support for introspection queries (#4408) (1f02b2c)
  • cubesql: Implement rewrites for SELECT * FROM WHERE 1=0 (#4427) (0c9abd1)
  • cubesql: Support arrays in pg-wire (b7925ba)
  • cubesql: Support generate_series UDTF (#4416) (3321925)
  • cubesql: Support GetIndexedFieldExpr rewrites (#4424) (8dca8b5)
  • cubesql: Support information_schema._pg_datetime_precision UDF (4d20ee6)
  • cubesql: Support information_schema._pg_numeric_precision UDF (6fc6c0a)
  • cubesql: Support information_schema._pg_numeric_scale UDF (398d1db)
  • cubesql: Support lc_collate for PostgreSQL (120ce31)
  • cubesql: Support NoData response for empty response in pg-wire (6711c8a)
  • cubesql: Support pg_get_expr UDF (#4425) (2b51d70)
  • cubesql: Support pg_get_userbyid UDF (c6efef8)
  • cubesql: Use proper command completion tags for pg-wire (3e777ec)
  • databricks-driver: Export bucket support for S3/Azure (#4430) (4512126)
  • query-language: "startsWith", "endsWith" filters support (#4128) (e8c72d6)

0.29.50 (2022-04-18)

Bug Fixes

Features

  • cubesql: Initial support for Binary format in pg-wire (a36845c)
  • cubesql: Support Describe(Portal) for pg-wire (34cf111)
  • cubesql: Support pg_depend postgres table (ceb35d4)

0.29.49 (2022-04-15)

Bug Fixes

  • athena: Support plain bucket for CUBEJS_DB_EXPORT_BUCKET (#4390) (4b4dd60)
  • mssql: Add uniqueidentifier type support -- Custom type 'uniqueidentifier' is not supported (#4386) Thanks @jdeksup! (fb77332)

0.29.48 (2022-04-14)

Bug Fixes

  • cubesql: Support pg_catalog.format_type through fully qualified name (9eafae0)
  • cubestore: Empty CUBESTORE_S3_SUB_PATH leads to can't list file error (#4324) (0b35064)
  • cubestore: Inactive partition compaction: replace error with warn (#4337) (2ad61ee)
  • cubestore: Support a space separated binary strings for HyperLogLog fields in csv -- Can't parse column value for countDistinctApprox in Athena (#4383) (8b320b6)

Features

  • cubesql: Initial support for prepared statements in pg-wire (#4244) (912b52a)
  • query-language: "total" flag support (#4134) (51aef5e)
  • Support Compound Primary Keys (#4370) Thanks @rccoe! (0e3983c), closes #4364
  • cubesql: Postgres Apache Superset connection flow support (ab256d9)

0.29.47 (2022-04-12)

Bug Fixes

  • cubesql: Correct MySQL types in response headers (#4362) (c507f82)
  • cubesql: Special handling for bool as string (3ba27bf)
  • cubesql: Support boolean (ColumnType) for MySQL protocol (23f8367)

0.29.46 (2022-04-11)

Bug Fixes

  • cubesql: Rewrite engine decimal measure support (8a0fa98)

Features

  • cubesql: Support format_type UDF for Postgres (#4325) (8b972ca)

0.29.45 (2022-04-09)

Bug Fixes

  • cubesql: Rewrite engine datafusion after rebase regressions: mismatched to_day_interval signature, projection aliases, order by date. (8310f7e)

0.29.44 (2022-04-07)

Note: Version bump only for package cubejs

0.29.43 (2022-04-07)

Bug Fixes

  • cubesql: Rewrites don't respect projection column order (cfe35a7)
  • cubestore: Filters aren't included in index choosing (c582622)

Features

  • cubesql: Rewrite engine error handling (3fba823)
  • cubesql: Upgrade rust to 1.61.0-nightly (2022-02-22) (c836065)
  • cubestore: Add CUBEJS_GH_API_TOKEN env var to download script (#4282) Thanks @icebob! (ac57162)
  • cubestore: Explain implementation (#4303) (53fe3f3)

0.29.42 (2022-04-04)

Bug Fixes

  • @cubejs-backend/snowflake-driver: Download numbers with 0 scale as integers in pre-aggregations (42eb582)
  • cubesql: Allow quoted variables with SHOW <variable> syntax (#4313) (3eece0e)
  • playground: adding a query parameter in Playground requires one extra click to type in search field (#4295) (4abab96)
  • playground: rollup designer count distinct warning (#4309) (add2dd3)
  • playground: transparency under the searchbar in some cases (#4301) (6cdb20c)

Features

  • cubesql: Rewrite engine segments support (48b0767)

0.29.41 (2022-04-03)

Bug Fixes

  • jdbc-driver: Handle mvn error for empty java dependencies (#4307) (9e12511)

0.29.40 (2022-04-03)

Bug Fixes

  • cubesql: Table columns should take precedence over projection to mimic MySQL and Postgres behavior (60d6e45)

Features

  • cubestore: IN operator support for decimal type (#4306) (d728163)

0.29.39 (2022-04-01)

Bug Fixes

  • native: Post installation issue with npm (avoid bundledDependencies) (6163838)

0.29.38 (2022-04-01)

Bug Fixes

  • cubesql: Deallocate statement on specific command in MySQL protocol (ab3f36c)
  • cubesql: Enable EXPLAIN support for postgres (c0244d1)
  • cubestore: Add compaction and chunk writing guards to cleanup uploads folder on any failures to minimize storage bloating (b6e79fa)
  • native: Post installation issue with npm (#4302) (8aa9c71)

Features

  • cubesql: Initial support for current_schemas() postgres function (e0907ff)
  • cubesql: Postgres pg_catalog.pg_class MetaLayer table (#4287) (d70da08)
  • cubesql: Support binding values for prepared statements (MySQL only) (ad26dc5)
  • cubesql: Support current_schema() postgres function (44b64ce)
  • cubesql: Support information_schema.character_sets (postgres) table (1804b79)
  • cubesql: Support information_schema.key_column_usage (postgres) table (84cf2c1)
  • cubesql: Support information_schema.referential_constraints (postgres) table (eeb42be)
  • cubesql: Support information_schema.table_constraints (postgres) table (2d6bfee)
  • cubesql: Support pg_catalog.pg_description and pg_catalog.pg_constraint MetaLayer tables (#4292) (0ea9699)
  • MySQL SET variables / Postgres SHOW SET variables (#4266) (88ec3cc)
  • cubesql: Postgres pg_catalog.pg_proc MetaLayer table (#4289) (b3613d0)
  • cubesql: Support pg_catalog.pg_attrdef table (d6aae8d)
  • cubesql: Support pg_catalog.pg_attribute table (d5f7d0c)
  • cubesql: Support pg_catalog.pg_index table (a621532)

0.29.37 (2022-03-29)

Bug Fixes

  • cubesql: Dropping session on close for pg-wire (#4280) (c4442be)
  • cubesql: Rewrite engine: support for stacked time series charts (c1add2c)
  • packages/cubejs-bigquery-driver/package.json to reduce vulnerabilities (#3924) (e44ca40)
  • cubesql: Rewrite engine can't parse db prefixed table names (b7d9382)

Features

  • @cubejs-backend/schema-compiler: Allow filtering with or/and in FILTER_PARAMS (#4253) Thanks @tchell! (cb1446c)
  • cubesql: Global Meta Tables (88db9ea)
  • cubesql: Global Meta Tables - add tests (42e9517)
  • cubesql: Global Meta Tables - cargo fmt (c8336d9)
  • cubesql: Support pg_catalog.pg_range table (625c03a)
  • Introduce CUBEJS_ALLOW_UNGROUPED_WITHOUT_PRIMARY_KEY env (#2941) Thanks @vignesh-123 ! (fa829bf)

0.29.36 (2022-03-27)

Features

  • cubesql: Improve Postgres, MySQL meta layer (#4228) (5c8d002)
  • cubesql: Rewrite engine first steps (#4132) (84c51ed)
  • cubesql: Support pg_catalog.pg_namespace table (66e41da)
  • cubesql: Support pg_catalog.pg_type table (d792bb9)

0.29.35 (2022-03-24)

Bug Fixes

  • cubesql: Fix decoding for messages without body in pg-wire protocol (f7aa6ed)
  • cubesql: Specify required parameters on startup for pg-wire (b79088b)
  • query-orchestrator: Pin es5-ext version (#4257) (4a17e9c)

Features

  • cubesql: Split variables to session / server for MySQL (#4255) (f78b539)

0.29.34 (2022-03-21)

Bug Fixes

  • cubesql: Disable MySQL specific functions/statements for pg-wire protocol (#4222) (21f6cde)

Features

  • cubesql: Correct response for SslRequest in pg-wire (#4238) (bd1468a)
  • server: Allow to configure allowNodeRequire for DataSchemaCompiler (#4235) (64b8ff6)

0.29.33 (2022-03-17)

Bug Fixes

  • cubesql: Add numeric_scale field for information_schema.columns (2e2877a)
  • helm-charts: add missing config for sqlAPI (#4191) (7a7c5da)
  • playground: rollup designer query compatibility (#4224) (000e28d)
  • TypeError: Cannot create proxy with a non-object as target or handler /cubejs-api/v1/run-scheduled-refresh request without auth params (a04f13f)

Features

  • cubejs-api-gateway: add dbType to load req success event for db usage analytics (fc23028)
  • cubesql: Enable PostgresServer via env variable (39b6528)
  • cubesql: Initial support for pg-wire protocol (1b87c8c)
  • cubesql: Support meta layer and dialect for Postgres service (#4215) (46af90d)
  • cubesql: Support PLAIN authentication method to pg-wire (#4229) (c4fbd8c)
  • cubesql: Support SHOW processlist (0194098)
  • playground: non-additive measures message (#4236) (ae18bbc)

0.29.32 (2022-03-10)

Bug Fixes

  • @cubejs-backend/dbt-schema-extension: dbt metric types are not p… (#4188) (30179f7)

Features

  • cubesql: Support information_schema.processlist (#4185) (4179fb0)

0.29.31 (2022-03-09)

Bug Fixes

  • @cubejs-backend/dbt-schema-extension: Identifiers are not properly escaped in case for Dbt cloud (be28d61)
  • athena: Fixes export bucket location. Fixes column order. (#4183) (abd40a7)
  • allow post requests for sql (#4180) (2d101ee)

0.29.30 (2022-03-04)

Bug Fixes

  • @cubejs-backend/cubestore-driver: Empty tables in Cube Store if index is being used (#4170) (2585c12)
  • api-gateway: GraphQL cannot read property findIndex of undefined (51d48f1)

0.29.29 (2022-03-03)

Bug Fixes

  • @cubejs-backend/schema-compiler: Add strictness to booleans (#4157) Thanks @zpencerq! (e918837)
  • Timestamp for quarter range in time series has incorrect ending period of 23:59:99 (#4162) Thanks @Yashkochar20 ! (8e27ae7)
  • @cubejs-backend/bigquery-driver: Cancel queries on polling timeout so those aren't dangling around for hours (f36ff74)
  • cubestore: Add list file size validation after file upload to check upload consistency (#4093) (1c62859)
  • cubestore: Deactivate tables on data corruption to allow refresh worker to reconcile failing partitions (#4092) (2c3c83a)
  • cubestore: Do not spawn select workers for router nodes (8c07bba)
  • cubestore: Do not warmup chunks on table creation to avoid stuck on warmup of unpartitioned chunks situation (4c27d51)
  • cubestore: Jobs are fetched only once 5 seconds if there's a queue (dee115f)
  • cubestore: Leading decimal zeros are truncated during formatting (a97f34b)
  • cubestore: Postpone deletion of partitions and chunks after metastore log commits to avoid missing files on sudden metastore loss (#4094) (493c53e)
  • helm-charts: correct s3 output location env variable (#4098) (88db58d)
  • playground: auto size chart window (#4042) (ee496b3)
  • playground: prevent params to shift around when removing filters (e3d17ae)

Features

  • cubestore: Decimal partition pruning (#4089) (c00efad)
  • cubestore: Introduce CUBESTORE_EVENT_LOOP_WORKER_THREADS to allow set tokio worker threads explicitly (9349a11)
  • cubestore: Repartition single chunks instead of partition as a whole to speed up ingestion of big tables (#4125) (af65cdd)
  • packages: add QuestDB driver (#4096) (de8823b)
  • Compact JSON array based response data format support (#4046) (e74d73c), closes #1
  • Unwinds CubeStore select worker panics to provide descriptive error messages (#4097) (6e21434)

0.29.28 (2022-02-10)

Bug Fixes

  • @cubejs-backend/athena-driver: Batching and export support (#4039) (108f42a)
  • cubesql: Allow to pass measure as an argument in COUNT function (#4063) (c48c7ea)

0.29.27 (2022-02-09)

Bug Fixes

  • cubesql: Unique filtering for measures/dimensions/segments in Request (552c87b)
  • cubestore: Ensure file size matching during downloads to localize any remote fs consistency issues (#4054) (38fdf35)
  • cubestore: Schema type mismatch when in memory chunks are queried (#4024) (614809b)

Features

  • cubesql: Move execution to Query Engine (2d84b6b)

0.29.26 (2022-02-07)

Bug Fixes

  • cubejs-playground: tab close button styles (#4047) (a6307e9)
  • Use prototype name matching instead of classes to allow exact version mismatches for AbstractExtension (75545e8)
  • @cubejs-client/ngx: cubejs.watch() not producing errors (#3974) Thanks @PieterVanZyl-Dev! (1ee6740), closes #3961
  • cubesql: Ignore case sensitive search for usage of identifiers (a50f8a2)

Features

  • cubesql: Support information_schema.COLLATIONS table (#4018) (262314d)
  • cubesql: Support prepared statements in MySQL protocol (#4005) (6b2f61c)
  • cubesql: Support SHOW COLLATION (#4025) (95b5d0e)

0.29.25 (2022-02-03)

Bug Fixes

  • Out of memory in case of empty table has been used to build partitioned pre-aggregation (#4021) (314cc3c)
  • @cubejs-bacend/api-gateway: fix a type issue where queries did not properly support logical and and logical or operators (#4016) Thanks @rdwoodring! (bb2d230)
  • cubestore: Decimals without integral part are ignoring sign during to_string() (b02b1a6)

Features

  • @cubejs-backend/snowflake-driver: CUBEJS_DB_SNOWFLAKE_PRIVATE_KEY env variable support (38f4840)
  • Load metrics from DBT project (#4000) (2975d84)
  • cubestore: Support quarter granularity for date_trunc fn (#4011) (404482d)

0.29.24 (2022-02-01)

Bug Fixes

  • Correct error message on missing partitions (e953296)
  • Remove orphaned tables on error while pre-aggregation creation (#3996) (0548435)
  • cubesql: Ignore @@ global prefix for system defined variables (80caef0)

Features

0.29.23 (2022-01-26)

Bug Fixes

  • Cannot read property ‘last_updated_at’ of undefined (#3980) (74d75e7)
  • Provide more readable message for CSV parsing error (0b9a3f8)
  • @cubejs-client/core: restore support for Angular by removing dependency on @cubejs-client/dx (#3972) (13d30dc)
  • client-core: apiToken nullable check (3f93f68)
  • Error: column does not exist during in case of subQuery for rolling window measure (6084407)

Features

  • cubesql: Setup more system variables (97fe231)

0.29.22 (2022-01-21)

Bug Fixes

  • postgres-driver: Support enums as UD types for columns, fix #3946 (#3957) (842cc53)

Features

  • cubesql: Execute SHOW VARIABLES [LIKE 'pattern'] via QE instead of hardcoding (#3960) (48c0d77)

0.29.21 (2022-01-17)

Bug Fixes

  • playground: rollup designer undefined key (3213e70)

Features

  • @cubejs-backend/schema-compiler: extend the schema generation API (#3936) (48b2335)
  • cubestore: Bump Clang to 12 (8a16102)
  • cubestore: Use OpenSSL 1.1.1l (1e18bec)
  • Surfaces lastUpdateAt for used preaggregation tables and lastRefreshTime for queries using preaggreagation tables (#3890) (f4ae73d), closes #3540
  • cubesql: Improve error messages (#3829) (8293e52)

0.29.20 (2022-01-10)

Bug Fixes

  • cubesql: Alias binding problem with escapes (<expr> as '') (8b2c002)

0.29.19 (2022-01-09)

Note: Version bump only for package cubejs

0.29.18 (2022-01-09)

Bug Fixes

0.29.17 (2022-01-05)

Bug Fixes

  • Do not instantiate SqlParser if rewriteQueries is false to save cache memory (00a239f)
  • TypeError: Cannot read property 'map' of undefined\n at /cube/node_modules/@cubejs-backend/server-core/src/core/RefreshScheduler.ts:349:86\n (ca33fe4)
  • cubejs-cli: use process.cwd() in typegen to resolve current project's node_modules/ (daceca7)

0.29.16 (2022-01-05)

Bug Fixes

  • @cubejs-backend/snowflake-driver: OperationFailedError: SQL compilation error: invalid value [?] for parameter 'STATEMENT_TIMEOUT_IN_SECONDS' (4a1503e)
  • refreshKey is evaluated ten times more frequently if sql and every are simultaneously defined (#3873) (c93ae12)

0.29.15 (2021-12-30)

Bug Fixes

  • docker: remove cache from alpine image (a52be2f)

Features

  • cubestore: Mark linux GNU as supported on ARM64 (post installer) (3b385e5)
  • native/cubesql: Build for ARM64 linux GNU (5351c41)
  • Introduce single unified CUBEJS_DB_QUERY_TIMEOUT env variable to set all various variables that control database query timeouts (#3864) (33c6292)

0.29.14 (2021-12-29)

Note: Version bump only for package cubejs

0.29.13 (2021-12-29)

Bug Fixes

  • arm64 support for cubestore docker images (#3849) (305c234)

0.29.12 (2021-12-29)

Bug Fixes

  • cubesql/native: Return errors to the client (missing field ) (82b22e4)
  • cubestore: Do not fail scheduler loop on lagged broadcast receive (11a2a67)

Features

  • Split batching upload of pre-aggregations into multiple files to enhance performance and avoid load balancer upload limits (#3857) (6f71419)
  • cubesql: Ignore KILL statement without error (20590f3)

0.29.11 (2021-12-24)

Bug Fixes

  • cubestore: Respect pending chunks for compaction (ac23554)

Features

  • cubestore: Build binary for aarch64-unknown-linux-gnu (#3844) (38b8054)
  • cubestore: Support docker image for AMR64 platform (#3841) (6514fdc)

0.29.10 (2021-12-22)

Bug Fixes

  • cubestore: Do not show errors for not uploaded chunks scheduled for removal (ca94fb2)
  • cubestore: Re-parent chunks on compaction instead of repartitioning (cb6b9d5)

0.29.9 (2021-12-22)

Bug Fixes

  • TypeError: Cannot read property 'filter' of undefined on pre-aggregations cache only load (eddecdf)

Features

  • cubestore: Introduce table partition_split_threshold to allow large scale partitions (#3837) (2bdebce)

0.29.8 (2021-12-21)

Bug Fixes

  • @cubejs-client/core: Add 'meta' field to typescript TCubeMember type #3682 (#3815) Thanks @System-Glitch! (578c0a7)
  • @cubejs-client/vue: fix error when executing deletion (#3806) Thanks @18207680061! (9d220a8)
  • cubestore: Reduce excessive startup memory usage (4f0dfc8)

Features

  • cubesql: Improve selection finder for ORDER BY (d28897b)
  • cubesql: Introduce information_schema.key_column_usage (922b6e2)
  • cubesql: Introduce information_schema.referential_constraints (cdfdcd7)
  • cubesql: Introduce information_schema.schemata (3035231)
  • cubesql: Rewrite general planner to pass restrictions for QE (28e127b)

0.29.7 (2021-12-20)

Bug Fixes

  • Table cache incorrectly invalidated after merge multi-tenant queues by default change (#3828) (540446a)
  • cubejs-cli: make typegen command throw useful errors (04358be)

0.29.6 (2021-12-19)

Bug Fixes

  • refresh process for useOriginalSqlPreAggregations is broken (#3826) (f0bf070)

0.29.5 (2021-12-17)

Features

  • @cubejs-client/dx: introduce new dependency for Cube.js Client (5bfaf1c)
  • cubejs-cli: generate TypeScript types from API for use by @cubejs-client/core (b97d9ca)
  • cubesql: Support CompoundIdentifier in compiling (030c981)
  • cubesql: Support DATE with compound identifier (fa959d8)
  • cubesql: Support DATE, DATE_ADD, NOW fuunctions & Intervals (a71340c)
  • cubesql: Support hours interval (b2d4b53)

0.29.4 (2021-12-16)

Bug Fixes

  • Validate contextToAppId is in place when COMPILE_CONTEXT is used (54a8b84)
  • cubejs-playground: responsive filter group size (5129cca)
  • cubejs-playground: responsive filter group size * 2 (2e340df)
  • cubesql: IF function, support array & scalar (1b04ad1)
  • cubesql: LIKE '%(%)%' (c75efaa)
  • cubesql: Substr with negative count should return empty string (not an error) (197b9e5)

Features

  • cubesql: Support LOCATE function (9692ae3)
  • cubesql: Support SUBSTRING with commans syntax (ffb0a6b)
  • cubesql: Support UCASE function (8853ec6)

0.29.3 (2021-12-15)

Bug Fixes

  • api-gateway: skip GraphQL types generation for empty cubes (28f3c40)
  • playground: use playground token when security context provided (74e22e3)

0.29.2 (2021-12-15)

Bug Fixes

  • playground: respect security context token in GraphQL sandbox (3d4a18b)

0.29.1 (2021-12-15)

Bug Fixes

  • bump min supported GraphQL version (4490fe2)

0.29.0 (2021-12-14)

Features

  • Reuse queue by default for multi-tenancy instead of creating it per tenant (f2a2fb9)
  • playground: GraphiQL sandbox. Allow using the cube GraphQL API (#3810) (1f39042)

Reverts

Bug Fixes

chore

BREAKING CHANGES

  • Before this change querying queue was created for each tenant
  • Drop support for Node.js 10 (12.x is a minimal version)
  • Upgrade Node.js to 14 for Docker images
  • Drop support for Node.js 15
  • drop Angular 10/11 support
  • client-core: All undefined/null measure values will now be converted to 0

0.28.67 (2021-12-14)

Bug Fixes

0.28.66 (2021-12-14)

Bug Fixes

  • client-vue: add wrapWithQueryRenderer prop (#3801) (c211e0a)
  • cubestore: Cleanup non active never written partitions as part of delete middle man (#3802) (7b31c2f)
  • cubestore: Drop created but not written partitions during reconciliation (98326f1)
  • cubestore: GCTask queue holds a lot of delete middle man partition jobs so it looks like a memory leak (d3ffb07)
  • cubestore: Limit chunk count in a single repartition hop to avoid repartition timeouts (67ca6c8)

Features

  • api-gateway: Event property for SQL and GraphQL API (#3774) (0e83a72)
  • playground: GraphiQL sandbox. Allow using the cube GraphQL API (#3803) (6c848c0)

0.28.65 (2021-12-10)

Bug Fixes

  • api-gateway: GraphQL boolean filters (#3776) (285b371)
  • cubesql: Special NULL handling for LEAST function (edb4b02)
  • cubestore: Introduce network protocol hand shakes to avoid corrupted messages deserialization (aac0a5b)
  • graphql-api: Remove irrelevant float filters (#3778) (3147fe4)

Features

  • api-gateway: Enable GraphiQL header editor to pass security context in dev mode (#3779) (8c335a2)
  • api-gateway: GraphQL root orderBy (#3788) (cd88d26)
  • cubesql: Introduce convert_tz fn (stub) (1f08272)
  • cubesql: Introduce support for least function (434084e)
  • cubesql: Introduce time_format fn (stub) (9c9b217)
  • cubesql: Introduce timediff fn (stub) (29dfb97)
  • cubesql: Support compound identifier in ORDER BY (6d08ba8)
  • cubesql: Support performance_schema.session_variables & global_variables (a807858)
  • cubesql: Support type coercion for IF function (3b3f48c)
  • cubestore: Sort NULLS LAST by default (#3785) (02744e8)
  • helm-charts: Add sqlPort config to enable SQL Api (#3706) (8705893)
  • playground: GraphiQL sandbox. Allow using the cube GraphQL API (#3794) (ea9630f)

0.28.64 (2021-12-05)

Bug Fixes

  • cubestore: Support \N as null value during CSV imports (fbba787)

0.28.63 (2021-12-03)

Bug Fixes

  • cubesql: Crash with WHEN ELSE IF (7eeadf5)
  • cubesql: Information_schema.COLUMNS - correct DATA_TYPE fields (337d1d1)
  • cubesql: Initial support for compound identifiers (e95fdb6)

Features

  • cubesql: Implement IF function (0e08399)
  • cubesql: Implement INFORMATION_SCHEMA.COLUMNS (compatibility with MySQL) (f37e625)
  • cubesql: Implement INFORMATION_SCHEMA.TABLES (compatibility with MySQL) (ed0e774)
  • cubesql: Initial support for information_schema.statistics (e478baa)
  • cubesql: WHERE 1 <> 1 LIMIT 0 - (metabase introspection) (431b1e9)

0.28.62 (2021-12-02)

Bug Fixes

  • playground: rollup designer overflow (60ce358)

Features

  • cubesql: Specify transaction_isolation, transaction_read_only (81a8f2d)
  • cubesql: Support ISNULL (f0a4b62)

0.28.61 (2021-11-30)

Bug Fixes

  • @cubejs-backend/mongobi-driver: Create table failed: User: Can't parse timestamp: Invalid date (1843f28)
  • cubesql: Ignore SET NAMES on AST level (495f245)
  • cubestore: Internal: Execution error: Internal: Arrow error: Invalid argument error: number of columns(4) must match number of fields(5) in schema for streaming tables (#3737) (d35cc1f)
  • cubestore: Support escaping sequence for ILIKE (#3744) (fbe7376), closes #3742
  • Clarify pre-aggregation build error messages (cf17f64), closes #3469
  • Generate consistent request ids for not annotated API requests (331a819)

Features

  • cubesql: Return Status:SERVER_SESSION_STATE_CHANGED on SET operator (6f7adf8)
  • cubesql: Skip SET {GLOBAL|SESSION} TRANSACTION isolation on AST level (3afe2b1)
  • cubesql: Specify max_allowed_packet, auto_increment_increment (dd4a22d)
  • cubesql: Support specifying ColumnFlags in QE (4170b27)
  • cubestore: Minio support (#3738) (c857562), closes #3510
  • docker: Upgrade node:12.22.7 (b9e57d8)

0.28.60 (2021-11-25)

Bug Fixes

  • @cubejs-backend/mongobi-driver: Show all tables if database isn't set (6a55438)
  • @cubejs-backend/mongobi-driver: Unsupported mapping for data type: 5 (9d42c9c)
  • cubesql: MySQL CLI connection error with COM_FIELD_LIST (#3728) (aef1401)
  • cubesql: Pass selection for server variables to QE (#3724) (4c66581)
  • docker: Install cmake for dev images (470678a)
  • docker: Reduce images size (1bb00e3)
  • native: Return promise for registerInterface (be97a84)
  • Empty pre-aggregation with partitionGranularity throws ParserError("Expected identifier, found: )") (#3714) (86c6aaf)

Features

  • cubesql: Enable unicode_expression (required for LEFT) (4059a17)
  • cubesql: Support insrt function (61bdc99)
  • native: Support Node.js 17 (91f5d51)

0.28.59 (2021-11-21)

Bug Fixes

  • Dropping orphaned tables logging messages don't have necessary t… (#3710) (1962e0f)
  • cubestore: Ensure strict meta store consistency with single thre… (#3696) (135bc3f)
  • cubestore: unexpected value Int(42) for type String (e6eab32)

Features

  • cubesql: Strict check for dates in binary expr (3919c42)

0.28.58 (2021-11-18)

Bug Fixes

  • @cubejs-backend/clickhouse-driver: clickhouse joins full key query aggregate fails (#3600) Thanks @antnmxmv! (c6451cd), closes #3534
  • cubesql: Parsing error with single comment line (a7697c1)
  • cubestore: Error during planning: The field has has qualifier for UNION query with IN (#3697) (01a6d6f), closes #3693

Features

0.28.57 (2021-11-16)

Bug Fixes

  • cubesql: Support identifier escaping in h/m/s granularaties (1641b69)

Features

  • cubesql: Initial support for INFORMATION_SCHEMA (d1fac9e)
  • cubesql: Support schema() (3af3c84)
  • cubesql: Support SHOW WARNINGS (73d91c0)
  • cubesql: Support USER(), CURRENT_USER() (8a848aa)

0.28.56 (2021-11-14)

Bug Fixes

  • cubestore: Drop not ready tables 30 minutes after creation to avoid metastore bloating (e775682)
  • cubestore: Invalidate tables cache only on table changing operations to reduce write lock contention (28549b8)
  • cubestore: Replace all_rows access with scans to optimize allocations (ab985c8)

0.28.55 (2021-11-12)

Bug Fixes

  • cubestore: fix float comparisons causing unsorted data in merges (c5b5d2c)
  • cubestore: Timeout for create table finalization (d715345)
  • JSON.stringify schema version instead of calling .toString() to simplify usage with objects (50a191e)
  • cubestore: Do not fail swap_chunks with assert -- allow to gracefully capture error (8c8b6eb)
  • cubestore: Do not fail on repartition of empty chunks (41b3054)
  • cubestore: speed up HLL++ merges, up to 180x in some cases (24ecbc3)
  • cubestore: system.tables can affect table visibility cache by including non ready tables. Ignore delete middle man reconciliation errors. (dce711f)

Features

  • Introduce checkSqlAuth (auth hook for SQL API) (3191b73)

0.28.54 (2021-11-09)

Bug Fixes

  • @cubejs-backend/snowflake-driver: Do not trigger cluster start on test connection (3bb2d8f)
  • cubestore: Introduce file suffixes to avoid parquet write clashes in case of meta store recovery (#3639) (4d01e8b)
  • cubestore: Row with id is not found for PartitionRocksTable. Repartition not active partitions on reconcile. Do not drop orphaned jobs that weren't scheduled. Repartition only limited amount of rows during single repartition job. (#3636) (55bbc60)

Features

  • cubestore: System tables and commands for debugging (#3638) (22650a1)

0.28.53 (2021-11-04)

Bug Fixes

  • playground: displaying boolean values (76396ea)
  • TypeError: Cannot read property 'joins' of null in case of queryRewrite returns empty query (#3627) (d880d0c)

Features

  • cubesql: Real connection_id (24d9804)
  • cubesql: Specify MySQL version as 8.0.25 in protocol (eb7e73e)

0.28.52 (2021-11-03)

Bug Fixes

  • client-core: dayjs global locale conflict (#3606) Thanks @LvtLvt! (de7471d)
  • cubesql: MYSQL_TYPE_STRING for Booleans was null (fcdd8f5)
  • Empty data partitioned pre-aggregations are incorrectly handled -- value provided is not in a recognized RFC2822 or ISO format (9f3acd5)
  • packages/cubejs-query-orchestrator/package.json to reduce vulnerabilities (#3281) (a6a62ea)

Features

  • cubeclient: Granularity is an optional field (c381570)
  • cubesql: Execute SHOW DATABASES from AST (cd2b4ac)
  • cubesql: Improve filter pushing (dateRange -> timeDimension) and segment (8d7ea9b)
  • cubestore: partitioned indexes for faster joins (8ca605f)

0.28.51 (2021-10-30)

Bug Fixes

  • Prevent mutation pre-aggregation objects, debug API (#3605) (0f982ce)
  • cubejs-client-ngx: FilterMember.replace() will no longer update all filters with replacement (#3597) (f972ad3)
  • native: warning - is missing a bundled dependency node-pre-gyp (0bee2f7)

Features

  • cubesql: Skip SET = <expr> (616023a)
  • cubesql: Support db(), version() via QE (5a289e1)
  • cubesql: Support system variables (#3592) (d2bd1fa)
  • cubesql: Use real Query Engine for simple queries (cc907d3)

0.28.50 (2021-10-28)

Bug Fixes

  • @cubejs-backend/mysql-driver: Handle utf8mb4_bin as string (a897392)
  • cubestore: Added CUBESTORE_META_BIND_ADDR and CUBESTORE_WORKER_BIND_ADDR to allow for IPv6 binds (435f8fc)
  • cubestore: assertion failed: (left == right) in case of trying to access table streaming table right after creation (c900d51)
  • native: Correct logging level for native module (c1a8439)

Features

  • native: Simplify filters while converting to JSON RPC (acab66a)
  • Validate return type for dbType/driverFactory/externalDriverFactory in runtime (#2657) (10e269f)

0.28.49 (2021-10-23)

Bug Fixes

  • @cubejs-backend/server-core: Clean fetching pre-aggregation ranges, debug API (#3573) (7beb090)
  • cubesql: Correct LE (<), GT (>) handling for DateTime filtering (55e805a)

0.28.48 (2021-10-22)

Bug Fixes

  • Use BaseQuery#evaluateSql() for evaluate refresh range references, pre-aggregations debug API (#3352) (ea81650)
  • @cubejs-backend/ksql-driver: Missing in docker (4af6c8a)
  • @cubejs-backend/ksql-driver: Scaffolding for empty schema generates empty prefix (091e45c)
  • @cubejs-backend/ksql-driver: Unquoted describe (61dba66)

Features

  • cubesql: EXPLAIN <stmt> (debug info) (7f0b57f)

0.28.47 (2021-10-22)

Bug Fixes

  • diagnostics - cannot convert undefined or null to object (#3564) (643c9f8)

Features

  • ksql support (#3507) (b7128d4)
  • cubesql: Simplify root AND in where (a417d4b)
  • cubesql: Support SHOW DATABASES (alias) (f1c4d3f)
  • playground: placeholder for BI (refers to documentation) (#3563) (6b7da77)

0.28.46 (2021-10-20)

Bug Fixes

  • update error message for join across data sources (#3435) (5ad72cc)
  • @cubejs-backend/snowflake-driver: escape date_from and date_to in generated series SQL (#3542) Thanks to @zpencerq ! (858b7fa), closes #3215
  • native: Catch errors in authentication handshake (msql_srv) (#3560) (9012399)
  • schema-compiler: assign isVisible to segments (#3484) Thanks to @piktur! (53fdf27)

Features

  • prestodb-driver: Bump prestodb-client (08e32eb)
  • prestodb-driver: Support SSL (b243e9f)

0.28.45 (2021-10-19)

Note: Version bump only for package cubejs

0.28.44 (2021-10-18)

Bug Fixes

  • native: Compile under Debian 9 (minimize libc requirement) (9bcfb34)

Features

0.28.43 (2021-10-17)

Bug Fixes

  • native: Allow to install Cube.js on unsupported systems (71ce6a4)
  • native: Split musl/libc packages (musl is unsupported for now) (836bd5f)

Features

  • native: Support windows (287665b)

0.28.42 (2021-10-15)

Bug Fixes

  • cubesql: SET NAMES utf8mb4 (9229123)
  • postgres-drive: Move cubejs-backend/testing to devDep (reduce size) (a3667c6)

Features

  • native: CubeSQL - support auth via JWT (from user) (#3536) (a10bd59)
  • playground: Support react chartjs charts drilldowns (#3500) (499e37e)
  • Integrate SQL Connector to Cube.js (#3544) (f90de4c)

0.28.41 (2021-10-12)

Bug Fixes

  • @cubejs-backend/snowflake-driver: Reduce memory usage during batching downloads (8748344)
  • cubestore: fix parquet statistics for string columns (565465a)
  • cubestore-driver: Use ILIKE for contains filter (#3502) (c1b2e10)

Features

  • Introduce @cubejs-backend/native 🦀 (#3531) (5fd511e)
  • Introduce cubeclient (rust client) (ff44347)
  • Introduce SQL Connector for Cube.js 🚀 (#3527) (7d97398)

0.28.40 (2021-09-30)

Bug Fixes

  • Count distinct by week matches daily rollup in case of data range is daily (#3490) (2401418)
  • @cubejs-backend/schema-compiler: check segments when matching pre-aggregations (#3494) (9357484)
  • @cubejs-backend/schema-compiler: CubePropContextTranspiler expli… (#3461) (2ae7f1d)
  • @cubejs-backend/schema-compiler: match query with no dimensions … (#3472) (2a5dd4c)

Features

  • docker: Use Node 12.22.6 (9de777c)

0.28.39 (2021-09-22)

Bug Fixes

  • @cubejs-client/vue: catch dryRun errors on query-builder mount (#3450) (189491c)
  • cubestore: fix Docker Hub repository name (14cd0c3)
  • cubestore: fix string-to-timestamp conversion (654e81d)
  • cubestore: invalid data after compaction of binary columns (064a9f4)
  • postgres-driver: Unable to detect type for field "@parser" (#3475) (3e70d47)

0.28.38 (2021-09-20)

Bug Fixes

  • @cubejs-backend/query-orchestrator: rollup only mode error message update (c9c5ac0)
  • @cubejs-backend/schema-compiler: CubeValidator human readable error messages (#3425) (22db0a6)
  • cubestore: improve diagnostics on invalid configurations (95f3810)
  • playground: member visibility filter (958fad1)

Features

  • playground: time zone for cron expressions (#3441) (b27f509)

0.28.37 (2021-09-17)

Bug Fixes

  • docs: formulas rendering in MDX (#3423) (3f51afb)
  • postgres-driver: Use correct encoding for POSTGRES_HLL (#3429) (0b54996)
  • query-orchestrator: Wrong passing data source for partition range loader, debug API (#3426) (dfaba5c)
  • website: side menu uniq id (#3427) (60f636e)

Features

0.28.36 (2021-09-14)

Bug Fixes

Features

  • @cubejs-client/react: useCubeMeta hook (#3050) (e86b3fa)
  • cubestore: support reading of postgres-hll sketches (72c38ba)
  • postgres-driver: Export HLL in base64 encoding + HLL_POSTGRES (for cubestore) (f2b6d41)

0.28.35 (2021-09-13)

Bug Fixes

  • @cubejs-backend/snowflake-driver: ReferenceError host is not defined (#3417) (bf61aa3), closes #2923
  • cubejs-client-core: keep order of elements within tableColumns (#3368) (b9a0f47)
  • docs: feedback block empty state (af37065)
  • gateway: hidden members filtering (#3384) (43ac8c3)

0.28.34 (2021-09-13)

Features

  • bigquery-driver: Use INFORMATION_SCHEMA.COLUMNS for introspection (ef22c6c)
  • docs: feedback block (#3400) (688e74d)

0.28.33 (2021-09-11)

Bug Fixes

  • updateWindow validation isn't consistent with refreshKey interval parsing -- allow s at the end of time interval (#3403) (57559e7)
  • Handle "rollup only" mode for pre-aggregation preview data query, Debug API (#3402) (f45626a)
  • docs: h4 headers extra id params (#3399) (0bc5f44)
  • helm-charts: Fix live/ready probe path and expose options (#3390) (97e2d47)

Features

  • Add ability to pass through generic-pool options (#3364) Thanks to @TRManderson! (582a3e8), closes #3340

0.28.32 (2021-09-06)

Bug Fixes

  • cubestore: 'unsorted data in merge' (f4fad69)
  • cubestore: do not log AWS credentials, close #3366 (9aae6e5)
  • helm-charts: Add global.apiSecretFromSecret value and fix worker deployment naming (#3346) (425b0a7)
  • HLL Rolling window query fails (#3380) (581a52a)

Features

  • playground: rollup designer member search (#3374) (7f6a877)

0.28.31 (2021-09-02)

Bug Fixes

  • cubestore: fix crash on 'unexpected accumulator state List([NULL])' (cbc0d52)
  • playground: unsupported regex in safari (308cc10)

0.28.30 (2021-09-01)

Bug Fixes

  • playground: sql formatting (081b725)
  • playground: warn when a query can't be rolled up (be576ba)

0.28.29 (2021-08-31)

Bug Fixes

Features

  • Mixed rolling window and regular measure queries from rollup support (#3326) (3147e33)
  • Support multi-value filtering on same column through FILTER_PARAMS (#2854) Thanks to @omab! (efc5745)
  • docs: MDX components for recipes (#3178) (69ac9e0)
  • helm-charts: Update to version v0.28.28 (#3342) (c33473c)
  • playground: support refresh key cron expression (#3332) (8def69c)
  • add cubestore helm chart (50fe798)

0.28.28 (2021-08-26)

Bug Fixes

  • cubestore: 'unsorted data' assertion with high-precision timestamps (58a8cb4)
  • playground: bar chart overlap (85cebc2)
  • playground: reset state on query change (#3321) (9c0d4fe)
  • server-core: Wrapped ContinueWaitError for expandPartitionsInPreAggregations, refresh scheduler (#3325) (f37f977)

Features

  • cubestore: readiness and liveness probes (888b0f1)

0.28.27 (2021-08-25)

Note: Version bump only for package cubejs

0.28.26 (2021-08-24)

Bug Fixes

  • cubestore: "Unsupported Encoding DELTA_BYTE_ARRAY" (29fcd40)

Features

  • cubestore: SQL extension for rolling window queries (88a91e7)

0.28.25 (2021-08-20)

Bug Fixes

  • @cubejs-client/core: prevent redundant auth updates (#3288) (5ebf211)
  • cubestore: do not keep zombie child processes (bfe3483)

Features

  • @cubejs-backend/dremio-driver: support quarter granularity (b193b04)
  • @cubejs-backend/mysql-driver: Support quarter granularity (#3289) (6922e5d)
  • @cubejs-client/playground: support quarter granularity (b93972a)
  • athena-driver: Allow to configure workGroup (#3254) (a300038)

0.28.24 (2021-08-19)

Bug Fixes

  • @cubejs-client/playground: gaps in Safari 13 (2336a94)
  • server-core: Recreate agent transport after rejected WS connection, on retries (#3280) (48c4e88)

Features

  • Added Quarter to the timeDimensions of (3f62b2c)
  • Support quarter granularity (4ad1356)
  • oracle-driver: Allow to specify port via env variable, fix #3210 (#3274) (95230c9)

0.28.23 (2021-08-18)

Bug Fixes

  • @cubejs-client/playground: use title for vue charts (#3273) (b4761e1)

0.28.22 (2021-08-17)

Features

  • @cubejs-client/playground: rollup designer settings (#3261) (67aa26e)
  • cubejs-api-gateway: Addition of next keyword for relative date ranges (#3234) Thanks to @JoshMentzer! (f05922a), closes #2866

0.28.21 (2021-08-16)

Bug Fixes

  • Pre-aggregations should have default refreshKey of every 1 hour if it doesn't set for Cube (#3259) (bc472aa)
  • @cubejs-client/playground: display segments in the Rollup Designer (73d6778)

0.28.20 (2021-08-15)

Bug Fixes

  • druid-driver: Support contains (LIKE), fix #3109 (#3121) (9340a4c)
  • redshift-driver: Dont load user defined types (bd25e7d)
  • server-core: Skip expand partitions for unused pre-aggregations (#3255) (044ba8e)

0.28.19 (2021-08-13)

Bug Fixes

  • cubestore: add equality comparison between bool and int, fix #3154 (b3dc224)

0.28.18 (2021-08-12)

Bug Fixes

  • @cubejs-client/playground: query param change on tab change (#3240) (128711a)
  • cubestore: update datafusion to a new version (ee80b3a)

Features

  • postgres-driver: Load ud-types from pg_types for type detection (b88d30c)

0.28.17 (2021-08-11)

Bug Fixes

  • @cubejs-client/core: client hangs when loading big responses (node) (#3216) (33a16f9)

0.28.16 (2021-08-10)

Note: Version bump only for package cubejs

0.28.15 (2021-08-06)

Bug Fixes

  • @cubejs-client/core: do not filter out time dimensions (#3201) (0300093)
  • athena-driver: Typings for driver (wrong import) (fe6d429)
  • docs: change invalid api url (#3205) (0c4aded)
  • examples: change api url (96d5c04)

Features

  • athena-driver: Use getWorkGroup instead of SELECT 1 for testConnection (a99a6e4)

0.28.14 (2021-08-05)

Bug Fixes

  • @cubejs-client/playground: live preview styles (#3191) (862ee27)
  • cubestore: proper support for nulls in group by (922138d)
  • docs: change top banner api url & catch network error (0d600e5)
  • docs: fix broken image link (5179071)
  • examples: change invalid api url (#3194) (d792631)

0.28.13 (2021-08-04)

Bug Fixes

  • Support rolling countDistinctApprox rollups (#3185) (e731992)
  • cubestore: improve errors for env var parse failures (dbedd4e)
  • Load build range query only on refresh key changes (#3184) (40c6ee0)

Reverts

  • Revert "misc: rollup dependencies fix" (c08f93c)

0.28.12 (2021-07-31)

Bug Fixes

  • bigquery-driver: Ignore dataSets with wrong permissions (6933807)

0.28.11 (2021-07-31)

Bug Fixes

  • docs: banner time range (6eddf4a)
  • Pre-aggregation table is not found for after it was successfully created in Refresh Worker (334af1c)

Reverts

  • Revert "chore: Do not test dev images" (712b82a)

0.28.10 (2021-07-30)

Bug Fixes

  • cubestore: date_add and date_sub on columnar data (418c017)

Features

0.28.9 (2021-07-29)

Bug Fixes

  • Optimize timestamp formatting and table names loading for large partition range serving (#3166) (e1f8dc5)
  • @cubejs-client/core: data blending without date range (#3161) (cc7c140)
  • examples: change invalid token (dba8ae5)
  • query-orchestrator: Improved manual cancellation for preaggregation request from queue, Debug API (#3156) (11284ce)

Features

0.28.8 (2021-07-25)

Bug Fixes

0.28.7 (2021-07-25)

Bug Fixes

  • @cubejs-client/react: QueryBuilder incorrectly deduplicates filters based only on member instead of member+operator (#2948) (#3147) (69d5baf)

Features

  • Remove job from pre-aggregations queue, Debug API (#3148) (2e244db)

0.28.6 (2021-07-22)

Bug Fixes

  • @cubejs-client/playground: week granularity (#3146) (9697a64)
  • api-gateway: Debug API, allow subscribe to pre-aggregations queue events only by playground JWT (#3144) (700080f)

Features

  • @cubejs-client/ngx: async CubejsClient initialization (#2876) (bba3a01)

0.28.5 (2021-07-21)

Bug Fixes

  • @cubejs-backend/server-core: is ready for query processing for AWS (22761b5)
  • @cubejs-client/playground: Rollup Designer can use pre-agg (#3142) (3021132)
  • cubestore: only pick index with exact column order (f873a0c)

0.28.4 (2021-07-20)

Bug Fixes

  • @cubejs-backend/server: ready for query processing check (#3133) (e3bf9e1)
  • @cubejs-client/playground: white strip at the bottom (2eb972d)

Features

  • @cubejs-client/playground: rollup designer v2 updates (#3124) (e69b79c)
  • athena-driver: Use AWS-SDK v3 (modular) (f14b7c1)

0.28.3 (2021-07-20)

Bug Fixes

  • cubestore: Installer (bad path) (fe3458f)
  • query-orchestrator: Wrong detection for 0 (zero integer) (#3126) (39a6b1c)

0.28.2 (2021-07-20)

Bug Fixes

  • Use experimental flag for pre-aggregations queue events bus, debug API (#3130) (4f141d7)
  • cubestore: allow to specify join columns in any order, fix #2987 (b59aaab)
  • snowflake-driver: Restart connection if it's not up (dab86db)
  • Close Cube Store process on process exit (#3082) (f22f71a)

Features

  • Support every for refreshKey with SQL (63cd8f4)

0.28.1 (2021-07-19)

Features

  • Subscribe to pre-aggregations queue events, debug API (#3116) (9f0e52e)

0.28.0 (2021-07-17)

Bug Fixes

  • @cubejs-backend/server-core: update Production Checklist URL (244f7a2)

Features

  • Move partition range evaluation from Schema Compiler to Query Orchestrator to allow unbounded queries on partitioned pre-aggregations (8ea654e)

0.27.53 (2021-07-13)

Bug Fixes

  • @cubejs-client/playground: Rollup Designer time dimension granularity (c4a19bd)

Features

  • @cubejs-client/playground: save pre-aggregations from the Rollup Designer (#3096) (866f949)

0.27.52 (2021-07-13)

Bug Fixes

  • cubestore: crash on count(distinct ...) (516924d)
  • cubestore-driver: Map UUID to VARCHAR(64) (#3101) (f87e60e)

0.27.51 (2021-07-13)

Bug Fixes

  • Use orphaned timeout from query body, pre-aggregations queue, debug API (#3088) (83e0a0a)
  • @cubejs-client/core: incorrect types for logical and/or in query filters (#3083) (d7014a2)

Features

  • Manual build pre-aggregations, getter for queue state, debug API (#3080) (692372e)

0.27.50 (2021-07-12)

Bug Fixes

  • @cubejs-client/playground: docs links (7c06822)
  • cubestore-driver: Use correct syntax for Intervals (53392d7)

Features

  • cubestore: Introduce support for DATE_ADD (#3085) (071d7b4)

0.27.49 (2021-07-08)

Bug Fixes

  • @cubejs-client/playground: push only the query param on tab change (a08153b)

Features

  • Execute refreshKeys in externalDb (only for every) (#3061) (75167a0)

0.27.48 (2021-07-08)

Bug Fixes

  • @cubejs-client/core: Long Query 413 URL too large (#3072) (67de4bc)
  • @cubejs-client/core: week granularity (#3076) (80812ea)
  • @cubejs-client/playground: new tab opening, tabs refactoring, limit (#3071) (9eb0950)
  • cubestore: fix panic 'Unexpected accumulator state List([NULL])' (cfe8647)

Performance Improvements

  • @cubejs-client/core: speed up the pivot implementaion (#3075) (d6d7a85)

0.27.47 (2021-07-06)

Bug Fixes

  • @cubejs-client/playground: security context update (#3056) (2a879e2)
  • @cubejs-client/playground: wrong redirect to schema page (#3064) (2c6f9e8)
  • postgres-driver: Catch error in streaming (f73b648)
  • postgres-driver: Convert Date column to UTC date (d1d0944)
  • postgres-driver: Map numeric to decimal (22b3536)
  • postgres-driver: Support mapping for bpchar (46a3860)

Features

  • @cubejs-client/playground: rollup designer v2 (#3018) (07e2427)
  • cubestore: add some configuration variables (23e26fa)

0.27.46 (2021-07-01)

Bug Fixes

  • query-orchestrator: Incorrect passing params for fetch preview pre-aggregation data, debug API (#3039) (bedc064)
  • CUBEJS_REFRESH_WORKER shouldn't enabled externalRefresh (7b2e9ee)
  • Priorities for REFRESH_WORKER/SCHEDULED_REFRESH/SCHEDULED_REFRESH_TIMER (176cdfd)

Features

  • Rename refreshRangeStart/End to buildRangeStart/End (232d117)

0.27.45 (2021-06-30)

Bug Fixes

  • @cubejs-client/playground: filter reset (91f357d)
  • Unexpected refresh value for refreshKey (earlier then expected) (#3031) (55f75ac)

Features

  • Introduce CUBEJS_REFRESH_WORKER and CUBEJS_ROLLUP_ONLY (68cb358)

0.27.44 (2021-06-29)

Bug Fixes

  • clickhouse-driver: Correct support for Decimal (#3011) (e61a775)
  • cubestore: do not store error results in cache (636ccec)
  • cubestore: merge operation on unsorted data (7b6c67d)

0.27.43 (2021-06-25)

Bug Fixes

  • mysql-driver: Empty tables with streaming (da90b36)

0.27.42 (2021-06-25)

Bug Fixes

  • mysql/mongobi: Map newdecimal to decimal (641e888)

0.27.41 (2021-06-25)

Bug Fixes

  • Use CUBEJS_REDIS_URL in serverless templates, fix #2970 (ca5d89e)
  • Use timeDimension without s on the end (#2997) (5313836)

Features

  • Allow to specify cacheAndQueueDriver (CUBEJS_CACHE_AND_QUEUE_DRIVER) in cube.js (#2859) (7115828)
  • Fetch pre-aggregation data preview by partition, debug api (#2951) (4207f5d)
  • cubestore: debug data dumps for select queries (b08617f)

0.27.40 (2021-06-23)

Bug Fixes

  • cubestore: refresh AWS credentials on timer, fix #2946 (23dee35)

Features

  • cubestore: add now() and unix_timestamp() scalar function (b40f3a8)
  • mssql-driver: Use DATETIME2 for timeStampCast (ed13768)

0.27.39 (2021-06-22)

Bug Fixes

  • @cubejs-client/playground: invalid token (#2991) (5a8db99)
  • Skip empty pre-aggregations sql, debug API (#2989) (6629ca1)

0.27.38 (2021-06-22)

Bug Fixes

  • query-orchestrator: Re-use pre-aggregations cache loader for debug API (#2981) (2a5f26e)

0.27.37 (2021-06-21)

Bug Fixes

  • cubestore: fix 'Failed to write RLE run' (845094b)
  • mssql-driver: Support case sensitive collation (fd40d4a)
  • mssql-driver: Use DATETIME2 type in dateTimeCast (#2962) (c8563ab)

Features

  • Remove support for view (dead code) (de41702)
  • Support schema without references postfix (22388cc)

0.27.36 (2021-06-21)

Bug Fixes

  • @cubejs-backend/server-core: ready for query processing flag (#2984) (8894a50)
  • api-gateway: debug info, handle authInfo for Meta API (#2979) (d9c4ef3)
  • elasticsearch-driver: Make readOnly (15ec569)

0.27.35 (2021-06-18)

Bug Fixes

  • @cubejs-client/vue: support all pivotConfig props (#2964) (8c13b2b)
  • cubestore: do not spam logs when no statsd server is listening (44b8cad)
  • cubestore: fix assertion failure (unsorted inputs to merge sort) (534da14)
  • cubestore: send at most one request per worker (17e504a)

Features

  • @cubejs-client/playground: cli connection wizard (#2969) (77652d7)
  • @cubejs-client/vue: support logical operator filters (#2950). Thanks to @piktur! (1313dad)
  • mongobi-driver: Ingest types from driver (c630997)
  • mongobi-driver: Migrate to TypeScript (8ca7811)
  • mongobi-driver: Support streaming (059368e)
  • MySQL/PostgreSQL - make readOnly by default (86eef1b)
  • mysql-driver: Ingest types from driver (89a48a8)

0.27.34 (2021-06-15)

Bug Fixes

Features

  • clickhouse-driver: Migrate to TS & HydrationStream (c9672c0)
  • clickhouse-driver: Support streaming (2df4b10)
  • clickhouse-driver: Support type ingestion from database (dfde312)

0.27.33 (2021-06-15)

Bug Fixes

  • api-gateway: Extend Load Request Success event (#2952) (37a3563)
  • cubestore: fix crash (merge not supported on Float64) (78e6d36)
  • server-core: Finding preAggregation by strict equal, Meta API (#2956) (c044da6)

0.27.32 (2021-06-12)

Features

  • @cubejs-client/playground: internal pre-agg warning (#2943) (039270f)

0.27.31 (2021-06-11)

Bug Fixes

  • Allow multi timezone filter for pre-aggregations Meta API (#2912) (5a873db)
  • bigquery-driver: Encode buffer as base64 for CSV (streaming) (a311a9a)
  • cubejs-api-gateway: Proper end date when current month has less days than previous month (#2824) (0f83356)
  • Create schema directory in DEV_MODE, when server is ready for processing (c7b886c)
  • cubestore: finalize GCP configuration variable names (116ddc5)
  • cubestore: optimize access to table metainformation (e727c8b)
  • cubestore: remove backtraces from error messages (89a2e28)
  • extDbType warning (#2939) (0f014bf)
  • Fetch all partitions, pre-aggregations Meta API (#2944) (b5585fb)
  • Make missing externalDriverFactory error message more specific (b5480f6)

Features

  • @cubejs-client/playground: query tabs, preserve query history (#2915) (d794d9e)
  • cubestore: Bump rocksdb for bindgen -> libloading (compatiblity aaarch64) (a09d399)
  • snowflake-driver: Support UNLOAD to GCS (91691e9)
  • Rename queryTransformer to queryRewrite (with compatibility) (#2934) (458cd9d)
  • Suggest export/unload for large pre-aggregations (detect via streaming) (b20cdbc)
  • Write preAggregations block in schema generation (2c1e150)

0.27.30 (2021-06-04)

Bug Fixes

  • @cubejs-backend/query-orchestrator: enum to generic type (#2906) (1a4f745)
  • @cubejs-client/playground: pre-agg status (#2904) (b18685f)
  • @cubejs-client/react: order reset (#2901) (536819f)
  • snowflake-driver: Unexpected random order for columns in pre-aggregations (a99977a)
  • pass timezone to pre-aggregation description (#2884) (9cca41e)

Features

  • Make scheduledRefresh true by default (preview period) (f3e648c)
  • skipExternalCacheAndQueue for Cube Store (dc6138e)
  • cubestore: combine query results on worker (d76c9fd)
  • Introduce lock for dropOrphanedTables (concurrency bug) (29509fa)
  • large dataset warning (#2848) (92edbe9)
  • cross: Upgrade, use llvm/clang 9 (f046839)
  • cubestore: support the 'coalesce' function, fix #2887 (017fd4b)
  • cubestore: Use NPM's proxy settings in post-installer (0b4daec)

0.27.29 (2021-06-02)

Bug Fixes

  • Pass securityContext to contextSymbols in refresh scheduler (886c276)
  • Resolve refresh key sql for pre-aggregations meta api (#2881) (55383b6)
  • cubestore: clean up metastore if create table fails, fix #2880 (f2d5b1a)
  • cubestore: fix encoding of sparse HLL imported from Snowflake (5ca48f4)
  • elasticsearch-driver: Lock @elastic/elasticsearch to 7.12 for Node.js 10 support (cedf108)

Features

  • cubestore: cubestore-specific env vars for GCS configuration (6760c0e)
  • docker: Install redshift-driver (dc81be5)
  • snowflake-driver: Support HLL (7b57840)

0.27.28 (2021-06-02)

Bug Fixes

  • Pass securityContext to contextSymbols in refresh scheduler (886c276)
  • Resolve refresh key sql for pre-aggregations meta api (#2881) (55383b6)
  • cubestore: clean up metastore if create table fails, fix #2880 (f2d5b1a)
  • cubestore: fix encoding of sparse HLL imported from Snowflake (5ca48f4)
  • elasticsearch-driver: Lock @elastic/elasticsearch to 7.12 for Node.js 10 support (cedf108)

Features

  • cubestore: cubestore-specific env vars for GCS configuration (6760c0e)
  • docker: Install redshift-driver (dc81be5)
  • snowflake-driver: Support HLL (7b57840)

0.27.27 (2021-06-01)

Bug Fixes

  • cubestore: panic on compaction of decimals #2868 (a4eef83)
  • Filter empty contexts for pre-aggregation Meta API (#2873) (cec4dff)

0.27.26 (2021-06-01)

Bug Fixes

  • redshift-driver: publishConfig - public (d72baf4)

0.27.25 (2021-06-01)

Bug Fixes

  • @cubejs-backend/mssql-driver: Add column type mappings for MSSQL external pre-aggregations (#2846) (7c1ef6d)
  • cubestore: allow decimal and float type in index keys (32d2f69)
  • cubestore: Uncompress files with .gz (5f8062a)
  • mysql/aurora-mysql: Unexpected index creation in loop (#2828) (456aae7)

Features

  • Introduce Redshift driver (based on postgres-driver) (f999699)
  • cubestore: Support import of Snowflake HLL (61324e0)
  • redshift-driver: Support UNLOAD (direct export to S3) (d741027)
  • Pre-aggregations Meta API, part 2 (#2804) (84b6e70)
  • time filter operators (#2851) (5054249)

0.27.24 (2021-05-29)

Bug Fixes

  • @cubejs-client/core: decompose type (#2849) (60f2596)
  • cubestore: Invalid cross-device link (os error 18) during streaming CREATE TABLE (942f6d0)

0.27.23 (2021-05-27)

Bug Fixes

  • bigquery-driver: Broken package (8b8c10b)
  • cubestore: do not resolve aliases in having clause (caca792)

0.27.22 (2021-05-27)

Bug Fixes

  • postgresql-driver: Map bool/float4/float8 to generic type, use bigint for int8 (ddc1739)

Features

  • @cubejs-client/vue3: vue 3 support (#2827) (6ac2c8c)
  • bigquery-driver: Migrate to TypeScript (7c5b254)
  • bigquery-driver: Support CUBEJS_DB_EXPORT_BUCKET (400c163)
  • bigquery-driver: Support streaming (8ffeba2)

0.27.21 (2021-05-26)

Bug Fixes

  • Drop NodeJs namespace from @types/styled-components (343fa8c)
  • Pre-aggregation warmup stucks if refresh range fetch takes too long (fe9afd5)

0.27.20 (2021-05-25)

Bug Fixes

  • @cubejs-client/playground: reorder reset (#2810) (2d22683)

Features

  • @cubejs-client/playground: sticky search bar, search improvements (#2815) (343c52b)
  • cubestore: support aliases for right side of joins (42a7d41)
  • cubestore: support SQL for rolling window queries (03ff70a)

0.27.19 (2021-05-24)

Bug Fixes

  • Dont publish source files for snowflake/postgresql (cd2c90f)
  • snowflake-driver: Handle UNLOAD for empty tables (f5f69ff)

Features

  • Make rollup default for preAggregation.type (4875fa1)
  • Pre-aggregations Meta API, part 1 (#2801) (2245a77)
  • @cubejs-client/playground: pre-agg helper (#2807) (44f09c3)

0.27.18 (2021-05-22)

Bug Fixes

  • @cubejs-backend/postgres-driver: Cannot find module './dist/src' (d4cd657)

0.27.17 (2021-05-22)

Bug Fixes

  • CUBEJS_JWT_KEY - allow string (1bd9832)
  • Pre-aggregation table is not found if warming up same pre-aggregation with a new index (b980744)
  • cubestore: fix #2748, a crash in partition filter (f6f0992)
  • cubestore: improve partition filter accuracy (ef93d26)

Features

  • @cubejs-client/core: exporting CubejsApi class (#2773) (03cfaff)
  • mysql-driver: Support streaming (d694c91)
  • postgres-driver: Introduce streaming (7685ffd)
  • postgres-driver: Migrate driver to TypeScript (38f4adb)
  • snowflake-driver: Introduce streaming (4119a79)
  • snowflake-driver: Migrate to TypeScript (c63a0ae)
  • snowflake-driver: Support UNLOAD to S3 (d984f97)
  • Dont introspect schema, if driver can detect types (3467b44)

0.27.16 (2021-05-19)

Bug Fixes

  • Optimize high load Cube Store serve track: do not use Redis while fetching pre-aggregation tables (#2776) (a3bc0b8)

Features

  • @cubejs-client/playground: member search (#2764) (8ba6eed)
  • cubestore: Allow to query tables only when they imported and ready (#2775) (02cf69a)
  • cubestore: update datafusion and sqlparser-rs (a020c07)
  • snowflake-driver: Support 'key-pair' authentication (#2724) (4dc55b4)

0.27.15 (2021-05-18)

Bug Fixes

  • upgrade @amcharts/amcharts4 from 4.10.10 to 4.10.17 (#2707) (56c7f5a)
  • upgrade @cubejs-client/core from 0.19.56 to 0.26.94 (#2706) (93dd7d9)
  • upgrade react-dropzone from 11.2.4 to 11.3.2 (#2708) (a16a83b)
  • @cubejs-client/core: compareDateRange pivot fix (#2752) (653ad84)
  • @cubejs-client/core: Meta types fixes (#2746) (cd17755)
  • @cubejs-client/playground: display error message on all tabs (#2741) (0b9b597)

Features

  • @cubejs-client/playground: member grouping (#2736) (7659438)
  • Enable external pre-aggregations by default for new users (22de035)
  • Replace diagnostic error for devPackages to warning (b65c1f5)
  • Start Cube Store on startup in devMode for official images (5e216a8)

0.27.14 (2021-05-13)

Bug Fixes

  • @cubejs-client/playground: stop processing query once it has changed (#2731) (3aed740)
  • schema-compiler: Time-series query with minute/second granularity (c4a6044)
  • Add missing validators for configuration values (6ac6350)

Features

  • @cubejs-client/core: member sorting (#2733) (fae3b29)
  • Compile Cube.ts configuration in-memory (3490d1f)

0.27.13 (2021-05-13)

Bug Fixes

Features

  • cubestore: Use MSVC build for Windows (d472bcd)

0.27.12 (2021-05-13)

Bug Fixes

  • Out of memory on intensive pre-aggregation warmup: use intervals instead of promises cycles (51149cb)

0.27.11 (2021-05-12)

Bug Fixes

  • clickhouse-driver: Support ungrouped query, fix #2717 (#2719) (82efc98)
  • Compress archive with Cube Store for Windows (f09589b)
  • cubestore: Built-in in archive OpenSSL for Windows (msvc) (dbdeb6d)
  • cubestore: do not stop startup warmup on errors (90350a3)

Features

  • cubestore: import separate CSV files in parallel (ca896b3)
  • Strict validatation for configuration (eda24b8)

0.27.10 (2021-05-11)

Bug Fixes

Features

  • Move External Cache And Queue serving to Cube Store (#2702) (37e4268)

0.27.9 (2021-05-11)

Bug Fixes

  • @cubejs-backend/schema-compiler: titleize fix (#2695) (d997f49)
  • mssql-driver: Cannot read property 'readOnly' of undefined, fix #2659 (d813594)

Features

  • cubestore: Support x86_64-pc-windows-msvc (407f1bd)

0.27.8 (2021-05-06)

Bug Fixes

  • @cubejs-client/playground: prevent the browser to freeze on large SQL highlighting (3285008)

0.27.7 (2021-05-04)

Bug Fixes

  • ECONNREFUSED 127.0.0.1:3030 on health checks in production mode without Cube Store (7ccfbe1)
  • TypeError: moment is not a function (39662e4)

0.27.6 (2021-05-03)

Bug Fixes

  • @cubejs-client/playground: display server error message (#2648) (c4d8936)

0.27.5 (2021-05-03)

Bug Fixes

  • cubestore: create metastore-current atomically, do not send content-length to GCS (a2a68a0)
  • cubestore: support OFFSET clause (30b7b68)
  • query-orchestrator: tableColumnTypes - compatibility for MySQL 8 (a886876)
  • cubejs-dev-server (8a16b52)

Features

  • Use Cube Store as default EXTERNAL_DB, prefix variables (30d52c4)
  • @cubejs-client/playground: pre-aggregation status (#2641) (f48f63f)

0.27.4 (2021-04-29)

Bug Fixes

  • @cubejs-client/playground: cache pane crash (#2635) (405b80b)
  • @cubejs-client/playground: pass field, win host (e3144e9)
  • cubestore: make top-k scan less batches (486ee32)
  • cubestore-driver: Ping connection only when it's OPEN (d80e157)
  • Show warning for deprecated variables only once (fecbda4)

0.27.3 (2021-04-29)

Bug Fixes

0.27.2 (2021-04-28)

Bug Fixes

  • Disable Scheduling when querying is not ready (before connection Wizard) (b518ccd)
  • Error: ENOENT: no such file or directory, scandir '/cube/conf/schema' (dc96084)
  • Move Prettier & Jest to dev dep (reduce size) (da59584)
  • @cubejs-server/core: config file check (1c16af1)

0.27.1 (2021-04-27)

Bug Fixes

  • cubestore: simplify trim_alloc handling (aa8e721)
  • Deprecate CUBEJSREDIS_PASSWORD, similar to all REDIS variables (#2604) (ee54aeb), closes #ch484

0.27.0 (2021-04-26)

Features

  • Add CUBEJS_ prefix for REDIS_URL/REDIS_TLS (#2312) (b5e7099)

0.26.104 (2021-04-26)

Bug Fixes

  • Original SQL table is not found when useOriginalSqlPreAggregations used together with CUBE.sql() reference (#2603) (5fd8e42)

0.26.103 (2021-04-24)

Bug Fixes

  • cubestore: deploy datafusion fix, add test for failing top-k (59bc127)
  • concurrency lock driver instance & release on error (dd60f5d)
  • Typo JWK_KEY -> JWT_KEY (#2516) (7bdb576), closes #ch449
  • cubestore: fix error on binary results of CASE (72634e9)
  • docker: Dev images & broken playground after local build (3d7a96d)
  • mssql-driver: multi-part identifier columns.data_type (487e8b2)
  • snowflake: pre-aggregations & add support for number/timestamp_ntz -> generic type (d66bac8)

Features

0.26.102 (2021-04-22)

Bug Fixes

  • @cubejs-client/core: add type definition to the categories method (#2585) (4112b2d)
  • cubestore: download data files on worker startup (0a6caba)
  • cubestore: download only relevant partitions on workers (7adfd62)

Features

  • @cubejs-playground: localhost connection tipbox (#2587) (bab3265)
  • server: Handle Ctrl + C (SIGINT) in Docker (644dc46)

0.26.101 (2021-04-20)

Bug Fixes

  • QueryQueue - broken queuing on any error (TimeoutError: ResourceRequest timed out) (ebe2c71)

0.26.100 (2021-04-20)

Bug Fixes

  • Make sure pre-aggregation warmup has a priority over Refresh Scheduler to avoid endless loop refreshes (9df3506)

Features

  • api-gateway: Allow to throw CubejsHandlerError in checkAuth (559172a)

0.26.99 (2021-04-16)

Bug Fixes

  • Continuous refresh during Scheduled Refresh in case of both external and internal pre-aggregations are defined for the same data source (#2566) (dcd2894)

Features

  • dreamio-driver: Improve polling, similar to BigQuery driver (5a4783a)
  • dreamio-driver: Up code quality (9e1aafe)

0.26.98 (2021-04-15)

Bug Fixes

  • @cubejs-client/playground: live preview check (5b4b5b8)
  • cubestore: allow to disable top-k with env var (9c2838a), closes #2559
  • cubestore: re-enable streaming for top-k (c21b5f7)
  • docker: Build playground for dev images (42a75db)
  • dreamio-driver: Allow casting boolean/number/measure (#2560) (4ff93fe)
  • dreamio-driver: Remove unexpected console.log (#2561) (a3beee7)

Features

  • ws-transport: Introduce close() method (47394c1)

0.26.97 (2021-04-14)

Note: Version bump only for package cubejs

0.26.96 (2021-04-14)

Bug Fixes

  • @cubejs-client/playground: basePath, vue dashboard selection (#2555) (5723786)

0.26.95 (2021-04-13)

Bug Fixes

  • playground: Test connection in Connection Wizard (715fa1c)
  • post-install compatibility with yarn (4641e81)

0.26.94 (2021-04-13)

Bug Fixes

  • @cubejs-client/core: WebSocket response check (7af1b45)

0.26.93 (2021-04-12)

Bug Fixes

  • @cubejs-client/vue: make query reactive (#2539) (9bce6ba)
  • docker: Lock yarn, workaround for PATH & post-installers (907befa)

0.26.92 (2021-04-12)

Bug Fixes

  • cubestore: temporarily disable streaming in top-k (ff629d5)
  • Do not refresh cube keys during pre-aggregations warmup (f331d53)
  • post installers compatiblity with Windows #2520 (7e9bd7c)

0.26.91 (2021-04-11)

Bug Fixes

  • @cubejs-backend/cubestore-driver: Import stream stuck if it's big: handle bigger uploads using temp files (08155bc)
  • @cubejs-backend/mysql-driver: Add support for more int type definitions (64f9cb7)

0.26.90 (2021-04-11)

Bug Fixes

  • @cubejs-backend/cubestore-driver: Import stream stuck if it's big (2a41020)
  • Manage stream connection release by orchestrator instead of driver (adf059e)
  • @cubejs-client/core: display request status code (b6108c9)
  • @cubejs-client/vue: error test fix (9a97e7b)
  • cubestore: Empty files on temp upload (893e467)

0.26.89 (2021-04-10)

Bug Fixes

  • cubestore: File not found for S3 during uploads (a1b0087)
  • cubestore: Return http errors as JSON (fb52f7d)

0.26.88 (2021-04-10)

Features

0.26.87 (2021-04-10)

Bug Fixes

  • cubestore: Something wrong with downloading Cube Store before running it. (208dd31)

0.26.86 (2021-04-09)

Bug Fixes

  • cubestore: installer - compability with windows. fix #2520 (e05db81)

0.26.85 (2021-04-09)

Bug Fixes

  • @cubejs-client/playground: token refresh, Vue apiUrl (#2523) (c1085f2)

0.26.84 (2021-04-09)

Bug Fixes

  • @cubejs-client/playground: make live preview optional for PlaygroundQueryBuilder (#2513) (db7a7f5)

Features

  • Make java deps as optional (to allow failture in development) (74966cd)

0.26.83 (2021-04-07)

Bug Fixes

  • server: Compatibility with CLI to run external commands (#2510) (44b51dd)

0.26.82 (2021-04-07)

Bug Fixes

  • cli: @ dependency not found (3c78dd3)

Features

  • @cubejs-client/playground: run query button, disable query auto triggering (#2476) (92a5d45)

0.26.81 (2021-04-07)

Features

  • Dev mode and live preview (#2440) (1a7cde8)
  • jdbc-driver: Initial support for TS (179dcf3)
  • Introduce databricks-jdbc-driver (bb0b31f)

0.26.80 (2021-04-07)

Bug Fixes

  • TypeError: Cannot read property 'preAggregation' of undefined on empty pre-aggregations (91ba03e), closes #2505

0.26.79 (2021-04-06)

Bug Fixes

  • cubestore: reduce serialization time for record batches (cea5fd2)
  • sqlAlias on non partitioned rollups (0675925)
  • cubestore: stream results for topk (d2c7485)

Features

  • Check Node.js version in dev-server/server (d20e9c2)
  • Make apiSecret optional, when JWK_URL is specified (1a94590)

0.26.78 (2021-04-05)

Bug Fixes

  • @cubejs-backend/snowflake-driver: Cube.js doesn't see pre-aggregations (c9279bf), closes #2487
  • athena-driver: Wrong escape, Use " for column names, ` for table/schema (62d8fcf)

0.26.77 (2021-04-04)

Bug Fixes

  • Reduce Redis traffic for Refresh Scheduler by introducing single pre-aggregations load cache for a whole refresh cycle (bdb69d5)

0.26.76 (2021-04-03)

Bug Fixes

  • Reduce Redis traffic while querying immutable pre-aggregation partitions by introducing LRU in memory cache for refresh keys (#2484) (76ea3c1)

0.26.75 (2021-04-02)

Bug Fixes

  • cli: Use binary instead of path in templates (Windows issue) (#2483) (5ec7af7)

0.26.74 (2021-04-01)

Features

  • cubestore: top-k query planning and execution (#2464) (3607a3a)

0.26.73 (2021-04-01)

Bug Fixes

  • Pre-aggregation warmup should wait for partitions to build (#2474) (3f05d94)

Features

  • Introduce ITransportResponse for HttpTransport/WSTransport, fix #2439 (756bcb8)

0.26.72 (2021-03-29)

Bug Fixes

  • Persist live token (#2451) (2f52cac)
  • athena-driver: Use correct quoteIdentifier, fix #2363 (968b3b7)
  • cubestore: Detect gnu libc without warning (03e01e5)

0.26.71 (2021-03-26)

Bug Fixes

  • cubestore: Remove tracing from logs (10a264c)

Features

  • Allow saving state of a scheduled refresh for warmup operations (#2445) (0c637b8)

0.26.70 (2021-03-26)

Bug Fixes

Features

0.26.69 (2021-03-25)

Bug Fixes

  • @cubejs-client/core: Updated totalRow within ResultSet (#2410) (91e51be)

Features

0.26.68 (2021-03-25)

Bug Fixes

  • cubestore: make get active partitions a read operation (#2416) (a1981f3)

Features

  • @cubejs-client/vue: query load event (6045e8f)
  • Live preview watcher, refactor cube cloud package (#2418) (a311843)

0.26.67 (2021-03-24)

Bug Fixes

  • Make requireCubeStoreDriver private (to make it internal in d.ts) (c0e6fb5)

0.26.66 (2021-03-24)

Bug Fixes

  • cubestore: choose inplace aggregate in more cases (#2402) (9ab6559)
  • this.logger is not a function. fix #2431 (d715dc0)

Features

0.26.65 (2021-03-24)

Bug Fixes

  • Warning/skip Cube Store on unsupported platforms (c187e11)
  • cubestore: use less read and write locks during planning (#2420) (2d5d963)
  • Allow using sub query dimensions in join conditions (#2419) (496a075)

0.26.64 (2021-03-22)

Bug Fixes

  • cubestore-driver: Download x86-darwin for arm64-apple (for Rosetta2) (562ea1a)
  • cubestore-driver: Drop limit for table names (9e1317c)

0.26.63 (2021-03-22)

Bug Fixes

  • @cubejs-backend/dremio-driver: Fix ILIKE operator (#2397) Thanks @rongfengliang! (d9e3c8d)
  • @cubejs-client/ngx: wrong type reference (#2407) (d6c4183)
  • @cubejs-client/react: stateChangeHeuristics type definition (b983344)
  • cubestore: Http message processing isn't forked (844dab2)
  • cubestore: Introduce meta store lock acquire timeouts to avoid deadlocks (24b87e4)
  • cubestore: Narrow check point lock life time (b8e9003)
  • cubestore: Remove upstream directory when runs locally (d5975f1)

Features

  • cubestore: Make query planning for indices explicit (#2400) (a3e6c5c)
  • mysql-aurora-driver: Support options (a8e76c3)

0.26.62 (2021-03-18)

Features

  • cubejs-cli: Create - ability to select a specific JDBC driver (#1149) (33dc144)

0.26.61 (2021-03-18)

Features

0.26.60 (2021-03-16)

Bug Fixes

  • docker: Drop lerna bootstrap, because we migrated to yarn workspaces (d0e16ef)

Features

  • @cubejs-client/playground: Playground components (#2329) (489dc12)
  • introduce GET /cubejs-system/v1/context (d97858d)
  • druid-driver: Support Basic auth via username/passwd (#2386) (4a89635)

0.26.59 (2021-03-15)

Features

  • introduce @cubejs-backend/testing (c38ce23)

0.26.58 (2021-03-14)

Bug Fixes

  • lock file conflict preventing dashboard generation, always propagate chartType to viz state (#2369) (d372fe9)

0.26.57 (2021-03-14)

Bug Fixes

  • lock file conflict preventing dashboard generation, always propagate chartType to viz state (#2369) (d372fe9)

0.26.56 (2021-03-13)

Bug Fixes

  • Expected one parameter but nothing found (#2362) (ce490d2)

Features

  • cubestore: Tracing support (be5ab9b)

0.26.55 (2021-03-12)

Bug Fixes

  • playground: Cannot read property 'extendMoment' of undefined (42fd694)

Features

  • elasticsearch-driver: Ability to use USERNAME, PASSWORD and SSL_* env variables (13c90cd)
  • elasticsearch-driver: Implement release (2b88ed7)

0.26.54 (2021-03-12)

Bug Fixes

  • @cubejs-client/react: Prevent calling onVizStateChanged twice unless needed (#2351) (3719265)
  • running Angular dashboard in Docker (#2353) (d1e2e9e)
  • cubestore: fix crash on empty sort order, temporarily disable full hash aggregate optimization (#2348) (7dfd51a)

Features

  • Suggest to install cubestore-driver to get external pre-agg layer (2059e57)
  • Suggest to use rollUp & pre-agg for to join across data sources (2cf1a63)

0.26.53 (2021-03-11)

Bug Fixes

  • @cubejs-backend/dremio-driver: Use ILIKE instead of LIKE for contains operator (fb6fa73)
  • cubestore: fix crash on empty results from workers (9efb2a4)
  • cubestore: Malloc trim inside worker processes (9962fa1)
  • cubestore: Node.js 10 support, switched to cli-progress (032a6ab)
  • cubestore: update arrow, fix test merge sort over unions (#2326) (2c02d8f)
  • cubestore: use merge sort exec when aggregations are required (#2330) (9a4603a)

Features

  • cubestore: Support boolean expressions in partition filters (#2322) (6fa38d3)

0.26.52 (2021-03-07)

Bug Fixes

  • @cubejs-backend/cubestore-driver: Error: connect ECONNREFUSED 127.0.0.1:3030 (74f4683)

0.26.51 (2021-03-07)

Bug Fixes

  • @cubejs-backend/cubstore-driver: Missing files in package.json (487f4cc)

0.26.50 (2021-03-07)

Bug Fixes

  • cubestore: Group by without aggregates returns empty results (82902dd)

Features

0.26.49 (2021-03-05)

Bug Fixes

  • @cubejs-client/playground: error fix (7ac72e3)
  • @cubejs-client/react: QueryRenderer TS type fix (7c002c9)
  • @cubejs-client/react: type fixes (#2289) (df2b24c)
  • cubestore: fully execute a single-node query on a worker (#2288) (00156d0)
  • cubestore: Merge aggregate performance improvements (a0dbb1a)
  • cubestore: update arrow, provide hints for default index of CubeTableExec (#2304) (e27b8a4)
  • server: overide env variables only on reload, fix #2267 (e1ee222)

Features

  • @cubejs-client/react: Adding queryError to QueryBuilder for showing dryRun errors (#2262) (61bac0b)
  • cubestore: Merge aggregate (#2297) (31ebbbc)
  • elasticsearch-driver: Introduce typings (c0e519d)
  • elasticsearch-driver: Support for elastic.co & improve docs (#2240) (d8557f6)
  • Enable SQL cache by default (4b00a4f)

0.26.48 (2021-03-04)

Bug Fixes

  • cubestore: publish issue (5bd1c3b)

0.26.47 (2021-03-04)

Bug Fixes

  • @cubejs-client/playground: missing chart renderers (a76b39f)
  • cubestore: post-install - compatbility with non bash env (4b0c9ef)

0.26.46 (2021-03-04)

Bug Fixes

  • @cubejs-client/playground: React and Angular code generation (#2285) (4313bc8)

0.26.45 (2021-03-04)

Bug Fixes

Features

  • Fetch JWK in background only (954ce30)
  • cubestore: Extract transport to separate service (#2236) (921786b)

0.26.44 (2021-03-02)

Bug Fixes

  • schema-compiler: @types/ramda is a dev dependecy, dont ship it (0a87d11)

Features

  • examples: add simple example project for asyncModule() (d6bbab7)

0.26.43 (2021-03-02)

Bug Fixes

  • @cubejs-client/playground: loading state colors (#2252) (c7d1da4)
  • cubestore: post-install - right path (fc77c8f)

Features

  • cli: Install Cube Store driver (6153add)

0.26.42 (2021-03-02)

Bug Fixes

  • cubestore: allow to prune partitions with unbounded min or max (#2213) (1649c09)
  • cubestore-driver: host must be 127.0.0.1 for CubeStoreDevDriver (435d4d6)

Features

  • cubestore: post-install - improvements (871cadb)

0.26.41 (2021-03-01)

Bug Fixes

  • @cubejs-client/playground: chart library title (0f5884a)
  • @cubejs-client/playground: meta refresh refactoring (#2242) (b3d5085)

Features

  • sqlite-driver: bump sqlite3 from 4.2.0 to 5.0.2 (#2127) (81f64df)
  • improve compression for binaries (356120f)

0.26.40 (2021-03-01)

Bug Fixes

  • cubestore: CubeStoreHandler - startup timeout, delay execution before start (db9a8bd)

Features

  • cubestore: Compress binary for linux-gnu (f0edd1a)
  • docker: built-in cubestore (15a2599)

0.26.39 (2021-02-28)

Bug Fixes

  • cubestore: Malloc trim is broken for docker (#2223) (5702cc4)
  • cubestore: use spawn_blocking on potentially expensive operations (#2219) (a0f92e3)

Features

  • cubestore: Build binary with static linking for OpenSSL (5cd961f)
  • cubestore: Bump OpenSSL to 1.1.1h (a1d091e)
  • cubestore: Web Socket transport (#2227) (8821b9e)
  • Use single instance for Cube Store handler (#2229) (35c140c)

0.26.38 (2021-02-26)

Bug Fixes

  • Optimize compute time during pre-aggregations load checks for queries with many partitions (b9b590b)
  • cubestore: Reduce too verbose logging on slow queries (1d62a47)

0.26.37 (2021-02-26)

Bug Fixes

  • @cubejs-backend/dremio-driver: Typo in error message (49f0af8)

Features

0.26.36 (2021-02-25)

Bug Fixes

0.26.35 (2021-02-25)

Features

  • Use Cube Store as default external storage for CUBEJS_DEV_MODE (e526676)

0.26.34 (2021-02-25)

Bug Fixes

  • @cubejs-client/playground: loading state (#2206) (9f21f44)
  • @cubejs-client/playground: pre-aggregation loader (6f60988)
  • @cubejs-client/playground: slow query, loading position (#2207) (aa0090a)

Features

  • cubestore: speed up import with faster timestamp parsing (#2203) (18958aa)

0.26.33 (2021-02-24)

Bug Fixes

  • docker: Move back to scretch + build linux (gnu) via cross (4e48acc)

Features

  • cubestore: Wait for processing loops and MySQL password support (#2186) (f3649f5)

0.26.32 (2021-02-24)

Features

  • cubestore: installer - detect musl + support windows (9af0d34)

0.26.31 (2021-02-23)

Features

  • cubestore: Build binary for Linux (Musl) :feelsgood: (594956c)
  • cubestore: Build binary for Windows :neckbeard: (3e64d03)

0.26.30 (2021-02-22)

Features

  • bigquery-driver: Upgrade @google-cloud/bigquery 5.x (dbbd29c)

0.26.29 (2021-02-22)

Bug Fixes

  • cubestore: switch from string to float in table value (#2175) (05dc7d2)

Features

  • cubestore: Ability to control process in Node.js (f45e875)
  • cubestore: installer - extract on fly (290e264)
  • docker: Alpine - initial support for Cube Store (6a48bcd)

0.26.28 (2021-02-21)

Features

  • docker: Upgrade default image to Buster (required for Cube Store) (5908d28)

0.26.27 (2021-02-20)

Bug Fixes

  • cubestore: Check CUBESTORE_SKIP_POST_INSTALL before calling script (fd2cebb)

0.26.26 (2021-02-20)

Bug Fixes

0.26.25 (2021-02-20)

Features

  • bigquery-driver: Support changing location, CUBEJS_DB_BQ_LOCATION env variable (204c73c)

0.26.24 (2021-02-20)

Features

  • cubestore: Improve installer error reporting (76dd651)

0.26.23 (2021-02-20)

Features

  • cubestore: Download binary from GitHub release. (#2167) (9f90d2b)

0.26.22 (2021-02-20)

Features

  • Introduce CUBEJS_AGENT_FRAME_SIZE to tweak agent performance (4550b64)
  • cubestore: Return success for create table only after table has been warmed up (991a538)

0.26.21 (2021-02-19)

Bug Fixes

  • cubestore: Cleanup memory after selects as well (d9fd460)

0.26.20 (2021-02-19)

Bug Fixes

  • cubestore: publish package (60496e5)

0.26.19 (2021-02-19)

Bug Fixes

  • @cubejs-client/core: manage boolean filters for missing members (#2139) (6fad355)
  • @cubejs-client/react: replace dimension with member (#2142) (622f398)
  • @cubejs-client/react: type fixes (#2140) (bca1ff7)
  • @cubejs-schema-compilter: MSSQL remove order by from subqueries (75c1903)
  • druid-driver: now() is not supported (#2151) (78a21d1)

0.26.18 (2021-02-18)

Bug Fixes

  • @cubejs-client/playground: revert path alias (e577040)

0.26.17 (2021-02-18)

Bug Fixes

  • @cubejs-client/playground: error handling, refresh api (#2126) (ca730ea)

0.26.16 (2021-02-18)

Bug Fixes

  • cubestore: allow conversion from string to int in partition pruning (#2128) (af920ca)
  • cubestore: CSV import silently fails on empty "" strings (c82583a)
  • cubestore: Do not block scheduler loop during event processing (3a0875e)
  • cubestore: fix index schema used for partition pruning (#2125) (99635be)
  • cubestore: put temporary downloads into a separate directory (33986e9)
  • cubestore: Remove information_schema lock access to avoid any possible tokio thread blocks (e7450a9)
  • cubestore: warmup partitions only once (#2123) (c4c009c)
  • continueWaitTimeout is ignored: expose single centralized continueWaitTimeout option (#2120) (2735d2c), closes #225

Features

  • cubestore: Build Linux (gnu) (#2088) (3ef9576)
  • cubestore: Introduce Dependency Injection (#2111) (0d97357)
  • cubestore: Schedule imports on worker nodes (c0cb164)
  • druid-driver: Support CUBEJS_DB_SSL (d8124d0)

Reverts

  • Revert "fix(cubestore): cleanup warmup downloads on partition removal (#2025)" (#2121) (f9ae6af), closes #2025 #2121

0.26.15 (2021-02-16)

Bug Fixes

  • cubestore: prune partitions during initial planning (#2100) (294928a)

Features

  • Support JWK in authentication, improve JWT configuration(#1962) (6e5d2ac)
  • support SSL ca/cert/key in .env files as multiline text (#2072) (d9f5154)
  • clickhouse-driver: HTTPS and readOnly support (3d60ead)
  • cubestore: cleanup local copies of files removed remotely (#2110) (9b3fd2e)
  • cubestore: handle IN SQL expression in partition pruning (#2101) (a7871d2)

0.26.14 (2021-02-15)

Bug Fixes

  • cubejs-cli: Deploy token from env and malformed error (#2089) (4d97399)
  • cubestore: do not wait in queue for already downloaded files (#2085) (13f4319)
  • cubestore: Multiline CSV parsing (860cf39)
  • cubestore: UTF CSV parsing (de2c6c3)

Features

0.26.13 (2021-02-12)

Bug Fixes

  • @cubejs-client/core: security token impovements (#2069) (94c1431)
  • @cubejs-client/playground: context refactor, piechart fix (#2076) (cef9251)
  • @cubejs-client/playground: Meta error handling (#2077) (1e6d591)

Features

  • @cubejs-client/playground: handle missing members (#2067) (348b245)
  • cubestore: prune partitions based on sort order at query time (#2068) (84b6c9b)
  • schema-compiler: Generate parser by antlr4ts (d8e68c7)
  • schema-compiler: Wrap new generated parser. fix #1798 (c5fde21)
  • Support for extra params in generating schema for tables. (#1990) (a9b3df2)
  • type detection - check overflows for int/bigint (393948a)

0.26.12 (2021-02-11)

Bug Fixes

  • cubestore: ms timestamp format for BigQuery support (bf70716)
  • query-orchestrator: detect negative int/decimal as strings (#2051) (2b8b549)
  • snowflake-driver: Reorder snowflake execute statement to check for error before attempting to access rows.length (#2053) (783f003)
  • UnhandledPromiseRejectionWarning: Error: Continue wait. fix #1873 (7f113f6)

0.26.11 (2021-02-10)

Bug Fixes

Features

  • cli: generate - allow to specify -d (dataSource) (51c6a1c)

0.26.10 (2021-02-09)

Bug Fixes

  • Using .end() without the flush parameter is deprecated and throws from v.3.0.0 (7078f41)
  • cubestore: Speed up CSV parsing (#2032) (39e95f0)

0.26.9 (2021-02-09)

Bug Fixes

  • @cubejs-client/playground: closing tag (b0777b3)
  • @cubejs-client/playground: tab switch (ddd93f3)

0.26.8 (2021-02-09)

Bug Fixes

  • @cubejs-client/playground: allow to store multiple tokens (bf3f49a)
  • @cubejs-client/playground: angular chart renderer (1132103)
  • cubestore: Increase job timeout to 10 minutes (a874f60)

Reverts

  • Revert "fix(cubestore): skip WAL, partition data directly during ingestion (#2002)" (c9a6527), closes #2002

0.26.7 (2021-02-09)

Bug Fixes

  • cubestore: skip WAL, partition data directly during ingestion (#2002) (5442fad)

Features

  • @cubejs-client/playground: security context editing (#1986) (90f2365)
  • Support for Redis Sentinel + IORedis driver. fix #1769 (a5e7972)
  • Use REDIS_URL for IORedis options (with santinels) (988bfe5)

0.26.6 (2021-02-08)

Bug Fixes

  • cubestore: Increase default split thresholds as memory issues are fixed (7771a86)
  • server-core: add support for async driverFactory (312f90b)
  • sqlite-driver: Use workaround for FLOOR (#1931) (fe64feb)

Features

  • @cubejs-client/playground: Building pre-aggregations message (#1984) (e1fff5d)
  • Block from uploading files and folders (recur) starting from "." (d549fc4)
  • Improve typings for extendContext (8e9c3bc)
  • Partitions warmup (#1993) (200dab1)
  • cubestore: Distributed jobs implementation (#2001) (064ca30)
  • server-core: Correct typings for driverFactory/dialectFactory (51fb117)

0.26.5 (2021-02-03)

Bug Fixes

  • cubestore: Return physical memory to the system after compaction (cdfec78)
  • cubestore: return physical memory to the system at rest (#1981) (7249a7d)

Features

  • cubestore: Multiple location load support (#1982) (2b509ec)

0.26.4 (2021-02-02)

Bug Fixes

  • coerceForSqlQuery - dont mutate securityContext, fix #1974 (95e0536)

0.26.3 (2021-02-02)

Bug Fixes

  • @cubejs-client/playground: table presentation (09c953d)

0.26.2 (2021-02-01)

Bug Fixes

  • cubestore: sort data in column order from the index (#1956) (342491e)
  • Cannot create proxy with a non-object as target or handler (790a3ba)

Features

  • cubestore: filter rowgroups when reading parquet files (#1957) (4df454c)

0.26.1 (2021-02-01)

Bug Fixes

  • api-gateway: Await checkAuth middleware (b3b8ccb)

0.26.0 (2021-02-01)

Features

  • Storing userContext inside payload.u is deprecated, moved to root (559bd87)
  • USER_CONTEXT -> SECURITY_CONTEXT, authInfo -> securityInfo (fa5d17c)
  • Warning about Node.js 10 deprecation (7d15099)

0.25.33 (2021-01-30)

Bug Fixes

  • cubestore: min/max statistics on parquet writes (#1925) (c7b5bbf)
  • Use local dates for pre-aggregations to avoid timezone shift discrepancies on DST timezones for timezone unaware databases like MySQL (#1941) (f138e6f)
  • cubestore: Correct convert_tz implementation (f06d91e)
  • cubestore: Correct convert_tz implementation: correct sign (999e00a)
  • schema-compiler: Wrong dayOffset in refreshKey for not UTC computers (#1938) (5fe3431)

Features

  • Warning on unconfigured scheduledRefreshContexts in multitenancy mode, fix #1904 (cf1984b)

0.25.32 (2021-01-29)

Bug Fixes

  • @cubejs-client/playground: base64 file upload (#1915) (8ba70fd)
  • cubestore: Revert back naive in list OR implementation (99e9ca2)
  • shared: Value True is not valid for CUBEJS_SCHEDULED_REFRESH_TIMER (99a5759)

Features

  • cubestore: Rebase to datafusion 2021-01-27 version (#1930) (309ce8e)

0.25.31 (2021-01-28)

Bug Fixes

  • @cubejs-client/core: propagate time dimension to the drill down query (#1911) (59701da)
  • cubestore: Adjust default memory usage (04c4bc8)
  • cubestore: Bring back WAL removal (1b2bd40)
  • cubestore: Drop temporary files on CSV import (ab0affb)
  • cubestore: Error processing event DeletePartition: No such object (0208234)
  • cubestore: index out of bounds: the len is 0 but the index is 18446744073709551615 (21bb226)
  • cubestore: Limit memory usage on compaction -- zero compaction threshold case (#1895) (fb516f5)
  • cubestore: Support single partition compactions (c5eac36)

Features

  • Ability to specify dataSource from request (e8fe83a)
  • Disable graceful shutdown by default (#1903) (19e2f54)

0.25.30 (2021-01-26)

Bug Fixes

  • cubestore: add custom type 'bytes', a synonym for 'varbinary' (#1890) (4efc291)
  • shared: 1st interval unexpected call on onDuplicatedStateResolved (6265503)

Features

  • cubestore: allow to import base64-encoded bytes in CSV (#1891) (2f43afa)

0.25.29 (2021-01-26)

Bug Fixes

  • cubestore: CSV import escape sequence (a3e118e)
  • cubestore: More CSV import escaping cases (9419128)
  • cubestore: Support NULL values in CSV import (529e5ac)

Features

  • cubestore: CUBESTORE_WAL_SPLIT_THRESHOLD env variable (0d7e550)
  • Improve logs for RefreshScheduler and too long execution (d0f1f1b)

0.25.28 (2021-01-25)

Bug Fixes

  • dependency version resolution (f314ec5)
  • cubestore: merge() and cardinality() now work on empty inputs (#1875) (0e35861)

Features

  • cubestore: HyperLogLog++ support for BigQuery (#1872) (357ecef)

0.25.27 (2021-01-25)

Bug Fixes

  • mongobi-driver: authSwitchHandler api is deprecated, please use new authPlugins api (5ee9349)

Features

  • server: Dont accept new request(s) during shutdown (#1855) (78f8f0b)

0.25.26 (2021-01-25)

Features

  • BigQuery CSV pre-aggregation download support (#1867) (5a2ea3f)

0.25.25 (2021-01-24)

Bug Fixes

  • cubestore: Ignore CUBEJS_DB_SSL env (86f06f7)

Features

  • cubestore: Migrate to tokio v1.0 and implement GCS support (#1864) (803efd2)

0.25.24 (2021-01-22)

Bug Fixes

  • Non default data source cache key and table schema queries are forwarded to the default data source (2f7c672)
  • Non default data source cache key and table schema queries are forwarded to the default data source: broken test (#1856) (8aad3f5)

0.25.23 (2021-01-22)

Bug Fixes

  • Map int2/4/8 to generic int type. fix #1796 (78e20eb)
  • api-gateway: Validate a case when chrono can return empty array (#1848) (e7349f7)
  • cubestore: Increase queue buffer to avoid lagging on wait (2605bdf)
  • cubestore: Queue uploads and downloads to avoid reads on unfinished S3 streams (b94eb26)
  • cubestore: Speed up S3 uploads (d7062c8)

Features

  • schema-compiler: Move some parts to TS (2ad0e2e)

0.25.22 (2021-01-21)

Bug Fixes

  • cubestore: Add curl as a dependency for certs (d364fc4)
  • cubestore: Try to fix Invalid Parquet file on worker nodes (aab87c8)
  • playground: Create schema directory on changing env (f99f6cc)
  • server: Unexpected kill on graceful shutdown (fc99239)
  • server-core: Clear refresh uncaughtException for DevServer (1ea4882)

Features

  • Log warnings from createCancelableInterval (44d09c4)
  • @cubejs-client/playground: Database connection wizard (#1671) (ba30883)
  • cubestore: Add column type for HLL (#1827) (df97052)
  • server: Guard multiple restart in same time (45f19b8)

0.25.21 (2021-01-19)

Bug Fixes

  • @cubejs-backend/api-gateway: readiness fix (#1791) (d5dad60)
  • @cubejs-backend/query-orchestrator: prevent generic pool infinite loop (#1793) (d4129c4)
  • @cubejs-client/playground: avoid styles override (4bdae02)

Features

  • cubestore: Cluster support (4846080)
  • cubestore: S3 sub path support (0cabd4c)
  • schema-compiler: Initial support for TS (5926067)

0.25.20 (2021-01-15)

Bug Fixes

  • Remove unnecessary SELECT 1 during scheduled refresh. Fixes #1592 (#1786) (66f9d91)

0.25.19 (2021-01-14)

Bug Fixes

  • Do not renew historical refresh keys during scheduled refresh (e5fbb12)

Features

  • cubestore: Improve support for the binary data type (#1759) (925f813)

0.25.18 (2021-01-14)

Bug Fixes

Features

  • server: Kill Cube.js if it's stuck in gracefull shutdown (0874de8)

0.25.17 (2021-01-13)

Reverts

  • Revert "feat(server): Throw an exception when env file is not correct" (#1763) (f899786), closes #1763

0.25.16 (2021-01-13)

Bug Fixes

  • cli: Broken jdbc installation (b37a134)
  • server: configuration reload should overrite old env variables (bbb5c4a)
  • snowflake-driver: Handle null values for numbers, dates. fix #1741 (51c2bb2)
  • Pass dbType in DialectContext for dialectFactory (#1756) (5cf88bf), closes #1728

Features

  • cubestore: Filter mirroring push down optimization (49685d3)
  • server: Throw an exception when env file is not correct (abff7fc)

0.25.15 (2021-01-12)

Bug Fixes

  • Ensure agent events are delivered with a 50k backlog (bf0b9ec)

Features

0.25.14 (2021-01-11)

Bug Fixes

  • @cubejs-client/react: useCubeQuery - clear resultSet on exception (#1734) (a5d19ae)
  • cubestore: filter pushdown optimization for aliased tables doesn't work (decfa3a)
  • cubestore: Fix parquet-format dependency as new one isn't compatible with current arrow version (f236314)
  • cubestore: Invalid argument error: Unable to get field named during merge resort (031f4fe)
  • cubestore: Log 0.4.12 dependency is broken (a484b12)
  • cubestore: Merge sort early exit (ddb292f)
  • cubestore: Merge sort seg fault on empty batch (4eb1f28)
  • cubestore: Remove debug output (8706798)
  • cubestore: Union merge sort support (8cd3994)
  • gateway: Allow healthchecks to be requested without auth (95c0c57)

Features

  • cubestore: Add CUBESTORE_DATA_DIR env variable (3571916)
  • cubestore: Float column type support (f427598)
  • cubestore: Merge resort implementation to support three tables merge joins (3fa675b)
  • docker: Upgrade Node.js to Node v12.20.1 (security release) (097a11a)

0.25.13 (2021-01-07)

Bug Fixes

  • Guard from undefined dataSource in queue key (6ae1fd6)
  • cubestore: Root Cargo.toml isn't used for docker build (8030fe3)
  • cubestore: Set default scale to 5 for floats (98d85eb)
  • cubestore: Support Utf8 to Boolean cast (7ac9892)
  • cubestore: Support Utf8 to Int64Decimal cast (c523b46)
  • Reduce agent event queue on network failures (548fb9a)

Features

  • cubestore: Drop unused chunks and partitions after compaction and repartition (94895a2)
  • cubestore: Float with exp number support (6e92c55)

0.25.12 (2021-01-05)

Bug Fixes

  • @cubejs-client/react: updated peer dependency version (442a979)
  • cubestore: Join aliasing fails after rebase (67ffd4d)

Features

  • cubestore: Distribute unions across workers the same way as partitions (52f8a77)

0.25.11 (2021-01-04)

Bug Fixes

  • cubestore: File not found if upstream mounted as a network volume (68822ec)
  • cubestore: Fix write metastore locking (cbbacce)
  • cubestore: Handle corrupted log files and discard them with error (00a1c1a)
  • cubestore: Handle corrupted upstream metastore (d547677)
  • cubestore: Index repairs (d5dc4cf)
  • cubestore: Set default worker pool timeout to 2 minutes (139c8f6)
  • Declare Add missing externalQueueOptions for QueryCacheOptions (563fcdc)

Features

  • cubestore: Rebase arrow to 2020-01-02 version (3cbb46d)
  • cubestore: Three tables join support (b776398)

0.25.10 (2020-12-31)

Bug Fixes

  • @cubejs-backend/cubestore-driver: 2k batch size upload (d1be31e)

0.25.9 (2020-12-31)

Bug Fixes

  • @cubejs-backend/cubestore-driver: 10k batch size upload (d863a10)

0.25.8 (2020-12-31)

Features

  • @cubejs-backend/mysql-driver: More int and text types support for read only pre-aggregations (5bb2a4f)

0.25.7 (2020-12-30)

Bug Fixes

  • @cubejs-backend/mysql-driver: Handle mediumint(9) type (3d135b1)

0.25.6 (2020-12-30)

Bug Fixes

  • Allow CUBEJS_SCHEDULED_REFRESH_TIMER to be boolean (4e80645)

0.25.5 (2020-12-30)

Features

  • Allow to specify socket for PORT/TLS_PORT, fix #1681 (b9c4669)

0.25.4 (2020-12-30)

Bug Fixes

  • cubestore: next_table_seq sanity check until transactions arrive (f9b65ea)
  • cubestore: Atomic WAL activation (0c64e69)
  • cubestore: Migrate to memory sequence tracking until transactions arrive (7308a63)
  • cubestore: Move to RocksDB Snapshot reading to ensure strong metastore read consistency (68dac72)

Features

  • @cubejs-backend/cubestore-driver: Increase upload batch size to 50k (1bebc1d)
  • server-core: Compatibility shim, for legacy imports (2116799)
  • server-core: Initial support for TS (df45216)
  • server-core: Introduce CUBEJS_PRE_AGGREGATIONS_SCHEMA, use dev_preaggregations/prod_preaggregations by default (e5bdf3d)
  • server-core: Move to TS (d7b7431)

0.25.3 (2020-12-28)

Bug Fixes

  • CUBEJS_SCHEDULED_REFRESH_CONCURRENCY doesn't work (1f6b505)

0.25.2 (2020-12-27)

Bug Fixes

  • @cubejs-backend/query-orchestrator: Throw an exception on empty pre-agg in readOnly mode, refs #1597 (17d5fdb)
  • @cubejs-backend/schema-compiler: MySQL double timezone conversion (e5f1490)
  • @cubejs-client/react: prevent state updates on unmounted components (#1684) (4f3796c)
  • api-gateway: /readyz /healthz - correct response for partial outage (1e5bdf5)

Features

  • Ability to set timeouts for polling in BigQuery/Athena (#1675) (dc944b1), closes #1672
  • Concurrency controls for scheduled refresh (2132f0d)
  • api-gateway: Support schema inside Authorization header, fix #1297 (2549004)
  • cubestore: Default decimal scale (a79f98b)

0.25.1 (2020-12-24)

Bug Fixes

  • @cubejs-backend/schema-compiler: Better error message for join member resolutions (30cc3ab)
  • @cubejs-backend/schema-compiler: Error: TypeError: R.eq is not a function -- existing joins in rollup support (5f62aae)
  • @cubejs-client/playground: propagate cubejs token (#1669) (f1fb563)
  • cubestore: Merge join empty side fixes (5e65c3e)
  • cubestore: Non atomic primary key allocation conflicts (073ac8c)
  • cubestore: Pass join on sort conditions explicitly. Avoid incorrectly selected sort keys. (b6a2e4a)
  • playground: Use basePath from configuration, fix #377 (c94cbce)

Features

  • @cubejs-backend/dremio-driver: Add HTTPS support for Dremio (#1666), Thanks @chipblox (1143e9c)
  • athena-driver: Support readOnly option, add typings (a519cb8)
  • elasticsearch-driver: Support CUBEJS_DB_ELASTIC_QUERY_FORMAT, Thanks @dylman79 (a7460f5)

0.25.0 (2020-12-21)

Bug Fixes

  • @cubejs-client/playground: chart renderer load (#1658) (bbce716)
  • getQueryStage throws undefined is not a function (0de1603)

Features

  • Allow cross data source joins (a58336e)
  • Allow cross data source joins: Serverless support (034cdc8)

0.24.15 (2020-12-20)

Bug Fixes

  • cubestore: Atomic chunks repartition (b1a23da)
  • cubestore: Atomic index snapshotting (8a50f34)

Features

  • Allow joins between data sources for external queries (1dbfe2c)
  • cubestore: Support GROUP BY DECIMAL (#1652) (4ad97dc)

0.24.14 (2020-12-19)

Bug Fixes

  • Rollup match results for rollupJoin (0279b13)
  • api-gateway: Fix broken POST /v1/dry-run (fa0cae0)

Features

0.24.13 (2020-12-18)

Bug Fixes

  • @cubejs-client/react: reset the error on subsequent calls (#1641) (2a65dae)

Features

  • api-gateway: Dont run all health checks, when the one is down (f5957f4)
  • Rollup join implementation (#1637) (bffd220)

0.24.11 (2020-12-17)

Note: Version bump only for package cubejs

0.24.9 (2020-12-16)

Bug Fixes

  • @cubejs-backend/mysql-driver: Revert back test on borrow with database pool error logging. (2cdaf40)
  • docker: Drop usage of VOLUME to protected unexpected behavior (e3f20cd)
  • Warning about absolute import (5f228bc)

Features

  • @cubejs-client/playground: Angular chart code generation support in Playground (#1519) (4690e11), closes #1515 #1612
  • @cubejs-client/react: dry run hook (#1612) (9aea035)

0.24.8 (2020-12-15)

Bug Fixes

  • @cubejs-backend/mysql-driver: Use decimal(38,10) for external pre-aggregations, fix #1563 (3aec549)
  • @cubejs-backend/schema-compiler: CubeCheckDuplicatePropTranspiler - dont crash on not StringLiterals (#1582) (a705a2e)
  • @cubejs-client/playground: fix color name and change font to Inter (010a106)

Features

  • @cubejs-backend/query-orchestrator: Introduce AsyncRedisClient type (728110e)
  • @cubejs-backend/query-orchestrator: Migrate createRedisClient to TS (78e8422)
  • @cubejs-backend/query-orchestrator: Move RedisPool to TS, export RedisPoolOptions (8e8abde)
  • @cubejs-backend/query-orchestrator: Set redis pool options from server config (c1270d4)
  • @cubejs-client/core: Added pivotConfig option to alias series with a prefix (#1594). Thanks to @MattGson! (a3342f7)
  • Set CUBEJS_SCHEDULED_REFRESH_TIMER default value to 30 seconds (f69324c)

0.24.7 (2020-12-14)

Bug Fixes

  • @cubejs-backend/mysql-driver: Do not validate connections in pool and expose all errors to clients (b62f27f)

0.24.6 (2020-12-13)

Bug Fixes

  • @cubejs-backend/api-gateway: SubscriptionServer - support dry-run (#1581) (43fbc20)
  • cubejs-cli: deploy --upload-env - filter CUBEJS_DEV_MODE (81a835f)

Features

  • cubestore: Explicit index selection for join (290cab8)
  • Move index creation orchestration to the driver: allow to control drivers when to create indexes (2a94e71)
  • cubestore: String implicit casts. CREATE INDEX support. (d42c199)

0.24.5 (2020-12-09)

Bug Fixes

  • @cubejs-backend/api-gateway: Export UserError/CubejsHandlerError (#1540) (20124ba)
  • @cubejs-client/playground: fix user select on tab content (7a0e4ef)
  • cubestore: Compaction fixes (7441a26)
  • cubestore: Partition range gap fix (3610b61)

Features

  • @cubejs-backend/bigquery-driver: Allow to make BigQueryDriver as readOnly, fix #1028 (d9395f6)
  • @cubejs-backend/mysql-driver: CAST all time dimensions with granularities to DATETIME in order to provide typing for rollup downloads. Add mediumtext and mediumint generic type conversions. (3d8cb37)
  • cubejs-cli: improve DX for docker (#1457) (72ad782)
  • cubestore: CUBESTORE_PORT env variable (11e36a7)
  • cubestore: IN Implementation (945d8bc)

0.24.4 (2020-12-07)

Bug Fixes

  • @cubejs-backend/server: Versions inside error message (1a8cc4f)
  • @cubejs-backend/server-core: Allow to pass externalRefresh inside preAggregationsOptions, fix #1524 (a6959c9)
  • @cubejs-client/playground: always show scrollbars in menu if content is too big (5e22a3a)
  • cubestore: Merge sort propagation fixes (35125ad)
  • docker: Add sqlite driver to built-in drivers (3b7b0f7)
  • docker: Use latest snowflake driver (f607ed0)

Features

  • @cubejs-backend/api-gateway: Migrate some parts to TS (c1166d7)
  • @cubejs-backend/api-gateway: Migrate to TS initial (1edef6d)
  • @cubejs-backend/postgres-driver: Support CUBEJS_DB_SSL_SERVERNAME (f044372)
  • Ability to load SSL keys from FS (#1512) (71da5bb)
  • cubestore: Decimal support (6bdc68b)
  • cubestore: Left join support (9d1fd09)
  • cubestore: Mediumint support (f98540b)

0.24.3 (2020-12-01)

Bug Fixes

  • cubestore: Merge join support: not implemented: Merge join is not supported for data type Timestamp(Microsecond, None) (6e3ebfc)
  • cubestore: Unsupported data type Boolean. (b286182)

Features

  • cubestore: Hash join support (8b1a5da)
  • cubestore: Merge join support (d08d8e3)
  • cubestore: Update datafusion upstream to the version of 2020-11-27 (b4685dd)

0.24.2 (2020-11-27)

Bug Fixes

  • add content-type to allowedHeaders (d176269)
  • @cubejs-backend/server-core: Allow to pass unknown options (such as http) (f1e9402)

Features

  • @cubejs-backend/query-orchestrator: Initial move to TypeScript (#1462) (101e8dc)

0.24.1 (2020-11-27)

Bug Fixes

  • Specifying dateRange in time dimension should produce same result as inDateRange in filter (a7603d7), closes #962
  • cubejs-cli: template/serverless - specify CORS (#1449) (f8064d2)
  • cubestore: Negative int insert support (5f2ff55)

Features

  • cubestore: Group by boolean (fa1b1b2)
  • cubestore: Group by boolean (45fe036)
  • Specify CORS for server/serverless (#1455) (8c371ad)

0.24.0 (2020-11-26)

Bug Fixes

  • Error: Type must be provided for null values. -- null parameter values are passed to BigQuery when used for dimensions that contain ? (6417e7d)
  • cubejs-cli: template/serverless - iamRoleStatements.Resource[0] unsupported configuration format (9fbe683)

Features

  • Make default refreshKey to be every 10 seconds and enable scheduled refresh in dev mode by default (221003a)

BREAKING CHANGES

  • every 10 seconds refreshKey becomes a default refreshKey for all cubes.

0.23.15 (2020-11-25)

Bug Fixes

  • Error: Cannot find module 'antlr4/index' (0d2e330)
  • @cubejs-backend/server-core: Correct type for orchestratorOptions (#1422) (96c1691)

Features

  • @cubejs-backend/postgres-driver: Support CUBEJS_DB_SSL_KEY (e6291fc)
  • @cubejs-client/react: support 'compareDateRange' when updating 'timeDimensions' (#1426). Thanks to @BeAnMo! (6446a58)

0.23.14 (2020-11-22)

Bug Fixes

  • @cubejs-backend/query-orchestrator: Intermittent lags when pre-aggregation tables are refreshed (4efe1fc)
  • @cubejs-backend/snowflake-driver: Add keepConnectionAlive and release (#1379) (f1acae5)
  • @cubejs-client/core: propagate segments to drillDown queries (#1406) (d4ceb65)
  • cubestore: Error reporting in docker (cba3c50)
  • cubestore: Tables are imported without location (5e8cffb)
  • examples: Add deprecation warnings to Slack Vibe (98783c6)
  • examples: e-commerce backend 💸 (dab7301)
  • examples: External Rollups 🗞 (86172b7)
  • examples: Migration to Netlify (ad582a1)
  • examples: React Dashboard ⚛️ (eccae84)

Features

  • cubestore: Collect backtraces in docker (d97bcb9)
  • cubestore: Error reporting (99ede83)
  • cubestore: Table location support (6b63ef8)
  • docker: Introduce alpine images (#1413) (972c700)
  • docs-build: add gatsby-redirect-from to allow redirects with SEO (f3e680a), closes #1395
  • Allow to run docker image without config file (#1409) (bc53cd1)

0.23.13 (2020-11-17)

Bug Fixes

  • docker: Use CMD instead of entrypoint for cubejs server (d6066a8)
  • docs: fix broken link in 'Deployment Guide' page (#1399) (4c01e2d)

0.23.12 (2020-11-17)

Bug Fixes

  • @cubejs-client/core: pivot should work well with null values (#1386). Thanks to @mspiegel31! (d4c2446)
  • cubestore: CREATE SCHEMA IF NOT EXISTS support (7c590b3)

Features

  • Introduce CUBEJS_DEV_MODE & improve ENV variables experience (#1356) (cc2aa92)
  • @cubejs-server: Require the latest oclif packages to support Node.js 8 (7019966)
  • cubestore: Distributed query execution (102c641)

0.23.11 (2020-11-13)

Bug Fixes

  • @cubejs-backend/server-core: Node.js 8 support (downgrade fs-extra to 8.x) (#1367) (be10ac6)
  • @cubejs-client/core: annotation format type (e5004f6)
  • @cubejs-client/ws-transport: make auth optional (#1368) (28a07bd)
  • @cubejs-playground: boolean filters support (#1269) (adda809)
  • @cubejs-playground: ng scaffolding support (0444744)
  • @cubejs-playground: ng support notification, loader (2f73f16)
  • ci: Trigger on pull_request, not issue (193dc81)
  • CUBEJS_DB_SSL must be true to affect SSL (#1252) (f2e9d9d), closes #1212
  • cubejs-cli: Generate/token should work inside docker (67d7501)
  • cubestore: Endless upload loop (0494122)
  • cubestore: Worker Pool graceful shutdown (56377dc)
  • examples/real-time-dashboard: Configure collect entrypoint by REACT_APP_COLLECT_URL ENV (bde3ad8)

Features

  • @cubejs-backend/mysql-aurora-serverless-driver: Add a new driver to support AWS Aurora Serverless MySql (#1333) Thanks to @kcwinner! (154fab1)
  • @cubejs-client/react: Add minute and second granularities to React QueryBuilder (#1332). Thanks to @danielnass! (aa201ae)
  • cubejs-cli: .env file - add link to the docs (b63405c)
  • cubejs-cli: create - persist template name & version (8555290)
  • cubejs-cli: Share /dashboard-app directory by default (#1380) (d571dcc)
  • cubejs-cli: Use index.js file instead of cube.js (#1350) (9b6c593)
  • cubestore: Add avx2 target-feature for docker build (68e5a8a)
  • cubestore: CUBESTORE_SELECT_WORKERS env variable (9e59b2d)
  • cubestore: Select worker process pool (c282cdd)
  • cubestore: Slow query logging (d854303)
  • docs-build: change code font to Source Code Pro (#1338) (79ec3db), closes #1337
  • examples/real-time-dashboard: Automatically deploy (54303d8)

0.23.10 (2020-11-07)

Bug Fixes

  • @cubejs-client/playground: add horizontal scroll and sticky head for chart card (#1256) (025f15d)
  • @cubejs-playground: codesandbox dependencies (1ed6309)
  • ci: Force usinging /build directory for netlify deployment (7ca10f0)
  • ci: Install netlify-cli instead of netlify (api client) (60bfaa2)
  • cubejs-cli: scaffolding/ScaffoldingTemplate dependency not found. (8f3e6c7)
  • examples/drill-down: Automatically deploy (b04148b)
  • examples/drill-down: Automatically deploy (570b903)
  • examples/highcharts: Switch configuration for production/development (978eb89)
  • examples/highcharts: Warnings on build (72bb74b)
  • examples/react-dashboard: Automatically deploy (0036016)
  • update message in CLI template (d5a24ba)
  • Warnings on installation (cecaa6e)

Features

  • @cubejs-backend/server: dev-server/server - introduce project diagnostics (#1330) (0606926)
  • ci: Automatically deploy examples/highcharts (c227137)
  • cubestore: Upgrade datafusion to 3.0 (85f2165)

0.23.9 (2020-11-06)

Note: Version bump only for package cubejs

0.23.8 (2020-11-06)

Bug Fixes

  • @cubejs-playground: undefined query (7d87fa6)
  • cubejs-cli: proxyCommand - await external command run on try/catch (dc84460)

Features

  • @cubejs-backend/server: Init source-map-support for cubejs-server/cubejs-dev-server (aed319a)
  • @cubejs-client/ws-transport: Move to TypeScript (#1293) (e7e1100)
  • docker: Use --frozen-lockfile for docker image building (60a0ca9)

0.23.7 (2020-11-04)

Bug Fixes

  • docker: Add missing MySQL and cubestore drivers to the docker (a36e86e)

Features

  • @cubejs-backend/server: Migrate WebSocketServer to TS (#1295) (94c39df)
  • cubejs-cli: Completely move CLI to TypeScript (#1281) (dd5f3e2)
  • Generate source maps for client libraries (#1292) (cb64118)
  • @cubejs-backend/jdbc-driver: Upgrade vendors (#1282) (94b9b37)
  • cubejs-cli: Use env_file to pass .env file instead of sharing inside volume (#1287) (876f549)

0.23.6 (2020-11-02)

Bug Fixes

  • cubejs-cli: Incorrectly generated reference to module.export instead of module.exports (7427d46)

Features

  • cubejs-cli: Add --token option for deploy command (#1279) (4fecd8c)

0.23.5 (2020-11-02)

Bug Fixes

  • cubejs-cli: Deploy and Windows-style for file hashes (ac3f62a)
  • cubestore: File is not found during list_recursive (1065875)

0.23.4 (2020-11-02)

Bug Fixes

  • cubejs-cli: Deploy and Windows-style paths (#1277) (aa02f01)

0.23.3 (2020-10-31)

Bug Fixes

  • @cubejs-backend/schema-compiler: deprecation warning (#1272) (5515465)
  • ci: Update a Docker Hub repository description automatically (4ad0b0d)
  • cubejs-cli: @cubejs-backend/server/dist/command/dev-server dependency not found. (e552ee1)

Features

  • @cubejs-backend/query-orchestrator: add support for MSSQL nvarchar (#1260) Thanks to @JoshMentzer! (a9e9919)
  • Dynamic Angular template (#1257) (86ba728)

0.23.2 (2020-10-28)

Bug Fixes

  • Add default ports and fix dashboard creation fails in docker (#1267) (2929dbb)

0.23.1 (2020-10-28)

Bug Fixes

  • Unavailable. @cubejs-backend/server inside current directory requires cubejs-cli (^0.22) (#1265) (340746e)

0.23.0 (2020-10-28)

Bug Fixes

  • TypeError: CubejsServer.driverDependencies is not a function (#1264) (9b1260a)

0.22.4 (2020-10-28)

Bug Fixes

  • Web Analytics Guide: add links (065a637)

Features

  • @cubejs-backend/server: Implement dev-server & server command (#1227) (84c1eeb)
  • Introduce Docker template (#1243) (e0430bf)

0.22.3 (2020-10-26)

Bug Fixes

  • @cubejs-backend/schema-compiler: Dialect for 'undefined' is not found, fix #1247 (1069b47)

0.22.2 (2020-10-26)

Bug Fixes

  • Dialect class isn't looked up for external drivers (b793f4a)
  • @cubejs-client/core: duplicate names in ResultSet.seriesNames() (#1187). Thanks to @aviranmoz! (8d9eb68)

Features

0.22.1 (2020-10-21)

Bug Fixes

  • @cubejs-playground: avoid unnecessary load calls, dryRun (#1210) (aaf4911)
  • cube-cli: Missed deploy command (4192e77)

Features

  • cubejs-cli: Check js files by tsc (3b9f4a2)
  • cubejs-cli: Move deploy command to TS (b38cb4a)

0.22.0 (2020-10-20)

Bug Fixes

  • umd build default export (#1219) (cc434eb)
  • @cubejs-client/core: Add parseDateMeasures field to CubeJSApiOptions (typings) (e1a1ada)
  • @cubejs-client/vue: Allow array props on query renderer to allow data blending usage (#1213). Thanks to @richipargo (2203a54)
  • ci: Specify DOCKER_IMAGE (59bf390)
  • docs-gen: change signature generation (e4703ad)

Features

  • Cube Store driver (85ca240)
  • @cubejs-backend/server: Introduce external commands for CLI (demo) (fed9285)
  • cubejs-cli: adds USER_CONTEXT parameter to cli (#1215) Thanks to @TheSPD! (66452b9)
  • cubejs-cli: Improve external commands support (c13a729)
  • cubejs-cli: Move helpers to TypeScript (06b5f01)
  • cubejs-cli: Run dev-server/server commands from @cubejs-backend/core (a35244c)
  • cubejs-cli: Run dev-server/server commands from @cubejs-backend/core (a4d72fe)
  • cubejs-cli: Use TypeScript (009ff7a)

0.21.2 (2020-10-15)

Bug Fixes

  • @cubejs-client/playground: fix setting popovers (#1209) (644bb9f)

0.21.1 (2020-10-15)

Bug Fixes

  • @cubejs-client/react: resultSet ts in for QueryBuilderRenderProps (#1193) (7e15cf0)

Features

0.21.0 (2020-10-09)

Note: Version bump only for package cubejs

0.20.15 (2020-10-09)

Note: Version bump only for package cubejs

0.20.14 (2020-10-09)

Bug Fixes

  • Filter values can't be changed in Playground -- revert back defaultHeuristic implementation (30ee112)

0.20.13 (2020-10-07)

Bug Fixes

  • @cubejs-backend/mongobi-driver: TypeError: v.toLowerCase is not a function (16a15cb)
  • @cubejs-schema-compilter: MSSQL rollingWindow with granularity (#1169) Thanks to @JoshMentzer! (16e6a9e)

0.20.12 (2020-10-02)

Bug Fixes

Features

0.20.11 (2020-09-28)

Bug Fixes

Features

0.20.10 (2020-09-23)

Bug Fixes

  • @cubejs-backend/server-core: Allow initApp as server-core option (#1115) (a9d06fd)
  • @cubejs-backend/server-core: Allow processSubscriptionsInterval as an option (#1122) (cf21d70)
  • drilling into any measure other than the first (#1131) (e741a20)
  • rollupOnlyMode option validation (#1127) (89ee308)
  • @cubejs-backend/server-core: Support apiSecret as option (#1130) (9fbf544)

0.20.9 (2020-09-19)

Bug Fixes

  • Allow empty complex boolean filter arrays (#1100) (80d112e)
  • Allow scheduledRefreshContexts in server-core options validation (#1105) (7e43276)
  • @cubejs-backend/server-core: orchestratorOptions validation breaks serverless deployments (#1113) (48ca5aa)

Features

  • cubejs-cli: Ask question about database, if user forget to specify it with -d flag (#1096) (8b5b9d3)
  • sqlAlias attribute for preAggregations and short format for pre-aggregation table names (#1068) (98ffad3), closes #86 #907
  • Share Node's version for debug purposes (#1107) (26c0420)

0.20.8 (2020-09-16)

Bug Fixes

Features

  • Add server-core options validate (#1089) (5580018)
  • refreshKey every support for CRON format interval (#1048) (3e55f5c)
  • Strict cube schema parsing, show duplicate property name errors (#1095) (d4ab530)

0.20.7 (2020-09-11)

Bug Fixes

  • member-dimension query normalization for queryTransformer and additional complex boolean logic tests (#1047) (65ef327), closes #1007

0.20.6 (2020-09-10)

Bug Fixes

0.20.5 (2020-09-10)

Bug Fixes

0.20.4 (2020-09-04)

Bug Fixes

  • @cubejs-backend/dremio-driver: CAST doesn't work on string timestamps: replace CAST to TO_TIMESTAMP (#1057) (59da9ae)

0.20.3 (2020-09-03)

Bug Fixes

Features

0.20.2 (2020-09-02)

Bug Fixes

  • subscribe option, new query types to work with ws (dbf602e)

Features

0.20.1 (2020-09-01)

Bug Fixes

  • data blending query support (#1033) (20fc979)
  • Error: TypeError: Cannot read property ‘externalPreAggregationQuery’ of null (e23f302)

Features

  • Expose the progress response in the useCubeQuery hook (#990). Thanks to @anton164 (01da1fd)
  • scheduledRefreshContexts CubejsServerCore option (789a098)

0.20.0 (2020-08-26)

Bug Fixes

  • @cubejs-backend/athena-driver: Error: Queries of this type are not supported for incremental refreshKey (2d3018d), closes #404
  • Check partitionGranularity requires timeDimensionReference for originalSql (2a2b256)
  • Refresh Scheduler should respect dataSource (d7e7a57)
  • respect timezone in drillDown queries (#1003) (c128417)
  • @cubejs-backend/clickhouse-driver: allow default compound indexes: add parentheses to the pre-aggregation sql definition (#1009) Thanks to @gudjonragnar! (6535cb6)
  • TypeError: Cannot read property '1' of undefined -- Using scheduled cube refresh endpoint not working with Athena (ed6c9aa), closes #1000

Features

0.19.61 (2020-08-11)

Bug Fixes

  • avoid opening connection to the source database when caching tables from external rollup db (#929) Thanks to @jcw-! (92cd0b3)
  • readOnly originalSql pre-aggregations aren't working without writing rights (cfa7c7d)

Features

  • add support of array of tuples order format (#973). Thanks to @RusovDmitriy (0950b94)
  • mssql-driver: add readonly aggregation for mssql sources (#920) Thanks to @JoshMentzer! (dfeccca)

0.19.60 (2020-08-08)

Bug Fixes

  • Intermittent errors with empty rollups or not ready metadata for Athena and MySQL: HIVE_CANNOT_OPEN_SPLIT errors. (fa2cf45)

0.19.59 (2020-08-05)

Bug Fixes

0.19.58 (2020-08-05)

Bug Fixes

  • Error: Cannot find module 'axios' (5fcfa87)

0.19.57 (2020-08-05)

Bug Fixes

Features

  • Playground templates separate repository open for third party contributions (#903) (fb57bda)
  • support first chance to define routes (#931) Thanks to @jsw- (69fdebc)

0.19.56 (2020-08-03)

Bug Fixes

0.19.55 (2020-07-23)

Bug Fixes

Features

0.19.54 (2020-07-23)

Bug Fixes

  • Orphaned queries in Redis queue during intensive load (101b85f)

0.19.53 (2020-07-20)

Bug Fixes

Features

  • More logging info for Orphaned Queries debugging (99bf957)

0.19.52 (2020-07-18)

Bug Fixes

  • Redis driver execAsync ignores watch directives (ac67e5b)

0.19.51 (2020-07-17)

Note: Version bump only for package cubejs

0.19.50 (2020-07-16)

Bug Fixes

  • cubejs-client-vue: added deep watch at query props object in Vue QueryBuilder (#818) (32402e6)
  • filter out falsy members (65b19c9)

Features

  • Generic readOnly external rollup implementation. MongoDB support. (79d7bfd), closes #239
  • ResultSet serializaion and deserializaion (#836) (80b8d41)
  • Rollup mode (#843) Thanks to @jcw-! (cc41f97)

0.19.49 (2020-07-11)

Bug Fixes

  • TypeError: exports.en is not a function (ade2ccd)

0.19.48 (2020-07-11)

Bug Fixes

  • cubejs-client-core: enums exported from declaration files are not accessible (#810) (3396fbe)
  • chrono-node upgrade changed from 60 minutes ago to now behavior (e456829)

0.19.46 (2020-07-06)

Features

  • Report query usage for Athena and BigQuery (697b53f)

0.19.45 (2020-07-04)

Bug Fixes

  • Error: Error: Class constructor cannot be invoked without 'new' (beb75df)
  • TypeError: (queryOptions.dialectClass || ADAPTERS[dbType]) is not a constructor (502480c)

0.19.44 (2020-07-04)

Bug Fixes

  • Error: Unsupported db type: function (13d1b93)

0.19.43 (2020-07-04)

Bug Fixes

  • cubejs-client-core: Display the measure value when the y axis is empty (#789) (7ec6ac6)
  • docs-gen: Menu order (#783) (11d974a)

Features

0.19.42 (2020-07-01)

Bug Fixes

Features

  • CUBEJS_SCHEDULED_REFRESH_TIMEZONES env variable (d22e3f0)

0.19.41 (2020-06-30)

Bug Fixes

  • docs-gen: generator fixes, docs updates (c5b26d0)
  • docs-gen: minor fixes (#771) (ae32519)
  • scheduledRefreshTimer.match is not a function (caecc51), closes #772

0.19.40 (2020-06-30)

Bug Fixes

  • Querying empty Postgres table with 'time' dimension in a cube results in null value (07d00f8), closes #639

Features

  • CUBEJS_SCHEDULED_REFRESH_TIMER env variable (6d0096e)
  • docs-gen: Typedoc generator (#769) (15373eb)

0.19.39 (2020-06-28)

Bug Fixes

  • treat wildcard Elasticsearch select as simple asterisk select: include * as part of RE to support elasticsearch indexes (#760) Thanks to @gauravlanjekar ! (099a888)

Features

  • refreshRangeStart and refreshRangeEnd pre-aggregation params (e4d2874)

0.19.38 (2020-06-28)

Bug Fixes

  • cubejs-playground: Long line ellipsis (#761) (4aee9dc)
  • Refresh partitioned pre-aggregations sequentially to avoid excessive memory and Redis connection consumption (38aab17)

0.19.37 (2020-06-26)

Bug Fixes

  • cubejs-client-core: tableColumns empty data fix (#750) (0ac9b7a)
  • cubejs-client-react: order heuristic (#758) (498c10a)

Features

  • cubejs-client-react: Exposing updateQuery method (#751) (e2083c8)
  • query builder pivot config support (#742) (4e29057)

0.19.36 (2020-06-24)

Bug Fixes

  • Avoid excessive pre-aggregation invalidation in presence of multiple structure versions (fd5e602)

0.19.35 (2020-06-22)

Bug Fixes

0.19.34 (2020-06-10)

Bug Fixes

  • cubejs-cli: Check if correct directory is being deployed (56b8319)

0.19.33 (2020-06-10)

Bug Fixes

  • cubejs-api-gateway: fromEntries replacement (#715) (998c735)

0.19.32 (2020-06-10)

Bug Fixes

  • Cannot read property 'reorder' of undefined (3f1d8d1)

0.19.31 (2020-06-10)

Bug Fixes

  • cubejs-cli: linter (#712) (53c053f)
  • cubejs-client-core: Remove Content-Type header from requests in HttpTransport (#709) (f6e366c)

Features

0.19.30 (2020-06-09)

Bug Fixes

  • cubejs-cli: Fix file hashing for Cube Cloud (ce8e090)

0.19.29 (2020-06-09)

Bug Fixes

  • cubejs-cli: eslint fixes (0aa8001)

0.19.28 (2020-06-09)

Bug Fixes

  • cubejs-cli: Correct missing auth error (ceeaff7)

0.19.27 (2020-06-09)

Note: Version bump only for package cubejs

0.19.26 (2020-06-09)

Note: Version bump only for package cubejs

0.19.25 (2020-06-09)

Features

  • cubejs-cli: Cube Cloud deploy implementation (b34ba53)

0.19.24 (2020-06-06)

Bug Fixes

  • @cubejs-backend/elasticsearch-driver: respect ungrouped parameter (#684) Thanks to @gauravlanjekar! (27d0d49)
  • @cubejs-backend/schema-compiler: TypeError: methods.filter is not a function (25c4ef6)

0.19.23 (2020-06-02)

Features

0.19.22 (2020-05-26)

Note: Version bump only for package cubejs

0.19.21 (2020-05-25)

Bug Fixes

  • @cubejs-backend/sqlite-driver: sqlite name and type extraction (#659) Thanks to @avin3sh ! (b1c179d)
  • playground: Dynamic dashboard templated doesn't work: graphql-tools version downgrade (#665) (f5dfe54), closes #661

0.19.20 (2020-05-21)

Bug Fixes

  • cubejs-playground: header style (8d0f6a9)
  • cubejs-playground: style fixes (fadbdf2)
  • cubejs-postgres-driver: updated pg version (af758f6)

0.19.19 (2020-05-15)

Bug Fixes

Features

  • ability to add custom meta data for measures, dimensions and segments (#641) (88d5c9b), closes #625

0.19.18 (2020-05-11)

Bug Fixes

  • Offset doesn't affect actual queries (1feaa38), closes #636

0.19.17 (2020-05-09)

Bug Fixes

  • Continue wait errors during tables fetch (cafaa28)

0.19.16 (2020-05-07)

Bug Fixes

  • @cubejs-client/react: options dependency for useEffect: check if subscribe has been changed in useCubeQuery (#632) (13ab5de)

Features

0.19.15 (2020-05-04)

Bug Fixes

  • Max date measures incorrectly converted for MySQL (e704867)

Features

0.19.14 (2020-04-24)

Bug Fixes

  • More descriptive errors for download errors (e834aba)
  • Show Postgres params in logs (a678ca7)

Features

0.19.13 (2020-04-21)

Features

  • Postgres Citus Data HLL plugin implementation (#601) Thanks to @milanbella ! (be85ac6), closes #563
  • react: resetResultSetOnChange option for QueryRenderer and useCubeQuery (c8c74d3)

0.19.12 (2020-04-20)

Bug Fixes

  • Make date measure parsing optional (d199cd5), closes #602

0.19.11 (2020-04-20)

Bug Fixes

  • Strict date range and rollup granularity alignment check (deb62b6), closes #103

0.19.10 (2020-04-18)

Bug Fixes

  • Recursive pre-aggregation description generation: support propagateFiltersToSubQuery with partitioned originalSql (6a2b9dd)

0.19.9 (2020-04-16)

Features

  • add await when invoking schemaVersion -- support async schemaVersion (#557) Thanks to @barakcoh! (964c6d8)
  • Added support for websocketsBasePath (#584) Thanks to @gauravlanjekar! (0fa7349), closes #583
  • Allow persisting multiple pre-aggregation structure versions to support staging pre-aggregation warm-up environments and multiple timezones (ab9539a)
  • Parse dates on client side (#522) Thanks to @richipargo! (11c1106)

0.19.8 (2020-04-15)

Bug Fixes

  • Dead queries added to queue in serverless (eca3d0c)

0.19.7 (2020-04-14)

Bug Fixes

  • Associate Queue storage error with requestId (ec2750e)

Features

0.19.6 (2020-04-14)

Bug Fixes

  • Consistent queryKey logging (5f1a632)

0.19.5 (2020-04-13)

Bug Fixes

  • Broken query and pre-aggregation cancel (aa82256)
  • Include data transformation in Load Request time (edf2461)
  • RefreshScheduler refreshes pre-aggregations during cache key refresh (51d1214)

Features

  • Log queue state on Waiting for query (395c63c)

0.19.4 (2020-04-12)

Bug Fixes

  • serverless-aws: cubejsProcess agent doesn't collect all events after process has been finished (939e25a)

0.19.3 (2020-04-12)

Bug Fixes

  • Handle invalid lambda process events (37fc43f)

0.19.2 (2020-04-12)

Bug Fixes

  • Do not DoS agent with huge payloads (7886130)
  • TypeError: Cannot read property 'timeDimensions' of null (7d3329b)

0.19.1 (2020-04-11)

Bug Fixes

  • TypeError: Cannot read property 'dataSource' of null (5bef81b)
  • TypeError: Cannot read property 'path' of undefined -- Case when partitioned originalSql is resolved for query without time dimension and incremental refreshKey is used (ca0f1f6)

Features

  • postgres-driver: Allow usage of CUBEJS_DB_SSL_CA parameter in postgres Driver. (#582) Thanks to @gauravlanjekar! (158bd10)
  • Provide status messages for /cubejs-api/v1/run-scheduled-refresh` API (fb6623f)
  • Renamed OpenDistro to AWSElasticSearch. Added elasticsearch dialect (#577) Thanks to @chad-codeworkshop! (a4e41cb)

0.19.0 (2020-04-09)

Features

  • Multi-level query structures in-memory caching (38aa32d)

0.18.32 (2020-04-07)

Bug Fixes

  • mysql-driver: Special characters in database name for readOnly database lead to Error: ER_PARSE_ERROR: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near (1464326)

0.18.31 (2020-04-07)

Bug Fixes

  • Pass query options such as timezone (#570) Thanks to @jcw-! (089f307)
  • Rewrite converts left outer to inner join due to filtering in where: ensure OR is supported (93a1250)

0.18.30 (2020-04-04)

Bug Fixes

  • Rewrite converts left outer to inner join due to filtering in where (2034d37)

Features

  • Native X-Pack SQL ElasticSearch Driver (#551) (efde731)

0.18.29 (2020-04-04)

Features

  • Hour partition granularity support (5f78974)
  • Rewrite SQL for more places (2412821)

0.18.28 (2020-04-03)

Bug Fixes

  • TypeError: date.match is not a function at BaseTimeDimension.formatFromDate (7379b84)

0.18.27 (2020-04-03)

Bug Fixes

  • TypeError: date.match is not a function at BaseTimeDimension.formatFromDate (4ac7307)

0.18.26 (2020-04-03)

Bug Fixes

0.18.25 (2020-04-02)

Bug Fixes

  • TypeError: Cannot read property 'replace' of null for scheduledRefresh: true (28e45c0), closes #558

Features

0.18.24 (2020-04-01)

Bug Fixes

  • TypeError: Cannot read property 'replace' of null for scheduledRefresh: true (ea88edf)

0.18.23 (2020-03-30)

Bug Fixes

  • Cannot read property 'timeDimensions' of null -- originalSql scheduledRefresh support (e7667a5)
  • minute requests incorrectly snapped to daily partitions (8fd7876)

0.18.22 (2020-03-29)

Features

  • mysql-driver: Read only pre-aggregations support (2e7cf58)

0.18.21 (2020-03-29)

Bug Fixes

  • mysql-driver: Remove debug output (3cd0bf3)

0.18.20 (2020-03-29)

Features

  • mysql-driver: loadPreAggregationWithoutMetaLock option (a5bae69)

0.18.19 (2020-03-29)

Bug Fixes

  • Empty default originalSql refreshKey (dd8536b)
  • incorrect WHERE for refreshKey every (bf8b648)
  • Return single table for one partition queries (54083ef)

Features

  • propagateFiltersToSubQuery flag (6b253c0)
  • Partitioned originalSql support (133857e)

0.18.18 (2020-03-28)

Bug Fixes

  • postgres-driver: Clean-up deprecation warning (#531) (ed1e8da)

Features

  • Executing SQL logging message that shows final SQL (26b8758)

0.18.17 (2020-03-24)

Bug Fixes

  • Unknown function NOW for Snowflake -- Incorrect now timestamp implementation (036f68a), closes #537

Features

  • More places to fetch readOnly pre-aggregations flag from (9877037)

0.18.16 (2020-03-24)

Features

  • Log canUseTransformedQuery (5b2ab90)

0.18.15 (2020-03-24)

Bug Fixes

  • Athena -> MySQL segmentReferences rollup support (fd3f3d6)

0.18.14 (2020-03-24)

Bug Fixes

  • MySQL segment references support (be42298)

Features

0.18.13 (2020-03-21)

Bug Fixes

  • Overriding of orchestratorOptions results in no usage of process cloud function -- deep merge Handlers options (c879cb6), closes #519
  • Various cleanup errors (538f6d0), closes #525

0.18.12 (2020-03-19)

Bug Fixes

  • types: Fix index.d.ts errors in cubejs-server. (#521) Thanks to jwalton! (0b01fd6)

Features

  • Add duration to error logging (59a4255)

0.18.11 (2020-03-18)

Bug Fixes

  • Orphaned pre-aggregation tables aren't dropped because LocalCacheDriver doesn't expire keys (393af3d)

0.18.10 (2020-03-18)

Features

  • mysql-driver: CUBEJS_DB_MAX_POOL env variable (e67e0c7)
  • mysql-driver: Provide a way to define pool options (2dbf302)

0.18.9 (2020-03-18)

Bug Fixes

  • mysql-driver: use utf8mb4 charset for columns to fix ER_TRUNCATED_WRONG_VALUE_FOR_FIELD (b68a7a8)

0.18.8 (2020-03-18)

Bug Fixes

  • Publish index.d.ts for @cubejs-backend/server. (#518) Thanks to @jwalton! (7e9861f)
  • mysql-driver: use utf8mb4 charset as default to fix ER_TRUNCATED_WRONG_VALUE_FOR_FIELD for string types (17e084e)

0.18.7 (2020-03-17)

Bug Fixes

  • Error: ER_TRUNCATED_WRONG_VALUE_FOR_FIELD for string types (c2ee5ee)

Features

  • Log requestId in compiling schema events (4c457c9)

0.18.6 (2020-03-16)

Bug Fixes

  • Waiting for query isn't logged for Local Queue when query is already in progress (e7be6d1)

0.18.5 (2020-03-15)

Bug Fixes

  • @cubejs-client/core: make progressCallback optional (#497) Thanks to @hassankhan! (a41cf9a)
  • requestId isn't propagating to all pre-aggregations messages (650dd6e)

0.18.4 (2020-03-09)

Bug Fixes

  • Request span for WebSocketTransport is incorrectly set (54ba5da)
  • results not converted to timezone unless granularity is set: value fails to match the required pattern (715ba71), closes #443

Features

0.18.3 (2020-03-02)

Bug Fixes

  • antd 4 support for dashboard (84bb164), closes #463
  • CUBEJS_REDIS_POOL_MAX=0 env variable setting isn't respected (75f6889)
  • Duration string is not printed for all messages -- Load Request SQL case (e0d3aff)

0.18.2 (2020-03-01)

Bug Fixes

  • Limit pre-aggregations fetch table requests using queue -- handle HA for pre-aggregations (75833b1)

0.18.1 (2020-03-01)

Bug Fixes

  • Remove user facing errors for pre-aggregations refreshes (d15c551)

0.18.0 (2020-03-01)

Bug Fixes

  • Error: client.readOnly is not a function (6069499)
  • External rollup type conversions: cast double to decimal for postgres (#421) Thanks to @sandeepravi! (a19410a)
  • athena-driver: Remove debug output (f538135)
  • Handle missing body-parser error (b90dd89)
  • Handle multiple occurrences in the first event of a funnel: conversion percent discrepancies. (0989482)
  • Handle primaryKey shown: false pitfall error (5bbf5f0)
  • Redis query queue locking redesign (a2eb9b2), closes #459
  • TypeError: Cannot read property 'queryKey' of null under load (0c996d8)

Features

0.17.10 (2020-02-20)

Bug Fixes

Features

  • cubejs-cli: Add node_modules to .gitignore (207544b)
  • Support external rollups from readonly source (#395) (b17e841)

0.17.9 (2020-02-18)

Features

0.17.8 (2020-02-14)

Bug Fixes

Features

0.17.7 (2020-02-12)

Bug Fixes

  • Invalid Date: Incorrect MySQL minutes granularity (dc553b9)
  • Respect MySQL TIMESTAMP strict mode on rollup downloads (c72ab07)
  • Wrong typings (c32fb0e)

Features

  • add bigquery-driver typings (0c5e0f7)
  • add postgres-driver typings (364d9bf)
  • add sqlite-driver typings (4446eba)
  • Cube.js agent (35366aa)
  • improve server-core typings (9d59300)
  • Set warn to be default log level for production logging (c4298ea)

0.17.6 (2020-02-10)

Bug Fixes

  • sqlAlias isn't used for pre-aggregation table names (b757175)
  • Multiplied measures rollup select case and leaf measure additive exact match (c897dec)

0.17.5 (2020-02-07)

Bug Fixes

  • Sanity check for silent truncate name problem during pre-aggregation creation (e7fb2f2)

0.17.4 (2020-02-06)

Bug Fixes

  • Don't fetch schema twice when generating in Playground. Big schemas take a lot of time to fetch. (3eeb73a)

0.17.3 (2020-02-06)

Bug Fixes

  • Fix typescript type definition (66e2fe5)

Features

  • Pre-aggregation indexes support (d443585)

0.17.2 (2020-02-04)

Bug Fixes

  • Funnel step names cannot contain spaces (aff1891), closes #359

0.17.1 (2020-02-04)

Bug Fixes

  • TypeError: Cannot read property 'map' of undefined (a12610d)

0.17.0 (2020-02-04)

Note: Version bump only for package cubejs

0.16.0 (2020-02-04)

Bug Fixes

  • Do not pad last 24 hours interval to day (6554611), closes #361

Features

0.15.4 (2020-02-02)

Features

  • Return shortTitle in tableColumns() result (810c812)

0.15.3 (2020-01-26)

Bug Fixes

  • TypeError: Cannot read property 'title' of undefined (3f76066)

0.15.2 (2020-01-25)

Bug Fixes

  • @cubejs-client/core: improve types (55edf85), closes #350
  • Time dimension ResultSet backward compatibility to allow work newer client with old server (b6834b1), closes #356

0.15.1 (2020-01-21)

Features

  • updateWindow property for incremental partitioned rollup refreshKey (09c0a86)

0.15.0 (2020-01-18)

Bug Fixes

  • "Illegal input character" when using originalSql pre-aggregation with BigQuery and USER_CONTEXT (904cf17), closes #197

Features

  • dynRef for dynamic member referencing (41b644c)
  • New refreshKeyRenewalThresholds and foreground renew defaults (9fb0abb)
  • Slow Query Warning and scheduled refresh for cube refresh keys (8768b0e)

0.14.3 (2020-01-17)

Bug Fixes

  • originalSql pre-aggregations with FILTER_PARAMS params mismatch (f4ee7b6)

Features

  • RefreshKeys helper extension of popular implementations (f2000c0)
  • Skip contents for huge queries in dev logs (c873a83)

0.14.2 (2020-01-17)

Bug Fixes

  • TypeError: Cannot read property 'evaluateSymbolSqlWithContext' of undefined (125afd7)

0.14.1 (2020-01-17)

Features

  • Default refreshKey implementations for mutable and immutable pre-aggregations. (bef0626)

0.14.0 (2020-01-16)

Bug Fixes

  • Cannot read property 'requestId' of null (d087837), closes #347
  • dateRange gets translated to incorrect value (71d07e6), closes #348
  • Time dimension can't be selected twice within same query with and without granularity (aa65129)

Features

  • Scheduled refresh for pre-aggregations (c87b525)
  • Scheduled Refresh REST API (472a0c3)

0.13.12 (2020-01-12)

Note: Version bump only for package cubejs

0.13.11 (2020-01-03)

Bug Fixes

  • Can't parse /node_modules/.bin/sha.js during dashboard creation (e13ad50)

0.13.10 (2020-01-03)

Bug Fixes

  • More details for parsing errors during dashboard creation (a8cb9d3)

0.13.9 (2020-01-03)

Bug Fixes

  • define context outside try-catch (3075624)

Features

  • @cubejs-client/core: add types (abdf089)
  • Improve logging (8a692c1)
  • mysql-driver: Increase external pre-aggregations upload batch size (741e26c)

0.13.8 (2019-12-31)

Bug Fixes

  • UnhandledPromiseRejectionWarning: TypeError: Converting circular structure to JSON (44c5065)

0.13.7 (2019-12-31)

Bug Fixes

  • ER_TRUNCATED_WRONG_VALUE: Truncated incorrect datetime value (fcbbe84), closes #309
  • schemaVersion called with old context (#293) (da10e39), closes #294
  • client-core: Uncaught TypeError: cubejs is not a function (b5c32cd)

Features

0.13.6 (2019-12-19)

Bug Fixes

  • Date parser returns 31 days for last 30 days date range (bedbe9c), closes #303
  • elasticsearch-driver: TypeError: Cannot convert undefined or null to object (2dc570f)

0.13.5 (2019-12-17)

Features

  • Elasticsearch driver preview (d6a6a07)
  • Return key in the resultSet.series alongside title (#291) (6144a86)

0.13.4 (2019-12-16)

Note: Version bump only for package cubejs

0.13.3 (2019-12-16)

Bug Fixes

  • sqlite-driver: Fixed table schema parsing: support for escape characters (#289). Thanks to @philippefutureboy! (42026fb)
  • Logging failing when pre-aggregations are built (22f77a6)

Features

  • d3-charts template package (f9bd3fb)
  • sqlite-driver: Pre-aggregations support (5ffb3d2)

0.13.2 (2019-12-13)

Features

0.13.1 (2019-12-10)

Bug Fixes

  • api-gateway: getTime on undefined call in case of web socket auth error (9807b1e)

0.13.0 (2019-12-10)

Bug Fixes

  • cube validation from updating BasePreAggregation (#285). Thanks to @ferrants! (f4bda4e)
  • Errors during web socket subscribe returned with status 200 code (6df008e)

Features

  • Minute and second granularities support (34c5d4c)
  • Sqlite driver implementation (f9b43d3)

0.12.3 (2019-12-02)

Note: Version bump only for package cubejs

0.12.2 (2019-12-02)

Bug Fixes

Features

0.12.1 (2019-11-26)

Features

  • Show used pre-aggregations and match rollup results in Playground (4a67346)

0.12.0 (2019-11-25)

Features

  • Show refreshKey values in Playground (b49e184)

0.11.25 (2019-11-23)

Bug Fixes

  • playground: Multiple conflicting packages applied at the same time: check for creation state before applying (35f6325)

Features

  • playground receipes - update copy and previews (b11a8c3)

0.11.24 (2019-11-20)

Bug Fixes

  • Material UI template doesn't work (deccca1)

0.11.23 (2019-11-20)

Features

  • Enable web sockets by default in Express template (815fb2c)

0.11.22 (2019-11-20)

Bug Fixes

  • Error: Router element is not found: Template Gallery source enumeration returns empty array (459a4a7)

0.11.21 (2019-11-20)

Features

  • schema-compiler: Upgrade babel and support objectRestSpread for schema generation (ac97c44)
  • Template gallery (#272) (f5ac516)

0.11.20 (2019-11-18)

Bug Fixes

Features

  • support for pre-aggregation time hierarchies (#258) Thanks to @Justin-ZS! (ea78c84), closes #246
  • per cube dataSource support (6dc3fef)

0.11.19 (2019-11-16)

Bug Fixes

  • Merge back sqlAlias support (80b312f)

0.11.18 (2019-11-09)

Note: Version bump only for package cubejs

0.11.17 (2019-11-08)

Bug Fixes

  • server-core: the schemaPath option does not work when generating schema (#255) (92f17b2)
  • Default Express middleware security check is ignored in production (4bdf6bd)

Features

  • Default root path message for servers running in production (5b7ef41)

0.11.16 (2019-11-04)

Bug Fixes

  • vue: Error: Invalid query format: "order" is not allowed (e6a738a)
  • Respect timezone for natural language date parsing and align custom date ranges to dates by default to ensure backward compatibility (af6f3c2)
  • Respect timezone for natural language date parsing and align custom date ranges to dates by default to ensure backward compatibility (2104492)
  • Use node index.js for npm run dev where available to ensure it starts servers with changed code (527e274)

0.11.15 (2019-11-01)

Bug Fixes

  • Reduce output for logging (aaf55e0)

0.11.14 (2019-11-01)

Bug Fixes

  • Catch unhandled rejections on server starts (fd9d872)

Features

  • pretty default logger and log levels (#244) (b1302d2)

0.11.13 (2019-10-30)

Features

  • playground: Static dashboard template (2458aad)

0.11.12 (2019-10-29)

Bug Fixes

  • Playground shouldn't be run in serverless environment by default (41cd46c)
  • react: Refetch hook only actual query changes (10b8988)

0.11.11 (2019-10-26)

Bug Fixes

  • postgres-driver: CUBEJS_DB_SSL=false should disable SSL (85064bc)

0.11.10 (2019-10-25)

Features

0.11.9 (2019-10-23)

Bug Fixes

  • Support apiToken to be an async function: first request sends incorrect token (a2d0c77)

0.11.8 (2019-10-22)

Bug Fixes

  • Pass checkAuth option to API Gateway (d3d690e)

0.11.7 (2019-10-22)

Features

0.11.6 (2019-10-17)

Bug Fixes

  • Postgres driver with redis in non UTC timezone returns timezone shifted results (f1346da)
  • TypeError: Cannot read property 'table_name' of undefined: Drop orphaned tables implementation drops recent tables in cluster environments (84ea78a)
  • Yesterday date range doesn't work (6c81a02)

0.11.5 (2019-10-17)

Bug Fixes

  • api-gateway: TypeError: res.json is not a function (7f3f0a8)

0.11.4 (2019-10-16)

Bug Fixes

  • Remove legacy scaffolding comments (123a929)
  • TLS redirect is failing if cube.js listening on port other than 80 (0fe92ec)

0.11.3 (2019-10-15)

Bug Fixes

  • useCubeQuery doesn't reset error and resultSet on query change (805d5b1)

0.11.2 (2019-10-15)

Bug Fixes

  • Error: ENOENT: no such file or directory, open 'Orders.js' (74a8875)
  • Incorrect URL generation in HttpTransport (7e7020b)

0.11.1 (2019-10-15)

Bug Fixes

  • Error: Cannot find module './WebSocketServer' (df3b074)

0.11.0 (2019-10-15)

Bug Fixes

  • TypeError: Cannot destructure property authInfo of 'undefined' or 'null'. (1886d13)

Features

0.10.62 (2019-10-11)

Features

  • vue: Add order, renewQuery, and reactivity to Vue component (#229). Thanks to @TCBroad (9293f13)
  • ungrouped queries support (c6ac873)

0.10.61 (2019-10-10)

Bug Fixes

  • Override incorrect button color in playground (6b7d964)
  • playground scaffolding include antd styles via index.css (881084e)
  • playground: Chart type doesn't switch in Dashboard App (23f604f)

Features

  • Scaffolding Updates React (#228) (552fd9c)
  • react: Introduce useCubeQuery react hook and CubeProvider cubejsApi context provider (19b6fac)
  • schema-compiler: Allow access raw data in USER_CONTEXT using unsafeValue() method (52ef146)

0.10.60 (2019-10-08)

Bug Fixes

  • client-ngx: Support Observables for config: runtime token change case (0e30773)

0.10.59 (2019-10-08)

Bug Fixes

  • hostname: command not found (8ca1f21)
  • Rolling window returns dates in incorrect time zone for Postgres (71a3baa), closes #216

0.10.58 (2019-10-04)

Bug Fixes

  • playground: Fix recharts height (cd75409)
  • continueWaitTimout option is ignored in LocalQueueDriver (#224) (4f72a52)

0.10.57 (2019-10-04)

Bug Fixes

  • react: Evade unnecessary heavy chart renders (b1eb63f)

0.10.56 (2019-10-04)

Bug Fixes

  • react: Evade unnecessary heavy chart renders (bdcc569)

0.10.55 (2019-10-03)

Bug Fixes

  • client-core: can't read property 'title' of undefined (4b48c7f)
  • playground: Dashboard item name edit performance issues (73df3c7)
  • playground: PropTypes validations (3d5faa1)
  • playground: Recharts fixes (bce0313)

0.10.54 (2019-10-02)

Note: Version bump only for package cubejs

0.10.53 (2019-10-02)

Bug Fixes

  • playground: antd styles are added as part of table scaffolding (8a39c9d)
  • playground: Can't delete dashboard item name in dashboard app (0cf546f)
  • playground: Recharts extra code (950541c)

Features

  • client-react: provide isQueryPresent() as static API method (59dc5ce)
  • playground: Make dashboard loading errors permanent (155380d)
  • playground: Recharts code generation support (c8c8230)

0.10.52 (2019-10-01)

Bug Fixes

  • client-ngx: client.ts is missing from the TypeScript compilation. Fix files (f4885b4)

0.10.51 (2019-10-01)

Bug Fixes

  • client-ngx: client.ts is missing from the TypeScript compilation. Fix files (8fe80f6)

0.10.50 (2019-10-01)

Bug Fixes

  • client-ngx: client.ts is missing from the TypeScript compilation. Fix files (ae5c2df)

0.10.49 (2019-10-01)

Bug Fixes

  • client-ngx: client.ts is missing from the TypeScript compilation (65a30cf)

0.10.48 (2019-10-01)

Bug Fixes

  • client-ngx: client.ts is missing from the TypeScript compilation (ffab1a1)

0.10.47 (2019-10-01)

Bug Fixes

  • client-ngx: client.ts is missing from the TypeScript compilation (7dfc071)

0.10.46 (2019-09-30)

Features

  • Restructure Dashboard scaffolding to make it more user friendly and reliable (78ba3bc)

0.10.45 (2019-09-27)

Bug Fixes

  • TypeError: "listener" argument must be a function (5cfc61e)

0.10.44 (2019-09-27)

Bug Fixes

  • npm installs old dependencies on dashboard creation (a7d519c)
  • playground: use default 3000 port for dashboard app as it's more appropriate (ec4f3f4)

Features

  • cubejs-server: Integrated support for TLS (#213) (66fe156)
  • playground: Rename Explore to Build (ce067a9)
  • playground: Show empty dashboard note (ef559e5)
  • playground: Support various chart libraries for dashboard generation (a4ba9c5)

0.10.43 (2019-09-27)

Bug Fixes

  • empty array reduce error in stackedChartData (#211) (1dc44bb)

Features

0.10.42 (2019-09-16)

Bug Fixes

  • client-ngx: Function calls are not supported in decorators but 'ɵangular_packages_core_core_a' was called. (65871f9)

0.10.41 (2019-09-13)

Bug Fixes

  • support for deep nested watchers on 'QueryRenderer' (#207) (8d3a500)

Features

  • Provide date filter with hourly granularity (e423d82), closes #179

0.10.40 (2019-09-09)

Bug Fixes

0.10.39 (2019-09-09)

Bug Fixes

  • Requiring local node files is restricted: adding test for relative path resolvers (f328d07)

0.10.38 (2019-09-09)

Bug Fixes

  • Requiring local node files is restricted (ba3c390)

0.10.37 (2019-09-09)

Bug Fixes

  • client-ngx: Omit warnings for Angular import: Use cjs module as main (97e8d48)

0.10.36 (2019-09-09)

Bug Fixes

  • all queries forwarded to external DB instead of original one for zero pre-aggregation query (2c230f4)

0.10.35 (2019-09-09)

Bug Fixes

  • LocalQueueDriver key interference for multitenant deployment (aa860e4)

Features

  • mysql-driver: Faster external pre-aggregations upload (b6e3ee6)
  • originalSql external pre-aggregations support (0db2282)
  • Serve pre-aggregated data right from external database without hitting main one if pre-aggregation is available (931fb7c)

0.10.34 (2019-09-06)

Bug Fixes

  • Athena timezone conversion issue for non-UTC server (7085d2f)

0.10.33 (2019-09-06)

Bug Fixes

  • Revert to default queue concurrency for external pre-aggregations as driver pools expect this be aligned with default pool size (c695ddd)

0.10.32 (2019-09-06)

Bug Fixes

  • In memory queue driver drop state if rollups are building too long (ad4c062)

Features

0.10.31 (2019-08-27)

Bug Fixes

  • athena-driver: TypeError: Cannot read property 'map' of undefined (478c6c6)

0.10.30 (2019-08-26)

Bug Fixes

  • Athena doesn't support _ in contains filter (d330be4)
  • Athena doesn't support ' in contains filter (40a36d5)

Features

  • REDIS_TLS=true env variable support (55858cf)

0.10.29 (2019-08-21)

Bug Fixes

  • MS SQL segment pre-aggregations support (f8e37bf), closes #186

0.10.28 (2019-08-19)

Bug Fixes

  • BigQuery to Postgres external rollup doesn't work (feccdb5), closes #178
  • Presto error messages aren't showed correctly (5f41afe)
  • Show dev server errors in console (e8c3af9)

0.10.27 (2019-08-18)

Features

  • Make preAggregationsSchema an option of CubejsServerCore - missed option propagation (60d5704), closes #96

0.10.26 (2019-08-18)

Features

  • Make preAggregationsSchema an option of CubejsServerCore (3b1b082), closes #96

0.10.25 (2019-08-17)

Bug Fixes

  • MS SQL has unusual CREATE SCHEMA syntax (16b8c87), closes #185

0.10.24 (2019-08-16)

Bug Fixes

  • MS SQL has unusual CTAS syntax (1a00e4a), closes #185

0.10.23 (2019-08-14)

Bug Fixes

  • Unexpected string literal Bigquery (8768895), closes #182

0.10.22 (2019-08-09)

Bug Fixes

  • clickhouse-driver: Empty schema when CUBEJS_DB_NAME is provided (7117e89)

0.10.21 (2019-08-05)

Features

0.10.20 (2019-08-03)

Features

  • playground: Various dashboard hints (eed2b55)

0.10.19 (2019-08-02)

Bug Fixes

  • postgres-driver: ERROR: type "string" does not exist (d472e89), closes #176

0.10.18 (2019-07-31)

Bug Fixes

  • BigQuery external rollup compatibility: use __ separator for member aliases. Fix missed override. (c1eb113)

0.10.17 (2019-07-31)

Bug Fixes

  • BigQuery external rollup compatibility: use __ separator for member aliases. Fix all tests. (723359c)
  • Moved joi dependency to it's new availability (#171) (1c20838)

Features

  • playground: Show editable files hint (2dffe6c)
  • playground: Slack and Docs links (3270e70)

0.10.16 (2019-07-20)

Bug Fixes

  • Added correct string concat for Mysql. (#162) (287411b)
  • remove redundant hacks: primaryKey filter for method dimensionColumns (#161) (f910a56)

Features

  • BigQuery external rollup support (10c635c)
  • Lean more on vue slots for state (#148) (e8af88d)

0.10.15 (2019-07-13)

Note: Version bump only for package cubejs

0.10.14 (2019-07-13)

Features

0.10.13 (2019-07-08)

Bug Fixes

  • bigquery-driver: Error with Cube.js pre-aggregations in BigQuery (01815a1), closes #158
  • cli: update mem dependency security alert (06a07a2)

Features

  • playground: Copy code to clipboard (30a2528)

0.10.12 (2019-07-06)

Bug Fixes

  • Empty array for BigQuery in serverless GCP deployment (#155) (045094c), closes #153
  • QUERIES_undefined redis key for QueryQueue (4c44886)

Features

  • playground: Links to Vanilla, Angular and Vue.js docs (184495c)

0.10.11 (2019-07-02)

Bug Fixes

  • TypeError: Cannot read property 'startsWith' of undefined at tableDefinition.filter.column: support uppercase databases (995b115)

0.10.10 (2019-07-02)

Bug Fixes

  • mongobi-driver: accessing password field of undefined (#147) (bdd9580)

0.10.9 (2019-06-30)

Bug Fixes

  • Syntax error during parsing: Unexpected token, expected: escaping back ticks (9638a1a)

Features

  • playground: Chart.js charting library support (40bb5d0)

0.10.8 (2019-06-28)

Features

  • More readable compiling schema log message (246805b)
  • Presto driver (1994083)

0.10.7 (2019-06-27)

Bug Fixes

  • config provided password not passed to server (#145) (4b1afb1)
  • Module not found: Can't resolve 'react' (a00e588)

0.10.6 (2019-06-26)

Bug Fixes

  • Update version to fix audit warnings (1bce587)

0.10.5 (2019-06-26)

Bug Fixes

  • Update version to fix audit warnings (f8f5225)

0.10.4 (2019-06-26)

Bug Fixes

  • Gray screen for Playground on version update (b08333f)

Features

  • More descriptive error for SyntaxError (f6d12d3)

0.10.3 (2019-06-26)

Bug Fixes

  • Snowflake driver config var typo (d729b9d)

0.10.2 (2019-06-26)

Bug Fixes

  • Snowflake driver missing dependency (b7620b3)

0.10.1 (2019-06-26)

Features

0.10.0 (2019-06-21)

Features

  • api-gateway: queryTransformer security hook (a9c41b2)
  • playground: App layout for dashboard (f5578dd)
  • schema-compiler: asyncModules and Node.js require(): support loading cube definitions from DB and other async sources (397cceb), closes #141

0.9.24 (2019-06-17)

Bug Fixes

  • mssql-driver: Fix domain passed as an empty string case: ConnectionError: Login failed. The login is from an untrusted domain and cannot be used with Windows authentication (89383dc)
  • Fix dev server in production mode message (7586ad5)

Features

  • mssql-driver: Support query cancellation (22a4bba)

0.9.23 (2019-06-17)

Bug Fixes

  • hive: Fix count when id is not defined (5a5fffd)
  • hive-driver: SparkSQL compatibility (1f20225)

0.9.22 (2019-06-16)

Bug Fixes

  • hive-driver: Incorrect default Hive version (379bff2)

0.9.21 (2019-06-16)

Features

  • Hive dialect for simple queries (30d4a30)

0.9.20 (2019-06-16)

Bug Fixes

  • api-gateway: Unexpected token u in JSON at position 0 at JSON.parse (f95cea8)

Features

  • Pure JS Hive Thrift Driver (4ca169e)

0.9.19 (2019-06-13)

Bug Fixes

  • api-gateway: handle can't parse date: Cannot read property 'end' of undefined (a61b0da)
  • serverless: remove redundant CUBEJS_API_URL env variable: Serverless offline framework support (84a20b3), closes #121
  • Handle requests for hidden members: TypeError: Cannot read property 'type' of undefined at R.pipe.R.map.p (5cdf71b)
  • Handle rollingWindow queries without dateRange: TypeError: Cannot read property '0' of undefined at BaseTimeDimension.dateFromFormatted (409a238)
  • issue with query generator for Mongobi for nested fields in document (907b234), closes #56
  • More descriptive SyntaxError messages (acd17ad)

Features

  • Add Typescript typings for server-core (#111) (b1b895e)

0.9.18 (2019-06-12)

Bug Fixes

  • mssql-driver: Set default request timeout to 10 minutes (c411484)

0.9.17 (2019-06-11)

Bug Fixes

  • cli: jdbc-driver fail hides db type not supported errors (6f7c675)

Features

  • mssql-driver: Add domain env variable (bb4c4a8)

0.9.16 (2019-06-10)

Bug Fixes

  • force escape cubeAlias to work with restricted column names such as "case" (#128) (b8a59da)
  • playground: Do not cache index.html to prevent missing resource errors on version upgrades (4f20955), closes #116

Features

  • cli: Edit .env after app create help instruction (f039c01)
  • playground: Go to explore modal after schema generation (5325c2d)

0.9.15 (2019-06-07)

Bug Fixes

  • schema-compiler: subquery in FROM must have an alias -- fix Redshift rollingWindow (70b752f)

0.9.14 (2019-06-07)

Features

  • Add option to run in production without redis (a7de417), closes #110
  • Added SparkSQL and Hive support to the JDBC driver. (#127) (659c24c)
  • View Query SQL in Playground (8ef28c8)

0.9.13 (2019-06-06)

Bug Fixes

  • Schema generation with joins having case sensitive table and column names (#124) (c7b706a), closes #120 #120

0.9.12 (2019-06-03)

Bug Fixes

  • api-gateway: Unexpected token u in JSON at position 0 at JSON.parse (91ca994)
  • client-core: Update normalizePivotConfig method to not to fail if x or y are missing (ee20863), closes #10
  • schema-compiler: cast parameters for IN filters (28f3e48), closes #119

0.9.11 (2019-05-31)

Bug Fixes

  • client-core: ResultSet series returns a series with no data (715e170), closes #38
  • schema-compiler: TypeError: Cannot read property 'filterToWhere' of undefined (6b399ea)

0.9.10 (2019-05-29)

Bug Fixes

  • cli: @cubejs-backend/schema-compiler/scaffolding/ScaffoldingTemplate dependency not found (4296204)

0.9.9 (2019-05-29)

Bug Fixes

  • cli: missing package files (81e8549)

0.9.8 (2019-05-29)

Features

  • cubejs-cli: add token generation (#67) (2813fed)
  • postgres-driver: SSL error hint for Heroku users (0e9b9cb)

0.9.7 (2019-05-27)

Features

  • postgres-driver: support CUBEJS_DB_SSL option (67a767e)

0.9.6 (2019-05-24)

Bug Fixes

  • contains filter does not work with MS SQL Server database (35210f6), closes #113

Features

  • better npm fail message in Playground (545a020)
  • playground: better add to dashboard error messages (94e8dbf)

0.9.5 (2019-05-22)

Features

  • Propagate renewQuery option from API to orchestrator (9c640ba), closes #112

0.9.4 (2019-05-22)

Features

  • Add refreshKeyRenewalThreshold option (aa69449), closes #112

0.9.3 (2019-05-21)

Bug Fixes

  • playground: revert back create-react-app to npx as there're much more problems with global npm (e434939)

0.9.2 (2019-05-11)

Bug Fixes

  • External rollups serverless implementation (6d13370)

0.9.1 (2019-05-11)

Bug Fixes

  • update BaseDriver dependencies (a7aef2b)

0.9.0 (2019-05-11)

Features

  • External rollup implementation (d22a809)

0.8.7 (2019-05-09)

Bug Fixes

  • cubejs-react: add core-js dependency (#107) (0e13ffe)
  • query-orchestrator: Athena got swamped by fetch schema requests (d8b5440)

0.8.6 (2019-05-05)

Bug Fixes

Features

  • Replace codesandbox by running dashboard react-app directly (861c817)

0.8.5 (2019-05-02)

Bug Fixes

  • clickhouse-driver: merging config with custom queryOptions which were not passing along the database (#100) (dedc279)

0.8.4 (2019-05-02)

Features

0.8.3 (2019-05-01)

Features

0.8.2 (2019-04-30)

Bug Fixes

  • Wrong variables when creating new BigQuery backed project (bae6348), closes #97

0.8.1 (2019-04-30)

Bug Fixes

  • add the missing @cubejs-client/vue package (#95) (9e8c4be)

Features

  • Driver for ClickHouse database support (#94) (0f05321), closes #1
  • Serverless Google Cloud Platform in CLI support (392ba1e)

0.8.0 (2019-04-29)

Features

  • Serverless Google Cloud Platform support (89ec0ec)

0.7.10 (2019-04-25)

Bug Fixes

  • client-core: Table pivot incorrectly behaves with multiple measures (adb2270)
  • client-core: use ',' as standard axisValue delimiter (e889955), closes #19

0.7.9 (2019-04-24)

Features

  • schema-compiler: Allow to pass functions to USER_CONTEXT (b489090), closes #88

0.7.8 (2019-04-24)

Bug Fixes

  • playground: Dashboard doesn't work on Windows (48a2ec4), closes #82

0.7.7 (2019-04-24)

Bug Fixes

  • playground: Dashboard doesn't work on Windows (7c48aa4), closes #82

0.7.6 (2019-04-23)

Bug Fixes

  • playground: Cannot read property 'content' of undefined at e.value (7392feb)
  • Use cross-fetch instead of isomorphic-fetch to allow React-Native builds (#92) (79150f4)
  • query-orchestrator: add RedisFactory and promisify methods manually (#89) (cdfcd87), closes #84

Features

  • Support member key in filters in query (#91) (e1fccc0)
  • schema-compiler: Athena rollingWindow support (f112c69)

0.7.5 (2019-04-18)

Bug Fixes

  • schema-compiler: Athena, Mysql and BigQuery doesn't respect multiple contains filter (0a8f324)

0.7.4 (2019-04-17)

Bug Fixes

  • Make dashboard app creation explicit. Show error messages if dashboard failed to create. (3b2a22b)
  • api-gateway: measures is always required (04adb7d)
  • mongobi-driver: fix ssl configuration (#78) (ddc4dff)

0.7.3 (2019-04-16)

Bug Fixes

  • Allow SSR: use isomorphic-fetch instead of whatwg-fetch. (902e581), closes #1

0.7.2 (2019-04-15)

Bug Fixes

  • Avoid 502 for Playground in serverless: minimize babel (f9d3171)

Features

0.7.1 (2019-04-15)

Bug Fixes

  • serverless: getApiHandler called on undefined (0ee5121)
  • Allow Playground to work in Serverless mode (2c0c89c)

0.7.0 (2019-04-15)

Features

  • App multi-tenancy support in single ServerCore instance (6f0220f)

0.6.2 (2019-04-12)

Features

  • Natural language date range support (b962e80)
  • api-gateway: Order support (670237b)

0.6.1 (2019-04-11)

Bug Fixes

  • Get Playground API_URL from window.location until provided explicitly in env. Remote server playground case. (7b1a0ff)

Features

  • Disable authentication checks in developer mode (bc09eba)
  • Formatted error logging in developer mode (3376a50)

0.6.0 (2019-04-09)

Bug Fixes

  • playground: no such file or directory, scandir 'dashboard-app/src' (64ec481)

Features

  • query validation added in api-gateway (#73) (21f6176), closes #39
  • QueryBuilder heuristics. Playground area, table and number implementation. (c883a48)
  • Vue.js reactivity on query update (#70) (167fdbf)

0.5.2 (2019-04-05)

Features

  • Add redshift to postgres driver link (#71) (4797588)
  • Playground UX improvements (6760a1d)

0.5.1 (2019-04-02)

Features

0.5.0 (2019-04-01)

Bug Fixes

Features

  • add basic vue support (#65) (f45468b)
  • use local queue and cache for local dev server instead of Redis one (50f1bbb)

0.4.6 (2019-03-27)

Features

  • Dashboard Generator for Playground (28a42ee)

0.4.5 (2019-03-21)

Bug Fixes

  • client-react - query prop now has default blank value (#54) (27e7090)

Features

  • Make API path namespace configurable (#53) (b074a3d)
  • Playground filters implementation (de4315d)

0.4.4 (2019-03-17)

Bug Fixes

  • Postgres doesn't show any data for queries with time dimension. (e95e6fe)

Features

  • Introduce Schema generation UI in Playground (349c7d0)

0.4.3 (2019-03-15)

Bug Fixes

  • mongobi-driver: implement convert_tz as a simple hour shift (c97e451), closes #50

0.4.2 (2019-03-14)

Bug Fixes

  • mongobi-driver: Fix Server does not support secure connnection on connection to localhost (3202508)

0.4.1 (2019-03-14)

Bug Fixes

  • concat called on undefined for empty MongoDB password (7d75b1e)

Features

  • Allow to use custom checkAuth middleware (19d5cd8), closes #42

0.4.0 (2019-03-13)

Features

  • Add MongoBI connector and schema adapter support (3ebbbf0)

0.3.5-alpha.0 (2019-03-12)

Note: Version bump only for package cubejs