Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
HTTP Negotiation
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
Analyze
Contributor analytics
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
Network
HTTP Negotiation
Compare revisions
v1.2.2 to v1.2.3
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/network/http-negotiation
Select target project
No results found
v1.2.3
Select Git revision
Swap
Target
oss/libraries/go/network/http-negotiation
Select target project
oss/libraries/go/network/http-negotiation
1 result
v1.2.2
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (4)
chore add licenses
· 85351bf5
Volker Schukai
authored
2 years ago
85351bf5
chore update licenses
· e00fe80e
Volker Schukai
authored
2 years ago
e00fe80e
Bump version to 1.2.3
· 7e28f32c
Volker Schukai
authored
2 years ago
7e28f32c
Update changelog
· c16e8bb7
Volker Schukai
authored
2 years ago
c16e8bb7
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
CHANGELOG.md
+8
-0
8 additions, 0 deletions
CHANGELOG.md
LICENSE
+1
-0
1 addition, 0 deletions
LICENSE
Makefile
+1
-1
1 addition, 1 deletion
Makefile
doc.go
+20
-0
20 additions, 0 deletions
doc.go
release.json
+1
-1
1 addition, 1 deletion
release.json
with
31 additions
and
2 deletions
CHANGELOG.md
View file @
c16e8bb7
<a
name=
"v1.2.3"
></a>
## [v1.2.3] - 2022-10-06
### Changes
-
chore update licenses
-
chore add licenses
<a
name=
"v1.2.2"
></a>
## [v1.2.2] - 2022-10-06
### Changes
...
...
@@ -38,6 +45,7 @@
<a
name=
"v1.0.0"
></a>
## v1.0.0 - 2022-09-11
[
v1.2.3
]:
https://gitlab.schukai.com/oss/libraries/go/network/http-negotiation/compare/v1.2.2...v1.2.3
[
v1.2.2
]:
https://gitlab.schukai.com/oss/libraries/go/network/http-negotiation/compare/v1.2.1...v1.2.2
[
v1.2.1
]:
https://gitlab.schukai.com/oss/libraries/go/network/http-negotiation/compare/v1.2.0...v1.2.1
[
v1.2.0
]:
https://gitlab.schukai.com/oss/libraries/go/network/http-negotiation/compare/v1.1.0...v1.2.0
...
...
This diff is collapsed.
Click to expand it.
LICENSE
View file @
c16e8bb7
GNU AFFERO GENERAL PUBLIC LICENSE
Version 3, 19 November 2007
AGPL-3.0
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
...
...
This diff is collapsed.
Click to expand it.
Makefile
View file @
c16e8bb7
...
...
@@ -139,7 +139,7 @@ endif
.PHONY
:
fetch-licenses
## Fetch licenses for all modules
fetch-licenses
:
go-licenses save
$(
GO_CURRENT_MODULE
)
--ignore
gitlab.schukai.com
--force
--save_path
$(
PROJECT_ROOT
)
licenses/
;
cd
-
go-licenses save
$(
GO_CURRENT_MODULE
)
--force
--save_path
$(
PROJECT_ROOT
)
licenses/
;
cd
-
# https://spdx.github.io/spdx-spec/v2.3/SPDX-license-list/
ADDLICENSE_BIN
?=
addlicense
...
...
This diff is collapsed.
Click to expand it.
doc.go
0 → 100644
View file @
c16e8bb7
// This package provides a simple way to negotiate the content type of HTTP requests.
// The language, encoding and charset are also supported.
// Copyright 2022 schukai GmbH
// SPDX-License-Identifier: AGPL-3.0-or-later
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published
// by the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package
negotiation
This diff is collapsed.
Click to expand it.
release.json
View file @
c16e8bb7
{
"version"
:
"1.2.
2
"
}
{
"version"
:
"1.2.
3
"
}
This diff is collapsed.
Click to expand it.