Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .changeset/funny-planes-smile.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
'@evidence-dev/core-components': major
---

- Timezone Fixes
- Changed the default value to today
- Year select only shows the first and last date in the data
- Disabled dates that are before or after the first and last date
- Added Today and Yesterday range presets
2 changes: 0 additions & 2 deletions packages/datasources/duckdb/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@
### Major Changes

- b28f63f23: Update DuckDB to latest packages:

- Switch to @duckdb/node-api from duckdb-async
- Update duckdb-wasm to latest release

This release also has small data fixes across several packages:

- Better handling of NULL values when discovering column types
- Fix batch processing of parquet files
- Fix error with temporary parquet files when reloading data in dev environment
Expand Down
2 changes: 0 additions & 2 deletions packages/lib/db-commons/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@
### Minor Changes

- b28f63f23: Update DuckDB to latest packages:

- Switch to @duckdb/node-api from duckdb-async
- Update duckdb-wasm to latest release

This release also has small data fixes across several packages:

- Better handling of NULL values when discovering column types
- Fix batch processing of parquet files
- Fix error with temporary parquet files when reloading data in dev environment
Expand Down
2 changes: 0 additions & 2 deletions packages/lib/universal-sql/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@
### Major Changes

- b28f63f23: Update DuckDB to latest packages:

- Switch to @duckdb/node-api from duckdb-async
- Update duckdb-wasm to latest release

This release also has small data fixes across several packages:

- Better handling of NULL values when discovering column types
- Fix batch processing of parquet files
- Fix error with temporary parquet files when reloading data in dev environment
Expand Down
3 changes: 0 additions & 3 deletions packages/ui/core-components/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@
### Minor Changes

- b28f63f23: Update DuckDB to latest packages:

- Switch to @duckdb/node-api from duckdb-async
- Update duckdb-wasm to latest release

This release also has small data fixes across several packages:

- Better handling of NULL values when discovering column types
- Fix batch processing of parquet files
- Fix error with temporary parquet files when reloading data in dev environment
Expand All @@ -27,7 +25,6 @@
- 6d2782e64: Fixed base path not being applied to data file (parquet) URLs. This resolves an issue where applications deployed with a base path would fail to load data files, resulting in 404 errors.

The fix restores the dependency injection pattern for the `addBasePath` function in `setParquetURLs`, ensuring that base paths are correctly applied to all data requests in both monorepo and published package environments.

- @evidence-dev/component-utilities@4.0.10
- @evidence-dev/tailwind@3.1.1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,9 @@
$: startString = formatDateString(start || $query?.[0].start || new Date(0));
$: endString = formatDateString(end || $query?.[0].end || new Date());

let currentDate = dateToYYYYMMDD(new Date());

let extraDayEndString;

$: if (endString && range) {
$: if (endString) {
extraDayEndString = new Date(endString);
extraDayEndString.setDate(extraDayEndString.getDate() + 1);
extraDayEndString = formatDateString(extraDayEndString);
Expand Down Expand Up @@ -152,9 +150,10 @@
{presetRanges}
{defaultValue}
{range}
{currentDate}
{title}
{description}
{data}
{dates}
/>
</QueryLoad>
{/if}
Expand Down
Loading