Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: laravel/sail
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.4.9
Choose a base ref
...
head repository: laravel/sail
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.4.10
Choose a head ref
  • 3 commits
  • 2 files changed
  • 3 contributors

Commits on Mar 29, 2021

  1. [1.x] Database default user name and password (#84)

    * Database default user name and password
    
    * Update InstallCommand.php
    
    Co-authored-by: Dries Vints <dries@vints.io>
    liweijie0812 and driesvints authored Mar 29, 2021
    Configuration menu
    Copy the full SHA
    c0d871a View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2021

  1. Patch issue with environment database password replacement (#87)

    This update fixes an issue that is caused if you already have a DB_PASSWORD configured in your .env. Prior to this change, if you have this (for example):
    
    ```
    DB_PASSWORD=mypassword
    ```
    
    After running `sail:install` it would then look like this:
    
    ```
    DB_PASSWORD=passwordmypassword
    ```
    
    And each time you run `sail install` it'll keep growing. This is because only DB_PASSWORD= is being replaced, when it should be replacing the password as well, which can be accomplished using `preg_replace` and a simple regex as in this PR.
    EricPaulson authored Mar 30, 2021
    Configuration menu
    Copy the full SHA
    7327a31 View commit details
    Browse the repository at this point in the history
  2. Update CHANGELOG.md

    driesvints committed Mar 30, 2021
    Configuration menu
    Copy the full SHA
    4f0b2ba View commit details
    Browse the repository at this point in the history
Loading