@balena/lf-to-abstract-sql 5.0.13 → 5.0.14

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.
@@ -1,3 +1,15 @@
1
+ - commits:
2
+ - subject: Fix rule info table name for term forms
3
+ hash: 5ce073f5774e6137d2651ae945425ab80e6147f2
4
+ body: ""
5
+ footer:
6
+ Change-type: patch
7
+ change-type: patch
8
+ author: Pagan Gazzard
9
+ nested: []
10
+ version: 5.0.14
11
+ title: ""
12
+ date: 2026-02-23T17:56:11.287Z
1
13
  - commits:
2
14
  - subject: "Add id-token: write permission for NPM OIDC publishing"
3
15
  hash: 45940cc781ebdb9f75613f21f25758b7c3f9ff82
@@ -11,7 +23,7 @@
11
23
  nested: []
12
24
  version: 5.0.13
13
25
  title: ""
14
- date: 2026-02-18T18:40:31.091Z
26
+ date: 2026-02-19T01:56:49.027Z
15
27
  - commits:
16
28
  - subject: Update dependency chai to v6
17
29
  hash: 92f7046617444bfa6086f43857697a52da377037
package/CHANGELOG.md CHANGED
@@ -4,7 +4,11 @@ All notable changes to this project will be documented in this file
4
4
  automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
5
5
  This project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
- ## 5.0.13 - 2026-02-18
7
+ ## 5.0.14 - 2026-02-23
8
+
9
+ * Fix rule info table name for term forms [Pagan Gazzard]
10
+
11
+ ## 5.0.13 - 2026-02-19
8
12
 
9
13
  * Add id-token: write permission for NPM OIDC publishing [Kyle Harding]
10
14
 
@@ -1330,7 +1330,7 @@ LF2AbstractSQL.AddWhereClause = function(query, whereBody) {
1330
1330
  LF2AbstractSQL.CreateConceptTypesResolver = function(query, identifier, varNum) {
1331
1331
  var parentAlias = identifier.name + varNum, concept = this.ReconstructIdentifier(identifier), conceptTypeResolutions, $elf = this;
1332
1332
  null === this.ruleRoot && (this.ruleRoot = {
1333
- table: identifier.name,
1333
+ table: this.GetTable(identifier.name).name,
1334
1334
  alias: parentAlias
1335
1335
  });
1336
1336
  if (this.conceptTypeResolvers[parentAlias]) throw new Error('Concept type resolver already added for "' + parentAlias + '"!');
@@ -1145,7 +1145,7 @@ LF2AbstractSQL.CreateConceptTypesResolver = function(query, identifier, varNum)
1145
1145
  // its alias to be returned as extra metadata for this rule
1146
1146
  if (this.ruleRoot === null) {
1147
1147
  this.ruleRoot = {
1148
- table: identifier.name,
1148
+ table: this.GetTable(identifier.name).name,
1149
1149
  alias: parentAlias
1150
1150
  };
1151
1151
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@balena/lf-to-abstract-sql",
3
- "version": "5.0.13",
3
+ "version": "5.0.14",
4
4
  "description": "LF to Abstract SQL translator.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -36,6 +36,6 @@
36
36
  "_": "test/**/*.js"
37
37
  },
38
38
  "versionist": {
39
- "publishedAt": "2026-02-18T18:40:31.211Z"
39
+ "publishedAt": "2026-02-23T17:56:11.412Z"
40
40
  }
41
41
  }