@alloy-js/core 0.22.0-dev.4 → 0.22.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog - @alloy-js/core
2
2
 
3
+ ## 0.22.0
4
+
5
+ ### Bug Fixes
6
+
7
+ - [#327](https://github.com/alloy-framework/alloy/pull/327) Fix a bug where tracing would track additional signals.
8
+
9
+ ### Features
10
+
11
+ - [#339](https://github.com/alloy-framework/alloy/pull/339) Add `sourceFilesForTreeAsync` API for getting source files from a rendered text tree when async jobs are present."
12
+ - [#328](https://github.com/alloy-framework/alloy/pull/328) Add a `createContentSlot` API which returns a component which can be used to detect whether content is added inside it. This can be used to conditionally render fallback content or properly format empty components.
13
+ - [#328](https://github.com/alloy-framework/alloy/pull/328) List, For, and their wrapper components now handle when an element has no content. Show can now be used to conditionally render an item in a list, for example.
14
+
15
+
3
16
  ## 0.21.0
4
17
 
5
18
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alloy-js/core",
3
- "version": "0.22.0-dev.4",
3
+ "version": "0.22.0",
4
4
  "description": "",
5
5
  "main": "./dist/src/index.js",
6
6
  "exports": {
@@ -42,14 +42,14 @@
42
42
  "prettier": "^3.6.2"
43
43
  },
44
44
  "devDependencies": {
45
- "@alloy-js/cli": "~0.21.0 || >= 0.22.0-dev.0",
46
- "@alloy-js/rollup-plugin": "~0.1.0 || >= 0.1.1-dev.0",
47
45
  "@microsoft/api-extractor": "~7.52.8",
48
46
  "@rollup/plugin-typescript": "^12.1.2",
49
47
  "concurrently": "^9.2.0",
50
48
  "typescript": "^5.8.3",
51
49
  "vite": "^7.0.6",
52
- "vitest": "^3.2.4"
50
+ "vitest": "^3.2.4",
51
+ "@alloy-js/cli": "~0.22.0",
52
+ "@alloy-js/rollup-plugin": "~0.1.0"
53
53
  },
54
54
  "type": "module",
55
55
  "scripts": {