Skip to content

Commit b6e5889

Browse files
authored
Merge pull request #68 from thetarnav/changeset-release/main
chore: update versions
2 parents c91afc3 + e109f07 commit b6e5889

23 files changed

Lines changed: 233 additions & 253 deletions

File tree

.changeset/smooth-bikes-sing.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

packages/debugger/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @solid-devtools/debugger
22

3+
## 0.5.0
4+
5+
### Minor Changes
6+
7+
- 41b4b7b: This one will be a major rewrite of the debugger, API available in plugins and the reconciliation on the extension.
8+
Now the walked tree will now include information about computation observers, value, signals, sources. All this will be available only for the "focused" owner—new API for getting details about a specific owner.
9+
10+
### Patch Changes
11+
12+
- Updated dependencies [41b4b7b]
13+
- @solid-devtools/shared@0.5.0
14+
315
## 0.4.1
416

517
## 0.4.0

packages/debugger/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@solid-devtools/debugger",
3-
"version": "0.4.1",
3+
"version": "0.5.0",
44
"description": "Debugger of the Solid's reactivity graph — a cornerstone of all solid-devtools.",
55
"license": "MIT",
66
"author": "Damian Tarnawski <gthetarnav@gmail.com>",
@@ -59,7 +59,7 @@
5959
"typescript": "^4.7.4"
6060
},
6161
"dependencies": {
62-
"@solid-devtools/shared": "workspace:^0.4.0",
62+
"@solid-devtools/shared": "workspace:^0.5.0",
6363
"@solid-primitives/event-bus": "^0.1.0",
6464
"@solid-primitives/immutable": "^0.1.0",
6565
"@solid-primitives/memo": "^0.3.0",
@@ -73,7 +73,7 @@
7373
"solid-js": "^1.4.5"
7474
},
7575
"optionalDependencies": {
76-
"@solid-devtools/transform": "^0.6.0"
76+
"@solid-devtools/transform": "^0.6.1"
7777
},
7878
"packageManager": "pnpm@7.8.0"
7979
}

packages/extension-adapter/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# @solid-devtools/extension-adapter
22

3+
## 0.11.0
4+
5+
### Minor Changes
6+
7+
- 41b4b7b: This one will be a major rewrite of the debugger, API available in plugins and the reconciliation on the extension.
8+
Now the walked tree will now include information about computation observers, value, signals, sources. All this will be available only for the "focused" owner—new API for getting details about a specific owner.
9+
10+
### Patch Changes
11+
12+
- Updated dependencies [41b4b7b]
13+
- @solid-devtools/debugger@0.5.0
14+
- @solid-devtools/shared@0.5.0
15+
316
## 0.10.0
417

518
### Minor Changes

packages/extension-adapter/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@solid-devtools/extension-adapter",
3-
"version": "0.10.0",
3+
"version": "0.11.0",
44
"description": "Adapter for @solid-devtools/debugger for communicating with Solid Devtools chrome extension.",
55
"license": "MIT",
66
"author": "Damian Tarnawski <gthetarnav@gmail.com>",
@@ -41,8 +41,8 @@
4141
"typescript": "^4.7.4"
4242
},
4343
"dependencies": {
44-
"@solid-devtools/debugger": "^0.4.0",
45-
"@solid-devtools/shared": "workspace:^0.4.0",
44+
"@solid-devtools/debugger": "^0.5.0",
45+
"@solid-devtools/shared": "workspace:^0.5.0",
4646
"@solid-primitives/utils": "^3.0.1",
4747
"type-fest": "^2.18.0"
4848
},

packages/extension/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# solid-devtools-extension
22

3+
## 0.5.0
4+
5+
### Minor Changes
6+
7+
- 41b4b7b: This one will be a major rewrite of the debugger, API available in plugins and the reconciliation on the extension.
8+
Now the walked tree will now include information about computation observers, value, signals, sources. All this will be available only for the "focused" owner—new API for getting details about a specific owner.
9+
10+
### Patch Changes
11+
12+
- Updated dependencies [41b4b7b]
13+
- @solid-devtools/shared@0.5.0
14+
- @solid-devtools/ui@0.7.0
15+
316
## 0.4.0
417

518
### Minor Changes

packages/extension/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "solid-devtools-extension",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"private": true,
55
"license": "MIT",
66
"author": "Damian Tarnawski <gthetarnav@gmail.com>",
@@ -23,8 +23,8 @@
2323
"vite-plugin-solid": "^2.3.0"
2424
},
2525
"dependencies": {
26-
"@solid-devtools/shared": "workspace:^0.4.0",
27-
"@solid-devtools/ui": "0.6.0",
26+
"@solid-devtools/shared": "workspace:^0.5.0",
27+
"@solid-devtools/ui": "0.7.0",
2828
"@solid-primitives/context": "^0.1.0",
2929
"@solid-primitives/destructure": "^0.1.1",
3030
"@solid-primitives/immutable": "^0.1.0",

packages/locator/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# @solid-devtools/locator
22

3+
## 0.11.0
4+
5+
### Minor Changes
6+
7+
- 41b4b7b: This one will be a major rewrite of the debugger, API available in plugins and the reconciliation on the extension.
8+
Now the walked tree will now include information about computation observers, value, signals, sources. All this will be available only for the "focused" owner—new API for getting details about a specific owner.
9+
10+
### Patch Changes
11+
12+
- Updated dependencies [41b4b7b]
13+
- @solid-devtools/debugger@0.5.0
14+
- @solid-devtools/shared@0.5.0
15+
316
## 0.10.1
417

518
### Patch Changes

packages/locator/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@solid-devtools/locator",
3-
"version": "0.10.1",
3+
"version": "0.11.0",
44
"description": "On-page overlay for localisating SolidJS components, and revealing them in your code editor.",
55
"license": "MIT",
66
"author": "Damian Tarnawski <gthetarnav@gmail.com>",
@@ -59,8 +59,8 @@
5959
"typescript": "^4.7.4"
6060
},
6161
"dependencies": {
62-
"@solid-devtools/debugger": "^0.4.1",
63-
"@solid-devtools/shared": "workspace:^0.4.0",
62+
"@solid-devtools/debugger": "^0.5.0",
63+
"@solid-devtools/shared": "workspace:^0.5.0",
6464
"@solid-primitives/bounds": "^0.0.100",
6565
"@solid-primitives/event-listener": "^2.2.1",
6666
"@solid-primitives/keyboard": "^0.0.100",
@@ -73,7 +73,7 @@
7373
"solid-js": "^1.4.4"
7474
},
7575
"optionalDependencies": {
76-
"@solid-devtools/transform": "^0.6.0"
76+
"@solid-devtools/transform": "^0.6.1"
7777
},
7878
"packageManager": "pnpm@7.8.0"
7979
}

packages/logger/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# @solid-devtools/logger
22

3+
## 0.4.0
4+
5+
### Minor Changes
6+
7+
- 41b4b7b: This one will be a major rewrite of the debugger, API available in plugins and the reconciliation on the extension.
8+
Now the walked tree will now include information about computation observers, value, signals, sources. All this will be available only for the "focused" owner—new API for getting details about a specific owner.
9+
10+
### Patch Changes
11+
12+
- Updated dependencies [41b4b7b]
13+
- @solid-devtools/debugger@0.5.0
14+
- @solid-devtools/shared@0.5.0
15+
316
## 0.3.0
417

518
### Minor Changes

0 commit comments

Comments
 (0)