Skip to content

Commit 0e63445

Browse files
Merge pull request #1198 from nextcloud/release/0.9.15
Create Release v0.9.15
2 parents 8582611 + dd3bc9d commit 0e63445

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+2711
-379
lines changed

.github/actions/deploy/appinfo/info.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<screenshot>https://raw.githubusercontent.com/nextcloud/cookbook/stable/img/screenshot2.png</screenshot>
1919
<dependencies>
2020
<php min-version="7.4"/>
21-
<nextcloud min-version="19" max-version="24"/>
21+
<nextcloud min-version="21" max-version="24"/>
2222
</dependencies>
2323
<navigations>
2424
<navigation>

.github/workflows/tests.yml

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -130,27 +130,7 @@ jobs:
130130
phpVersion: "8.1"
131131
httpServer: "apache"
132132

133-
# Test different core versions additionally with lower PHP versions
134-
- database: mysql
135-
coreVersion: stable19
136-
phpVersion: "7.4"
137-
httpServer: "apache"
138-
- database: mysql
139-
coreVersion: stable20
140-
phpVersion: "7.4"
141-
httpServer: "apache"
142-
143133
# Test different PHP versions additionally
144-
# - database: mysql
145-
# # stable24 branch needs PHP 7.4
146-
# coreVersion: stable23
147-
# phpVersion: "7.3"
148-
# httpServer: "apache"
149-
# - database: mysql
150-
# coreVersion: stable24
151-
# # We have already PHP 7.4 with stable 19/20
152-
# phpVersion: "7.4"
153-
# httpServer: "apache"
154134
- database: mysql
155135
coreVersion: stable24
156136
phpVersion: "8.1"
@@ -161,12 +141,6 @@ jobs:
161141
coreVersion: stable24
162142
phpVersion: "8.1"
163143
httpServer: "nginx"
164-
165-
# Test against master (optionally)
166-
# - database: mysql
167-
# coreVersion: master
168-
# phpVersion: "8.1"
169-
# httpServer: "apache"
170144

171145
steps:
172146
- name: Checkout the app

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,38 @@
11
## [Unreleased]
22

3+
4+
5+
## 0.9.15 - 2022-09-08
6+
7+
### Added
8+
- Create structure to run integration tests against a real database
9+
[#1195](https://github.com/nextcloud/cookbook/pull/1195) @christianlupus
10+
11+
### Changed
12+
- Migrate ILogger to LoggerInterface
13+
[#1192](https://github.com/nextcloud/cookbook/pull/1192) @miles170
14+
315
### Fixed
416
- Close security issue by enabling CSRF protection on most endpoints
517
[#1190](https://github.com/nextcloud/cookbook/pull/1190) @christianlupus
18+
- Fix bug in DB access class to prevent PostgreSQL from viewing all recipes of a category
19+
[#1195](https://github.com/nextcloud/cookbook/pull/1195) @christianlupus
20+
- Fix minor bug to make API access consistent with API definitions and internal structure more well-defined
21+
[#1195](https://github.com/nextcloud/cookbook/pull/1195) @christianlupus
622

723
### Documentation
824
- Defining new API interface to fix security issue
925
[#1186](https://github.com/nextcloud/cookbook/pull/1186) @christianlupus
26+
- Fixed API description w.r.t. return types and examples
27+
(see [#1153](https://github.com/nextcloud/cookbook/issues/1153)) @christianlupus
28+
29+
### Deprecated
30+
- Deprecate NC core version V21
31+
[#1195](https://github.com/nextcloud/cookbook/pull/1195) @christianlupus
32+
33+
### Removed
34+
- Removed support for NC core <= V20
35+
[#1195](https://github.com/nextcloud/cookbook/pull/1195) @christianlupus
1036

1137

1238
## 0.9.14 - 2022-08-29

appinfo/info.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<screenshot>https://raw.githubusercontent.com/nextcloud/cookbook/stable/img/screenshot2.png</screenshot>
1919
<dependencies>
2020
<php min-version="7.4"/>
21-
<nextcloud min-version="19" max-version="24"/>
21+
<nextcloud min-version="21" max-version="24"/>
2222
</dependencies>
2323
<navigations>
2424
<navigation>

composer.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"ext-libxml": "*"
1313
},
1414
"require-dev": {
15-
"nextcloud/coding-standard": "^1.0.0"
15+
"nextcloud/coding-standard": "^1.0.0",
16+
"christophwurst/nextcloud_testing": "^0.12.4"
1617
},
1718
"scripts": {
1819
"cs:check": "./vendor/bin/php-cs-fixer fix --dry-run --diff",
@@ -23,5 +24,10 @@
2324
"platform": {
2425
"php": "7.4"
2526
}
27+
},
28+
"autoload-dev": {
29+
"psr-4": {
30+
"OCA\\Cookbook\\tests\\": "tests/"
31+
}
2632
}
2733
}

0 commit comments

Comments
 (0)