7008 Commits

Author SHA1 Message Date
Dries Vints
21c3ef96f4
Merge branch '8.x'
# Conflicts:
#	CHANGELOG.md
2021-11-16 17:50:11 +01:00
Dries Vints
f8ff35e070
Update CHANGELOG.md v8.6.7 2021-11-16 17:49:31 +01:00
Ben Johnson
195a7e0374
Replace schema with search_path in pgsql config (#5726)
Per https://github.com/laravel/framework/pull/35588 , the term "schema" (a namespace) has been corrected to "search_path" (a list of namespaces), where appropriate, throughout the framework.

Accordingly, the `schema` configuration key should be changed to `search_path` to better reflect the fact that it may specify a _list_ of schemata (schemas), and not just a single schema. (In several Laravel versions prior to 9.0, the `schema` key could already specify more than one schema, but this fact was undocumented and non-obvious without examining the implementation carefully.)

As of Laravel 9.0, the `search_path` may specify any number of schemata, in any of the following formats:

'search_path' => 'public',
'search_path' => 'public,laravel',
'search_path' => ['public', '"laravel"', "'foobar'", '$bat'],
'search_path' => '\'public\', "laravel", "\'foobar\'", \'$bat\'',
'search_path' => '"$user", public',

Note that in the last example, the `$user` variable refers to PostgreSQL's special $user variable, as described in the Schema Documentation ( https://www.postgresql.org/docs/current/ddl-schemas.html ).

Note also that Laravel's default `search_path` value, 'public', is not necessarily the best choice for every use case. Developers should consult the "Usage Patterns" section of the aforementioned documentation before deciding how best to set the `search_path`, as it has security implications.
2021-11-16 08:26:41 -06:00
Rahul Dey
2079d34cfc
Update sanctum.php (#5725) 2021-11-15 15:10:04 -06:00
Nicklas Kevin Frank
c112d149c4
Added declined and declined_if validation rules (#5723) 2021-11-11 08:20:34 -06:00
Dries Vints
aa71b038b4
Merge branch '8.x'
# Conflicts:
#	CHANGELOG.md
2021-11-09 18:29:57 +01:00
Dries Vints
bad350d199
Update CHANGELOG.md v8.6.6 2021-11-09 18:29:24 +01:00
Taylor Otwell
399d435c4f add facade 2021-11-09 09:56:25 -06:00
Braden Keith
79249c920b
Added Romega Software to Sponsorships (#5721) 2021-11-05 09:45:57 -05:00
Adam Mospan
ca8e5d65da
Remove redundant tap() helper in index.php (#5719) 2021-11-05 08:00:12 -05:00
Dries Vints
d54907c27d
Merge branch '8.x'
# Conflicts:
#	CHANGELOG.md
#	composer.json
2021-10-26 17:22:00 +02:00
Dries Vints
5d22b2464c
Update CHANGELOG.md v8.6.5 2021-10-26 17:20:51 +02:00
Can Vural
1542783002
PHPDoc types should be covariant with the parent type (#5714) 2021-10-25 13:16:13 -05:00
Nuno Maduro
9915831d22
Guess database factory model by default (#5713) 2021-10-22 13:11:06 -05:00
Dries Vints
8f63479d44
Update CHANGELOG.md v8.6.4 2021-10-20 15:15:52 +02:00
Taylor Otwell
bf2a67c6a2 wip 2021-10-19 10:20:48 -05:00
Nuno Maduro
1980ca13ea
[8.x] Logs deprecations instead of treating them as exceptions (#5711)
* Logs deprecations instead of treating them as exceptions

* formatting

Co-authored-by: Taylor Otwell <taylorotwell@gmail.com>
2021-10-19 08:42:24 -05:00
Taylor Otwell
1117ebd8aa added password translation rules 2021-10-14 14:45:08 -05:00
Mohamed ELIDRISSI
196a27593b
Remove additional } from welcome view inline css (#5702) 2021-10-11 08:58:39 -05:00
Dries Vints
ab2b606124
Temporarily remove tinker from master
Until 2c061f5bd1 has been re-introduced.
2021-10-11 11:06:14 +02:00
Dries Vints
e124d6d98d
Merge branch '8.x'
# Conflicts:
#	CHANGELOG.md
#	composer.json
2021-10-05 20:42:43 +02:00
Dries Vints
a3b76dbeb7
Update CHANGELOG.md v8.6.3 2021-10-05 20:40:50 +02:00
Taylor Otwell
6a68092228
Revert "Uses LazilyRefreshDatabase by default (#5696)" (#5700)
This reverts commit 4578193d52f148c79b16a552db65e29a65fee209.
2021-10-05 09:23:35 -05:00
Taylor Otwell
7156a27cdb move lang directory 2021-10-02 11:19:50 -05:00
Taylor Otwell
bdcb9681a6 fix conflicts 2021-10-02 10:47:56 -05:00
Alex Elkins
78e1d56c42
Update validation.php (#5699)
modify the grammar for lte and gte validation to have a parallel structure
2021-09-29 15:29:27 -05:00
Markus Machatschek
2c644455da
Use anonymous migration for personal_access_tokens table (#5698)
* Use new migration class name style for personal_access_tokens table

* Update 2019_12_14_000001_create_personal_access_tokens_table.php
2021-09-29 09:44:21 -05:00
Nuno Maduro
4578193d52
Uses LazilyRefreshDatabase by default (#5696) 2021-09-29 08:20:24 -05:00
Nuno Maduro
ef9d0e4c78
Ensures downloaded version of Collision supports PHP 8.1 (#5697)
Co-authored-by: Taylor Otwell <taylor@laravel.com>
2021-09-29 08:17:58 -05:00
Dries Vints
aa9cb884d2
Bump Mockery and PHPUnit 2021-09-29 11:51:32 +02:00
JuanDMeGon
5f7395b289
Keeping access tokens migration id consistent (#5691)
This is just a tiny "fix," using id(); to be consistent with the other migrations already included in the framework.
2021-09-28 08:03:31 -05:00
Surajit Basak
1e5b9989c3
[8.x] Add failover in supported mail configurations comment section (#5692)
Co-authored-by: Surajit Basak <surajit@adrobit.com>
2021-09-28 07:59:24 -05:00
Julius Kiekbusch
0d939c9ebf
Remove auth_mode from config/mail.php (#5688) 2021-09-20 09:03:10 -05:00
Dries Vints
a6d1019bcf
Merge branch '8.x'
# Conflicts:
#	CHANGELOG.md
2021-09-07 16:34:35 +02:00
Dries Vints
4f8a0f35fa
Update CHANGELOG.md v8.6.2 2021-09-07 16:33:40 +02:00
Samuel Levy
0bc525860c
[8.x] Added prohibits validation message (#5681)
* Added `prohibits` validation

* Update validation.php

Co-authored-by: Taylor Otwell <taylor@laravel.com>
2021-08-31 16:08:19 -05:00
Roy van Veldhuizen
a36f02c4f2
Dark mode auth links contrast (#5678)
* Improved contrast ratio of auth links in dark mode.

* Restored home link.
2021-08-25 13:07:32 -05:00
Dries Vints
ec9ff4cd68
Merge branch '8.x'
# Conflicts:
#	CHANGELOG.md
2021-08-24 18:00:23 +02:00
Dries Vints
75a7dba9c4
Update CHANGELOG.md v8.6.1 2021-08-24 17:59:48 +02:00
Maarten Buis
7c99346801
[8.x] Use PHPDoc comments from base class in User model (#5676)
* Use phpdoc comments from Model class

* Update User.php
2021-08-23 08:47:37 -05:00
Gabriel Pillet
8677c94a50
Fixing "Line exceeds 120 characters" in TrustProxies (#5677)
To comply with PSR-2
2021-08-23 08:42:15 -05:00
Taylor Otwell
52de5d84f6 wip 2021-08-20 07:59:36 -05:00
Dries Vints
c512ba2b16
Update app.php (#5674) 2021-08-19 09:03:02 -05:00
Dwight Watson
3399464a74
Add failover driver to default mail config file (#5672)
* Add failover driver to default mail config file

* Remove empty spaces
2021-08-18 08:14:34 -05:00
Dries Vints
6b946caa62
Merge branch '8.x'
# Conflicts:
#	CHANGELOG.md
2021-08-17 17:57:45 +02:00
Dries Vints
b55e3fbb14
Update CHANGELOG.md v8.6.0 2021-08-17 17:56:01 +02:00
Pradeep Kumar
6e10e9653f
Add WebReinvent as a Sponsor (#5668) 2021-08-17 08:10:33 -05:00
Iman
5f9dbb41b5
[9.x] Use php 8 null safe operator (#5670)
This PR leverages php 8 "null safe operator" instead of thrr `optional()` helper
2021-08-17 08:09:03 -05:00
Dries Vints
d57cc57c6d
Merge pull request #5669 from laravel/8.x
Update .styleci.yml
2021-08-17 10:23:34 +02:00
Dries Vints
a199c3bcea
Update .styleci.yml 2021-08-17 10:22:10 +02:00