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.4.3 to v1.5.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.5.0
Select Git revision
Swap
Target
oss/libraries/go/application/configuration
Select target project
oss/libraries/go/application/configuration
1 result
v1.4.3
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (3)
feat implement the copyable interface
· d402a3c6
Volker Schukai
authored
2 years ago
d402a3c6
Bump version to 1.5.0
· fdbdb6e5
Volker Schukai
authored
2 years ago
fdbdb6e5
Update changelog
· 7ceaaf41
Volker Schukai
authored
2 years ago
7ceaaf41
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGELOG.md
+7
-0
7 additions, 0 deletions
CHANGELOG.md
change.go
+5
-0
5 additions, 0 deletions
change.go
release.json
+1
-1
1 addition, 1 deletion
release.json
settings.go
+1
-0
1 addition, 0 deletions
settings.go
with
14 additions
and
1 deletion
CHANGELOG.md
View file @
7ceaaf41
<a
name=
"v1.5.0"
></a>
## [v1.5.0] - 2022-10-14
### Add Features
-
feat implement the copyable interface
<a
name=
"v1.4.3"
></a>
## [v1.4.3] - 2022-10-07
### Changes
...
...
@@ -54,6 +60,7 @@
<a
name=
"v1.0.0"
></a>
## v1.0.0 - 2022-09-18
[
v1.5.0
]:
https://gitlab.schukai.com/oss/libraries/go/application/configuration/compare/v1.4.3...v1.5.0
[
v1.4.3
]:
https://gitlab.schukai.com/oss/libraries/go/application/configuration/compare/v1.4.2...v1.4.3
[
v1.4.2
]:
https://gitlab.schukai.com/oss/libraries/go/application/configuration/compare/v1.4.1...v1.4.2
[
v1.4.1
]:
https://gitlab.schukai.com/oss/libraries/go/application/configuration/compare/v1.4.0...v1.4.1
...
...
This diff is collapsed.
Click to expand it.
change.go
View file @
7ceaaf41
...
...
@@ -74,3 +74,8 @@ func (s *Settings[C]) setConfigInternal(config C, lock bool) *Settings[C] {
func
(
s
*
Settings
[
C
])
SetConfig
(
config
C
)
*
Settings
[
C
]
{
return
s
.
setConfigInternal
(
config
,
true
)
}
// Copy implements the xflags.Copyable interface.
func
(
s
*
Settings
[
C
])
Copy
(
config
C
)
{
s
.
setConfigInternal
(
config
,
true
)
}
This diff is collapsed.
Click to expand it.
release.json
View file @
7ceaaf41
{
"version"
:
"1.
4.3
"
}
{
"version"
:
"1.
5.0
"
}
This diff is collapsed.
Click to expand it.
settings.go
View file @
7ceaaf41
...
...
@@ -18,6 +18,7 @@ type fileWatch struct {
onWatch
bool
}
// Settings is the main struct for the configuration
type
Settings
[
C
any
]
struct
{
files
fileBackend
stream
streamBackend
...
...
This diff is collapsed.
Click to expand it.