Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Configuration
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Jira
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OSS
Libraries
Go
Application
Configuration
Compare revisions
v1.9.0 to v1.10.0
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
oss/libraries/go/application/configuration
Select target project
No results found
v1.10.0
Select Git revision
Branches
master
Tags
v1.0.0
v1.0.1
v1.1.0
v1.10.0
v1.11.0
v1.11.1
v1.11.2
v1.11.3
v1.11.4
v1.12.0
v1.13.0
v1.14.0
v1.15.0
v1.16.0
v1.17.1
v1.17.2
v1.17.3
v1.17.4
v1.17.5
v1.17.6
v1.17.7
v1.18.0
v1.18.1
v1.18.2
v1.18.3
v1.19.0
v1.2.0
v1.20.0
v1.20.1
v1.20.2
v1.20.3
v1.20.4
v1.20.5
v1.21.0
v1.22.0
v1.22.1
v1.22.3
v1.22.4
v1.22.5
v1.22.6
v1.22.7
v1.22.8
v1.22.9
v1.3.0
v1.4.0
v1.4.1
v1.4.2
v1.4.3
v1.5.0
v1.6.0
v1.7.0
v1.7.1
v1.8.0
v1.9.0
55 results
Swap
Target
oss/libraries/go/application/configuration
Select target project
oss/libraries/go/application/configuration
1 result
v1.9.0
Select Git revision
Branches
master
Tags
v1.0.0
v1.0.1
v1.1.0
v1.10.0
v1.11.0
v1.11.1
v1.11.2
v1.11.3
v1.11.4
v1.12.0
v1.13.0
v1.14.0
v1.15.0
v1.16.0
v1.17.1
v1.17.2
v1.17.3
v1.17.4
v1.17.5
v1.17.6
v1.17.7
v1.18.0
v1.18.1
v1.18.2
v1.18.3
v1.19.0
v1.2.0
v1.20.0
v1.20.1
v1.20.2
v1.20.3
v1.20.4
v1.20.5
v1.21.0
v1.22.0
v1.22.1
v1.22.3
v1.22.4
v1.22.5
v1.22.6
v1.22.7
v1.22.8
v1.22.9
v1.3.0
v1.4.0
v1.4.1
v1.4.2
v1.4.3
v1.5.0
v1.6.0
v1.7.0
v1.7.1
v1.8.0
v1.9.0
55 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (3)
fix panic is format is nil
· 9c880bb7
Volker Schukai
authored
2 years ago
Verified
9c880bb7
Bump version to 1.10.0
· 8c1ee80d
Volker Schukai
authored
2 years ago
Verified
8c1ee80d
Update changelog
· db0d1a0e
Volker Schukai
authored
2 years ago
Verified
db0d1a0e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+7
-0
7 additions, 0 deletions
CHANGELOG.md
file.go
+3
-2
3 additions, 2 deletions
file.go
release.json
+1
-1
1 addition, 1 deletion
release.json
with
11 additions
and
3 deletions
CHANGELOG.md
View file @
db0d1a0e
<a
name=
"v1.10.0"
></a>
## [v1.10.0] - 2022-10-17
### Bug Fixes
-
fix panic is format is nil
<a
name=
"v1.9.0"
></a>
## [v1.9.0] - 2022-10-17
### Add Features
...
...
@@ -90,6 +96,7 @@
<a
name=
"v1.0.0"
></a>
## v1.0.0 - 2022-09-18
[
v1.10.0
]:
https://gitlab.schukai.com/oss/libraries/go/application/configuration/compare/v1.9.0...v1.10.0
[
v1.9.0
]:
https://gitlab.schukai.com/oss/libraries/go/application/configuration/compare/v1.8.0...v1.9.0
[
v1.8.0
]:
https://gitlab.schukai.com/oss/libraries/go/application/configuration/compare/v1.7.1...v1.8.0
[
v1.7.1
]:
https://gitlab.schukai.com/oss/libraries/go/application/configuration/compare/v1.7.0...v1.7.1
...
...
This diff is collapsed.
Click to expand it.
file.go
View file @
db0d1a0e
...
...
@@ -37,9 +37,10 @@ func (s *Settings[c]) HasFile(file string) bool {
func
(
s
*
Settings
[
C
])
AddFile
(
file
string
,
format
...
Format
)
*
Settings
[
C
]
{
var
f
Format
f
=
RecogniseFormat
if
len
(
format
)
<=
1
{
if
format
==
nil
||
len
(
format
)
==
0
{
f
=
RecogniseFormat
}
else
if
format
!=
nil
&&
len
(
format
)
==
1
{
f
=
format
[
0
]
}
else
{
panic
(
"too many arguments"
)
...
...
This diff is collapsed.
Click to expand it.
release.json
View file @
db0d1a0e
{
"version"
:
"1.
9
.0"
}
{
"version"
:
"1.
10
.0"
}
This diff is collapsed.
Click to expand it.