author
int64
658
755k
date
stringdate
2012-06-12 08:34:29
2024-07-22 14:51:21
timezone
int64
-46,800
43.2k
hash
stringlengths
40
40
message
stringlengths
5
490
mods
listlengths
1
16
language
stringclasses
20 values
license
stringclasses
3 values
repo
stringlengths
5
68
original_message
stringlengths
12
491
305,159
10.03.2022 08:11:16
-3,600
10fd4eb047289870c7cc79078d1fc504d8608603
feat(core): add expiration time to writeFailed callback
[ { "change_type": "MODIFY", "old_path": "packages/core/src/impl/WriteApiImpl.ts", "new_path": "packages/core/src/impl/WriteApiImpl.ts", "diff": "@@ -173,7 +173,8 @@ export default class WriteApiImpl implements WriteApi {\nself,\nerror,\nlines,\n- failedAttempts\n+ failedAttempts,\n+ expires\n)\nif (o...
TypeScript
MIT License
influxdata/influxdb-client-js
feat(core): add expiration time to writeFailed callback
305,159
10.03.2022 08:13:05
-3,600
91993630dbb40111bcf199a5ba69595b2253a31f
fix(core): call the writeFailed fn also on exceeded max retry time
[ { "change_type": "MODIFY", "old_path": "packages/core/src/impl/WriteApiImpl.ts", "new_path": "packages/core/src/impl/WriteApiImpl.ts", "diff": "@@ -155,6 +155,16 @@ export default class WriteApiImpl implements WriteApi {\nif (!this.closed && lines.length > 0) {\nif (expires <= Date.now()) {\nconst e...
TypeScript
MIT License
influxdata/influxdb-client-js
fix(core): call the writeFailed fn also on exceeded max retry time
305,159
10.03.2022 08:43:40
-3,600
b363e03f7e0d7b59125bd4f5e63318b04a024321
fix(core): test writeFailed called when retry expires
[ { "change_type": "MODIFY", "old_path": "packages/core/test/unit/WriteApi.test.ts", "new_path": "packages/core/test/unit/WriteApi.test.ts", "diff": "@@ -185,6 +185,38 @@ describe('WriteApi', () => {\nexpect(logs.error[0][1].toString()).contains('Max retry time exceeded')\n})\n})\n+ it('call writeFail...
TypeScript
MIT License
influxdata/influxdb-client-js
fix(core): test writeFailed called when retry expires
305,159
10.03.2022 09:24:51
-3,600
a806f3a9da917af213649f9d1e958b4fb20d343f
chore(core): simplify retryAttempt counting
[ { "change_type": "MODIFY", "old_path": "packages/core/src/impl/WriteApiImpl.ts", "new_path": "packages/core/src/impl/WriteApiImpl.ts", "diff": "@@ -116,7 +116,7 @@ export default class WriteApiImpl implements WriteApi {\n() =>\nthis.sendBatch(\nthis.writeBuffer.reset(),\n- this.writeOptions.maxRetri...
TypeScript
MIT License
influxdata/influxdb-client-js
chore(core): simplify retryAttempt counting
305,159
10.03.2022 09:49:30
-3,600
34cd17e950f266a263a54ef9587dee2d021ccfac
chore(core): add test retry attempt counting
[ { "change_type": "MODIFY", "old_path": "packages/core/src/options.ts", "new_path": "packages/core/src/options.ts", "diff": "@@ -93,7 +93,7 @@ export interface WriteRetryOptions extends RetryDelayStrategyOptions {\n*/\nwriteSuccess(this: WriteApi, lines: Array<string>): void\n- /** max number of writ...
TypeScript
MIT License
influxdata/influxdb-client-js
chore(core): add test retry attempt counting
305,159
10.03.2022 10:24:11
-3,600
2433c588945d0eabe90d81fc45c612ae3e3dae14
chore(core): improve documentation of writeFailed fn
[ { "change_type": "MODIFY", "old_path": "packages/core/src/options.ts", "new_path": "packages/core/src/options.ts", "diff": "@@ -73,7 +73,7 @@ export interface WriteRetryOptions extends RetryDelayStrategyOptions {\n* @param this - the instance of the API that failed\n* @param error - write error\n* @...
TypeScript
MIT License
influxdata/influxdb-client-js
chore(core): improve documentation of writeFailed fn
305,159
10.03.2022 10:25:27
-3,600
c5a39c6302348b5949f56fef48d0e75dfc5c0488
chore(core): add test that verifies count of retries
[ { "change_type": "MODIFY", "old_path": "packages/core/test/unit/WriteApi.test.ts", "new_path": "packages/core/test/unit/WriteApi.test.ts", "diff": "@@ -201,7 +201,14 @@ describe('WriteApi', () => {\n}\n}\n- useSubject({maxRetryTime: 5, batchSize: 1, writeFailed})\n+ useSubject({\n+ maxRetryTime: 5,\...
TypeScript
MIT License
influxdata/influxdb-client-js
chore(core): add test that verifies count of retries
305,159
10.03.2022 10:36:16
-3,600
4c4a7ba64ed0f85d754efb52752f76ff7cbef701
chore(core): improve docs of maxRetries option
[ { "change_type": "MODIFY", "old_path": "packages/core/src/options.ts", "new_path": "packages/core/src/options.ts", "diff": "@@ -93,7 +93,7 @@ export interface WriteRetryOptions extends RetryDelayStrategyOptions {\n*/\nwriteSuccess(this: WriteApi, lines: Array<string>): void\n- /** max number of retr...
TypeScript
MIT License
influxdata/influxdb-client-js
chore(core): improve docs of maxRetries option
305,159
10.03.2022 10:39:21
-3,600
0bcbd7423d3626029fbb5be84fc973fb2d80e8f8
chore(core): better document attempts param of writeFailed fn
[ { "change_type": "MODIFY", "old_path": "packages/core/src/options.ts", "new_path": "packages/core/src/options.ts", "diff": "@@ -73,7 +73,7 @@ export interface WriteRetryOptions extends RetryDelayStrategyOptions {\n* @param this - the instance of the API that failed\n* @param error - write error\n* @...
TypeScript
MIT License
influxdata/influxdb-client-js
chore(core): better document attempts param of writeFailed fn
305,159
10.03.2022 10:40:16
-3,600
1c5dda958641407e308adace7d1683cc53f21fcf
chore(core): rename attempts to attempt
[ { "change_type": "MODIFY", "old_path": "packages/core/src/options.ts", "new_path": "packages/core/src/options.ts", "diff": "@@ -73,7 +73,7 @@ export interface WriteRetryOptions extends RetryDelayStrategyOptions {\n* @param this - the instance of the API that failed\n* @param error - write error\n* @...
TypeScript
MIT License
influxdata/influxdb-client-js
chore(core): rename attempts to attempt
305,170
06.04.2022 07:08:09
25,200
339b2ec5b49702702235936684e841b04b0bd872
docs: update query example
[ { "change_type": "MODIFY", "old_path": "examples/query.ts", "new_path": "examples/query.ts", "diff": "@@ -17,7 +17,7 @@ console.log('*** QUERY ROWS ***')\n// Execute query and receive table metadata and rows as they arrive from the server.\n// https://docs.influxdata.com/influxdb/v2.1/reference/synt...
TypeScript
MIT License
influxdata/influxdb-client-js
docs: update query example
305,159
06.04.2022 17:03:44
-7,200
1a90b4f9d344054c10195c1dc0307ef36328541e
chore(examples): use arrow function callbacks
[ { "change_type": "MODIFY", "old_path": "examples/influxdb-1.8.ts", "new_path": "examples/influxdb-1.8.ts", "diff": "@@ -33,7 +33,7 @@ const point = new Point('mem')\nwriteAPI.writePoint(point)\nwriteAPI\n.close()\n- .then(() => console.log('FINISHED'))\n+ .then(() => console.log('Write FINISHED'))\n...
TypeScript
MIT License
influxdata/influxdb-client-js
chore(examples): use arrow function callbacks
305,159
06.04.2022 17:18:34
-7,200
7ba7dea637e7e2408034536d9907d700ba60b3fc
chore: preventAssignment in rollup replace
[ { "change_type": "MODIFY", "old_path": "packages/core/rollup.config.js", "new_path": "packages/core/rollup.config.js", "diff": "@@ -19,10 +19,12 @@ function createConfig({browser, format, out, name, target, noTerser}) {\n'./impl/node/NodeHttpTransport': './impl/browser/FetchTransport',\n'process.env...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: preventAssignment in rollup replace
305,159
06.04.2022 17:48:27
-7,200
7434323bde80c57888d0d4beec36c86c100eb9e3
feat(giraffe): add resultColumnNames to FromFluxResult
[ { "change_type": "MODIFY", "old_path": "packages/giraffe/src/csvToTable.ts", "new_path": "packages/giraffe/src/csvToTable.ts", "diff": "@@ -41,10 +41,11 @@ function createResult(\ntableLength: number,\ncolumns: Record<string, Column>,\ntableFactory: GiraffeTableFactory,\n- computeFluxGroupKeyUnion =...
TypeScript
MIT License
influxdata/influxdb-client-js
feat(giraffe): add resultColumnNames to FromFluxResult
305,159
09.04.2022 08:37:32
-7,200
a6f6b0788b071659ebb05fa58c0dec3e3e6dfddd
chore(core): improve flux function tests
[ { "change_type": "MODIFY", "old_path": "packages/core/test/unit/query/flux.test.ts", "new_path": "packages/core/test/unit/query/flux.test.ts", "diff": "@@ -187,4 +187,79 @@ describe('Flux Tagged Template', () => {\n'from(bucket:\"my-bucket\")'\n)\n})\n+ it('interpolates parameter with escaping', () ...
TypeScript
MIT License
influxdata/influxdb-client-js
chore(core): improve flux function tests
305,159
12.04.2022 10:57:07
-7,200
c693c33eda553f8258956dd8187c44f933d3462f
feat(core): allow to specify write consistency
[ { "change_type": "MODIFY", "old_path": "packages/core/src/impl/WriteApiImpl.ts", "new_path": "packages/core/src/impl/WriteApiImpl.ts", "diff": "@@ -89,6 +89,11 @@ export default class WriteApiImpl implements WriteApi {\nthis.httpPath = `/api/v2/write?org=${encodeURIComponent(\norg\n)}&bucket=${encod...
TypeScript
MIT License
influxdata/influxdb-client-js
feat(core): allow to specify write consistency
305,159
19.04.2022 09:41:34
-7,200
38d81bedf4c840617efb4aeca6c7f31744f3f451
chore: use 2.x version in descriptions
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "{\n\"private\": true,\n\"name\": \"@influxdata/influx\",\n- \"description\": \"InfluxDB 2.1 client\",\n+ \"description\": \"InfluxDB 2.x client\",\n\"workspaces\": {\n\"packages\": [\n\"packages/core\",\n" ...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: use 2.x version in descriptions
305,159
25.04.2022 13:55:04
-7,200
ca52f9bb4e41cd6142ce6ac015ca274f3b8b65a8
chore: describe installation for Ionic
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -53,8 +53,7 @@ $ pnpm add @influxdata/influxdb-client\nIf you target Node.js, use [@influxdata/influxdb-client](./packages/core/README.md).\nIt provides main (CJS), module (ESM), and browser (UMD) exports.\n-If ...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: describe installation for Ionic
305,159
25.04.2022 15:04:57
-7,200
20baae913c651252fba9041e8103a33038ec1ea6
chore: repair flickering test
[ { "change_type": "MODIFY", "old_path": "packages/core/test/unit/WriteApi.test.ts", "new_path": "packages/core/test/unit/WriteApi.test.ts", "diff": "@@ -186,8 +186,8 @@ describe('WriteApi', () => {\n})\n})\nit('call writeFailed also on retry timeout', async () => {\n- let writeFailedLastError: Error\...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: repair flickering test
305,159
25.04.2022 21:20:58
-7,200
45aabad312c8b92668afbc102748a914369d1f42
chore: add invokable scripts to main readme
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -38,6 +38,7 @@ InfluxDB 2.x client consists of two main packages\n- sources\n- ... and other InfluxDB domain objects\n- Delete data from a bucket\n+ - Invoke a flux script\n- built on @influxdata/influxdb-client...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: add invokable scripts to main readme
305,159
29.04.2022 06:40:27
-7,200
01872a74063edfbbf9fdf7c311a78d8321860206
chore(core): repair flickering retryStrategyTest
[ { "change_type": "MODIFY", "old_path": "packages/core/test/unit/impl/retryStrategy.test.ts", "new_path": "packages/core/test/unit/impl/retryStrategy.test.ts", "diff": "@@ -128,13 +128,14 @@ describe('RetryStrategyImpl', () => {\n})\ndescribe('random interval', () => {\nit('generates exponential data...
TypeScript
MIT License
influxdata/influxdb-client-js
chore(core): repair flickering retryStrategyTest
305,176
11.05.2022 12:13:07
25,200
4dd5863e87cc10d759982857021997b23473f8d9
refactor: Deprecate and remove semantic-pull-requests, insert influxdata replacement reusable workflow solution.
[ { "change_type": "DELETE", "old_path": ".github/semantic.yml", "new_path": null, "diff": "-# docs: https://github.com/probot/semantic-pull-requests#configuration\n-# Always validate the PR title AND all the commits\n-titleAndCommits: true\n" }, { "change_type": "ADD", "old_path": null, ...
TypeScript
MIT License
influxdata/influxdb-client-js
refactor: Deprecate and remove semantic-pull-requests, insert influxdata replacement reusable workflow solution.
305,159
12.05.2022 17:32:26
-7,200
5e8303d651fc167408c689789730e639925a35e7
fix(core): repair flickering test
[ { "change_type": "MODIFY", "old_path": "packages/core/test/unit/WriteApi.test.ts", "new_path": "packages/core/test/unit/WriteApi.test.ts", "diff": "@@ -174,14 +174,10 @@ describe('WriteApi', () => {\n// wait for retry attempt to fail on timeout\nawait waitForCondition(() => logs.error.length > 0)\na...
TypeScript
MIT License
influxdata/influxdb-client-js
fix(core): repair flickering test
305,159
19.05.2022 04:07:27
-7,200
463da5b58d661f6ce925d994efed07e56011c264
feat(core): use custom transport options in a browser
[ { "change_type": "MODIFY", "old_path": "packages/core/src/impl/browser/FetchTransport.ts", "new_path": "packages/core/src/impl/browser/FetchTransport.ts", "diff": "@@ -205,6 +205,8 @@ export default class FetchTransport implements Transport {\n...headers,\n},\ncredentials: 'omit' as 'omit',\n+ // ov...
TypeScript
MIT License
influxdata/influxdb-client-js
feat(core): use custom transport options in a browser
305,163
21.05.2022 18:26:50
0
bd4d646f33f3bfbf39d05c5a82ae07e9d363d1b6
docs: typo in comment of function convertTimeToNanos
[ { "change_type": "MODIFY", "old_path": "packages/core/src/util/currentTime.ts", "new_path": "packages/core/src/util/currentTime.ts", "diff": "@@ -96,7 +96,7 @@ export const dateToProtocolTimestamp = {\n}\n/**\n- * convertTimeToNanos converts of Point's timestamp to a string\n+ * convertTimeToNanos c...
TypeScript
MIT License
influxdata/influxdb-client-js
docs: typo in comment of function convertTimeToNanos
305,159
23.05.2022 14:46:38
-7,200
d2301e6e6c336aa81e99619bd6ec8613ea7fc510
feat(core): allow to overwrite default write API HTTP path
[ { "change_type": "MODIFY", "old_path": "packages/core/src/WriteApi.ts", "new_path": "packages/core/src/WriteApi.ts", "diff": "@@ -65,4 +65,11 @@ export default interface WriteApi extends PointSettings {\n* @returns count of points that were not written to InfluxDB\n*/\ndispose(): number\n+\n+ /**\n+...
TypeScript
MIT License
influxdata/influxdb-client-js
feat(core): allow to overwrite default write API HTTP path
305,159
23.05.2022 14:55:49
-7,200
6b207d27d5c7ee9450d91f09392bd31291502499
feat(core): add tests for writeApi.path
[ { "change_type": "MODIFY", "old_path": "packages/core/src/WriteApi.ts", "new_path": "packages/core/src/WriteApi.ts", "diff": "@@ -71,5 +71,5 @@ export default interface WriteApi extends PointSettings {\n* automatically initialized to `/api/v2/write?org=...`,\n* but it can be changed after the API is...
TypeScript
MIT License
influxdata/influxdb-client-js
feat(core): add tests for writeApi.path
305,163
24.05.2022 19:12:44
0
7e53cf7a5a215d12ad96693e33bf899110158afe
docs: typo in comment of function 'next' in interface CommunicationObserver
[ { "change_type": "MODIFY", "old_path": "packages/core/src/results/CommunicationObserver.ts", "new_path": "packages/core/src/results/CommunicationObserver.ts", "diff": "@@ -16,7 +16,7 @@ export type ResponseStartedFn = (headers: Headers, statusCode?: number) => void\n*/\nexport interface Communicatio...
TypeScript
MIT License
influxdata/influxdb-client-js
docs: typo in comment of function 'next' in interface CommunicationObserver
305,159
26.05.2022 18:58:05
-7,200
f9808aaade47e89efce6f88e75604e2710b87463
chore: remove name and version from private packages
[ { "change_type": "MODIFY", "old_path": "examples/package.json", "new_path": "examples/package.json", "diff": "{\n\"private\": true,\n- \"name\": \"@influxdata/influxdb-client-examples\",\n- \"version\": \"0.4.0\",\n\"license\": \"MIT\",\n\"scripts\": {\n\"browser\": \"node scripts/server.js\",\n" ...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: remove name and version from private packages
305,159
10.06.2022 19:52:01
-7,200
ce6cdd634ab69dcf47b900127358946a56dfa30f
chore(examples): reuse connections in writeAdvanced example
[ { "change_type": "MODIFY", "old_path": "examples/writeAdvanced.js", "new_path": "examples/writeAdvanced.js", "diff": "@@ -42,19 +42,30 @@ const writeOptions = {\nflushInterval: 0,\n/* maximum size of the retry buffer - it contains items that could not be sent for the first time */\nmaxBufferLines: 3...
TypeScript
MIT License
influxdata/influxdb-client-js
chore(examples): reuse connections in writeAdvanced example
305,159
21.06.2022 09:52:41
-7,200
36b8a2a9365061f505f0d208f2f88de3b86d705f
chore: revert of do not retry write upon 'hinted handoff queue not empty' error" This reverts commit
[ { "change_type": "MODIFY", "old_path": "packages/core/src/impl/WriteApiImpl.ts", "new_path": "packages/core/src/impl/WriteApiImpl.ts", "diff": "@@ -196,20 +196,6 @@ export default class WriteApiImpl implements WriteApi {\nonRetry.then(resolve, reject)\nreturn\n}\n- // ignore informational message ab...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: revert of do not retry write upon 'hinted handoff queue not empty' error" This reverts commit 86264b13ffb6a862876db1d042656cf15d3039ea.
305,159
25.06.2022 10:33:13
-7,200
615f47bfa5310d79ffe87f6595c3765cdc6b75e3
fix: defines types for typescript 4.7+
[ { "change_type": "MODIFY", "old_path": "packages/apis/package.json", "new_path": "packages/apis/package.json", "diff": "\"types\": \"dist/all.d.ts\",\n\"exports\": {\n\".\": {\n+ \"types\": \"./dist/all.d.ts\",\n\"import\": \"./dist/index.mjs\",\n\"require\": \"./dist/index.js\",\n\"deno\": \"./dist...
TypeScript
MIT License
influxdata/influxdb-client-js
fix: defines types for typescript 4.7+
305,159
27.06.2022 07:33:02
-7,200
a4c789c88f4feb5ccf976e7635dc4a705f466bcf
chore(examples): improve token example
[ { "change_type": "MODIFY", "old_path": "examples/tokens.js", "new_path": "examples/tokens.js", "diff": "@@ -40,18 +40,21 @@ async function signInDemo() {\n)\n// authorize communication with session cookies\nconst session = {headers: {cookie: cookies.join('; ')}}\n+\n// get all authorization tokens\n...
TypeScript
MIT License
influxdata/influxdb-client-js
chore(examples): improve token example
305,159
27.06.2022 07:51:12
-7,200
4897405603cf587532659dd84f406e9b47095d74
chore: upgrade typescript to 4.7.4
[ { "change_type": "MODIFY", "old_path": "examples/package.json", "new_path": "examples/package.json", "diff": "\"devDependencies\": {\n\"@types/express\": \"^4.17.2\",\n\"@types/express-http-proxy\": \"^1.5.12\",\n+ \"@types/node\": \"^16\",\n\"express\": \"^4.17.1\",\n\"express-http-proxy\": \"^1.6....
TypeScript
MIT License
influxdata/influxdb-client-js
chore: upgrade typescript to 4.7.4
305,159
27.06.2022 08:57:46
-7,200
2725c7e3f25dfcdf776d8a58a602753c44cfc66f
chore: follow new eslint rules
[ { "change_type": "MODIFY", "old_path": ".eslintrc.json", "new_path": ".eslintrc.json", "diff": "\"extends\": [\n\"eslint:recommended\",\n\"plugin:@typescript-eslint/recommended\",\n- \"plugin:prettier/recommended\",\n- \"prettier/@typescript-eslint\"\n+ \"plugin:prettier/recommended\"\n],\n\"rules\"...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: follow new eslint rules
305,159
13.07.2022 05:31:08
-7,200
6f12f3df00f3dd2577b2eddc95bb166ceebccde7
fix(core): sanitize flux integer
[ { "change_type": "MODIFY", "old_path": "packages/core/src/query/flux.ts", "new_path": "packages/core/src/query/flux.ts", "diff": "@@ -139,16 +139,41 @@ export function fluxFloat(value: any): FluxParameterLike {\n}\n/**\n- * Creates a flux integer literal.\n+ * Sanitizes integer value to avoid inject...
TypeScript
MIT License
influxdata/influxdb-client-js
fix(core): sanitize flux integer
305,159
13.07.2022 06:58:59
-7,200
0871a7d085e66c5ddf33074c8fbfcf378db91654
fit(core): repair flux float sanitizing
[ { "change_type": "MODIFY", "old_path": "packages/core/src/query/flux.ts", "new_path": "packages/core/src/query/flux.ts", "diff": "@@ -112,24 +112,26 @@ export function fluxString(value: any): FluxParameterLike {\n* @throws Error if the the value cannot be sanitized\n*/\nexport function sanitizeFloat...
TypeScript
MIT License
influxdata/influxdb-client-js
fit(core): repair flux float sanitizing
305,159
13.07.2022 07:15:56
-7,200
3d7917cf154420ee4d125815b5275d454e6d9f0b
fix(core): repair flux regexp sanitizing
[ { "change_type": "MODIFY", "old_path": "packages/core/src/query/flux.ts", "new_path": "packages/core/src/query/flux.ts", "diff": "@@ -197,7 +197,10 @@ export function fluxDuration(value: any): FluxParameterLike {\n}\nfunction sanitizeRegExp(value: any): string {\n- return `regexp.compile(v: \"${sani...
TypeScript
MIT License
influxdata/influxdb-client-js
fix(core): repair flux regexp sanitizing
305,159
13.07.2022 12:38:26
-7,200
95747d203ec27663b734f209b26583b470fa0a41
feat(core): support bigint in flux tagged template
[ { "change_type": "MODIFY", "old_path": "packages/core/src/query/flux.ts", "new_path": "packages/core/src/query/flux.ts", "diff": "@@ -262,8 +262,10 @@ export function toFluxValue(value: any): string {\n} else if (Array.isArray(value)) {\nreturn `[${value.map(toFluxValue).join(',')}]`\n}\n+ } else if...
TypeScript
MIT License
influxdata/influxdb-client-js
feat(core): support bigint in flux tagged template
305,159
14.07.2022 08:57:13
-7,200
58eb15f5452f077e1cc00c1f49d187c3398dee43
chore(deps-dev): bump and
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "},\n\"license\": \"MIT\",\n\"dependencies\": {\n- \"@microsoft/api-documenter\": \"^7.13.34\",\n+ \"@microsoft/api-documenter\": \"^7.18.3\",\n\"gh-pages\": \"^3.1.0\",\n\"lerna\": \"^5.0.0\",\n\"prettier\": ...
TypeScript
MIT License
influxdata/influxdb-client-js
chore(deps-dev): bump @microsoft/api-extractor and @microsoft/api-documenter
305,159
14.07.2022 09:21:38
-7,200
c6aba74f0d0040f284a4fe0b93d803bfb9e5fe71
chore: remove version-bump-prompt
[ { "change_type": "MODIFY", "old_path": "packages/core/package.json", "new_path": "packages/core/package.json", "diff": "\"rxjs\": \"^7.2.0\",\n\"sinon\": \"^7.5.0\",\n\"ts-node\": \"^10.8.1\",\n- \"typescript\": \"^4.7.4\",\n- \"version-bump-prompt\": \"^6.1.0\"\n+ \"typescript\": \"^4.7.4\"\n}\n}\n...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: remove version-bump-prompt
305,159
14.07.2022 09:35:19
-7,200
f640d95375ac7508b36793d4d02e192d9460c5d3
chore(test): use nock's delayConnection after upgrade
[ { "change_type": "MODIFY", "old_path": "packages/core/test/unit/impl/node/NodeHttpTransport.test.ts", "new_path": "packages/core/test/unit/impl/node/NodeHttpTransport.test.ts", "diff": "@@ -302,7 +302,7 @@ describe('NodeHttpTransport', () => {\nit(`fails on socket timeout`, async () => {\nnock(trans...
TypeScript
MIT License
influxdata/influxdb-client-js
chore(test): use nock's delayConnection after upgrade
305,159
18.07.2022 07:55:41
-7,200
b7de2e727c3f1118bb9ad77df57f9c82d1de0216
chore: remove unsued plugin
[ { "change_type": "MODIFY", "old_path": "packages/giraffe/package.json", "new_path": "packages/giraffe/package.json", "diff": "\"@influxdata/influxdb-client\": \"^1.27.0\",\n\"@microsoft/api-extractor\": \"^7.28.4\",\n\"@rollup/plugin-node-resolve\": \"^13.3.0\",\n- \"@rollup/plugin-replace\": \"^2.3...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: remove unsued plugin
305,159
18.07.2022 08:01:22
-7,200
b20ec51dcaed9461fa24a8ae6fe0154676fd32bf
fix: reorder package export to use browser when required
[ { "change_type": "MODIFY", "old_path": "packages/apis/package.json", "new_path": "packages/apis/package.json", "diff": "\"exports\": {\n\".\": {\n\"types\": \"./dist/all.d.ts\",\n- \"import\": \"./dist/index.mjs\",\n- \"require\": \"./dist/index.js\",\n- \"deno\": \"./dist/index.mjs\",\n\"browser\":...
TypeScript
MIT License
influxdata/influxdb-client-js
fix: reorder package export to use browser when required
305,159
18.07.2022 08:02:12
-7,200
15ef44564fe4a401b8d9ac0e24b543bcff5293bf
fix(build): rely upon rollup resolve exports support
[ { "change_type": "MODIFY", "old_path": "packages/giraffe/rollup.config.js", "new_path": "packages/giraffe/rollup.config.js", "diff": "@@ -23,7 +23,7 @@ function createConfig({format, out, name, target, noTerser}) {\n}),\n// @influxdata/influxdb-client (core) package uses `module:browser`\n// propert...
TypeScript
MIT License
influxdata/influxdb-client-js
fix(build): rely upon rollup resolve exports support
305,159
18.07.2022 08:34:56
-7,200
2caeb8f37ff5e458673b3bf3aefd6a046dddd872
feat(build): fail after warnings
[ { "change_type": "MODIFY", "old_path": "packages/apis/package.json", "new_path": "packages/apis/package.json", "diff": "\"description\": \"InfluxDB 2.x generated APIs\",\n\"scripts\": {\n\"apidoc:extract\": \"api-extractor run\",\n- \"build\": \"yarn run clean && yarn run lint && rollup -c\",\n+ \"b...
TypeScript
MIT License
influxdata/influxdb-client-js
feat(build): fail after warnings
305,159
18.07.2022 09:02:04
-7,200
70c6422280eb0423fb73571e17122d14178a8a16
chore: remove old comments
[ { "change_type": "MODIFY", "old_path": "packages/giraffe/rollup.config.js", "new_path": "packages/giraffe/rollup.config.js", "diff": "@@ -21,8 +21,6 @@ function createConfig({format, out, name, target, noTerser}) {\n},\n},\n}),\n- // @influxdata/influxdb-client (core) package uses `module:browser`\n...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: remove old comments
305,160
29.07.2022 15:14:19
-7,200
4b69f8d3a61c88b2cf14cd1c6945b19a35fc7914
fix: Module '"chalk"' has no exported member 'yellow'
[ { "change_type": "MODIFY", "old_path": "packages/apis/generator/logger.ts", "new_path": "packages/apis/generator/logger.ts", "diff": "-import {yellow} from 'chalk'\n+import chalk from 'chalk'\n/* eslint-disable no-console */\nconst logger = {\nwarn(message: string, ...otherParameters: any[]): void {...
TypeScript
MIT License
influxdata/influxdb-client-js
fix: Module '"chalk"' has no exported member 'yellow' (#494)
305,159
29.07.2022 16:09:18
-7,200
75fc77b3687d36274fa11309cefeecea72d1a2e3
fix(ci): add api typecheck to test:ci target
[ { "change_type": "MODIFY", "old_path": "packages/apis/package.json", "new_path": "packages/apis/package.json", "diff": "\"generate\": \"yarn ts-node generator && yarn prettier --write src/generated/*.ts\",\n\"test\": \"yarn run lint && yarn run typecheck && yarn run test:unit\",\n\"test:unit\": \"mo...
TypeScript
MIT License
influxdata/influxdb-client-js
fix(ci): add api typecheck to test:ci target
305,159
01.08.2022 07:25:58
-7,200
944457442a6af35e448dacb7353e1c0a7518a64d
chore: add mocha-junit-reporter to dependencies
[ { "change_type": "MODIFY", "old_path": "packages/apis/package.json", "new_path": "packages/apis/package.json", "diff": "\"eslint-plugin-prettier\": \"^4.2.1\",\n\"eslint-plugin-tsdoc\": \"^0.2.16\",\n\"mocha\": \"^10.0.0\",\n+ \"mocha-junit-reporter\": \"^2.0.2\",\n\"nock\": \"^13.2.8\",\n\"prettier...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: add mocha-junit-reporter to dependencies
305,159
01.08.2022 07:31:40
-7,200
7828b1547fbe8bf273d098217ef02dfb4080b396
chore: add to deps
[ { "change_type": "MODIFY", "old_path": "packages/apis/package.json", "new_path": "packages/apis/package.json", "diff": "\"devDependencies\": {\n\"@influxdata/influxdb-client\": \"^1.28.0\",\n\"@microsoft/api-extractor\": \"^7.28.4\",\n+ \"@types/mocha\": \"^9.1.1\",\n\"@typescript-eslint/eslint-plug...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: add @types/mocha to deps
305,159
01.08.2022 07:38:01
-7,200
e08580b1b54136936c137b0e87ed78daf90ebd0c
chore: update dependabot PR limit
[ { "change_type": "MODIFY", "old_path": ".github/dependabot.yml", "new_path": ".github/dependabot.yml", "diff": "version: 2\nupdates:\n- - package-ecosystem: \"npm\"\n- directory: \"/\"\n+ - package-ecosystem: 'npm'\n+ directory: '/'\nschedule:\n- interval: \"weekly\"\n- day: \"sunday\"\n+ interval: ...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: update dependabot PR limit
305,159
01.08.2022 08:25:12
-7,200
9f7b11165c762f95d3cc532dabcc2a6a429c945d
chore: remove direct dependency on chalk
[ { "change_type": "MODIFY", "old_path": "packages/apis/generator/logger.ts", "new_path": "packages/apis/generator/logger.ts", "diff": "-import chalk from 'chalk'\n-\n/* eslint-disable no-console */\nconst logger = {\nwarn(message: string, ...otherParameters: any[]): void {\n- message = chalk.yellow(m...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: remove direct dependency on chalk
305,159
01.08.2022 21:00:15
-7,200
dccdf1d3f5005837832511be5325adf858fd812b
chore: switch core package to esbuild
[ { "change_type": "MODIFY", "old_path": "packages/core-browser/package.json", "new_path": "packages/core-browser/package.json", "diff": "\"module\": \"dist/index.browser.mjs\",\n\"module:browser\": \"dist/index.browser.mjs\",\n\"browser\": \"dist/index.browser.js\",\n- \"types\": \"dist/all.d.ts\",\n...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: switch core package to esbuild
305,159
01.08.2022 21:10:06
-7,200
70cd9b9f507a37f403199a54acefb46effeb7c5d
chore(core): build browser first to catch common errors quickly
[ { "change_type": "MODIFY", "old_path": "packages/core/package.json", "new_path": "packages/core/package.json", "diff": "\"description\": \"InfluxDB 2.x client\",\n\"scripts\": {\n\"apidoc:extract\": \"api-extractor run\",\n- \"build\": \"yarn run clean && yarn tsup && yarn tsup --config ./tsup.confi...
TypeScript
MIT License
influxdata/influxdb-client-js
chore(core): build browser first to catch common errors quickly
305,159
02.08.2022 11:38:24
-7,200
63375acce370ce76fc8bb0928225d2d99bb2e83a
chore: emulate UMD output in esbuild
[ { "change_type": "MODIFY", "old_path": "packages/core/tsup.config.browser.ts", "new_path": "packages/core/tsup.config.browser.ts", "diff": "@@ -26,6 +26,21 @@ export default defineConfig({\nesbuildOptions(options, {format}) {\noptions.outdir = undefined\noptions.outfile = outFiles[format]\n+ if (for...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: emulate UMD output in esbuild
305,159
02.08.2022 11:54:07
-7,200
d9d059d988426b3933caabbde1707eb3a42b9a95
chore: allow to configure minification via env
[ { "change_type": "MODIFY", "old_path": "packages/core/tsup.config.browser.ts", "new_path": "packages/core/tsup.config.browser.ts", "diff": "@@ -2,7 +2,7 @@ import {defineConfig} from 'tsup'\nimport {readFile} from 'fs/promises'\nimport pkg from './package.json'\n-const minify = false\n+const minify ...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: allow to configure minification via env
305,159
02.08.2022 13:38:58
-7,200
557acdd9ec7f935fa1428e879b002a0e8a0e0af0
chore: switch apis package to esbuild
[ { "change_type": "MODIFY", "old_path": "packages/apis/package.json", "new_path": "packages/apis/package.json", "diff": "\"description\": \"InfluxDB 2.x generated APIs\",\n\"scripts\": {\n\"apidoc:extract\": \"api-extractor run\",\n- \"build\": \"yarn run clean && yarn run lint && rollup --failAfterW...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: switch apis package to esbuild
305,159
02.08.2022 13:56:24
-7,200
3d4ca6a7f22940877d78008ef664fcf24c84c970
chore: switch giraffe package to esbuild
[ { "change_type": "MODIFY", "old_path": "packages/giraffe/package.json", "new_path": "packages/giraffe/package.json", "diff": "\"description\": \"InfluxDB 2.x client - giraffe integration\",\n\"scripts\": {\n\"apidoc:extract\": \"api-extractor run\",\n- \"build\": \"yarn run clean && rollup --failAft...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: switch giraffe package to esbuild
305,159
02.08.2022 14:05:18
-7,200
2a4c505de8b6e2a056ecf0ec6407cf5a52720aca
chore: add tsup config files to gitignore
[ { "change_type": "MODIFY", "old_path": "packages/apis/.npmignore", "new_path": "packages/apis/.npmignore", "diff": "@@ -9,7 +9,7 @@ doc\nreports\nyarn-error.log\n/tsconfig.*\n-/rollup.config.js\n+/tsup.*\n/.prettierrc.json\n/generator\n/resources\n" }, { "change_type": "MODIFY", "old_pat...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: add tsup config files to gitignore
305,159
03.08.2022 07:44:53
-7,200
1e4df8f0031a4783359612f0b05c69dbffa3cc6d
chore: gzip built js files
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "\"name\": \"InfluxData\"\n},\n\"license\": \"MIT\",\n- \"dependencies\": {\n+ \"devDependencies\": {\n+ \"@types/node\": \"^16\",\n\"@microsoft/api-documenter\": \"^7.18.3\",\n\"gh-pages\": \"^4.0.0\",\n\"ler...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: gzip built js files
305,159
03.08.2022 10:47:39
-7,200
e528b2859dd7efed25a710e74141b92669bfd109
chore: repair giraffe UMD build
[ { "change_type": "MODIFY", "old_path": "packages/giraffe/tsup.config.ts", "new_path": "packages/giraffe/tsup.config.ts", "diff": "@@ -30,7 +30,7 @@ export default defineConfig({\njs: `(function (global, factory) {\ntypeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :\nty...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: repair giraffe UMD build
305,159
03.08.2022 13:48:35
-7,200
44bb05cfc757d1f03edf4e461b7e2342ab9d798f
chore: upgrade giraffe example
[ { "change_type": "MODIFY", "old_path": "examples/giraffe.html", "new_path": "examples/giraffe.html", "diff": "// required by giraffe\nglobal = window\n</script>\n- <script src=\"https://unpkg.com/react@17.0.0/umd/react.development.js\"></script>\n- <script src=\"https://unpkg.com/react-dom@17.0.0/um...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: upgrade giraffe example
305,159
04.08.2022 08:25:01
-7,200
c61d9673965afc26e4d912fee9d0029d767c8eec
fix(apidoc): correct generated doc comment links
[ { "change_type": "MODIFY", "old_path": "scripts/fix-extracted-api-files.js", "new_path": "scripts/fix-extracted-api-files.js", "diff": "const path = require('path')\nconst fs = require('fs')\n+const markdownLinkRE = /\\[([^\\]]*)\\]\\(([^)]*)\\)/g\n+function changeMarkdownLinks(text) {\n+ if (text) ...
TypeScript
MIT License
influxdata/influxdb-client-js
fix(apidoc): correct generated doc comment links
305,159
04.08.2022 09:08:48
-7,200
91a9f54b102c07be4b27eca9d97dad89c680582a
chore(apidoc): change links to point to the latest influxdb
[ { "change_type": "MODIFY", "old_path": "examples/delete.ts", "new_path": "examples/delete.ts", "diff": "#!./node_modules/.bin/ts-node\n-///////////////////////////////////////////////////////////////////////\n+/////////////////////////////////////////////////////////////////////////\n// Shows how to...
TypeScript
MIT License
influxdata/influxdb-client-js
chore(apidoc): change links to point to the latest influxdb
305,159
04.08.2022 09:20:16
-7,200
f04d7e0b8260a7cbb68bc408901c1ee9d57d89ca
chore(docs): point flux links to the latest flux version
[ { "change_type": "MODIFY", "old_path": "packages/apis/src/generated/types.ts", "new_path": "packages/apis/src/generated/types.ts", "diff": "@@ -2210,16 +2210,16 @@ export interface Task {\n/** Flux script to run for this task. */\nflux: string\n/** Interval at which the task runs. `every` also deter...
TypeScript
MIT License
influxdata/influxdb-client-js
chore(docs): point flux links to the latest flux version
305,159
04.08.2022 13:42:52
-7,200
74f59f773ba9008a2cb2fa35dabfeb586970d255
chore: remove giraffe example
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -83,7 +83,6 @@ See [examples](./examples/README.md) for more advanced use case like the followi\n- Use the client library in the browser or [Deno](./examples/query.deno.ts).\n- Process InfluxDB query results wit...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: remove giraffe example
305,159
04.08.2022 14:22:06
-7,200
a17da61d350334bc1be9f5246ec03dd7c0feba0e
feat: replace ts-node with esbuild-runner
[ { "change_type": "MODIFY", "old_path": ".vscode/launch.json", "new_path": ".vscode/launch.json", "diff": "\"program\": \"${workspaceRoot}/node_modules/mocha/bin/_mocha\",\n\"args\": [\n\"--require\",\n- \"ts-node/register\",\n+ \"esbuild-runner/register\",\n\"--timeout\",\n\"15000\",\n\"--colors\",\...
TypeScript
MIT License
influxdata/influxdb-client-js
feat: replace ts-node with esbuild-runner
305,159
04.08.2022 16:22:52
-7,200
d26abc8d8d1d17dd8e2ab1f2b87805789b36e052
chore: run examples faster with esr
[ { "change_type": "MODIFY", "old_path": "examples/README.md", "new_path": "examples/README.md", "diff": "@@ -7,7 +7,7 @@ This directory contains javascript and typescript examples for node.js, browser,\n- [node](https://nodejs.org/en/) installed\n- Run `npm install` in this directory\n- Change variab...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: run examples faster with esr
305,159
05.08.2022 12:58:43
-7,200
8f64fa28f50de72177a7eae66e2b43dae569b667
feat(examples): swtich examples to es module syntax
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -69,11 +69,11 @@ $ pnpm add @influxdata/influxdb-client-apis\nUse the following examples to get started with the JavaScript client for InfluxDB:\n- @influxdata/influxdb-client\n- - [write points](./examples/writ...
TypeScript
MIT License
influxdata/influxdb-client-js
feat(examples): swtich examples to es module syntax
305,159
05.08.2022 13:06:19
-7,200
5fa84822ce8065352dfac121b2fe569a5472f936
chore(examples): rename env.js to env.mjs
[ { "change_type": "MODIFY", "old_path": "examples/README.md", "new_path": "examples/README.md", "diff": "@@ -6,7 +6,7 @@ This directory contains javascript and typescript examples for node.js, browser,\n- Prerequisites\n- [node](https://nodejs.org/en/) installed\n- Run `npm install` in this directory...
TypeScript
MIT License
influxdata/influxdb-client-js
chore(examples): rename env.js to env.mjs
305,159
05.08.2022 13:16:22
-7,200
587b2c3d698cfe79817a35dfa9381ff20d90bb7a
chore(example): validate mjs files with eslint
[ { "change_type": "MODIFY", "old_path": "examples/.eslintrc.json", "new_path": "examples/.eslintrc.json", "diff": "},\n\"overrides\": [\n{\n- \"files\": [\"*.js\"],\n+ \"files\": [\"*.js\", \"*.mjs\"],\n\"rules\": {\n\"@typescript-eslint/explicit-function-return-type\": \"off\",\n\"@typescript-eslint...
TypeScript
MIT License
influxdata/influxdb-client-js
chore(example): validate mjs files with eslint
305,159
05.08.2022 13:26:05
-7,200
167c89b4fe542318a679e6162119c9be5ec5fc5f
chore: normalize browser resources with fileURLToPath
[ { "change_type": "MODIFY", "old_path": "examples/scripts/monitor.mjs", "new_path": "examples/scripts/monitor.mjs", "diff": "import {InfluxDB, Point} from '@influxdata/influxdb-client'\nimport {url, token, org, bucket} from '../env.mjs'\nimport responseTime from 'response-time'\n-import {hostname} fr...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: normalize browser resources with fileURLToPath
305,159
05.08.2022 13:28:26
-7,200
81eea86312a2595ee01fd9a338f821e3b4f8c8bd
chore(examples): change node imports to use 'node:' prefix
[ { "change_type": "MODIFY", "old_path": "examples/follow-redirects.mjs", "new_path": "examples/follow-redirects.mjs", "diff": "import {url as targetUrl, token, org} from './env.mjs'\nimport {InfluxDB} from '@influxdata/influxdb-client'\n-import {createServer} from 'http'\n+import {createServer} from ...
TypeScript
MIT License
influxdata/influxdb-client-js
chore(examples): change node imports to use 'node:' prefix
305,159
05.08.2022 13:52:03
-7,200
9e8479b47273326538e6093ed739e79af8d4545b
fix(examples): setup authroization header in a redirected message
[ { "change_type": "MODIFY", "old_path": "examples/follow-redirects.mjs", "new_path": "examples/follow-redirects.mjs", "diff": "@@ -28,6 +28,10 @@ server.listen(0, 'localhost', async () => {\n// The following transport option is required in order to follow HTTP redirects in node.js.\n// Browsers and d...
TypeScript
MIT License
influxdata/influxdb-client-js
fix(examples): setup authroization header in a redirected message
305,159
05.08.2022 13:59:14
-7,200
efd614b38e3cb26723780c01175726f392352e98
fix(examples): redirect with authorization header
[ { "change_type": "MODIFY", "old_path": "examples/follow-redirects.mjs", "new_path": "examples/follow-redirects.mjs", "diff": "@@ -28,9 +28,12 @@ server.listen(0, 'localhost', async () => {\n// The following transport option is required in order to follow HTTP redirects in node.js.\n// Browsers and d...
TypeScript
MIT License
influxdata/influxdb-client-js
fix(examples): redirect with authorization header
305,159
08.08.2022 09:27:04
-7,200
6e908245c4d6fcf989e84419b7f8002a1dacfed3
feat: modify query example to use top-level await
[ { "change_type": "MODIFY", "old_path": "examples/query.ts", "new_path": "examples/query.ts", "diff": "@@ -46,29 +46,27 @@ queryApi.queryRows(fluxQuery, {\n// // Execute query and collect result rows in a Promise.\n// // Use with caution, it copies the whole stream of results into memory.\n-// queryA...
TypeScript
MIT License
influxdata/influxdb-client-js
feat: modify query example to use top-level await
305,159
08.08.2022 09:27:26
-7,200
28eef07425fffdfa2c824e7b28d3ce96913593ce
chore: upgrade circle CI to use the latest node 14 LTS
[ { "change_type": "MODIFY", "old_path": ".circleci/config.yml", "new_path": ".circleci/config.yml", "diff": "@@ -21,7 +21,7 @@ jobs:\nparameters:\nimage:\ntype: string\n- default: &default-image 'cimg/node:14.17.6'\n+ default: &default-image 'cimg/node:14.19'\ndocker:\n- image: << parameters.image >>...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: upgrade circle CI to use the latest node 14 LTS
305,159
08.08.2022 10:32:29
-7,200
3c77d427f9e56ab6a415c5992c2f34350257a7e5
chore: update examples/README.md
[ { "change_type": "MODIFY", "old_path": "examples/README.md", "new_path": "examples/README.md", "diff": "@@ -24,7 +24,7 @@ This directory contains javascript and typescript examples for node.js, browser,\nHow to use forward compatibility APIs from InfluxDB 1.8.\n- [rxjs-query.ts](./rxjs-query.ts)\nUs...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: update examples/README.md Co-authored-by: Vlasta Hajek <vlastimil.hajek@bonitoo.io>
305,171
10.08.2022 15:26:54
18,000
2b130b275608b9df25969286dff9a017452fd548
docs: Update to match python pr
[ { "change_type": "MODIFY", "old_path": ".github/ISSUE_TEMPLATE/BUG_REPORT.yml", "new_path": ".github/ISSUE_TEMPLATE/BUG_REPORT.yml", "diff": "@@ -6,7 +6,7 @@ body:\nattributes:\nvalue: |\nThanks for taking time to fill out this bug report! We reserve this repository issues for bugs with reproducible...
TypeScript
MIT License
influxdata/influxdb-client-js
docs: Update to match python pr
305,159
22.08.2022 17:27:48
-7,200
44b51f7df585750a3b540520ea3acdae02e040a6
fix(core): repair coverage that doesn't work with esbuild-runner
[ { "change_type": "MODIFY", "old_path": "packages/core/package.json", "new_path": "packages/core/package.json", "diff": "\"apidoc:extract\": \"api-extractor run\",\n\"build\": \"yarn run clean && yarn tsup --config ./tsup.config.browser.ts && yarn tsup\",\n\"clean\": \"rimraf dist build coverage .nyc...
TypeScript
MIT License
influxdata/influxdb-client-js
fix(core): repair coverage that doesn't work with esbuild-runner
305,159
22.08.2022 16:11:06
-7,200
6c44ff7f2e871cd4935d7648251b488e547773fe
chore: remove unused code from the test
[ { "change_type": "MODIFY", "old_path": "packages/core/test/unit/impl/RetryBuffer.test.ts", "new_path": "packages/core/test/unit/impl/RetryBuffer.test.ts", "diff": "@@ -32,14 +32,12 @@ describe('RetryBuffer', () => {\nexpect(input).deep.equals(output)\n})\nit('ignores lines on heavy load', async () =...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: remove unused code from the test
305,159
22.08.2022 16:28:04
-7,200
afbe962309128506448626c1764af09d05b6f4c9
feat(core): improve retry buffer to consistenly remove oldest items and respect scheduled retry interval
[ { "change_type": "MODIFY", "old_path": "packages/core/src/impl/RetryBuffer.ts", "new_path": "packages/core/src/impl/RetryBuffer.ts", "diff": "import {Log} from '../util/logger'\n-/* interval between successful retries */\n-const RETRY_INTERVAL = 1\n-\ninterface RetryItem {\nlines: string[]\nretryCou...
TypeScript
MIT License
influxdata/influxdb-client-js
feat(core): improve retry buffer to consistenly remove oldest items and respect scheduled retry interval
305,159
22.08.2022 16:54:44
-7,200
36a7717152ca5984c80b05a4076ee263ef1d6f10
feat: test that retry buffer removes the oldest items
[ { "change_type": "MODIFY", "old_path": "packages/core/src/impl/RetryBuffer.ts", "new_path": "packages/core/src/impl/RetryBuffer.ts", "diff": "@@ -8,14 +8,14 @@ interface RetryItem {\nnext?: RetryItem\n}\n-type FindOldestExpiredResult = [found: RetryItem, parent?: RetryItem]\n+type FindShrinkCandidat...
TypeScript
MIT License
influxdata/influxdb-client-js
feat: test that retry buffer removes the oldest items
305,159
22.08.2022 17:13:35
-7,200
774be7a348ed4977f7488bf56747f852e9edb4a5
feat: add writeRetrySkipped callback to writeApi
[ { "change_type": "MODIFY", "old_path": "packages/core/src/impl/RetryBuffer.ts", "new_path": "packages/core/src/impl/RetryBuffer.ts", "diff": "@@ -43,7 +43,6 @@ export default class RetryBuffer {\nprivate onShrink: (entry: {\nlines: string[]\nretryCount: number\n- retryTime: number\nexpires: number\n...
TypeScript
MIT License
influxdata/influxdb-client-js
feat: add writeRetrySkipped callback to writeApi
305,159
22.08.2022 18:27:20
-7,200
1600af41e3824b45014d6b109a59d04936703154
feat(core): add test for writeRetrySkipped callback
[ { "change_type": "MODIFY", "old_path": "packages/core/src/impl/RetryBuffer.ts", "new_path": "packages/core/src/impl/RetryBuffer.ts", "diff": "@@ -83,7 +83,7 @@ export default class RetryBuffer {\norigSize - this.size\n} oldest lines removed to keep buffer size under the limit of ${\nthis.maxLines\n-...
TypeScript
MIT License
influxdata/influxdb-client-js
feat(core): add test for writeRetrySkipped callback
305,180
25.08.2022 10:03:11
21,600
bb3e3f49e1fdbb357602bdbf8c38e7b1450a0442
chore(release): prepare to release influxdb-client-js-1.29.0
[ { "change_type": "MODIFY", "old_path": "CHANGELOG.md", "new_path": "CHANGELOG.md", "diff": "-## 1.29.0 [unreleased]\n+## 1.29.0 [2022-08-25]\n### Other\n1. [#238](https://github.com/influxdata/influxdb-client-js/pull/238): Respect context path in client's url option.\n1. [#240](https://github.com/in...
TypeScript
MIT License
influxdata/influxdb-client-js
chore(release): prepare to release influxdb-client-js-1.29.0
305,180
25.08.2022 10:09:40
21,600
84934286a6f2b9515807a28693401f5c9c11f551
chore(release): publish v1.29.0 [skip CI]
[ { "change_type": "MODIFY", "old_path": "lerna.json", "new_path": "lerna.json", "diff": "{\n- \"version\": \"1.28.0\",\n+ \"version\": \"1.29.0\",\n\"npmClient\": \"yarn\",\n\"packages\": [\n\"packages/*\"\n" }, { "change_type": "MODIFY", "old_path": "packages/apis/package.json", "new...
TypeScript
MIT License
influxdata/influxdb-client-js
chore(release): publish v1.29.0 [skip CI]
305,159
05.09.2022 08:45:46
-7,200
1b22f4254a4cd124141f56238e0c873cffea2776
chore(deps-dev): revert bump from 7.29.3 to 7.30.0" This reverts commit it fails in CI
[ { "change_type": "MODIFY", "old_path": "yarn.lock", "new_path": "yarn.lock", "diff": "\"@microsoft/tsdoc-config\" \"~0.16.1\"\n\"@rushstack/node-core-library\" \"3.50.2\"\n-\"@microsoft/api-extractor-model@7.24.0\":\n- version \"7.24.0\"\n- resolved \"https://registry.yarnpkg.com/@microsoft/api-extr...
TypeScript
MIT License
influxdata/influxdb-client-js
chore(deps-dev): revert bump @microsoft/api-extractor from 7.29.3 to 7.30.0" This reverts commit e07173538ffc9571f31c7d73ebe2a2f940ad1e14, it fails in CI
305,159
05.09.2022 10:33:55
-7,200
64b99fa8c2b40246ac7dea68627dc611b1782f7f
chore: upgrade typescrpt to 4.8.2
[ { "change_type": "MODIFY", "old_path": "examples/package.json", "new_path": "examples/package.json", "diff": "\"open\": \"^7.0.0\",\n\"response-time\": \"^2.3.2\",\n\"rxjs\": \"^6.5.5\",\n- \"typescript\": \"^4.7.4\"\n+ \"typescript\": \"^4.8.2\"\n}\n}\n" }, { "change_type": "MODIFY", "o...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: upgrade typescrpt to 4.8.2
305,159
13.09.2022 07:56:52
-7,200
48cae63645a3a387e79a0afc6c89bcd3653e52c1
fix: detect and repair wrong documentation references
[ { "change_type": "MODIFY", "old_path": "scripts/fix-extracted-api-files.js", "new_path": "scripts/fix-extracted-api-files.js", "diff": "/* eslint-disable @typescript-eslint/no-var-requires */\nconst path = require('path')\nconst fs = require('fs')\n+const referenceIds = {}\n+\n+const ignoredReferenc...
TypeScript
MIT License
influxdata/influxdb-client-js
fix: detect and repair wrong documentation references
305,159
13.09.2022 08:02:03
-7,200
e739bf969d35416b6ca1adb9c4d03a8cf8edc816
chore: improve output format
[ { "change_type": "MODIFY", "old_path": "scripts/fix-extracted-api-files.js", "new_path": "scripts/fix-extracted-api-files.js", "diff": "@@ -42,7 +42,7 @@ function storeCanonicalReferences(json, references) {\n}\nfunction fixExtractedFile(file, json, errors = []) {\n- console.log(`correct: ${file}`)\...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: improve output format
305,159
13.09.2022 09:10:10
-7,200
56267eb3b8a4ca70db6ee7dc8cdc027af24e7d2b
chore: print total number of fixes applied to api-extractor results
[ { "change_type": "MODIFY", "old_path": "scripts/fix-extracted-api-files.js", "new_path": "scripts/fix-extracted-api-files.js", "diff": "const path = require('path')\nconst fs = require('fs')\nconst referenceIds = {}\n+let fixedReferenceCount = 0\n+let fixedMarkdownLinks = 0\nconst ignoredReferencePa...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: print total number of fixes applied to api-extractor results
305,159
13.09.2022 09:33:04
-7,200
da94357607e5c9d6ca36e499f53e78ba70dcd448
chore: upgrade api-extractor and api-documenter
[ { "change_type": "MODIFY", "old_path": "package.json", "new_path": "package.json", "diff": "\"license\": \"MIT\",\n\"devDependencies\": {\n\"@types/node\": \"^18\",\n- \"@microsoft/api-documenter\": \"^7.18.3\",\n+ \"@microsoft/api-documenter\": \"^7.19.12\",\n\"gh-pages\": \"^4.0.0\",\n\"lerna\": \...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: upgrade api-extractor and api-documenter
305,159
13.09.2022 09:56:56
-7,200
e4d3b4f86bc5236a178f34891e44907858d29c63
fix(docs): ignore reference check for symbol declaration, map specific references
[ { "change_type": "MODIFY", "old_path": "scripts/fix-extracted-api-files.js", "new_path": "scripts/fix-extracted-api-files.js", "diff": "@@ -9,7 +9,15 @@ let fixedMarkdownLinks = 0\nconst ignoredReferencePackages = [\n'!' /* ts&js builtin types */,\n'@influxdata/giraffe!' /* giraffe references */,\n+...
TypeScript
MIT License
influxdata/influxdb-client-js
fix(docs): ignore reference check for symbol declaration, map specific references
305,159
14.09.2022 00:04:39
-7,200
ef63105e639bd7d4507d2d8fbea51adef31f67e9
fix: use node script in place of sed
[ { "change_type": "MODIFY", "old_path": "Makefile", "new_path": "Makefile", "diff": "@@ -20,7 +20,7 @@ publish:\ngit checkout master\ngit pull\nyarn install --frozen-lockfile\n- sed -i '' -e \"s/CLIENT_LIB_VERSION = '.*'/CLIENT_LIB_VERSION = '$(VERSION)'/\" packages/core/src/impl/version.ts\n+ node s...
TypeScript
MIT License
influxdata/influxdb-client-js
fix: use node script in place of sed #568
305,159
14.09.2022 21:55:45
-7,200
dda18067135b0b52bd0cc30c5436185f52699e36
chore: add links to associated 3rd party defects
[ { "change_type": "MODIFY", "old_path": "scripts/fix-extracted-api-files.js", "new_path": "scripts/fix-extracted-api-files.js", "diff": "@@ -12,7 +12,7 @@ const ignoredReferencePackages = [\n'@influxdata/influxdb-client!~__global' /*ignore global symbol declaration in packages/core/src/observable/sym...
TypeScript
MIT License
influxdata/influxdb-client-js
chore: add links to associated 3rd party defects
305,159
15.09.2022 10:20:48
-7,200
a167b922e4d536501ccaa1b6f9b31ae76ae5b296
fix(docs): rename Headers to HttpHeaders to avoid clash with DOM's Headers type
[ { "change_type": "MODIFY", "old_path": "packages/core/src/results/CommunicationObserver.ts", "new_path": "packages/core/src/results/CommunicationObserver.ts", "diff": "@@ -2,14 +2,18 @@ import {Cancellable} from './Cancellable'\n/**\n* Type of HTTP headers.\n*/\n-export type Headers = {[header: stri...
TypeScript
MIT License
influxdata/influxdb-client-js
fix(docs): rename Headers to HttpHeaders to avoid clash with DOM's Headers type
305,159
16.09.2022 13:47:58
-7,200
a9adcc51b9d018ffb639ebb76a9893f207eed65c
feat: automatically regenerate code with
[ { "change_type": "MODIFY", "old_path": "packages/apis/DEVELOPMENT.md", "new_path": "packages/apis/DEVELOPMENT.md", "diff": "@@ -10,12 +10,15 @@ $ yarn build\n## Re-generate APIs code\n+```\n+yarn regenerate\n+```\n+\n+It performs the following steps:\n+\n- fetch latest versions of openapi files\n- -...
TypeScript
MIT License
influxdata/influxdb-client-js
feat: automatically regenerate code with @influxdata/oats
305,159
16.09.2022 16:01:44
-7,200
aea9e0420b8f77566c588a2d7f32ab2094fbfc30
fix(docs): repair code blocks so that they are indented to the start of the line
[ { "change_type": "MODIFY", "old_path": "packages/apis/package.json", "new_path": "packages/apis/package.json", "diff": "\"description\": \"InfluxDB 2.x generated APIs\",\n\"scripts\": {\n\"apidoc:extract\": \"api-extractor run\",\n- \"build\": \"yarn run clean && yarn tsup --config ./tsup.config.bro...
TypeScript
MIT License
influxdata/influxdb-client-js
fix(docs): repair code blocks so that they are indented to the start of the line