Skip to content

Commit 309eb24

Browse files
authored
chore(vscode): 0.2.0 (#1029)
1 parent 4e54e23 commit 309eb24

File tree

3 files changed

+59
-4
lines changed

3 files changed

+59
-4
lines changed

extensions/vscode/CHANGELOG.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,58 @@
1+
# 0.2.0
2+
3+
- refactor: use string over String ([#865](https://github.com/VeryGoodOpenSource/dart_frog/pull/865))
4+
- fix: avoid recommending to upgrade when version is above constraints ([#864](https://github.com/VeryGoodOpenSource/dart_frog/pull/864))
5+
- test: use stub.resolves over stub.returns with Promise ([#862](https://github.com/VeryGoodOpenSource/dart_frog/pull/862))
6+
- chore(deps-dev): bump @typescript-eslint/parser from 6.1.0 to 6.2.1 in /extensions/vscode ([#833](https://github.com/VeryGoodOpenSource/dart_frog/pull/833))
7+
- fix: suggest again to install the Dart Frog CLI before running a command that requires of Dart Frog CLI if not installed ([#870](https://github.com/VeryGoodOpenSource/dart_frog/pull/870))
8+
- chore(deps-dev): bump @types/node from 20.4.5 to 20.4.6 in /extensions/vscode ([#876](https://github.com/VeryGoodOpenSource/dart_frog/pull/876))
9+
- chore(deps-dev): bump @types/vscode from 1.80.0 to 1.81.0 in /extensions/vscode ([#888](https://github.com/VeryGoodOpenSource/dart_frog/pull/888))
10+
- refactor: rename command prefix to "dart-frog" ([#895](https://github.com/VeryGoodOpenSource/dart_frog/pull/895))
11+
- chore(deps-dev): bump @types/node from 20.4.6 to 20.4.8 in /extensions/vscode ([#898](https://github.com/VeryGoodOpenSource/dart_frog/pull/898))
12+
- feat: define singleton DartFrogDaemon ([#917](https://github.com/VeryGoodOpenSource/dart_frog/pull/917))
13+
- feat: implement daemon protocol ([#915](https://github.com/VeryGoodOpenSource/dart_frog/pull/915))
14+
- feat: define "daemon" domain messages ([#918](https://github.com/VeryGoodOpenSource/dart_frog/pull/918))
15+
- feat: allow invoking Dart Frog daemon ([#925](https://github.com/VeryGoodOpenSource/dart_frog/pull/925))
16+
- feat: implemented requestIdentifierGenerator for Dart Frog daemon ([#929](https://github.com/VeryGoodOpenSource/dart_frog/pull/929))
17+
- feat: defined dev_server domain ([#931](https://github.com/VeryGoodOpenSource/dart_frog/pull/931))
18+
- feat: defined DartFrogApplication ([#932](https://github.com/VeryGoodOpenSource/dart_frog/pull/932))
19+
- feat: allow daemon to send requests ([#930](https://github.com/VeryGoodOpenSource/dart_frog/pull/930))
20+
- feat: defined DartFrogApplicationRegistry ([#933](https://github.com/VeryGoodOpenSource/dart_frog/pull/933))
21+
- chore(deps-dev): bump @typescript-eslint/parser from 6.2.1 to 6.4.1 in /extensions/vscode ([#947](https://github.com/VeryGoodOpenSource/dart_frog/pull/947))
22+
- chore(deps-dev): bump @types/node from 20.4.8 to 20.5.1 in /extensions/vscode ([#946](https://github.com/VeryGoodOpenSource/dart_frog/pull/946))
23+
- chore(deps-dev): bump @typescript-eslint/eslint-plugin from 6.2.1 to 6.4.1 in /extensions/vscode ([#945](https://github.com/VeryGoodOpenSource/dart_frog/pull/945))
24+
- chore(deps-dev): bump eslint from 8.46.0 to 8.47.0 in /extensions/vscode ([#922](https://github.com/VeryGoodOpenSource/dart_frog/pull/922))
25+
- feat: allow starting the daemon via command ([#943](https://github.com/VeryGoodOpenSource/dart_frog/pull/943))
26+
- chore: include license in packages.json ([#896](https://github.com/VeryGoodOpenSource/dart_frog/pull/896))
27+
- feat: allow starting development server ([#952](https://github.com/VeryGoodOpenSource/dart_frog/pull/952))
28+
- feat: allow stopping development server ([#953](https://github.com/VeryGoodOpenSource/dart_frog/pull/953))
29+
- refactor: allow quickPickApplication to be shared ([#956](https://github.com/VeryGoodOpenSource/dart_frog/pull/956))
30+
- feat: allow attaching development server to Dart debugger ([#955](https://github.com/VeryGoodOpenSource/dart_frog/pull/955))
31+
- refactor: included sort-import and no-unused-vars lint rules ([#962](https://github.com/VeryGoodOpenSource/dart_frog/pull/962))
32+
- chore(deps-dev): bump @typescript-eslint/eslint-plugin from 6.4.1 to 6.5.0 in /extensions/vscode ([#972](https://github.com/VeryGoodOpenSource/dart_frog/pull/972))
33+
- chore(deps-dev): bump @types/node from 20.5.1 to 20.5.7 in /extensions/vscode ([#971](https://github.com/VeryGoodOpenSource/dart_frog/pull/971))
34+
- chore(deps-dev): bump @typescript-eslint/parser from 6.4.1 to 6.5.0 in /extensions/vscode ([#970](https://github.com/VeryGoodOpenSource/dart_frog/pull/970))
35+
- chore(deps-dev): bump eslint from 8.47.0 to 8.48.0 in /extensions/vscode ([#969](https://github.com/VeryGoodOpenSource/dart_frog/pull/969))
36+
- chore(deps-dev): bump typescript from 5.1.6 to 5.2.2 in /extensions/vscode ([#968](https://github.com/VeryGoodOpenSource/dart_frog/pull/968))
37+
- feat: register startDebugDevServer command ([#974](https://github.com/VeryGoodOpenSource/dart_frog/pull/974))
38+
- feat: provide Run CodeLens on route handlers ([#960](https://github.com/VeryGoodOpenSource/dart_frog/pull/960))
39+
- feat: provide Debug CodeLens on route handlers ([#973](https://github.com/VeryGoodOpenSource/dart_frog/pull/973))
40+
- feat: add status bar items to start, stop and open server ([#988](https://github.com/VeryGoodOpenSource/dart_frog/pull/988))
41+
- chore(deps-dev): bump glob from 10.3.3 to 10.3.4 in /extensions/vscode ([#997](https://github.com/VeryGoodOpenSource/dart_frog/pull/997))
42+
- feat: strengthen when clauses with anyDartFrogProjectLoaded ([#1002](https://github.com/VeryGoodOpenSource/dart_frog/pull/1002))
43+
- chore(deps-dev): bump @typescript-eslint/eslint-plugin from 6.5.0 to 6.6.0 in /extensions/vscode ([#999](https://github.com/VeryGoodOpenSource/dart_frog/pull/999))
44+
- feat: added stop to debug toolbar ([#1001](https://github.com/VeryGoodOpenSource/dart_frog/pull/1001))
45+
- chore(deps-dev): bump @typescript-eslint/parser from 6.5.0 to 6.6.0 in /extensions/vscode ([#996](https://github.com/VeryGoodOpenSource/dart_frog/pull/996))
46+
- feat: include host member in DartFrogApplication ([#1010](https://github.com/VeryGoodOpenSource/dart_frog/pull/1010))
47+
- refactor: rename nearestDartFrogProject to nearestParentDartFrogProject ([#1014](https://github.com/VeryGoodOpenSource/dart_frog/pull/1014))
48+
- feat: implemented nearestChildDartFrogProjects ([#1015](https://github.com/VeryGoodOpenSource/dart_frog/pull/1015))
49+
- chore(deps-dev): bump @typescript-eslint/parser from 6.6.0 to 6.7.0 in /extensions/vscode ([#1020](https://github.com/VeryGoodOpenSource/dart_frog/pull/1020))
50+
- chore(deps-dev): bump eslint from 8.48.0 to 8.49.0 in /extensions/vscode ([#1024](https://github.com/VeryGoodOpenSource/dart_frog/pull/1024))
51+
- test: simplify start-dev-server tests ([#1027](https://github.com/VeryGoodOpenSource/dart_frog/pull/1027))
52+
- chore(deps-dev): bump @typescript-eslint/eslint-plugin from 6.6.0 to 6.7.0 in /extensions/vscode ([#1023](https://github.com/VeryGoodOpenSource/dart_frog/pull/1023))
53+
- chore(deps-dev): bump @types/node from 20.5.7 to 20.6.0 in /extensions/vscode ([#1022](https://github.com/VeryGoodOpenSource/dart_frog/pull/1022))
54+
- chore(deps-dev): bump @types/vscode from 1.81.0 to 1.82.0 in /extensions/vscode ([#1021](https://github.com/VeryGoodOpenSource/dart_frog/pull/1021))
55+
156
# 0.1.1
257

358
- docs: update README links and style ([#857](https://github.com/VeryGoodOpenSource/dart_frog/pull/857)).

extensions/vscode/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extensions/vscode/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "dart-frog",
33
"displayName": "Dart Frog",
44
"description": "Support for Dart Frog, a minimalistic backend framework.",
5-
"version": "0.1.1",
5+
"version": "0.2.0",
66
"publisher": "VeryGoodVentures",
77
"bugs": {
88
"url": "https://github.com/VeryGoodOpenSource/dart_frog/issues",
@@ -15,7 +15,7 @@
1515
"homepage": "https://dartfrog.vgv.dev/",
1616
"license": "MIT",
1717
"engines": {
18-
"vscode": "^1.79.0"
18+
"vscode": "^1.82.0"
1919
},
2020
"categories": [
2121
"Snippets",

0 commit comments

Comments
 (0)