Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions en/upgrade/v1.15.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ Upgrade the related packages: goravel/fiber: v1.3.6
- [Fix sending mail via queue returns incorrect error](#fix-sending-mail-via-queue-returns-incorrect-error)
- [Fix the orm create events can be triggered when creating multiple records](#fix-the-orm-create-events-can-be-triggered-when-creating-multiple-records)

## v1.15.12

- [Fix Transaction does not rollback when panic in closure](#fix-transaction-does-not-rollback-when-panic-in-closure)

## Upgrade Guide

**Estimated Upgrade Time: 10 Minutes**
Expand Down Expand Up @@ -837,3 +841,9 @@ PR: [#1148](https://github.com/goravel/framework/pull/1148)
goravel/framework: v1.15.11

Issue: [#738](https://github.com/goravel/goravel/issues/738)

### Fix Transaction does not rollback when panic in closure

goravel/framework: v1.15.12

Issue: [#762](https://github.com/goravel/goravel/issues/762)
33 changes: 33 additions & 0 deletions en/upgrade/v1.16.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,12 @@
- [Fix the make:package command generates incorrect code](#fix-the-make-package-command-generates-incorrect-code)
- [Fix the path is incorrect when publishing package files](#fix-the-path-is-incorrect-when-publishing-package-files)

## v1.16.3

- [Fix Transaction does not rollback when panic in closure](#fix-transaction-does-not-rollback-when-panic-in-closure)
- [Fix errors if adding or removing a column with a separate migration script](#fix-errors-if-adding-or-removing-a-column-with-a-separate-migration-script)
- [Fix the breaking change of Orm Select method](#fix-the-breaking-change-of-orm-select-method)

## Upgrade Guide

As [Golang v1.22 is no longer maintained](https://endoflife.date/go), the Golang version of Goravel supports has been upgraded from 1.22 to 1.23.
Expand Down Expand Up @@ -823,3 +829,30 @@ Issue: [#743](https://github.com/goravel/goravel/issues/743)
goravel/framework: v1.16.1

Issue: [#749](https://github.com/goravel/goravel/issues/749)

### Fix Transaction does not rollback when panic in closure

goravel/framework: v1.16.3

Issue: [#762](https://github.com/goravel/goravel/issues/762)

### Fix errors if adding or removing a column with a separate migration script

goravel/framework: v1.16.3

goravel/postgres: v1.4.1

If adding or removing a column with a separate migration script and the application doesn't restart, the following two errors will occur:
Comment thread
hwbrzzl marked this conversation as resolved.

1. The DB facade will panic.
2. The Postgres driver will report an error: `cached plan must not change result type`.

Issue: [#768](https://github.com/goravel/goravel/issues/768)

### Fix the breaking change of Orm Select method

goravel/framework: v1.16.3

There is a breaking change when upgrading the Orm Select method to v1.16 from v1.15. `Select` no longer supports `db.Raw()`, hence add the new `SelectRaw` method to avoid the breaking change.
Comment thread
hwbrzzl marked this conversation as resolved.

Issue: [#770](https://github.com/goravel/goravel/issues/770)