Ecosyste.ms: OpenCollective

An open API service for software projects hosted on Open Collective.

github.com/yiisoft/yii2-framework

[READ ONLY] Yii 2 framework core code only. This is a subtree split off the "yii2" repository
https://github.com/yiisoft/yii2-framework

Fixes #5504: Added note to yii\console\CacheController explaining that cache components should be configured in console app configuration in order to be cleared

b6a2163d0c363227721d185ea8885f5ef6b2ef3d authored about 10 years ago
first draft of a fix for #5448

only method stubs so far

624b272c0b92b8842bc0e6f8ad49091988ebee4e authored about 10 years ago
ported fix for #6164 to sphinx

was already supported for BETWEEN but not for LIKE

fixes #6164

88780f4f89603739f00ea66cf6ac30b7f25772e2 authored about 10 years ago
added support for yii\db\Expression to querybuilder BETWEEN and LIKE

fixes #6164

acfc5c38cad80c00726160080bb5c4bce445a336 authored about 10 years ago
Fixes #6172: `yii\rbac\DbManager` should properly quote table and column names

8c4a92d17531a30f4e2b2babc97760bf43d82aad authored about 10 years ago
Merge pull request #6168 from mongosoft/fixes

[ci skip] Typo in word

052d0853d157b8bb02f5b581aaba78197ab327a1 authored about 10 years ago
Typo in word

12a02d48f6b73c08932d6eeeee2eeac04d6a35fa authored about 10 years ago
Used echo instead of stdout not to cluttter tests

921501122489f1fd100922795d1a12ac481c1296 authored about 10 years ago
Fixes #4823 and #6005: `yii message` accuracy and error handling were improved by using PHP tokenizer instead of regular expressions. Removed eval() as well.

9ddf66a7236f72cb4ae0a00f608dcb7af88685cd authored about 10 years ago
Fixes #6107 and #6112: `yii message` was emptying existing translations and incorrectly writing not yet translated strings in .po in case of multiple categories

a9ad5bcc497d508e7fc5b23883b358da88f1fb37 authored about 10 years ago
added Formatter::defaultTimeZone to allow non UTC-values in DB

fixes #5683

24fe1ee81e39fd1f5707ce55fd4c7b04f560ab90 authored about 10 years ago
improved documentation about loadDefaultValues()

issue #6126

3f6a7d87f5c12607a1a3be813d154534b1715c58 authored about 10 years ago
Fixes #6113: Improved debugger configuration and request UI

- Responsive tables.
- Route is displayed by default, action is available as tooltip.
- Better c...

e8617be7dd679089f094c967a5a34e3d1c5bc7b8 authored about 10 years ago
Added translation for 'just now'

close #6099

26fc1df0f5d131d306d33caea740e053e057f74b authored about 10 years ago
Merge pull request #6076 from mirjalal/master

improve

3c9fb4f77a4bdad74b136f1525ef99bf692739fc authored about 10 years ago
Added `yii\base\Controller::renderContent()`

4a1d490abb6e6ec3d5cf36c7741ca38a81b79389 authored about 10 years ago
improve

8afcd70c19177cf195c0a2e23a025054bdb946b0 authored about 10 years ago
Fixes #4450: Added `yii\bootstrap\Nav::renderDropdown()`

76fb3bf14c4a16b879d65b331231000a9037fb4c authored about 10 years ago
Fixes #4643: Extra options specified in `yii\widgets\Breadcrumbs::links` will be treated as HTML attributes for the generated hyperlinks

48147a052019440874b76eeb6c0542db1df28538 authored about 10 years ago
Fixed test break.

82ddb4589b9e78a6bceaadf186ab67a7e62a47c0 authored about 10 years ago
Fixes #4492: Support PostgreSQL-specific syntax for `QueryBuilder::alterColumn()`

09318a0c3e9e7c968a72273a0fa0d67fa7c95a3a authored about 10 years ago
Fixes #4739: Better display of exceptions when the response format is set as "raw" format

8dd89bed11efcdbf2dce5f01493191cff5bd6650 authored about 10 years ago
fixed unlink() for array valued attributes

return value would not be a valid array when json encoded after unlink().

fixes #6065

82df826a28613bf67460ddf02a3554a0caff3df9 authored about 10 years ago
Fixes #6049: `yii\db\Connection::getSchema()` for Oracle should return false when the table does not exist. Oracle does not support `ON UPDATE` clause.

34335d563dacad59cd947e12ccc937cae8993905 authored about 10 years ago
Fix batchInsert bug in oci. default batchInsert sql is ``` insert into tableName(col1, col2, col3...) value(`col11`, `col12`,`col13`.... ),(`col21`, `col22`,`col23`.... ); ``` which is illegal in oracle db. Change it to ``` insert into tableName(col1, col2, col3...) select 'col11', 'col12', 'col13' from dual union select 'col21', 'col22', 'col23' from dual union select 'col31', 'col32', 'col33' from dual; ```

88b5efcbc2cec71dda74e0e5c7412f2c8b9e4962 authored about 10 years ago
oracle db doesn't support `ON UPDATE` in FOREIGN KEY. remove `ON UPDATE` section in method `addForeignKey`.

37bb91d05b37edbeac77e986daef75f54b2ae33f authored about 10 years ago
fix oci bugs: \yii\db\oci\Schema::findColumns($table) return true when table doesn't exist When table doesn't exist, query in method `findColumns` return empty array instead of throw a exception.

033863eb8160526b11150569dcafde386c49b5f7 authored about 10 years ago
fixed phpdoc

thanks to @pana1990

close #6060

622db33ce7419776f37d7858c1664cd4831c3482 authored about 10 years ago
Fixes #5367: Added `yii\grid\DataColumn::encodeLabel`

95a66461af8bcfd6e7bfa321d209e4093d634330 authored about 10 years ago
Added encodeLabel param to \yii\grid\DataColumn

Use case:

```
echo GridView::widget([
...
'columns' => [
...
...

f0d5e385a10f3dd9504ab687ea3edc54c6375b5b authored about 10 years ago
Update BaseHtml.php

Some Annotation Typos

close #6029

f5e165daae9924367a83cbe5863cfa0c9e954cfd authored about 10 years ago
Fixes #5799: `yii\bootstrap\ButtonGroup::buttons` can take all options that are supported by `yii\bootstrap\Button`

a0b499c6e02fb8328253bafecd5fe214954e9e02 authored about 10 years ago
Fixed `yii\log\DbTarget` migration and SQLs to use float column for log_time

558a123d794413697e0f7fcd3b0f1de8b81dc83e authored about 10 years ago
Fixes #6018: When setting the `encode` option via `yii\widgets\ActiveRecord::errorOptions`, it works the other way around [skip ci]

0df09d7442fa8f34c3cb3d9cb95bbf240aa19241 authored about 10 years ago
Merge branch 'master' of github.com:yiisoft/yii2

011aed20bf7db3bb5b0f850be1b08c1c7c8b3960 authored about 10 years ago
Safe real path resolving added to `yii\console\controllers\AssetController::combineCssFiles()`

d13ffe21af2f6de2d6d106048b13d057cc14f670 authored about 10 years ago
Fixes #6007: added doc about asset bundle name [skip ci]

b8f731324540b1c3826337509f67f0926929574f authored about 10 years ago
Fixed `yii\console\controllers\AssetController` breaks CSS URLs, which start from '/'

bd8aa3ee5f3627c187d96d3813df06f0cf94b068 authored about 10 years ago
Fixes #5983: Added `Inflector::sentence()`

ecb8a0cb3b5c9b0cad315290ba3e9e1c12b13da0 authored about 10 years ago
fix docs

682326395f56f90ba0919ef1bf8c0d6005b7c0b2 authored about 10 years ago
dropped locale option

afb3cbba95d6b2ee0d3799cb638c11d97270c3f5 authored about 10 years ago
Fixes #5938: add sentence method in Arrayhelper for convert the array to a comma-separated sentence

bf84e9363a4cda87acd24061fc5c5b750de20e68 authored about 10 years ago
fix camelCase syntax

99fe1ee9550dd2c71b8de27268678a844da3c831 authored about 10 years ago
Fixes #5997: The same message may be exported twice to log targets

0152ebbb2ed49340a9a9c659647743e00ada2f3e authored about 10 years ago
`yii\log\Logger::flush()` updated to reset messages before passing them to the dispatcher.

2115e08537a8445034fe95dd7d3985e04c25004b authored about 10 years ago
Fixes #5863: Selecting all individual `yii\grid\CheckboxColumn` checkboxes in grid view wasn't resulting in "all" checkbox selected

71c87747b6be679f729d181cc015f43732c9ba37 authored about 10 years ago
Fixes incorrect submit button detection.

3337586bff5ada0a86235dab8cae63e30e1af276 authored about 10 years ago
Fixes #5452: Errors occurring after the response is sent are not displayed

6cbb2f37bf5482d5ee11ffd52d95b22d9ea37372 authored about 10 years ago
Fixes #5688: Added optional `$formName` to `Model::loadMultiple()` to support customizing form name directly

c6daf01e51c4456a6c9928c067ac9340d2dcc953 authored about 10 years ago
Fixes #5768: When setting `data-confirm` attribute to a submit button, clicking on the button would not trigger form submission

1c692e4dd21470cdc72fd11c702ab3d368796cea authored about 10 years ago
Fixes #5619: `yii\log\Target` should not attempt to start session when there is none

ef4feb5a2e43eaefc7a02a9445d7b2d2c4ef79fe authored about 10 years ago
Fix typo in polish translation [ci skip]

dbb3aa44ae07d7c815cbf45d4aa833de0371084c authored about 10 years ago
Fixes #4889: Application was getting into redirect loop when user wasn't allowed accessing login page. Now shows 403

018ca9705131e06c287e496082fa5b5c229e16e1 authored about 10 years ago
Reordered changelog

772dfe8f5eb9334097a2eaf3c15980839b91f650 authored about 10 years ago
Slovenian translation added

ddb9e5225ab8a06ad5e70f61550204a9faff53a1 authored about 10 years ago
Fixes #4181: Added `yii\bootstrap\Modal::$headerOptions` and `yii\bootstrap\Modal::$footerOptions`

9139a49d2de701124ec294ad2d05851e20c42584 authored about 10 years ago
Fixes #5954: `yii message` command now shows user friendly error if it's not able to parse source file

b7984e2399103bac2d94379a13ac2ef46f1f5764 authored about 10 years ago
Fixes #4263: Added migration and SQL schema files for `yii\log\DbTarget`

55182d04cab95dd6f1127435d45c96dee7942ee7 authored about 10 years ago
better way of generating html code.

e0445efedfb2bcd6214298f7314d487d6374d4ab authored about 10 years ago
Fixes #5925: `ArrayHelper::htmlEncode()` does not work properly when the value being encoded is a nested array

9bb5af44a2f897d5cf723ebd5d4ae021502cec50 authored about 10 years ago
Update BaseArrayHelper.php

Recursive method call must have the same parameters as the first call.

cd083719ee9ca1c23097368b102a6d784931200e authored about 10 years ago
Translations update

a56544fa90efa474250fce9f1b587e1aa2dc52c8 authored about 10 years ago
[ci skip] Guide typos fixed

e68c88248c3f72f737fc43f983c939ff630a9663 authored about 10 years ago
more on bootstrap upgrade

f83f280a6e52c1707c591f737472859e88fb476c authored about 10 years ago
Update UPGRADE.md

Added note about bootstrap version.

d2b20a641986e3ab03441a685306b004df93564a authored about 10 years ago
Fixes #5874: Upgraded Twitter Bootstrap to 3.3.x

b6cbd9df9201150ac9b0a960292a6919d5d82174 authored about 10 years ago
typo fix [skip ci]

99dd611290b80e7060dc5171f9ff9ab8507c82b3 authored about 10 years ago
Added missing russian translation for message "just now" for relative time formatter

a5393d7b861507729724d8f7747225fd3e5ea506 authored about 10 years ago
Merge pull request #5895 from otsec/array-helper-to-array-recursive-fix

Fix for recursive calls ArrayHelper::toArray() with objects

92cf9e765e981b8336fc22388044c831bbb717ab authored about 10 years ago
ArrayHelper::toArray() now uses $properties parameter in recursive calls for descending objects

5f7dce350571c70cb2b4d7f61837105975e375e4 authored about 10 years ago
Hebrew translation

023104f61bb5d3a5d90de734aa053cd45a98e819 authored about 10 years ago
Fix typo [skip ci]

98e33bd3fbe60965e2e247f707b4ce9890aad7e4 authored about 10 years ago
Fix typo [skip ci]

f511cda61a60cf8a35c547672e1cac91ecb73cd9 authored about 10 years ago
Fix typo [skip ci]

66138e843a15e68d2db3e1bc9face54968269033 authored about 10 years ago
Fix upgrade doc [skip ci]

dad1ff91bd7b7d8651910bb3c73ac45ed4e71faf authored about 10 years ago
Fixes #5817 [skip ci]

5a1519187ad6c31c67d49ab608e5e0e5b0bfd552 authored about 10 years ago
fixed model serializtaion example

26aaafbddbdd2f24cf7cd49e9c332757b650d525 authored about 10 years ago
cleaning some extra space.

close #5838

04e0fe4e6d0ebd59b481a2d1c57668e1e585e852 authored about 10 years ago
renamed $object to $model

5f6ed7766737efbcb6bf6e27c1ff6c2305f7b4f0 authored about 10 years ago
Merge pull request #5837 from ahmadrusli/patch-3

Update yii.php

3aeb2c68b396e1fe7b60e3d268927b83fbc6c9b3 authored about 10 years ago
Fixes #5836: doc fixes.

03bc64d0f0c7d9d9d265c2984f161a8f433dbc59 authored about 10 years ago
Update yii.php

77f3d2ec1f274d5fed95cbd100b4a8d5dca4de10 authored about 10 years ago
Fixes #5833: The `message` command fails with a FK constraint error when trying to update messages

e4537dad7f066a9efe7eb046806a15b7fc91faa5 authored about 10 years ago
Merge branch 'master' of git://github.com/yiisoft/yii2

8978cb2bacb90a5fd616096e70c03ceedcf55bae authored about 10 years ago
Fixes #5770: Added more PHP error names for `ErrorException`

da0c0721c43026b74abc87f99d609b617e79f4b7 authored about 10 years ago
Added phpdoc for Block

d890ad5cdb6a14b68fcc3369238d0cf38ecaed32 authored about 10 years ago
add more default names of exceptions

df069ebe86c2ce889649b581279ab280704c7258 authored about 10 years ago
Added phpdoc for ContentDecorator

a47378095773dc78d1a395ba500d9a169dbdc44d authored about 10 years ago
Merge pull request #5825 from mirjalal/master

[skip ci] improved Azerbaijani translations

6e5e203f4fb9326571eba2e5bcbd422f783d58af authored about 10 years ago
improved translations

5a35e4fde5460e30acb53bf499008b66cd892f5e authored about 10 years ago
Readme on "uncheck" parameter in activeCheckbox

Just a readme update.
"If you do not want any hidden input, you should explicitly set this optio...

7f0a453bd6e7183e9f25a0046fd6d233addab291 authored about 10 years ago
Fixes #5806: Allow `Html::encode()` to be used when the application is not started

08fd5720be3403395f1e7868591b029384a9e8bd authored about 10 years ago
Fixes #5780: `QueryBuilder::batchInsert()` may cause "undefined index" error

18f75f394d8daf97cac058428b2bee1ef4d9bf0d authored over 10 years ago
Fixes #5508: Dropped the support for the `--append` option for the `fixture` command

3417f0353bb5baefc3b3256f8762d695c93bc245 authored over 10 years ago
Merge pull request #5766 from mongosoft/feature

Code style fixes

c76147cde45407ad4207bc07b9da0b18610cfacd authored over 10 years ago
Correct type declarations

a0a1b28e1894c52a60b72b3d380ca2643b292d24 authored over 10 years ago
Correct order of property declaration

104254c0a86d33c80bf0269bf8a9a2ab9f6a91c2 authored over 10 years ago
PHP type casting

db7435beba2a497f8bf6d089e2f3da3b54746c49 authored over 10 years ago
PHPDoc comment doesn't contain all necessary @throws tag

close #5762

8eb9af23d2187672e0689455acfb9b8bf99869e0 authored over 10 years ago
one more example

15c2d154035e4bd7158e8095645f0aca5f2c822a authored over 10 years ago