Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
xflags
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
xflags
Compare revisions
v1.10.1 to v1.10.2
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/xflags
Select target project
No results found
v1.10.2
Select Git revision
Swap
Target
oss/libraries/go/application/xflags
Select target project
oss/libraries/go/application/xflags
1 result
v1.10.1
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (3)
fix copy only explicite values
#3
· 3671a8d8
Volker Schukai
authored
2 years ago
3671a8d8
Bump version to 1.10.2
· 6cdef8df
Volker Schukai
authored
2 years ago
6cdef8df
Update changelog
· 0a96e1dd
Volker Schukai
authored
2 years ago
0a96e1dd
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGELOG.md
+7
-0
7 additions, 0 deletions
CHANGELOG.md
mapping.go
+1
-4
1 addition, 4 deletions
mapping.go
parse.go
+1
-1
1 addition, 1 deletion
parse.go
release.json
+1
-1
1 addition, 1 deletion
release.json
with
10 additions
and
6 deletions
CHANGELOG.md
View file @
0a96e1dd
<a
name=
"v1.10.2"
></a>
## [v1.10.2] - 2022-10-16
### Bug Fixes
-
fix copy only explicite values
[
#3
](
https://gitlab.schukai.com/oss/libraries/go/application/xflags/issues/3
)
<a
name=
"v1.10.1"
></a>
## [v1.10.1] - 2022-10-16
### Bug Fixes
...
...
@@ -123,6 +129,7 @@
<a
name=
"v1.0.0"
></a>
## v1.0.0 - 2022-10-04
[
v1.10.2
]:
https://gitlab.schukai.com/oss/libraries/go/application/xflags/compare/v1.10.1...v1.10.2
[
v1.10.1
]:
https://gitlab.schukai.com/oss/libraries/go/application/xflags/compare/v1.10.0...v1.10.1
[
v1.10.0
]:
https://gitlab.schukai.com/oss/libraries/go/application/xflags/compare/v1.9.0...v1.10.0
[
v1.9.0
]:
https://gitlab.schukai.com/oss/libraries/go/application/xflags/compare/v1.8.3...v1.9.0
...
...
This diff is collapsed.
Click to expand it.
mapping.go
View file @
0a96e1dd
...
...
@@ -55,12 +55,9 @@ func (s *Settings[C]) assignValues(c cmd[C]) {
if
c
.
proxyMapping
[
k
]
!=
""
{
p
=
c
.
proxyMapping
[
k
]
s
.
mapping
[
p
]
=
value
}
s
.
mapping
[
p
]
=
value
return
})
}
This diff is collapsed.
Click to expand it.
parse.go
View file @
0a96e1dd
...
...
@@ -38,7 +38,7 @@ func (s *Settings[C]) Parse(args []string) *Settings[C] {
s
.
command
.
parse
(
r
)
if
s
.
mapping
!=
nil
&&
s
.
proxy
!=
nil
{
if
s
.
mapping
!=
nil
&&
len
(
s
.
mapping
)
>
0
&&
s
.
proxy
!=
nil
{
s
.
proxy
.
Copy
(
s
.
mapping
)
}
...
...
This diff is collapsed.
Click to expand it.
release.json
View file @
0a96e1dd
{
"version"
:
"1.10.
1
"
}
{
"version"
:
"1.10.
2
"
}
This diff is collapsed.
Click to expand it.