@alloy-js/core 0.20.0-dev.9 → 0.21.0-dev.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 +20 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Changelog - @alloy-js/core
2
2
 
3
+ ## 0.20.0
4
+
5
+ ### Bug Fixes
6
+
7
+ - [#268](https://github.com/alloy-framework/alloy/pull/268) Add export for resource APIs
8
+ - [#265](https://github.com/alloy-framework/alloy/pull/265) Connect `componentOwner` in the context tree
9
+ - [#269](https://github.com/alloy-framework/alloy/pull/269) writeOutput will write files sequentially instead of in parallel to avoid race conditions where directories aren't created before files are attempted to be written to them.
10
+
11
+ ### Features
12
+
13
+ - [#276](https://github.com/alloy-framework/alloy/pull/276) Add `symbolForRefkey` API to get a ref to a symbol with the given refkey, using the binder from context.
14
+ - [#277](https://github.com/alloy-framework/alloy/pull/277) Add `FormatOptions` component to provide global override for format configuration
15
+ - [#278](https://github.com/alloy-framework/alloy/pull/278) Insert final new line by default in source files. Added `insertFinalNewLine` formatting option to disable.
16
+ - [#206](https://github.com/alloy-framework/alloy/pull/206) Add `namekey`, a kind of refkey which you can provide a name and use in place of a string. This sets the name of the symbol and serves as a refkey for that symbol.
17
+
18
+ ### Breaking Changes
19
+
20
+ - [#206](https://github.com/alloy-framework/alloy/pull/206) Update core's representation of symbols and scopes. These changes should not impact usage of language components in code generators, but there are some significant changes for language library implementations. See https://github.com/alloy-framework/alloy/pull/206 for more details.
21
+
22
+
3
23
  ## 0.19.0
4
24
 
5
25
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alloy-js/core",
3
- "version": "0.20.0-dev.9",
3
+ "version": "0.21.0-dev.0",
4
4
  "description": "",
5
5
  "main": "./dist/src/index.js",
6
6
  "exports": {
@@ -42,7 +42,7 @@
42
42
  "prettier": "^3.6.2"
43
43
  },
44
44
  "devDependencies": {
45
- "@alloy-js/cli": "~0.19.0 || >= 0.20.0-dev.1",
45
+ "@alloy-js/cli": "~0.20.0 || >= 0.21.0-dev.0",
46
46
  "@alloy-js/rollup-plugin": "~0.1.0 || >= 0.1.1-dev.0",
47
47
  "@microsoft/api-extractor": "~7.52.8",
48
48
  "@rollup/plugin-typescript": "^12.1.2",