@heroku/applink 1.0.0-ea.2 → 1.0.2-beta.1

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/CHANGELOG.md CHANGED
@@ -29,3 +29,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
29
29
  - Rename `HTTPResponseError` -> `HttpResponseError`
30
30
  - Add GitHub pull request template
31
31
  - Fix Java heap memory test issue
32
+
33
+ ## [1.0.0] - 2025-07-29
34
+ - Bug fix in the Query and Ingestion calls to Datacloud
35
+
36
+ ## [1.0.1] - 2025-11-10
37
+ - Switch CODEOWNERS to heroku-applink team
38
+
39
+ ## [1.0.2-beta.1] - 2026-01-28
40
+ - Dependabot Security Updates
41
+ - Bump jws from 3.2.2 to 3.2.3
42
+ - Bump mdast-util-to-hast from 13.2.0 to 13.2.1
43
+ - Bump lodash from 4.17.21 to 4.17.23
44
+ - Bump js-yaml from 3.14.1 to 3.14.2 and 4.1.0 to 4.1.1
@@ -19,7 +19,7 @@ class DataCloudApiImpl {
19
19
  retry: {
20
20
  limit: 1,
21
21
  },
22
- json: sql,
22
+ body: JSON.stringify({ sql }),
23
23
  };
24
24
  const response = await this.request.request(url, opts);
25
25
  return response;
@@ -50,7 +50,7 @@ class DataCloudApiImpl {
50
50
  retry: {
51
51
  limit: 1,
52
52
  },
53
- json: data,
53
+ body: JSON.stringify(data),
54
54
  };
55
55
  const response = await this.request.request(url, opts);
56
56
  return response;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heroku/applink",
3
- "version": "1.0.0-ea.2",
3
+ "version": "1.0.2-beta.1",
4
4
  "description": "Applink SDK for Heroku Apps.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",