Skip to content

Commit ee43b57

Browse files
5.0.2 (#7388)
1 parent ddd11f9 commit ee43b57

File tree

13 files changed

+126
-66
lines changed

13 files changed

+126
-66
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 41 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,72 @@
11
## Description
2-
<!--
3-
A clear and concise description of the PR.
4-
Use this section for review hints, explanations or discussion points/todos.
2+
<!--
3+
Add info about why this PR exists and the decisions that went into it.
4+
This info is meant for the reviewer of this PR.
5+
6+
You may keep it short or omit it if it's a simple PR. Please add more
7+
context and a summary of changes if it's a more complex PR.
58
69
Make sure to point your PR to the relevant develop branches, e.g.
7-
`develop-patch`, `develop-minor` or `v5/develop`
10+
`develop-patch`, `develop-minor` or `v6/develop`.
811
912
How to contribute: https://contribute.getkirby.com
1013
-->
1114

12-
### Summary of changes
13-
14-
15-
16-
### Reasoning
17-
18-
19-
20-
### Additional context
2115

16+
## Changelog
17+
<!--
18+
Add relevant release notes. Keep the target audience (Kirby user) in mind.
19+
Reference issues from the `kirby` repo or ideas from `feedback.getkirby.com`.
20+
-->
2221

22+
### 🎉 Features
23+
<!--
24+
e.g. New feature X which helps users to …
25+
-->
2326

24-
## Changelog
25-
<!--
26-
Add relevant release notes: Features, Enhancements, Fixes, Deprecated.
27-
Reference issues from the `kirby` repo or ideas from `feedback.getkirby.com`.
28-
Always mention whether your PR introduces breaking changes.
27+
### ✨ Enhancements
28+
<!--
29+
e.g. Improve a11y of feature X
2930
-->
3031

31-
### Fixes
32+
### 🐛 Bug fixes
33+
<!--
34+
e.g. Fix broken feature X. See issue #123
35+
-->
3236

37+
### ♻️ Refactored
38+
<!--
39+
e.g. Rename method X to method Y.
40+
-->
3341

42+
### ☠️ Deprecated
43+
<!--
44+
e.g. Deprecate method X. Use method Y instead.
45+
-->
3446

35-
### Breaking changes
47+
### 🧹 Housekeeping
48+
<!--
49+
e.g. Update JS dependencies
50+
-->
3651

52+
### 🚨 Breaking changes
53+
<!--
54+
e.g. Method X has been removed
55+
-->
3756

3857

3958
## Docs
4059
<!--
4160
Add any notes that help to document the feature/changes. Doesn't need
4261
to be your best writing, just a few words and/or code snippets.
62+
If applicable, add links to existing docs pages where the docs can be placed.
4363
-->
4464

4565

46-
47-
## Ready?
48-
<!--
49-
If you can help to check off the following tasks, that'd be great.
50-
If not, don't worry - we will take care of it.
51-
-->
52-
53-
- [ ] In-code documentation (wherever needed)
54-
- [ ] Unit tests for fixed bug/feature
55-
- [ ] Tests and CI checks all pass
56-
5766
### For review team
5867
<!--
5968
We will take care of the following before merging the PR.
6069
-->
6170

6271
- [ ] Add lab and/or sandbox examples (wherever helpful)
63-
- [ ] Add changes & docs to release notes draft in Notion
72+
- [ ] Add changes & docs to release notes draft in Notion

cacert.pem

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
##
22
## Bundle of CA Root Certificates
33
##
4-
## Certificate data from Mozilla as of: Tue May 20 03:12:02 2025 GMT
4+
## Certificate data from Mozilla as of: Tue Jul 15 03:12:01 2025 GMT
55
##
66
## Find updated versions here: https://curl.se/docs/caextract.html
77
##
@@ -16,7 +16,7 @@
1616
## Just configure this file as the SSLCACertificateFile.
1717
##
1818
## Conversion done with mk-ca-bundle.pl version 1.29.
19-
## SHA256: 8944ec6b572b577daee4fc681a425881f841ec2660e4cb5f0eee727f84620697
19+
## SHA256: 579f336ace2e5717b8ecc06002ce0cce96f70623d188e1999c34b0f77696d3e9
2020
##
2121

2222

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "The Kirby core",
44
"license": "proprietary",
55
"type": "kirby-cms",
6-
"version": "5.0.1",
6+
"version": "5.0.2",
77
"keywords": [
88
"kirby",
99
"cms",

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/helpers.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,7 @@ function uuid(): string
640640

641641
if (Helpers::hasOverride('video') === false) { // @codeCoverageIgnore
642642
/**
643-
* Creates a video embed via iframe for Youtube or Vimeo
643+
* Creates a video embed via iframe for YouTube or Vimeo
644644
* videos. The embed Urls are automatically detected from
645645
* the given Url.
646646
*/
@@ -680,7 +680,7 @@ function widont(string|null $string = null): string
680680

681681
if (Helpers::hasOverride('youtube') === false) { // @codeCoverageIgnore
682682
/**
683-
* Embeds a Youtube video by URL in an iframe
683+
* Embeds a YouTube video by URL in an iframe
684684
*/
685685
function youtube(
686686
string $url,

panel/dist/js/plugins.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ import Vue, {
2929
onUpdated,
3030
provide,
3131
proxyRefs,
32+
reactive,
3233
readonly,
3334
ref,
3435
shallowReactive,
@@ -86,6 +87,7 @@ Object.assign(Vue, {
8687
onUpdated,
8788
provide,
8889
proxyRefs,
90+
reactive,
8991
readonly,
9092
ref,
9193
shallowReactive,

panel/dist/js/vendor.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

panel/package-lock.json

Lines changed: 29 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

panel/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"prosemirror-history": "^1.4.1",
2020
"prosemirror-inputrules": "^1.5.0",
2121
"prosemirror-keymap": "^1.2.3",
22-
"prosemirror-model": "^1.25.1",
22+
"prosemirror-model": "^1.25.2",
2323
"prosemirror-schema-list": "^1.5.1",
2424
"prosemirror-view": "^1.40.0",
2525
"sortablejs": "^1.15.6",
@@ -28,7 +28,7 @@
2828
"devDependencies": {
2929
"@csstools/postcss-light-dark-function": "^2.0.9",
3030
"@vitejs/plugin-vue2": "^2.3.3",
31-
"eslint": "^9.30.1",
31+
"eslint": "^9.31.0",
3232
"eslint-config-prettier": "^10.1.5",
3333
"eslint-plugin-vue": "^9.33.0",
3434
"glob": "^11.0.3",

panel/public/js/plugins.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ import Vue, {
2929
onUpdated,
3030
provide,
3131
proxyRefs,
32+
reactive,
3233
readonly,
3334
ref,
3435
shallowReactive,
@@ -86,6 +87,7 @@ Object.assign(Vue, {
8687
onUpdated,
8788
provide,
8889
proxyRefs,
90+
reactive,
8991
readonly,
9092
ref,
9193
shallowReactive,

0 commit comments

Comments
 (0)