Skip to content

Commit 374f99d

Browse files
authored
Merge pull request #1504 from phalcon/4.1.x
v4.1.0
2 parents b4bee99 + 3df8268 commit 374f99d

21 files changed

+510
-130
lines changed

.editorconfig

+6-3
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,20 @@
22

33
# top-most EditorConfig file
44
root = true
5-
charset = utf-8
6-
trim_trailing_whitespace = true
75

86
[*]
7+
charset = utf-8
98
indent_style = space
109
indent_size = 4
1110
end_of_line = lf
1211
insert_final_newline = true
12+
trim_trailing_whitespace = true
1313

1414
[*.md]
1515
trim_trailing_whitespace = false
1616

1717
[*.sh]
18-
indent_style = tab
18+
indent_style = tab
19+
20+
[*.yml]
21+
indent_size = 2

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# [4.1.0](https://github.com/phalcon/cphalcon/releases/tag/v4.1.0)
2+
## Fixed
3+
- Fixed column annotation bugs on model creation [1425](https://github.com/phalcon/phalcon-devtools/issues/1425)
4+
5+
## Changed
6+
- Migrated phalcon-migrations dependency up to v2 [1464](https://github.com/phalcon/phalcon-devtools/issues/1464)
7+
8+
## Added
9+
- Added docker environment for devtools isolated development
10+
11+
112
# [4.0.7](https://github.com/phalcon/cphalcon/releases/tag/v4.0.7)
213
## Fixed
314
- Fixed not found error on webtools [#1500](https://github.com/phalcon/phalcon-devtools/issues/1500)

Makefile

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
all: build composer-install
2+
3+
build:
4+
@docker-compose build
5+
@docker-compose up -d
6+
composer-install:
7+
@docker-compose exec -T service_php composer install
8+
clean:
9+
@docker-compose down
10+
@docker system prune -af
11+
@docker volume prune -f
12+
13+
help:
14+
@docker-compose exec -T service_php phalcon --help
15+
create-dummy:
16+
@docker-compose exec -T service_php phalcon create-project dummy --enable-webtools --force

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Create the composer.json file as follows:
3737
```json
3838
{
3939
"require-dev": {
40-
"phalcon/devtools": "~4.0"
40+
"phalcon/devtools": "~4.1"
4141
}
4242
}
4343
```
@@ -115,7 +115,7 @@ This command should display something similar to:
115115
```sh
116116
$ phalcon --help
117117

118-
Phalcon DevTools (4.0.4)
118+
Phalcon DevTools (4.1.0)
119119

120120
Help:
121121
Lists the commands available in Phalcon DevTools
@@ -169,7 +169,7 @@ By creating **config.json** or any other configuration file called **config** in
169169
}
170170
```
171171

172-
And then you can use use `phalcon migration run` or `phalcon controller SomeClass` and those commands will be executed with options from file. Arguments provided by developer from command line will overwrite existing one in file.
172+
And then you can use `phalcon migration run` or `phalcon controller SomeClass` and those commands will be executed with options from file. Arguments provided by developer from command line will overwrite existing one in a file.
173173

174174
## License
175175

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"ext-phalcon": "^4.0.0",
2828
"psy/psysh": "~0.9",
2929
"nikic/php-parser": "^4.2.4",
30-
"phalcon/migrations": "^1.1",
30+
"phalcon/migrations": "^2.0",
3131
"vlucas/phpdotenv": "^3.6|^4.0|^5.0"
3232
},
3333
"require-dev": {

0 commit comments

Comments
 (0)