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
Copy file name to clipboardExpand all lines: CHANGELOG-WIP.md
+42-32Lines changed: 42 additions & 32 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
# Release Notes for Craft CMS 6.0 (WIP)
2
2
3
-
###Development
3
+
## Development
4
4
- Reference tags now support fallback values when no attribute is specified. ([#17688](https://github.com/craftcms/cms/pull/17688))
5
5
- Deprecated support for categories, global sets, and tags. ([#18009](https://github.com/craftcms/cms/pull/18009))
6
6
7
-
###Extensibility
7
+
## Extensibility
8
8
- Added `CraftCms\Cms\Support\Arr`.
9
9
- Added `CraftCms\Cms\Support\Str`.
10
10
-`craft\services\Elements::stopCollectingCacheInfo()` no longer sets the returned duration to the `cacheDuration` config setting if a duration wasn’t explicitly declared. ([#16796](https://github.com/craftcms/cms/pull/16796))
@@ -140,6 +140,16 @@ Craft's Mutex classes have been deprecated. [Laravel's atomic locking](https://l
140
140
- Deprecated `craft\events\DefineSourceSortOptionsEvent`. `CraftCms\Cms\Element\Events\DefineSourceSortOptions` should be used instead.
141
141
- Deprecated `craft\events\DefineSourceTableAttributesEvent`. `CraftCms\Cms\Element\Events\DefineSourceTableAttributes` should be used instead.
142
142
143
+
## Element Queries
144
+
145
+
- Deprecated `\craft\elements\db\AddressQuery`. `\CraftCms\Cms\Database\Queries\AddressQuery` should be used instead.
146
+
- Deprecated `\craft\elements\db\AssetQuery``\CraftCms\Cms\Database\Queries\AssetQuery` should be used instead.
147
+
- Deprecated `\craft\elements\db\ContentBlockQuery``\CraftCms\Cms\Database\Queries\ContentBlockQuery` should be used instead.
148
+
- Deprecated `\craft\elements\db\ElementQuery``\CraftCms\Cms\Database\Queries\ElementQuery` should be used instead.
- Removed `craft\console\controllers\MigrateController` in favor of:
182
+
-`CraftCms\Cms\Database\Commands\MigrateCommand`
183
+
- Removed `craft\console\controllers\UpController` in favor of:
184
+
-`CraftCms\Cms\Console\Commands\UpCommand`
185
+
186
+
## Plugins
187
+
188
+
### Added
162
189
- The base `CraftCms\Cms\Plugin\Plugin` class is now a [Laravel ServiceProvider](https://laravel.com/docs/12.x/providers) which provides a new way to register components for your plugins.
163
190
164
-
####Deprecations
191
+
### Deprecations
165
192
166
193
- Deprecated `craft\services\Plugins`. `CraftCms\Cms\Plugin\Plugins` should be used instead.
167
194
- Deprecated `craft\base\Plugin`. `CraftCms\Cms\Plugin\Plugin` should be used instead.
168
195
- Deprecated `craft\base\PluginTrait`.
169
196
- Deprecated `craft\base\PluginInterface`. `CraftCms\Cms\Plugin\Contracts\PluginInterface` should be used instead.
170
197
- Deprecated `craft\errors\InvalidPluginException`. `CraftCms\Cms\Plugin\Exceptions\InvalidPluginException` should be used instead.
171
198
172
-
####Controllers
199
+
### Controllers
173
200
- Removed `craft\controllers\PluginsController`. Use `CraftCms\Cms\Http\Controllers\PluginsController` instead.
174
201
175
-
####Commands
202
+
### Commands
176
203
- Removed `craft\console\controllers\PluginController` in favor of:
0 commit comments