Skip to content

Commit 96f1124

Browse files
committed
Merge branch 'main' into topic-phpstan
# Conflicts: # app/code/core/Mage/Core/Model/Layout.php # composer.json # composer.lock
2 parents 37edae1 + c6d3bd8 commit 96f1124

File tree

162 files changed

+5899
-2386
lines changed

Some content is hidden

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

162 files changed

+5899
-2386
lines changed

.all-contributorsrc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@
66
"files": [
77
"README.md"
88
],
9-
"imageSize": 100,
9+
"imageSize": 35,
1010
"commit": true,
1111
"commitConvention": "none",
12+
"contributorsPerLine": 20
1213
"contributorTemplate": "<a href=\"<%= contributor.profile %>\"><img src=\"<%= contributor.avatar_url %>\" loading=\"lazy\" width=\"<%= options.imageSize %>\" alt=\"\"/><br /><sub><b><%= contributor.name %></b></sub></a>",
1314
"badgeTemplate": "<a href=\"#contributors-\"><img src=\"https://img.shields.io/badge/all_contributors-<%= contributors.length %>-orange.svg\" alt=\"All Contributors\"></a>",
15+
"wrapperTemplate": "\n<table>\n <tbody><%= bodyContent %> </tbody>\n<%= tableFooterContent %></table>\n\n",
1416
"contributors": [
1517
{
1618
"login": "sreichel",

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,14 @@
1717

1818
### Related Pull Requests
1919
<!-- related pull request placeholder -->
20+
- see OpenMage/magento-lts#<issue_number>
2021

2122
### Fixed Issues (if relevant)
2223
<!---
2324
If relevant, please provide a list of fixed issues in the format OpenMage/magento-lts#<issue_number>.
2425
There could be 1 or more issues linked here and it will help us find some more information about the reasoning behind this change.
2526
-->
26-
1. Fixes OpenMage/magento-lts#<issue_number>
27+
- fixes OpenMage/magento-lts#<issue_number>
2728

2829
### Manual testing scenarios (*)
2930
<!---
@@ -43,11 +44,3 @@
4344
- [ ] Pull request has a meaningful description of its purpose
4445
- [ ] All commits are accompanied by meaningful commit messages
4546
- [ ] All automated tests passed successfully (all builds are green)
46-
- [ ] Add yourself to contributors list
47-
<!---
48-
Install: `yarn add --dev all-contributors-cli`
49-
Add yourself: `yarn all-contributors add @YOUR_NAME <types>`
50-
This updates `.all-contributorsrc, README.md` and commits this changes automatically
51-
contribution types: code, doc, design
52-
See other contributions type at https://allcontributors.org/docs/en/emoji-key
53-
-->

.github/labeler.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -868,7 +868,15 @@
868868
'Documentation':
869869
- changed-files:
870870
- any-glob-to-any-file: [
871-
'*.md'
871+
docs/*.md
872+
docs/**/*.md
873+
docs_includes/*.md
874+
]
875+
876+
'README':
877+
- changed-files:
878+
- any-glob-to-any-file: [
879+
README.md
872880
]
873881

874882
'PHPStorm':

.github/release-drafter.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name-template: 'v$RESOLVED_VERSION 🌈'
2+
tag-template: 'v$RESOLVED_VERSION'
3+
categories:
4+
- title: '🚀 Features'
5+
labels:
6+
- 'enhancement'
7+
- 'new feature'
8+
- title: '🐛 Bug Fixes'
9+
labels:
10+
- 'fix'
11+
- 'bugfix'
12+
- 'bug'
13+
- title: '📖 Documentation'
14+
labels:
15+
- 'Documentation'
16+
- title: '↗️ Dependencies'
17+
labels:
18+
- 'dependencies'
19+
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
20+
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
21+
version-resolver:
22+
major:
23+
labels:
24+
- 'major'
25+
minor:
26+
labels:
27+
- 'minor'
28+
patch:
29+
labels:
30+
- 'patch'
31+
default: patch
32+
template: |
33+
## Changes
34+
35+
$CHANGES

.github/workflows/release-drafter.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Release Drafter
2+
3+
on:
4+
push:
5+
# branches to consider in the event; optional, defaults to all
6+
branches:
7+
- main
8+
- next
9+
10+
permissions:
11+
contents: read
12+
13+
jobs:
14+
update_release_draft:
15+
permissions:
16+
# write permission is required to create a github release
17+
contents: write
18+
# write permission is required for autolabeler
19+
# otherwise, read permission is required at least
20+
pull-requests: write
21+
runs-on: ubuntu-latest
22+
steps:
23+
# Drafts your next Release notes as Pull Requests are merged into "master"
24+
- uses: release-drafter/release-drafter@v6
25+
with:
26+
disable-autolabeler: true
27+
env:
28+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/lib/Credis
2525

2626
# TinyMCE library
27-
/js/tinymce
27+
/js/lib/tinymce
2828

2929
# Add development environment setup files and README
3030
# https://github.com/OpenMage/magento-lts/pull/1012

.phpcs.dist.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,9 @@
145145
<exclude name="Squiz.PHP.Eval.Discouraged"/>
146146
</rule>
147147

148-
<rule ref="PHPCompatibility" />
148+
<rule ref="PHPCompatibility">
149+
<exclude name="PHPCompatibility.Keywords.ForbiddenNamesAsDeclared.resourceFound"/>
150+
</rule>
149151
<rule ref="PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.MethodDoubleUnderscore">
150152
<exclude-pattern>*/Varien/Object.php*</exclude-pattern>
151153
<exclude-pattern>*/Varien/Data/Form/Abstract.php*</exclude-pattern>

0 commit comments

Comments
 (0)