From fcb645ed775ef009836a4dfee2486a3ee880dcae Mon Sep 17 00:00:00 2001 From: Gani Georgiev Date: Wed, 9 Oct 2024 18:50:43 +0300 Subject: [PATCH] updated changelog --- CHANGELOG.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e5a24884..5538846a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,13 +13,13 @@ - Added more user friendly view collection truncate error message. -- Added `FieldsList.AddMarshaledJSON([]byte)` helper method to load a serialized json array of objects or a single json object into an existing collection fields list. - - Added an extra suffix character to the name of autogenerated template migration file for `*test` suffixed collections to prevent acidentally resulting in `_test.go` migration files. +- Added `FieldsList.AddMarshaledJSON([]byte)` helper method to load a serialized json array of objects or a single json object into an existing collection fields list. + - Fixed the autogenerated Go migration template when updating a collection ([#5631](https://github.com/pocketbase/pocketbase/discussions/5631)). - ⚠️ If you have already used a previous prerelease and have autogenerated Go migration files, please check the migration files **`{timestamp}_updated_{collection}.go`** and change manually: + ⚠️ If you have already used a previous prerelease and have autogenerated Go migration files, please check the migration files named **`{timestamp}_updated_{collection}.go`** and manually change: @@ -53,7 +53,7 @@
- To test that your Go migration files works correctly you can try to start PocketBase with a new temp pb_data, e.g.: + To test that your Go migration files work correctly you can try to start PocketBase with a new temp pb_data, e.g.: ```go go run . serve --dir="pb_data_temp"