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))
102
106
103
107
## [0.1.16]
104
108
105
109
### Added
106
110
107
-
- PHP Environment setting. Specify your local environment via a list of common local setups.
108
-
- Broadened the scope of `config` values to include top level files and top-level array keys
111
+
-PHP Environment setting. Specify your local environment via a list of common local setups.
112
+
-Broadened the scope of `config` values to include top level files and top-level array keys
109
113
110
114
### Fixed
111
115
112
-
- Auto-detection of Sail and running PHP scripts via Sail
113
-
- Bug where second parameter of `config()` was autocompleting, linking, hovering, and validating
114
-
- Removed hardcoded `env` values from `launch.json` to allow users to contribute more easily
115
-
- File watcher paths as configured by `config/inertia.php`
116
-
- Missing Inertia views quick fix now respects the paths as configured by `config/inertia.php`
117
-
- Hovering and linking for Windows users with incorrect filepaths
118
-
- Removed error popups when the codebase had a parser error (during active editing)
116
+
-Auto-detection of Sail and running PHP scripts via Sail
117
+
-Bug where second parameter of `config()` was autocompleting, linking, hovering, and validating
118
+
-Removed hardcoded `env` values from `launch.json` to allow users to contribute more easily
119
+
-File watcher paths as configured by `config/inertia.php`
120
+
-Missing Inertia views quick fix now respects the paths as configured by `config/inertia.php`
121
+
-Hovering and linking for Windows users with incorrect filepaths
122
+
-Removed error popups when the codebase had a parser error (during active editing)
119
123
120
124
## [0.1.15]
121
125
122
-
- Fixed issue with executing binary on Windows path with spaces
123
-
- Repo file watchers are now debounced to prevent CPU from spiking
124
-
- Extension should now output cleaner errors from mini scripts so that future issues will be easier to debug
126
+
-Fixed issue with executing binary on Windows path with spaces
127
+
-Repo file watchers are now debounced to prevent CPU from spiking
128
+
-Extension should now output cleaner errors from mini scripts so that future issues will be easier to debug
125
129
126
130
## [0.1.14]
127
131
128
-
- 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.
132
+
-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.
129
133
130
134
## [0.1.13]
131
135
132
-
- Initial Windows support
133
-
- Fixed nullable param for translations template for PHP 8.4
134
-
- Fixed undefined GLOB_BRACE for translations template
135
-
- Fix for Eloquent model info when `phpDocumentor` wasn't installed
136
-
- Fix for handling newline characters in JSON response ([#31](https://github.com/laravel/vs-code-extension/pull/31))
137
-
- Remove `.github` from bundle ([#29](https://github.com/laravel/vs-code-extension/pull/29))
138
-
- 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
139
-
-**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}"`
136
+
-Initial Windows support
137
+
-Fixed nullable param for translations template for PHP 8.4
138
+
-Fixed undefined GLOB_BRACE for translations template
139
+
-Fix for Eloquent model info when `phpDocumentor` wasn't installed
140
+
-Fix for handling newline characters in JSON response ([#31](https://github.com/laravel/vs-code-extension/pull/31))
141
+
-Remove `.github` from bundle ([#29](https://github.com/laravel/vs-code-extension/pull/29))
142
+
-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
143
+
-**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}"`
140
144
141
145
## [0.1.12]
142
146
143
-
- Now fetching OS/arch specific binaries for Mac and Linux (Windows coming soon)
144
-
- Fixed translation loading when there were _a lot_ of translations
145
-
- Fixed an issue regarding full name resolution for scoped property access
147
+
-Now fetching OS/arch specific binaries for Mac and Linux (Windows coming soon)
148
+
-Fixed translation loading when there were _a lot_ of translations
149
+
-Fixed an issue regarding full name resolution for scoped property access
146
150
147
151
## [0.1.11]
148
152
149
-
- No significant changes
153
+
-No significant changes
150
154
151
155
## [0.1.10]
152
156
153
-
- Updated icon
154
-
- Fixed translation file path display
155
-
- Fixed detection of helper methods in parser (e.g. `config()`, `redirect()`, etc)
156
-
- Made downloaded binary ~30% smaller
157
+
-Updated icon
158
+
-Fixed translation file path display
159
+
-Fixed detection of helper methods in parser (e.g. `config()`, `redirect()`, etc)
160
+
-Made downloaded binary ~30% smaller
157
161
158
162
## [0.1.9]
159
163
160
-
- Fixed parsing for `new` anonymous classes (i.e. migrations)
161
-
- Fixed parsing for regular function declarations
164
+
-Fixed parsing for `new` anonymous classes (i.e. migrations)
165
+
-Fixed parsing for regular function declarations
162
166
163
167
## [0.1.8]
164
168
165
-
- Bugfix for (really) large `detect` responses
166
-
- Autocomplete for `view` related items orders by non-vendor views first
167
-
- Fixed bug for searching for views in non-directories
168
-
- Better support for earlier versions of Laravel (fixes for config and translation loading)
169
-
- If extension cannot load, give specific reason
170
-
- Support for linking in path helpers:
171
-
-`base_path`
172
-
-`resource_path`
173
-
-`config_path`
174
-
-`app_path`
175
-
-`database_path`
176
-
-`lang_path`
177
-
-`public_path`
178
-
-`storage_path`
169
+
-Bugfix for (really) large `detect` responses
170
+
-Autocomplete for `view` related items orders by non-vendor views first
171
+
-Fixed bug for searching for views in non-directories
172
+
-Better support for earlier versions of Laravel (fixes for config and translation loading)
173
+
-If extension cannot load, give specific reason
174
+
-Support for linking in path helpers:
175
+
-`base_path`
176
+
-`resource_path`
177
+
-`config_path`
178
+
-`app_path`
179
+
-`database_path`
180
+
-`lang_path`
181
+
-`public_path`
182
+
-`storage_path`
179
183
180
184
## [0.1.7]
181
185
182
-
- Facade aliases are now considered
183
-
- Blade linking, hovering, and diagnostics are improved
184
-
- Fixed an error where variables were not consistently resolved
186
+
-Facade aliases are now considered
187
+
-Blade linking, hovering, and diagnostics are improved
188
+
-Fixed an error where variables were not consistently resolved
185
189
186
190
## [0.1.6]
187
191
188
-
- Fixed bug where we weren't restricting diagnostics to only PHP files
189
-
- Added timeout to parsing processes
192
+
-Fixed bug where we weren't restricting diagnostics to only PHP files
193
+
-Added timeout to parsing processes
190
194
191
195
## [0.1.5]
192
196
193
-
- Remove external dependency on file downloader extension
194
-
- Removed keybindings and commands for test runner
197
+
-Remove external dependency on file downloader extension
198
+
-Removed keybindings and commands for test runner
195
199
196
200
## [0.1.4]
197
201
198
-
- Aligned items you can autocomplete with linkable, hoverable, and diagnostic-able items
199
-
- Created settings for opting in and out of auto completion
202
+
-Aligned items you can autocomplete with linkable, hoverable, and diagnostic-able items
203
+
-Created settings for opting in and out of auto completion
200
204
201
205
## [0.1.3]
202
206
203
-
- Performance improvements
204
-
- Remove tests integration (for now)
205
-
- Added `to_route` completion
206
-
- Added `redirect()` helper chaining for hovering, linking, and diagnostics
207
+
-Performance improvements
208
+
-Remove tests integration (for now)
209
+
-Added `to_route` completion
210
+
-Added `redirect()` helper chaining for hovering, linking, and diagnostics
0 commit comments