@clickhouse/client-web 1.23.0-head.dbc2960.1 → 1.23.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -63,12 +63,12 @@ npm i @clickhouse/client-web
63
63
 
64
64
  Node.js must be available in the environment to run the Node.js client. The client is compatible with all the [maintained](https://github.com/nodejs/release#readme) Node.js releases.
65
65
 
66
- | Node.js version | Supported? |
67
- | --------------- | ----------- |
68
- | 24.x | ✔ |
69
- | 22.x | ✔ |
70
- | 20.x | ✔ |
71
- | 18.x | Best effort |
66
+ | Node.js version | Supported? |
67
+ | --------------- | ---------- |
68
+ | 26.x | ✔ |
69
+ | 24.x | ✔ |
70
+ | 22.x | ✔ |
71
+ | 20.x | |
72
72
 
73
73
  ### TypeScript
74
74
 
@@ -110,6 +110,18 @@ See more examples in the [examples directory](./examples).
110
110
 
111
111
  See the [ClickHouse website](https://clickhouse.com/docs/integrations/javascript) for the full documentation.
112
112
 
113
+ ## Changelog
114
+
115
+ Each package keeps its own changelog:
116
+
117
+ - `@clickhouse/client` — [`packages/client-node/CHANGELOG.md`](./packages/client-node/CHANGELOG.md)
118
+ - `@clickhouse/client-web` — [`packages/client-web/CHANGELOG.md`](./packages/client-web/CHANGELOG.md)
119
+ - `@clickhouse/client-common` (deprecated) — [`packages/client-common/CHANGELOG.md`](./packages/client-common/CHANGELOG.md)
120
+ - `@clickhouse/datatype-parser` — [`packages/datatype-parser/CHANGELOG.md`](./packages/datatype-parser/CHANGELOG.md)
121
+ - `@clickhouse/rowbinary` — [`skills/clickhouse-js-node-rowbinary/CHANGELOG.md`](./skills/clickhouse-js-node-rowbinary/CHANGELOG.md)
122
+
123
+ History through `@clickhouse/client` 1.23.0 lives in the now-frozen repository-wide [`CHANGELOG.md`](./CHANGELOG.md).
124
+
113
125
  ## AI Agent Skills
114
126
 
115
127
  This repository contains agent skills for working with the client:
package/dist/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "1.23.0-head.dbc2960.1";
1
+ declare const _default: "1.23.0";
2
2
  export default _default;
package/dist/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.default = "1.23.0-head.dbc2960.1";
3
+ exports.default = "1.23.0";
4
4
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.js","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":";;AAAA,kBAAe,uBAAuB,CAAC"}
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":";;AAAA,kBAAe,QAAQ,CAAC"}
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@clickhouse/client-web",
3
3
  "description": "Official JS client for ClickHouse DB - Web API implementation",
4
4
  "homepage": "https://clickhouse.com",
5
- "version": "1.23.0-head.dbc2960.1",
5
+ "version": "1.23.0",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
8
8
  "clickhouse",
@@ -15,7 +15,8 @@
15
15
  },
16
16
  "private": false,
17
17
  "files": [
18
- "dist"
18
+ "dist",
19
+ "CHANGELOG.md"
19
20
  ],
20
21
  "exports": {
21
22
  "types": "./dist/index.d.ts",