GoravelGoravel
Home
Video
  • English
  • 简体中文
GitHub
Home
Video
  • English
  • 简体中文
GitHub
  • Prologue

    • Upgrade Guide

      • Upgrading To v1.15 From v1.14
      • Upgrading To v1.14 From v1.13
      • History Upgrade
    • Contribution Guide
    • Excellent Extend Packages
  • Getting Started

    • Installation
    • Configuration
    • Directory Structure
    • Compile
  • Architecture Concepts

    • Request Lifecycle
    • Service Container
    • Service Providers
    • Facades
  • The Basics

    • Routing
    • HTTP Middleware
    • Controllers
    • Requests
    • Responses
    • Views
    • Grpc
    • Session
    • Validation
    • Logging
  • Digging Deeper

    • Artisan Console
    • Cache
    • Events
    • File Storage
    • Mail
    • Queues
    • Task Scheduling
    • Localization
    • Package Development
    • Color
    • Strings
    • Helpers
  • Security

    • Authentication
    • Authorization
    • Encryption
    • Hashing
  • ORM

    • Getting Started
    • Relationships
    • Migrations
    • Seeding
    • Factories
  • Testing

    • Getting Started
    • HTTP Tests
    • Mock

Upgrading To v1.7 From v1.6

  • High Impact Changes
  • Low Impact Changes
  • Upgrade Guide
    • Updating Dependencies
    • Add Validation module
    • Fix request template BUG
    • Fix Validation module BUG
    • Optimize the queue name of the queue module
    • Fix Auth module BUG

High Impact Changes

  • Add Validation Module(v1.7.0)
  • Fix request template BUG(v1.7.1)
  • Fix Validation module BUG(v1.7.2)
  • Fix Auth module BUG(v1.7.3)

Low Impact Changes

  • Optimize the queue name of the queue module(v1.7.2)

Upgrade Guide

Estimated Upgrade Time: 1 Minutes

Updating Dependencies

Likelihood Of Impact: High

Update dependencies in the go.mod file:

github.com/goravel/framework v1.7.3

Add Validation module

Likelihood Of Impact: High

Version: v1.7.0

  1. Add app/providers/validation_service_provider.go file;
  2. Add &validation.ServiceProvider{}, &providers.ValidationServiceProvider{}, to the providers item in the config/app.go file;

For Detail

Fix request template BUG

Likelihood Of Impact: High

Version: v1.7.1

  1. Fix import path BUG of the request template that created by go run . artisan make:request Test;

Fix Validation module BUG

Likelihood Of Impact: High

Version: v1.7.2

  1. Fix the BUG that does not take effect when the facades.Validation module registers multiple custom Rule;

Optimize the queue name of the queue module

Likelihood Of Impact: Low

Version: v1.7.2

  1. Add a prefix to the queue name of the facades.Queue module during actual execution, in order to distinguish between multiple projects, the prefix rule: ${app_name}_queues:${queue};
  2. Implicit optimization, you don't need to modify any code;

Fix Auth module BUG

Likelihood Of Impact: High

Version: v1.7.3

  1. Fix the BUG that calling facades.Auth.User method returns Unknown column error when the primary key of user table is string type;
Edit this page