Blog for Gitea 1.17.0 #199

Merged
6543 merged 9 commits from :release-1.17.0 into master 2022-07-31 12:23:46 +00:00
Member
was edited by gusted delvh and me at https://cryptpad.cz/code/#/2/code/edit/heCixZH21tH9ZetzXGnDZIlF/
noerw added 1 commit 2022-07-30 21:16:16 +00:00
add post for release of 1.17.0
All checks were successful
continuous-integration/drone/pr Build is passing
abc6ccb285
noerw added 1 commit 2022-07-30 21:37:20 +00:00
updates
All checks were successful
continuous-integration/drone/pr Build is passing
b324cc8aa6
noerw added 1 commit 2022-07-30 21:50:07 +00:00
updates
All checks were successful
continuous-integration/drone/pr Build is passing
4eee65ce78
6543 reviewed 2022-07-30 21:50:27 +00:00
.gitignore Outdated
@ -3,3 +4,3 @@
# GoLand
.idea/
.idea/
Owner

?

?
noerw marked this conversation as resolved
noerw added 1 commit 2022-07-30 21:52:20 +00:00
fix vim fatfinger
All checks were successful
continuous-integration/drone/pr Build is passing
20facd7344
Gusted reviewed 2022-07-30 21:55:07 +00:00
@ -0,0 +93,4 @@
### Customizing the default merge style ([#19751](https://github.com/go-gitea/gitea/pull/19751))
Thanks to [@ttys3](https://github.com/ttys3), Gitea now allows you to set the default merge style globally. This only affects repositories that were created after the setting change.
<!-- I'd not mention this, too minor of a change. wdyt? -->
First-time contributor

Agree on removing.

Agree on removing.
noerw marked this conversation as resolved
Author
Member

just fyi: that gif for the Go to file demo is huge (almost 7MB)

just fyi: that gif for the `Go to file` demo is huge (almost 7MB)
delvh approved these changes 2022-07-30 22:01:44 +00:00
delvh left a comment
Owner

Just moved default merge messages from ENHANCEMENTS to FEATURE, now it's LGTM from me.

Just moved `default merge messages` from `ENHANCEMENTS` to `FEATURE`, now it's LGTM from me.
noerw added 1 commit 2022-07-30 22:10:52 +00:00
updates from review
All checks were successful
continuous-integration/drone/pr Build is passing
f928f72dc1
noerw started working 2022-07-30 22:30:19 +00:00
noerw canceled time tracking 2022-07-30 22:33:27 +00:00
noerw added 1 commit 2022-07-30 22:34:22 +00:00
formatting, use default authors
All checks were successful
continuous-integration/drone/pr Build is passing
c7de693b53
noerw reviewed 2022-07-30 23:39:16 +00:00
@ -0,0 +110,4 @@
With this release, Gitea restricts what is seen as a valid email:
Emails must only contain characters in ``a-zA-Z0-9.!#$%&'*+-/=?^_{|}`~``. Additionally, the first letter must be in `a-zA-Z0-9`, and after the `@`, only characters in `a-zA-Z0-9.` can follow.
### :exclamation: Renamed configuration options for ACME / Let's Encrypt ([#18340](https://github.com/go-gitea/gitea/pull/18340))
Author
Member

The old configs still work, so this is not a breaking change.
why was that PR marked as breaking then? That isn't explicitly stated there

The old configs still work, so this is not a breaking change. why was that PR marked as breaking then? That isn't explicitly stated there
First-time contributor

Yeah for now, but next release this will be removed and thus really breaking. They will also now receive a warning in console. Best to let them know ASAP to adjust their configuration.

Yeah for now, but next release this will be removed and thus really breaking. They will also now receive a warning in console. Best to let them know ASAP to adjust their configuration.
Owner

Did just that in cryptpad.

Did just that in cryptpad.
6543 marked this conversation as resolved
lunny reviewed 2022-07-31 01:27:12 +00:00
@ -0,0 +1,517 @@
---
date: "2022-07-30T21:30:19+07:00"
Owner

Need author: "noerw"

Need `author: "noerw"`
Owner

We weren't sure how to handle multiple authors in one article.
@Gusted, @noerw and I all wrote the article together.
Hence, we left it out...

We weren't sure how to handle multiple authors in one article. @Gusted, @noerw and I all wrote the article together. Hence, we left it out...
Owner

Then try

authors: 
	- "noerw"
    - "Gusted"
    - "delvh"
Then try ``` authors: - "noerw" - "Gusted" - "delvh" ```
Owner

Does that work?

Does that work?
Author
Member

Does that work?

no. needs changes in the theme. i have a half working patch for that, but couldn't get it to work properly yet.

instead omitting the author field will make it say The Gitea Authors which is good enough.

> Does that work? no. needs changes in the theme. i have a half working patch for that, but couldn't get it to work properly yet. instead omitting the author field will make it say `The Gitea Authors` which is good enough.
Owner

then just do

author: "The Gitea Authors"
authors: 
  - "noerw"
  - "Gusted"
  - "delvh"

so as long as the theme does not support it it will be "The Gitea Authors" and as soon as we have support it will be the list?

then just do ```yml author: "The Gitea Authors" authors: - "noerw" - "Gusted" - "delvh" ``` so as long as the theme does not support it it will be "The Gitea Authors" and as soon as we have support it will be the list?
Author
Member

? so smart

? so smart
noerw marked this conversation as resolved
lunny reviewed 2022-07-31 01:30:18 +00:00
@ -0,0 +27,4 @@
### :rocket: Package Registry ([#16510](https://github.com/go-gitea/gitea/pull/16510))
Thanks to [@KN4CK3R](https://github.com/KN4CK3R), Gitea now includes a package registry for various package managers (Composer, Conan, Helm, Maven, npm, NuGet, OCI Container images, PypI, PyPI, Ruby Gems).
Owner

And Generic Package.

And Generic Package.
Member
- Composer, Conan, Helm, Maven, npm, NuGet, OCI Container images, PypI, PyPI, Ruby Gems
+ Composer, Conan, Generic, Helm, Maven, npm, NuGet, OCI Containers (Docker), PyPI and RubyGems
```diff - Composer, Conan, Helm, Maven, npm, NuGet, OCI Container images, PypI, PyPI, Ruby Gems + Composer, Conan, Generic, Helm, Maven, npm, NuGet, OCI Containers (Docker), PyPI and RubyGems ```
Owner

Applied on Cryptpad.

Applied on Cryptpad.
delvh marked this conversation as resolved
Owner

I would like to mention work progress in federation. There are some related PRs merged in this release.

I would like to mention work progress in federation. There are some related PRs merged in this release.
Owner

I would like to mention work progress in federation. There are some related PRs merged in this release.

Added on cryptpad.

> I would like to mention work progress in federation. There are some related PRs merged in this release. Added on cryptpad.
noerw added 1 commit 2022-07-31 11:20:04 +00:00
updates from cryptpad
All checks were successful
continuous-integration/drone/pr Build is passing
7144e4c52d
noerw added 1 commit 2022-07-31 11:24:00 +00:00
fixup! updates from cryptpad
All checks were successful
continuous-integration/drone/pr Build is passing
43c0c3aebb
noerw added 1 commit 2022-07-31 11:38:01 +00:00
add authors list
All checks were successful
continuous-integration/drone/pr Build is passing
a11f4a7b26
6543 approved these changes 2022-07-31 12:23:04 +00:00
6543 merged commit f3114dbd09 into master 2022-07-31 12:23:46 +00:00
6543 referenced this issue from a commit 2022-07-31 12:23:46 +00:00
Sign in to join this conversation.
No description provided.