Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get updates #1

Merged
merged 25 commits into from
Feb 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
19967df
Skip method 'getAttributeHint'
machtam Jun 16, 2018
bbd879f
Improved model generation performance
rhertogh May 20, 2020
7628e87
Update README.md
schmunk42 May 26, 2020
fde9360
Fixed closing of db when set via DI
rhertogh Jun 10, 2020
caa594a
removed composer.lock
eluhr Jul 23, 2020
98e895c
updated test packages
eluhr Jul 23, 2020
08f8b01
Fixed pivot url creating in crud view template
eluhr Sep 3, 2020
da489d0
Merge pull request #273 from schmunk42/feature/pivot-url-fix
schmunk42 Sep 8, 2020
97272aa
updated headline display, pluralize via translations
schmunk42 Oct 14, 2020
deb41ae
Merge branch 'master' into feature/updated-headlines
schmunk42 Oct 14, 2020
f9641f5
use echo for complex multiline widgets
schmunk42 Oct 14, 2020
afa78f1
updated app packages (gii ^2.2.0)
schmunk42 Oct 15, 2020
f214360
tests: autoloading fixes
schmunk42 Oct 15, 2020
b1fa9e5
re-added missing var, updated root packages (gh maintenance)
schmunk42 Oct 15, 2020
33408c2
test fixes
schmunk42 Oct 15, 2020
0cfdd76
changed test (no auto-pluralization)
schmunk42 Oct 15, 2020
42bc548
Merge remote-tracking branch 'origin/master' into feature/updated-hea…
schmunk42 Oct 15, 2020
6e3d801
Merge pull request #275 from schmunk42/feature/updated-headlines
schmunk42 Oct 15, 2020
1d01d37
Merge branch 'patch-3' of https://github.com/rhertogh/yii2-giiant int…
schmunk42 Oct 15, 2020
d5812bb
Merge branch 'master' into cacheRelationsData
schmunk42 Oct 15, 2020
e7fc956
Merge pull request #238 from machtam/master
schmunk42 Oct 15, 2020
40894ea
Merge pull request #270 from rhertogh/cacheRelationsData
schmunk42 Oct 15, 2020
bf8bcfd
Merge pull request #276 from schmunk42/rhertogh-patch-3
schmunk42 Oct 15, 2020
52a14ac
updated gii JSON form config path
schmunk42 Oct 15, 2020
7d27dd4
Merge branch 'master' of https://github.com/schmunk42/yii2-giiant int…
schmunk42 Oct 15, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ test:
- docker-compose up -d
# workaround (wait for db)
- sleep 10
- docker-compose run phpfpm setup.sh
- make all
- set +e
- docker-compose run --rm -e YII_ENV=dev phpfpm bash -c 'codecept run --steps --html=_report.html -g mandatory -g ${GIIANT_TEST_DB} -g onlyCrud cli,unit,acceptance' || TESTS_EXIT_CODE=1
- cp -r _output /tmp/${BUILD_PREFIX}
Expand All @@ -43,4 +43,4 @@ cleanup:
script:
- docker-compose kill && docker-compose rm -fv
- docker-compose down --rmi local --volumes
when: always
when: always
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
Changelog
=========

### 1.0.0-beta

- do not use auto-pluralization in views, pluralize via I18N
- Improved model generation performance (see`modelCacheRelationsData`)

### 0.13.0

- fixed pivot URLs

### 0.12.0

- Added support for `modelGenerateJunctionRelationMode`
- Upgraded `yiisoft/yii2-gii` to version 2.2.0
- moved JSON form config tog `.gii` in base directory

### 0.11.0

Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ yii2-giiant

> "Giiant is huge!"

**PROJECT IS IN BETA STAGE!**

[![Build Status](https://travis-ci.org/schmunk42/yii2-giiant.svg?branch=master)](https://travis-ci.org/schmunk42/yii2-giiant)
[![Build Status](https://travis-ci.com/schmunk42/yii2-giiant.svg?branch=master)](https://travis-ci.com/schmunk42/yii2-giiant)

What is this?
-------------
Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,13 @@
"dmstr/yii2-db": "*",
"friendsofphp/php-cs-fixer": "1.* || 2.*",
"yiisoft/yii2": "~2.0.13",
"yiisoft/yii2-gii": "~2.2.0"
"yiisoft/yii2-gii": "^2.2.0"
},
"require-dev": {
"codeception/codeception": "^2.2",
"codeception/specify": "^0.4",
"dmstr/yii2-web": "^0.4.2",
"yiisoft/yii2-faker": "2.*",
"rmrevin/yii2-fontawesome": "2.*",
"insolita/yii2-adminlte-widgets": "1.1.*"
},
Expand Down
Loading