2 Commits

4 changed files with 6 additions and 24 deletions

View File

@ -1,24 +1,6 @@
# Changelog
## {{nextVersion}} - {{nextVersionMessage}}
### Changed
- Updated description
- Updated tsconfig
- Updated npmextra.json: githost
- Switched to new org scheme
## 2.0.0 - BREAKING CHANGE(core): switch to esm
### Changed
- Switched to ECMAScript modules
## 1.0.9 - fix(TTL): tables now have a default TTL for data of 1 MONTH
## 2.1.0 - feat(core): Added comprehensive support for `SmartClickHouseDb` and `TimeDataTable` with features including time data table creation, data insertion, bulk data insertion, querying, data deletion, and real-time data observation. Included standalone Clickhouse HTTP client implementation.
### Fixed
- Tables now have a default TTL (Time-To-Live) for data of 1 month
## 1.0.10 - fix(TimDataTable): cleanup
### Fixed
- Cleaned up TimDataTable configuration
- Fixed test case for table deletion and optimized code

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@push.rocks/smartclickhouse",
"version": "2.0.18",
"version": "2.1.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@push.rocks/smartclickhouse",
"version": "2.0.18",
"version": "2.1.0",
"license": "MIT",
"dependencies": {
"@push.rocks/smartdelay": "^2.0.13",

View File

@ -1,6 +1,6 @@
{
"name": "@push.rocks/smartclickhouse",
"version": "2.0.18",
"version": "2.1.0",
"private": false,
"description": "A TypeScript-based ODM for ClickHouse databases that supports creating, managing, and querying tables with a focus on handling time-series data.",
"main": "dist_ts/index.js",

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartclickhouse',
version: '2.0.18',
version: '2.1.0',
description: 'A TypeScript-based ODM for ClickHouse databases that supports creating, managing, and querying tables with a focus on handling time-series data.'
}