@ripple-ts/language-server 0.3.12 → 0.3.13

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
@@ -1,5 +1,34 @@
1
1
  # @ripple-ts/language-server
2
2
 
3
+ ## 0.3.13
4
+
5
+ ### Patch Changes
6
+
7
+ - [#862](https://github.com/Ripple-TS/ripple/pull/862)
8
+ [`48af856`](https://github.com/Ripple-TS/ripple/commit/48af85678d5e1b32bb1c5e3fbb2fb07498bc88a3)
9
+ Thanks [@leonidaz](https://github.com/leonidaz)! - Add a release changeset for
10
+ the async tracking work introduced in commit
11
+ `4eb4d6851573d771d65f1e85b1b442ad3cdc53d2`.
12
+
13
+ This ships async tracking as a first-class feature in Ripple:
14
+ - remove and prohibit direct component-level `await`; async component flows now
15
+ require using `trackAsync()` (with `trackPending()` for pending state checks)
16
+ - add `trackAsync()` and `trackPending()` support so async values can be read
17
+ through Ripple's reactive runtime using tracked async values
18
+ - update compiler/runtime behavior for `try`/`catch`/`pending` boundaries so
19
+ async pending and error states can render and recover correctly in client and
20
+ SSR paths
21
+ - align `@ripple-ts/compat-react` async boundary behavior with the new Ripple
22
+ async tracking semantics
23
+ - update editor/tooling integration to match the new async syntax/runtime shape
24
+
25
+ - [`6e11177`](https://github.com/Ripple-TS/ripple/commit/6e111778cae4e7d9876e51e293520f0859eb5890)
26
+ Thanks [@trueadm](https://github.com/trueadm)! - Add `.rsrx` support across
27
+ Ripple tooling and rename the repository's tracked `.ripple` modules to `.rsrx`.
28
+ - Updated dependencies
29
+ [[`6e11177`](https://github.com/Ripple-TS/ripple/commit/6e111778cae4e7d9876e51e293520f0859eb5890)]:
30
+ - @ripple-ts/typescript-plugin@0.3.13
31
+
3
32
  ## 0.3.12
4
33
 
5
34
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ripple-ts/language-server",
3
- "version": "0.3.12",
3
+ "version": "0.3.13",
4
4
  "description": "Language Server Protocol implementation for Ripple",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -19,10 +19,10 @@
19
19
  "volar-service-typescript": "0.0.70",
20
20
  "vscode-languageserver-textdocument": "^1.0.12",
21
21
  "vscode-uri": "^3.1.0",
22
- "@ripple-ts/typescript-plugin": "0.3.12"
22
+ "@ripple-ts/typescript-plugin": "0.3.13"
23
23
  },
24
24
  "devDependencies": {
25
- "ripple": "0.3.12"
25
+ "ripple": "0.3.13"
26
26
  },
27
27
  "peerDependencies": {
28
28
  "typescript": "^5.9.3"
@@ -38,7 +38,7 @@ function createAutoInsertPlugin() {
38
38
  capabilities: {
39
39
  autoInsertionProvider: {
40
40
  triggerCharacters: ['>'],
41
- configurationSections: ['ripple.autoClosingTags'],
41
+ configurationSections: ['ripple.autoClosingTags.enabled'],
42
42
  },
43
43
  documentOnTypeFormattingProvider: {
44
44
  triggerCharacters: ['>'],
package/src/utils.js CHANGED
@@ -24,7 +24,7 @@ const IMPORT_EXPORT_REGEX = {
24
24
  from: /from\s*['"][^'"]*['"]\s*;?/,
25
25
  };
26
26
 
27
- const RIPPLE_EXTENSIONS = ['.ripple', '.tsrx'];
27
+ const RIPPLE_EXTENSIONS = ['.ripple', '.rsrx', '.tsrx'];
28
28
 
29
29
  /** @type {is_identifier_obfuscated} */
30
30
  let is_identifier_obfuscated;