@clickhouse/client-web 1.20.0-head.5423b05.1 → 1.20.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
@@ -12,8 +12,12 @@
12
12
  <img alt="NPM Downloads" src="https://img.shields.io/npm/dw/%40clickhouse%2Fclient?color=%233178C6&logo=npm">
13
13
  </a>
14
14
 
15
- <a href="https://github.com/ClickHouse/clickhouse-js/actions/workflows/tests.yml">
16
- <img src="https://github.com/ClickHouse/clickhouse-js/actions/workflows/tests.yml/badge.svg?branch=main">
15
+ <a href="https://github.com/ClickHouse/clickhouse-js/actions/workflows/tests-node.yml">
16
+ <img src="https://github.com/ClickHouse/clickhouse-js/actions/workflows/tests-node.yml/badge.svg?branch=main">
17
+ </a>
18
+
19
+ <a href="https://github.com/ClickHouse/clickhouse-js/actions/workflows/tests-web.yml">
20
+ <img src="https://github.com/ClickHouse/clickhouse-js/actions/workflows/tests-web.yml/badge.svg?branch=main">
17
21
  </a>
18
22
 
19
23
  <a href="https://codecov.io/gh/ClickHouse/clickhouse-js">
@@ -135,3 +139,5 @@ If you have any questions or need help, feel free to reach out to us in the [Com
135
139
  ## Contributing
136
140
 
137
141
  Check out our [contributing guide](./CONTRIBUTING.md).
142
+
143
+ If you'd like to build a client for an alternative runtime (such as Bun or Cloudflare Workers) or an alternative protocol (such as the native ClickHouse protocol or gRPC over a proxy), see [Building specialized clients for alternative runtimes and protocols](./ALTERNATIVE_CLIENTS.md).
package/dist/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "1.20.0-head.5423b05.1";
1
+ declare const _default: "1.20.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.20.0-head.5423b05.1';
3
+ exports.default = '1.20.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,CAAA"}
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":";;AAAA,kBAAe,QAAQ,CAAA"}
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.20.0-head.5423b05.1",
5
+ "version": "1.20.0",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
8
8
  "clickhouse",
@@ -31,6 +31,6 @@
31
31
  "build": "rm -rf dist; tsc"
32
32
  },
33
33
  "dependencies": {
34
- "@clickhouse/client-common": "1.20.0-head.5423b05.1"
34
+ "@clickhouse/client-common": "1.20.0"
35
35
  }
36
36
  }