Skip to content

Commit

Permalink
Merge pull request #1198 from nextcloud/release/0.9.15
Browse files Browse the repository at this point in the history
Create Release v0.9.15
  • Loading branch information
christianlupus authored Sep 8, 2022
2 parents 8582611 + dd3bc9d commit 0e63445
Show file tree
Hide file tree
Showing 45 changed files with 2,711 additions and 379 deletions.
2 changes: 1 addition & 1 deletion .github/actions/deploy/appinfo/info.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<screenshot>https://raw.githubusercontent.com/nextcloud/cookbook/stable/img/screenshot2.png</screenshot>
<dependencies>
<php min-version="7.4"/>
<nextcloud min-version="19" max-version="24"/>
<nextcloud min-version="21" max-version="24"/>
</dependencies>
<navigations>
<navigation>
Expand Down
26 changes: 0 additions & 26 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,27 +130,7 @@ jobs:
phpVersion: "8.1"
httpServer: "apache"

# Test different core versions additionally with lower PHP versions
- database: mysql
coreVersion: stable19
phpVersion: "7.4"
httpServer: "apache"
- database: mysql
coreVersion: stable20
phpVersion: "7.4"
httpServer: "apache"

# Test different PHP versions additionally
# - database: mysql
# # stable24 branch needs PHP 7.4
# coreVersion: stable23
# phpVersion: "7.3"
# httpServer: "apache"
# - database: mysql
# coreVersion: stable24
# # We have already PHP 7.4 with stable 19/20
# phpVersion: "7.4"
# httpServer: "apache"
- database: mysql
coreVersion: stable24
phpVersion: "8.1"
Expand All @@ -161,12 +141,6 @@ jobs:
coreVersion: stable24
phpVersion: "8.1"
httpServer: "nginx"

# Test against master (optionally)
# - database: mysql
# coreVersion: master
# phpVersion: "8.1"
# httpServer: "apache"

steps:
- name: Checkout the app
Expand Down
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,38 @@
## [Unreleased]



## 0.9.15 - 2022-09-08

### Added
- Create structure to run integration tests against a real database
[#1195](https://github.com/nextcloud/cookbook/pull/1195) @christianlupus

### Changed
- Migrate ILogger to LoggerInterface
[#1192](https://github.com/nextcloud/cookbook/pull/1192) @miles170

### Fixed
- Close security issue by enabling CSRF protection on most endpoints
[#1190](https://github.com/nextcloud/cookbook/pull/1190) @christianlupus
- Fix bug in DB access class to prevent PostgreSQL from viewing all recipes of a category
[#1195](https://github.com/nextcloud/cookbook/pull/1195) @christianlupus
- Fix minor bug to make API access consistent with API definitions and internal structure more well-defined
[#1195](https://github.com/nextcloud/cookbook/pull/1195) @christianlupus

### Documentation
- Defining new API interface to fix security issue
[#1186](https://github.com/nextcloud/cookbook/pull/1186) @christianlupus
- Fixed API description w.r.t. return types and examples
(see [#1153](https://github.com/nextcloud/cookbook/issues/1153)) @christianlupus

### Deprecated
- Deprecate NC core version V21
[#1195](https://github.com/nextcloud/cookbook/pull/1195) @christianlupus

### Removed
- Removed support for NC core <= V20
[#1195](https://github.com/nextcloud/cookbook/pull/1195) @christianlupus


## 0.9.14 - 2022-08-29
Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<screenshot>https://raw.githubusercontent.com/nextcloud/cookbook/stable/img/screenshot2.png</screenshot>
<dependencies>
<php min-version="7.4"/>
<nextcloud min-version="19" max-version="24"/>
<nextcloud min-version="21" max-version="24"/>
</dependencies>
<navigations>
<navigation>
Expand Down
8 changes: 7 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"ext-libxml": "*"
},
"require-dev": {
"nextcloud/coding-standard": "^1.0.0"
"nextcloud/coding-standard": "^1.0.0",
"christophwurst/nextcloud_testing": "^0.12.4"
},
"scripts": {
"cs:check": "./vendor/bin/php-cs-fixer fix --dry-run --diff",
Expand All @@ -23,5 +24,10 @@
"platform": {
"php": "7.4"
}
},
"autoload-dev": {
"psr-4": {
"OCA\\Cookbook\\tests\\": "tests/"
}
}
}
Loading

0 comments on commit 0e63445

Please sign in to comment.