Skip to content

Commit 33cf63a

Browse files
committed
Merge branch 'main' into blender-merged-develop
2 parents 27cac84 + 1af3dc6 commit 33cf63a

File tree

465 files changed

+6737
-4163
lines changed

Some content is hidden

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

465 files changed

+6737
-4163
lines changed

.drone.yml

Lines changed: 47 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ trigger:
1212
- pull_request
1313
paths:
1414
exclude:
15-
- docs/**
15+
- "docs/**"
16+
- "*.md"
1617

1718
volumes:
1819
- name: deps
@@ -181,7 +182,7 @@ trigger:
181182
- pull_request
182183
paths:
183184
exclude:
184-
- docs/**
185+
- "docs/**"
185186

186187
volumes:
187188
- name: deps
@@ -266,6 +267,35 @@ steps:
266267
- name: deps
267268
path: /go
268269

270+
---
271+
kind: pipeline
272+
type: docker
273+
name: compliance-docs
274+
275+
platform:
276+
os: linux
277+
arch: amd64
278+
279+
trigger:
280+
event:
281+
- pull_request
282+
paths:
283+
include:
284+
- "docs/**"
285+
- "*.md"
286+
287+
steps:
288+
- name: deps-frontend
289+
image: node:18
290+
pull: always
291+
commands:
292+
- make deps-frontend
293+
294+
- name: lint-md
295+
image: node:18
296+
commands:
297+
- make lint-md
298+
269299
---
270300
kind: pipeline
271301
type: docker
@@ -283,7 +313,7 @@ trigger:
283313
- pull_request
284314
paths:
285315
exclude:
286-
- docs/**
316+
- "docs/**"
287317

288318
volumes:
289319
- name: deps
@@ -444,7 +474,7 @@ trigger:
444474
- pull_request
445475
paths:
446476
exclude:
447-
- docs/**
477+
- "docs/**"
448478

449479
volumes:
450480
- name: deps
@@ -530,7 +560,7 @@ trigger:
530560
- pull_request
531561
paths:
532562
exclude:
533-
- docs/**
563+
- "docs/**"
534564

535565
volumes:
536566
- name: deps
@@ -616,7 +646,7 @@ trigger:
616646
- pull_request
617647
paths:
618648
exclude:
619-
- docs/**
649+
- "docs/**"
620650

621651
volumes:
622652
- name: deps
@@ -696,7 +726,7 @@ trigger:
696726
- pull_request
697727
paths:
698728
exclude:
699-
- docs/**
729+
- "docs/**"
700730

701731
volumes:
702732
- name: deps
@@ -867,7 +897,7 @@ trigger:
867897
- push
868898
paths:
869899
exclude:
870-
- docs/**
900+
- "docs/**"
871901

872902
depends_on:
873903
- testing-mysql
@@ -1125,7 +1155,7 @@ trigger:
11251155
- pull_request
11261156
paths:
11271157
include:
1128-
- docs/**
1158+
- "docs/**"
11291159

11301160
steps:
11311161
- name: build-docs
@@ -1176,7 +1206,7 @@ trigger:
11761206
- cron
11771207
paths:
11781208
exclude:
1179-
- docs/**
1209+
- "docs/**"
11801210

11811211
steps:
11821212
- name: fetch-tags
@@ -1253,7 +1283,7 @@ trigger:
12531283
- cron
12541284
paths:
12551285
exclude:
1256-
- docs/**
1286+
- "docs/**"
12571287

12581288
steps:
12591289
- name: fetch-tags
@@ -1468,7 +1498,7 @@ trigger:
14681498
- pull_request
14691499
paths:
14701500
exclude:
1471-
- docs/**
1501+
- "docs/**"
14721502

14731503
steps:
14741504
- name: dryrun
@@ -1515,7 +1545,7 @@ trigger:
15151545
- cron
15161546
paths:
15171547
exclude:
1518-
- docs/**
1548+
- "docs/**"
15191549

15201550
steps:
15211551
- name: fetch-tags
@@ -1592,7 +1622,7 @@ trigger:
15921622
- cron
15931623
paths:
15941624
exclude:
1595-
- docs/**
1625+
- "docs/**"
15961626

15971627
steps:
15981628
- name: fetch-tags
@@ -1667,7 +1697,7 @@ trigger:
16671697
- cron
16681698
paths:
16691699
exclude:
1670-
- docs/**
1700+
- "docs/**"
16711701

16721702
steps:
16731703
- name: fetch-tags
@@ -1834,7 +1864,7 @@ trigger:
18341864
- cron
18351865
paths:
18361866
exclude:
1837-
- docs/**
1867+
- "docs/**"
18381868

18391869
depends_on:
18401870
- docker-linux-amd64-release-version
@@ -1884,7 +1914,7 @@ trigger:
18841914
- cron
18851915
paths:
18861916
exclude:
1887-
- docs/**
1917+
- "docs/**"
18881918

18891919
depends_on:
18901920
- docker-linux-amd64-release

.eslintrc.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ plugins:
1313
- eslint-plugin-import
1414
- eslint-plugin-jquery
1515
- eslint-plugin-sonarjs
16+
- eslint-plugin-custom-elements
1617

1718
env:
1819
es2022: true
@@ -62,6 +63,19 @@ rules:
6263
consistent-this: [0]
6364
constructor-super: [2]
6465
curly: [0]
66+
custom-elements/expose-class-on-global: [0]
67+
custom-elements/extends-correct-class: [2]
68+
custom-elements/file-name-matches-element: [0]
69+
custom-elements/no-constructor: [2]
70+
custom-elements/no-customized-built-in-elements: [2]
71+
custom-elements/no-dom-traversal-in-attributechangedcallback: [2]
72+
custom-elements/no-dom-traversal-in-connectedcallback: [2]
73+
custom-elements/no-exports-with-element: [2]
74+
custom-elements/no-method-prefixed-with-on: [2]
75+
custom-elements/no-unchecked-define: [0]
76+
custom-elements/one-element-per-file: [0]
77+
custom-elements/tag-name-matches-class: [2]
78+
custom-elements/valid-tag-name: [2]
6579
default-case-last: [2]
6680
default-case: [0]
6781
default-param-last: [0]

.gitpod.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,6 @@ tasks:
2323
gp sync-await setup
2424
make watch-frontend
2525
openMode: split-right
26-
- name: Run docs
27-
command: |
28-
gp sync-await setup
29-
cd docs
30-
make clean update
31-
hugo server -D -F --baseUrl $(gp url 1313) --liveReloadPort=443 --appendPort=false --bind=0.0.0.0
32-
openMode: split-right
3326

3427
vscode:
3528
extensions:
@@ -46,5 +39,3 @@ vscode:
4639
ports:
4740
- name: Gitea
4841
port: 3000
49-
- name: Docs
50-
port: 1313

BSDmakefile

Lines changed: 20 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# GNU makefile proxy script for BSD make
2+
#
23
# Written and maintained by Mahmoud Al-Qudsi <[email protected]>
3-
# Copyright NeoSmart Technologies <https://neosmart.net/> 2014-2018
4+
# Copyright NeoSmart Technologies <https://neosmart.net/> 2014-2019
45
# Obtain updates from <https://github.com/neosmart/gmake-proxy>
56
#
67
# Redistribution and use in source and binary forms, with or without
@@ -26,26 +27,32 @@
2627

2728
JARG =
2829
GMAKE = "gmake"
29-
#When gmake is called from another make instance, -w is automatically added
30-
#which causes extraneous messages about directory changes to be emitted.
31-
#--no-print-directory silences these messages.
30+
# When gmake is called from another make instance, -w is automatically added
31+
# which causes extraneous messages about directory changes to be emitted.
32+
# Running with --no-print-directory silences these messages.
3233
GARGS = "--no-print-directory"
3334

3435
.if "$(.MAKE.JOBS)" != ""
35-
JARG = -j$(.MAKE.JOBS)
36+
JARG = -j$(.MAKE.JOBS)
3637
.endif
3738

38-
#by default bmake will cd into ./obj first
39+
# bmake prefers out-of-source builds and tries to cd into ./obj (among others)
40+
# where possible. GNU Make doesn't, so override that value.
3941
.OBJDIR: ./
4042

43+
# The GNU convention is to use the lowercased `prefix` variable/macro to
44+
# specify the installation directory. Humor them.
45+
GPREFIX = ""
46+
.if defined(PREFIX) && ! defined(prefix)
47+
GPREFIX = 'prefix = "$(PREFIX)"'
48+
.endif
49+
50+
.BEGIN: .SILENT
51+
which $(GMAKE) || printf "Error: GNU Make is required!\n\n" 1>&2 && false
52+
4153
.PHONY: FRC
4254
$(.TARGETS): FRC
43-
$(GMAKE) $(GARGS) $(.TARGETS:S,.DONE,,) $(JARG)
55+
$(GMAKE) $(GPREFIX) $(GARGS) $(.TARGETS:S,.DONE,,) $(JARG)
4456

4557
.DONE .DEFAULT: .SILENT
46-
$(GMAKE) $(GARGS) $(.TARGETS:S,.DONE,,) $(JARG)
47-
48-
.ERROR: .SILENT
49-
if ! which $(GMAKE) > /dev/null; then \
50-
echo "GNU Make is required!"; \
51-
fi
58+
$(GMAKE) $(GPREFIX) $(GARGS) $(.TARGETS:S,.DONE,,) $(JARG)

CHANGELOG.md

Lines changed: 90 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,96 @@ This changelog goes through all the changes that have been made in each release
44
without substantial changes to our git log; to see the highlights of what has
55
been added to each release, please refer to the [blog](https://blog.gitea.io).
66

7-
## [1.19.0](https://github.com/go-gitea/gitea/releases/tag/1.19.0) - 2023-03-19
7+
## [1.19.1](https://github.com/go-gitea/gitea/releases/tag/v1.19.1) - 2023-04-12
8+
9+
* BREAKING
10+
* Rename actions unit to `repo.actions` and add docs for it (#23733) (#23881)
11+
* ENHANCEMENTS
12+
* Add card type to org/user level project on creation, edit and view (#24043) (#24066)
13+
* Refactor commit status for Actions jobs (#23786) (#24060)
14+
* Show errors for KaTeX and mermaid on the preview tab (#24009) (#24019)
15+
* Show protected branch rule names again (#23907) (#24018)
16+
* Adjust sticky PR header to cover background (#23956) (#23999)
17+
* Discolor pull request tab labels (#23950) (#23987)
18+
* Treat PRs with agit flow as fork PRs when triggering actions. (#23884) (#23967)
19+
* Left-align review comments (#23937)
20+
* Fix image border-radius (#23886) (#23930)
21+
* Scroll collapsed file into view (#23702) (#23929)
22+
* Fix code view (diff) broken layout (#23096) (#23918)
23+
* Org pages style fixes (#23901) (#23914)
24+
* Fix user profile description rendering (#23882) (#23902)
25+
* Fix review box viewport overflow issue (#23800) (#23898)
26+
* Prefill input values in OAuth settings as intended (#23829) (#23871)
27+
* CSS color tweaks (#23828) (#23842)
28+
* Fix incorrect visibility dropdown list in add/edit user page (#23804) (#23833)
29+
* Add CSS rules for basic colored labels (#23774) (#23777)
30+
* Add creation time in tag list page (#23693) (#23773)
31+
* Fix br display for packages curls (#23737) (#23764)
32+
* Fix issue due date edit toggle bug (#23723) (#23758)
33+
* Improve commit graph page UI alignment (#23751) (#23754)
34+
* Use GitHub Actions compatible globbing for `branches`, `tag`, `path` filter (#22804) (#23740)
35+
* Redirect to project again after editing it (#23326) (#23739)
36+
* Remove row clicking from notification table (#22695) (#23706)
37+
* Remove conflicting CSS rules on notifications, improve notifications table (#23565) (#23621)
38+
* Fix diff tree height and adjust target file style (#23616)
39+
* BUGFIXES
40+
* Improve error logging for LFS (#24072) (#24082)
41+
* Fix custom mailer template on Windows platform (#24081)
42+
* Update the value of `diffEnd` when clicking the `Show More` button in the DiffFileTree (#24069) (#24078)
43+
* Make label templates have consistent behavior and priority (#23749)
44+
* Fix accidental overwriting of LDAP team memberships (#24050) (#24065)
45+
* Fix branch protection priority (#24045) (#24061)
46+
* Use actions job link as commit status URL instead of run link (#24023) (#24032)
47+
* Add actions support to package auth verification (#23729) (#24028)
48+
* Fix protected branch for API (#24013) (#24027)
49+
* Do not escape space between PyPI repository URL and package name… (#23981) (#24008)
50+
* Fix redirect bug when creating issue from a project (#23971) (#23997)
51+
* Set `ref` to fully-formed of the tag when trigger event is `release` (#23944) (#23989)
52+
* Use Get/Set instead of Rename when regenerating session ID (#23975) (#23983)
53+
* Ensure RSS icon is present on all repo tabs (#23904) (#23973)
54+
* Remove `Repository.getFilesChanged` to fix Actions `paths` and `paths-ignore` filter (#23920) (#23969)
55+
* Delete deleted release attachments immediately from storage (#23913) (#23958)
56+
* Use ghost user if package creator does not exist (#23822) (#23915)
57+
* User/Org Feed render description as per web (#23887) (#23906)
58+
* Fix `cases.Title` crash for concurrency (#23885) (#23903)
59+
* Convert .Source.SkipVerify to $cfg.SkipVerify (#23839) (#23899)
60+
* Support "." char as user name for User/Orgs in RSS/ATOM/GPG/KEYS path ... (#23874) (#23878)
61+
* Fix JS error when changing PR's target branch (#23862) (#23864)
62+
* Fix 500 error if there is a name conflict when editing authentication source (#23832) (#23852)
63+
* Fix closed PR also triggers Webhooks and actions (#23782) (#23834)
64+
* Fix checks for `needs` in Actions (#23789) (#23831)
65+
* Fix "Updating branch by merge" bug in "update_branch_by_merge.tmpl" (#23790) (#23825)
66+
* Fix cancel button in the page of project edit not work (#23655) (#23813)
67+
* Don't apply the group filter when listing LDAP group membership if it is empty (#23745) (#23788)
68+
* Fix profile page email display, respect settings (#23747) (#23756)
69+
* Fix project card preview select and template select (#23684) (#23731)
70+
* Check LFS/Packages settings in dump and doctor command (#23631) (#23730)
71+
* Add git dashes separator to some "log" and "diff" commands (#23606) (#23720)
72+
* Create commit status when event is `pull_request_sync` (#23683) (#23691)
73+
* Fix incorrect `HookEventType` of pull request review comments (#23650) (#23678)
74+
* Fix incorrect `show-modal` and `show-panel` class (#23660) (#23663)
75+
* Improve workflow event triggers (#23613) (#23648)
76+
* Introduce path Clean/Join helper functions, partially backport&refactor (#23495) (#23607)
77+
* Fix pagination on `/notifications/watching` (#23564) (#23603)
78+
* Fix submodule is nil panic (#23588) (#23601)
79+
* Polyfill the window.customElements (#23592) (#23595)
80+
* Avoid too long names for actions (#23162) (#23190)
81+
* TRANSLATION
82+
* Backport locales (with manual fixes) (#23808, #23634, #24083)
83+
* BUILD
84+
* Hardcode the path to docker images (#23955) (#23968)
85+
* DOCS
86+
* Update documentation to explain which projects allow Gitea to host static pages (#23993) (#24058)
87+
* Merge `push to create`, `open PR from push`, and `push options` docs articles into one (#23744) (#23959)
88+
* Fix code blocks in the cheat sheet (#23664) (#23669)
89+
* MISC
90+
* Do not crash when parsing an invalid workflow file (#23972) (#23976)
91+
* Remove assertion debug code for show/hide refactoring (#23576) (#23868)
92+
* Add ONLY_SHOW_RELEVANT_REPOS back, fix explore page bug, make code more strict (#23766) (#23791)
93+
* Make minio package support legacy MD5 checksum (#23768) (#23770)
94+
* Improve template error reporting (#23396) (#23600)
95+
96+
## [1.19.0](https://github.com/go-gitea/gitea/releases/tag/v1.19.0) - 2023-03-19
897

998
* BREAKING
1099
* Add loading yaml label template files (#22976) (#23232)

0 commit comments

Comments
 (0)