You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Increase binary download timeout to 60s ([#182](https://github.com/laravel/vs-code-extension/pull/182))
35
46
36
47
## [0.1.16]
37
48
38
49
### Added
39
50
40
-
-PHP Environment setting. Specify your local environment via a list of common local setups.
41
-
-Broadened the scope of `config` values to include top level files and top-level array keys
51
+
- PHP Environment setting. Specify your local environment via a list of common local setups.
52
+
- Broadened the scope of `config` values to include top level files and top-level array keys
42
53
43
54
### Fixed
44
55
45
-
-Auto-detection of Sail and running PHP scripts via Sail
46
-
-Bug where second parameter of `config()` was autocompleting, linking, hovering, and validating
47
-
-Removed hardcoded `env` values from `launch.json` to allow users to contribute more easily
48
-
-File watcher paths as configured by `config/inertia.php`
49
-
-Missing Inertia views quick fix now respects the paths as configured by `config/inertia.php`
50
-
-Hovering and linking for Windows users with incorrect filepaths
51
-
-Removed error popups when the codebase had a parser error (during active editing)
56
+
- Auto-detection of Sail and running PHP scripts via Sail
57
+
- Bug where second parameter of `config()` was autocompleting, linking, hovering, and validating
58
+
- Removed hardcoded `env` values from `launch.json` to allow users to contribute more easily
59
+
- File watcher paths as configured by `config/inertia.php`
60
+
- Missing Inertia views quick fix now respects the paths as configured by `config/inertia.php`
61
+
- Hovering and linking for Windows users with incorrect filepaths
62
+
- Removed error popups when the codebase had a parser error (during active editing)
52
63
53
64
## [0.1.15]
54
65
55
-
-Fixed issue with executing binary on Windows path with spaces
56
-
-Repo file watchers are now debounced to prevent CPU from spiking
57
-
-Extension should now output cleaner errors from mini scripts so that future issues will be easier to debug
66
+
- Fixed issue with executing binary on Windows path with spaces
67
+
- Repo file watchers are now debounced to prevent CPU from spiking
68
+
- Extension should now output cleaner errors from mini scripts so that future issues will be easier to debug
58
69
59
70
## [0.1.14]
60
71
61
-
-Fixed fallback for running PHP code (mentioned in 0.1.13 as a breaking change). The note in the last changelog was incorrect: the new PHP Command setting should just read `php`, meaning the file will just be added to the end of the command.
72
+
- Fixed fallback for running PHP code (mentioned in 0.1.13 as a breaking change). The note in the last changelog was incorrect: the new PHP Command setting should just read `php`, meaning the file will just be added to the end of the command.
62
73
63
74
## [0.1.13]
64
75
65
-
-Initial Windows support
66
-
-Fixed nullable param for translations template for PHP 8.4
67
-
-Fixed undefined GLOB_BRACE for translations template
68
-
-Fix for Eloquent model info when `phpDocumentor` wasn't installed
69
-
-Fix for handling newline characters in JSON response ([#31](https://github.com/laravel/vs-code-extension/pull/31))
70
-
-Remove `.github` from bundle ([#29](https://github.com/laravel/vs-code-extension/pull/29))
71
-
-Inspired by [#20](https://github.com/laravel/vs-code-extension/pull/20), Inertia paths are now read from the existing PHP config in the project
72
-
-**Breaking**: The setting for PHP Command is now changed to run a file, not inline code. Previously this would have looked like this: `php -r "{code}"` but should now look like this `php "{code}"`
76
+
- Initial Windows support
77
+
- Fixed nullable param for translations template for PHP 8.4
78
+
- Fixed undefined GLOB_BRACE for translations template
79
+
- Fix for Eloquent model info when `phpDocumentor` wasn't installed
80
+
- Fix for handling newline characters in JSON response ([#31](https://github.com/laravel/vs-code-extension/pull/31))
81
+
- Remove `.github` from bundle ([#29](https://github.com/laravel/vs-code-extension/pull/29))
82
+
- Inspired by [#20](https://github.com/laravel/vs-code-extension/pull/20), Inertia paths are now read from the existing PHP config in the project
83
+
-**Breaking**: The setting for PHP Command is now changed to run a file, not inline code. Previously this would have looked like this: `php -r "{code}"` but should now look like this `php "{code}"`
73
84
74
85
## [0.1.12]
75
86
76
-
-Now fetching OS/arch specific binaries for Mac and Linux (Windows coming soon)
77
-
-Fixed translation loading when there were _a lot_ of translations
78
-
-Fixed an issue regarding full name resolution for scoped property access
87
+
- Now fetching OS/arch specific binaries for Mac and Linux (Windows coming soon)
88
+
- Fixed translation loading when there were _a lot_ of translations
89
+
- Fixed an issue regarding full name resolution for scoped property access
79
90
80
91
## [0.1.11]
81
92
82
-
-No significant changes
93
+
- No significant changes
83
94
84
95
## [0.1.10]
85
96
86
-
-Updated icon
87
-
-Fixed translation file path display
88
-
-Fixed detection of helper methods in parser (e.g. `config()`, `redirect()`, etc)
89
-
-Made downloaded binary ~30% smaller
97
+
- Updated icon
98
+
- Fixed translation file path display
99
+
- Fixed detection of helper methods in parser (e.g. `config()`, `redirect()`, etc)
100
+
- Made downloaded binary ~30% smaller
90
101
91
102
## [0.1.9]
92
103
93
-
-Fixed parsing for `new` anonymous classes (i.e. migrations)
94
-
-Fixed parsing for regular function declarations
104
+
- Fixed parsing for `new` anonymous classes (i.e. migrations)
105
+
- Fixed parsing for regular function declarations
95
106
96
107
## [0.1.8]
97
108
98
-
-Bugfix for (really) large `detect` responses
99
-
-Autocomplete for `view` related items orders by non-vendor views first
100
-
-Fixed bug for searching for views in non-directories
101
-
-Better support for earlier versions of Laravel (fixes for config and translation loading)
102
-
-If extension cannot load, give specific reason
103
-
-Support for linking in path helpers:
104
-
-`base_path`
105
-
-`resource_path`
106
-
-`config_path`
107
-
-`app_path`
108
-
-`database_path`
109
-
-`lang_path`
110
-
-`public_path`
111
-
-`storage_path`
109
+
- Bugfix for (really) large `detect` responses
110
+
- Autocomplete for `view` related items orders by non-vendor views first
111
+
- Fixed bug for searching for views in non-directories
112
+
- Better support for earlier versions of Laravel (fixes for config and translation loading)
113
+
- If extension cannot load, give specific reason
114
+
- Support for linking in path helpers:
115
+
-`base_path`
116
+
-`resource_path`
117
+
-`config_path`
118
+
-`app_path`
119
+
-`database_path`
120
+
-`lang_path`
121
+
-`public_path`
122
+
-`storage_path`
112
123
113
124
## [0.1.7]
114
125
115
-
-Facade aliases are now considered
116
-
-Blade linking, hovering, and diagnostics are improved
117
-
-Fixed an error where variables were not consistently resolved
126
+
- Facade aliases are now considered
127
+
- Blade linking, hovering, and diagnostics are improved
128
+
- Fixed an error where variables were not consistently resolved
118
129
119
130
## [0.1.6]
120
131
121
-
-Fixed bug where we weren't restricting diagnostics to only PHP files
122
-
-Added timeout to parsing processes
132
+
- Fixed bug where we weren't restricting diagnostics to only PHP files
133
+
- Added timeout to parsing processes
123
134
124
135
## [0.1.5]
125
136
126
-
-Remove external dependency on file downloader extension
127
-
-Removed keybindings and commands for test runner
137
+
- Remove external dependency on file downloader extension
138
+
- Removed keybindings and commands for test runner
128
139
129
140
## [0.1.4]
130
141
131
-
-Aligned items you can autocomplete with linkable, hoverable, and diagnostic-able items
132
-
-Created settings for opting in and out of auto completion
142
+
- Aligned items you can autocomplete with linkable, hoverable, and diagnostic-able items
143
+
- Created settings for opting in and out of auto completion
133
144
134
145
## [0.1.3]
135
146
136
-
-Performance improvements
137
-
-Remove tests integration (for now)
138
-
-Added `to_route` completion
139
-
-Added `redirect()` helper chaining for hovering, linking, and diagnostics
147
+
- Performance improvements
148
+
- Remove tests integration (for now)
149
+
- Added `to_route` completion
150
+
- Added `redirect()` helper chaining for hovering, linking, and diagnostics
0 commit comments