Skip to content

chore: upgrade v1.17#59

Merged
hwbrzzl merged 1 commit intomasterfrom
bowen/upgrade-v1.17-1
Feb 2, 2026
Merged

chore: upgrade v1.17#59
hwbrzzl merged 1 commit intomasterfrom
bowen/upgrade-v1.17-1

Conversation

@hwbrzzl
Copy link
Contributor

@hwbrzzl hwbrzzl commented Feb 2, 2026

Greptile Overview

Greptile Summary

This PR upgrades the goravel/framework dependency to a newer snapshot version (from January 28 to February 2, 2026) and updates the setup script to use renamed API functions.

Key Changes:

  • Updated github.com/goravel/framework from v1.16.1-0.20260128144145-280cdc17fcee to v1.16.1-0.20260202061217-60e5444dde33
  • Renamed modify.AddProviderApply() to modify.RegisterProvider() in bootstrap setup flow
  • Renamed modify.RemoveProviderApply() to modify.UnregisterProvider() in bootstrap setup flow
  • Updated go.sum checksums to reflect the new dependency version

The function renames in setup/setup.go align with API changes in the updated framework version. The changes maintain consistent naming with the non-bootstrap provider registration functions (modify.Register() and modify.Unregister()) already used elsewhere in the file.

Confidence Score: 5/5

  • This PR is safe to merge with minimal risk
  • The changes are straightforward dependency updates with corresponding API adaptations. The function renames follow a clear pattern matching framework API changes, all old function references have been removed, and the changes maintain backward compatibility within the setup script's logic flow.
  • No files require special attention

Important Files Changed

Filename Overview
go.mod Updated goravel/framework dependency from 20260128 to 20260202 snapshot
go.sum Updated checksums for the new framework version
setup/setup.go Renamed provider registration functions to match updated framework API

Sequence Diagram

sequenceDiagram
    participant PR as Pull Request
    participant GM as go.mod
    participant GS as go.sum
    participant Setup as setup/setup.go
    participant Framework as goravel/framework
    
    PR->>GM: Update framework dependency
    GM->>Framework: v1.16.1-0.20260128 → v1.16.1-0.20260202
    GM->>GS: Trigger checksum update
    GS->>GS: Update hash for new version
    
    PR->>Setup: Rename provider functions
    Setup->>Setup: AddProviderApply → RegisterProvider
    Setup->>Setup: RemoveProviderApply → UnregisterProvider
    
    Note over Setup,Framework: API changes in framework require<br/>updated function names for<br/>bootstrap setup flow
Loading

@hwbrzzl hwbrzzl requested a review from a team as a code owner February 2, 2026 06:37
@hwbrzzl hwbrzzl merged commit b4e4696 into master Feb 2, 2026
6 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant