forked from Chill-project/chill-skeleton-basic
Compare commits
24 Commits
0.3.0-test
...
1.4.2
Author | SHA1 | Date | |
---|---|---|---|
656d27080b
|
|||
8d1693285d
|
|||
818b4c36a3
|
|||
0fb57fcdd8 | |||
|
c8d89e2a1d | ||
d142fbe471 | |||
deadabefa1 | |||
2c9ec9db55
|
|||
4aea2fe135
|
|||
6fe97f3659 | |||
|
d9980a7e18 | ||
59852c709d | |||
f7dc506506
|
|||
8ef752fdd0
|
|||
1c544d392a | |||
|
dcfd7e4924 | ||
deb47dd3aa | |||
ac909e8107 | |||
|
414b4e11ca | ||
86e27595f5 | |||
cb3ac56084 | |||
4ef93ef722 | |||
7e3d741ea0 | |||
bd011775a6
|
@@ -1,3 +0,0 @@
|
|||||||
## v0.1.0 - 2023-11-02
|
|
||||||
### Release
|
|
||||||
* Update dependencies. Chill-bundles upgraded from 2.9.2 to 2.9.2
|
|
@@ -1,3 +0,0 @@
|
|||||||
## v0.2.0 - 2023-11-19
|
|
||||||
### Release
|
|
||||||
* Update dependencies. Chill-bundles upgraded from 2.9.2 to 2.9.2
|
|
@@ -1,3 +0,0 @@
|
|||||||
## v0.3.0 - 2023-11-19
|
|
||||||
### Release
|
|
||||||
* Update dependencies. Chill-bundles upgraded from 2.9.2 to 2.12.1
|
|
3
.changes/v1.0.0.md
Normal file
3
.changes/v1.0.0.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
## v1.0.0 - 2023-11-19
|
||||||
|
### Feature
|
||||||
|
* Integrate changie and automate release management
|
3
.changes/v1.1.0.md
Normal file
3
.changes/v1.1.0.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
## v1.1.0 - 2023-11-22
|
||||||
|
### Release
|
||||||
|
* Update dependencies. Chill-bundles upgraded from 2.12.1 to 2.13.0
|
3
.changes/v1.2.0.md
Normal file
3
.changes/v1.2.0.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
## v1.2.0 - 2023-11-24
|
||||||
|
### Release
|
||||||
|
* Update dependencies. Chill-bundles upgraded from 2.13.0 to 2.14.0
|
3
.changes/v1.3.0.md
Normal file
3
.changes/v1.3.0.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
## v1.3.0 - 2023-11-30
|
||||||
|
### Release
|
||||||
|
* Update dependencies. Chill-bundles upgraded from 2.14.0 to 2.14.1
|
4
.changes/v1.4.0.md
Normal file
4
.changes/v1.4.0.md
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
## v1.4.0 - 2024-02-08
|
||||||
|
### Release
|
||||||
|
* Upgrade nodes dependencies
|
||||||
|
* Update dependencies. Chill-bundles upgraded from 2.14.1 to 2.16.0
|
3
.changes/v1.4.1.md
Normal file
3
.changes/v1.4.1.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
## v1.4.1 - 2024-02-08
|
||||||
|
### Fixed
|
||||||
|
* upgrade node version while compiling
|
3
.changes/v1.4.2.md
Normal file
3
.changes/v1.4.2.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
## v1.4.2 - 2024-02-08
|
||||||
|
### Fixed
|
||||||
|
* Fix version of bootstrap temporarily
|
@@ -37,7 +37,7 @@ steps:
|
|||||||
- build-base-image
|
- build-base-image
|
||||||
|
|
||||||
- name: build-assets
|
- name: build-assets
|
||||||
image: node:14
|
image: node:16
|
||||||
pull: always
|
pull: always
|
||||||
commands:
|
commands:
|
||||||
- yarn install
|
- yarn install
|
||||||
|
@@ -1,19 +0,0 @@
|
|||||||
name: Create release
|
|
||||||
run-name: Create release on tag
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- v*
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
create-release:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: release
|
|
||||||
uses: https://github.com/softprops/action-gh-release@v1
|
|
||||||
with:
|
|
||||||
body_path: ${{ github.workspace }}/.changes/v${{ github.ref }}.md
|
|
@@ -1,27 +0,0 @@
|
|||||||
name: Tag next release
|
|
||||||
run-name: Create a tag when PR is merged
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request_target:
|
|
||||||
types:
|
|
||||||
- closed
|
|
||||||
branches:
|
|
||||||
- 'main'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
tag_if_merged:
|
|
||||||
if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'release/')
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: check out repository
|
|
||||||
uses: https://github.com/actions/checkout@v4
|
|
||||||
- name: changie latest
|
|
||||||
id: changie_latest
|
|
||||||
uses: https://github.com/miniscruff/changie-action@v2
|
|
||||||
with:
|
|
||||||
version: latest
|
|
||||||
args: 'latest'
|
|
||||||
- name: create a tag
|
|
||||||
uses: https://github.com/rickstaa/action-create-tag@v1
|
|
||||||
with:
|
|
||||||
tag: ${{ steps.changie_latest.outputs.output }}
|
|
33
CHANGELOG.md
33
CHANGELOG.md
@@ -6,14 +6,31 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
|
|||||||
and is generated by [Changie](https://github.com/miniscruff/changie).
|
and is generated by [Changie](https://github.com/miniscruff/changie).
|
||||||
|
|
||||||
|
|
||||||
## v0.3.0 - 2023-11-19
|
## v1.4.2 - 2024-02-08
|
||||||
### Release
|
### Fixed
|
||||||
* Update dependencies. Chill-bundles upgraded from 2.9.2 to 2.12.1
|
* Fix version of bootstrap temporarily
|
||||||
|
|
||||||
## v0.2.0 - 2023-11-19
|
## v1.4.1 - 2024-02-08
|
||||||
### Release
|
### Fixed
|
||||||
* Update dependencies. Chill-bundles upgraded from 2.9.2 to 2.9.2
|
* upgrade node version while compiling
|
||||||
|
|
||||||
## v0.1.0 - 2023-11-02
|
## v1.4.0 - 2024-02-08
|
||||||
### Release
|
### Release
|
||||||
* Update dependencies. Chill-bundles upgraded from 2.9.2 to 2.9.2
|
* Upgrade nodes dependencies
|
||||||
|
* Update dependencies. Chill-bundles upgraded from 2.14.1 to 2.16.0
|
||||||
|
|
||||||
|
## v1.3.0 - 2023-11-30
|
||||||
|
### Release
|
||||||
|
* Update dependencies. Chill-bundles upgraded from 2.14.0 to 2.14.1
|
||||||
|
|
||||||
|
## v1.2.0 - 2023-11-24
|
||||||
|
### Release
|
||||||
|
* Update dependencies. Chill-bundles upgraded from 2.13.0 to 2.14.0
|
||||||
|
|
||||||
|
## v1.1.0 - 2023-11-22
|
||||||
|
### Release
|
||||||
|
* Update dependencies. Chill-bundles upgraded from 2.12.1 to 2.13.0
|
||||||
|
|
||||||
|
## v1.0.0 - 2023-11-19
|
||||||
|
### Feature
|
||||||
|
* Integrate changie and automate release management
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"ext-redis": "*",
|
"ext-redis": "*",
|
||||||
"chill-project/chill-bundles": "2.12.1",
|
"chill-project/chill-bundles": "2.16.0",
|
||||||
"symfony/flex": "^1.9",
|
"symfony/flex": "^1.9",
|
||||||
"symfony/http-client": "^4.4 || ^5",
|
"symfony/http-client": "^4.4 || ^5",
|
||||||
"nelmio/alice": "^3.8",
|
"nelmio/alice": "^3.8",
|
||||||
|
1155
composer.lock
generated
1155
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -36,4 +36,5 @@ return [
|
|||||||
App\App::class => ['all' => true],
|
App\App::class => ['all' => true],
|
||||||
KnpU\OAuth2ClientBundle\KnpUOAuth2ClientBundle::class => ['all' => true],
|
KnpU\OAuth2ClientBundle\KnpUOAuth2ClientBundle::class => ['all' => true],
|
||||||
Lexik\Bundle\JWTAuthenticationBundle\LexikJWTAuthenticationBundle::class => ['all' => true],
|
Lexik\Bundle\JWTAuthenticationBundle\LexikJWTAuthenticationBundle::class => ['all' => true],
|
||||||
|
Chill\EventBundle\ChillEventBundle::class => ['all' => true],
|
||||||
];
|
];
|
||||||
|
@@ -7,7 +7,7 @@ doctrine_migrations:
|
|||||||
'Chill\Migrations\Activity': '@ChillActivityBundle/migrations'
|
'Chill\Migrations\Activity': '@ChillActivityBundle/migrations'
|
||||||
'Chill\Migrations\DocStore': '@ChillDocStoreBundle/migrations'
|
'Chill\Migrations\DocStore': '@ChillDocStoreBundle/migrations'
|
||||||
'Chill\Migrations\CustomFields': '@ChillCustomFieldsBundle/migrations'
|
'Chill\Migrations\CustomFields': '@ChillCustomFieldsBundle/migrations'
|
||||||
# 'Chill\Migrations\Event': '@ChillEventBundle/migrations'
|
'Chill\Migrations\Event': '@ChillEventBundle/migrations'
|
||||||
'Chill\Migrations\Person': '@ChillPersonBundle/migrations'
|
'Chill\Migrations\Person': '@ChillPersonBundle/migrations'
|
||||||
'Chill\Migrations\Task': '@ChillTaskBundle/migrations'
|
'Chill\Migrations\Task': '@ChillTaskBundle/migrations'
|
||||||
'Chill\Migrations\ThirdParty': '@ChillThirdPartyBundle/migrations'
|
'Chill\Migrations\ThirdParty': '@ChillThirdPartyBundle/migrations'
|
||||||
|
Reference in New Issue
Block a user