Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
26449e9171 | |||
c91b7a200b |
22
changelog.md
22
changelog.md
@ -1,24 +1,6 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## {{nextVersion}} - {{nextVersionMessage}}
|
## 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.
|
||||||
|
|
||||||
### 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
|
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Tables now have a default TTL (Time-To-Live) for data of 1 month
|
- Fixed test case for table deletion and optimized code
|
||||||
|
|
||||||
## 1.0.10 - fix(TimDataTable): cleanup
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
- Cleaned up TimDataTable configuration
|
|
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "@push.rocks/smartclickhouse",
|
"name": "@push.rocks/smartclickhouse",
|
||||||
"version": "2.0.18",
|
"version": "2.1.0",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@push.rocks/smartclickhouse",
|
"name": "@push.rocks/smartclickhouse",
|
||||||
"version": "2.0.18",
|
"version": "2.1.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@push.rocks/smartdelay": "^2.0.13",
|
"@push.rocks/smartdelay": "^2.0.13",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@push.rocks/smartclickhouse",
|
"name": "@push.rocks/smartclickhouse",
|
||||||
"version": "2.0.18",
|
"version": "2.1.0",
|
||||||
"private": false,
|
"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.",
|
"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",
|
"main": "dist_ts/index.js",
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/smartclickhouse',
|
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.'
|
description: 'A TypeScript-based ODM for ClickHouse databases that supports creating, managing, and querying tables with a focus on handling time-series data.'
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user