@barefootjs/jinja 0.26.0 → 0.26.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/dist/index.js CHANGED
@@ -189210,7 +189210,7 @@ var conformancePins = {
189210
189210
  "filter-nested-find-predicate": [
189211
189211
  { code: "BF101", severity: "error", issue: "https://github.com/piconic-ai/barefootjs/issues/2320" }
189212
189212
  ],
189213
- "date-method-uncatalogued": [{ code: "BF021", severity: "error", issue: "https://github.com/piconic-ai/barefootjs/issues/2274" }]
189213
+ "date-method-uncatalogued": [{ code: "BF021", severity: "error", issue: "https://github.com/piconic-ai/barefootjs/issues/2356" }]
189214
189214
  };
189215
189215
  // src/render-divergences.ts
189216
189216
  var renderDivergences = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@barefootjs/jinja",
3
- "version": "0.26.0",
3
+ "version": "0.26.1",
4
4
  "description": "Jinja2 adapter for BarefootJS — compiles IR to .jinja templates and ships the Python BarefootJS rendering runtime; runs under any Python web framework (Flask, etc.)",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -53,14 +53,14 @@
53
53
  "directory": "packages/adapter-jinja"
54
54
  },
55
55
  "dependencies": {
56
- "@barefootjs/shared": "0.26.0"
56
+ "@barefootjs/shared": "0.26.1"
57
57
  },
58
58
  "peerDependencies": {
59
59
  "@barefootjs/jsx": ">=0.2.0"
60
60
  },
61
61
  "devDependencies": {
62
62
  "@barefootjs/adapter-tests": "0.1.0",
63
- "@barefootjs/jsx": "0.26.0",
63
+ "@barefootjs/jsx": "0.26.1",
64
64
  "typescript": "^5.0.0"
65
65
  }
66
66
  }
@@ -108,5 +108,5 @@ export const conformancePins: ConformancePins = {
108
108
  // compiler-level refusal (`checkRichTypeMethodCalls`, wired ahead of
109
109
  // `adapter.generate()`), not an adapter-specific gap, so it is pinned
110
110
  // identically across every adapter package including Hono.
111
- 'date-method-uncatalogued': [{ code: 'BF021', severity: 'error', issue: 'https://github.com/piconic-ai/barefootjs/issues/2274' }],
111
+ 'date-method-uncatalogued': [{ code: 'BF021', severity: 'error', issue: 'https://github.com/piconic-ai/barefootjs/issues/2356' }],
112
112
  }