Skip to content

Commit f7c09dd

Browse files
committed
Update from nginxinc to nginx
1 parent 33a6e6e commit f7c09dd

9 files changed

+20
-20
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ that issue here in this description (not in the title of the PR).
77

88
Before creating a PR, run through this checklist and mark each as complete.
99

10-
- [ ] I have read the [CONTRIBUTING](https://github.com/nginxinc/nginx-plus-go-client/blob/main/CONTRIBUTING.md) doc
10+
- [ ] I have read the [CONTRIBUTING](https://github.com/nginx/nginx-plus-go-client/blob/main/CONTRIBUTING.md) doc
1111
- [ ] I have added tests that prove my fix is effective or that my feature works
1212
- [ ] I have checked that all unit tests pass after adding my changes
1313
- [ ] I have updated necessary documentation

CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @nginxinc/integrations
1+
* @nginx/integrations

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ considering contributing!
2323

2424
## Ask a Question
2525

26-
To ask a question please use [Github Discussions](https://github.com/nginxinc/nginx-plus-go-client/discussions).
26+
To ask a question please use [Github Discussions](https://github.com/nginx/nginx-plus-go-client/discussions).
2727

2828
You can also join our [Community Slack](https://community.nginx.org/joinslack) which has a wider NGINX audience.
2929

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<!-- markdownlint-disable-next-line first-line-h1 -->
2-
[![OpenSSFScorecard](https://api.securityscorecards.dev/projects/github.com/nginxinc/nginx-plus-go-client/badge)](https://scorecard.dev/viewer/?uri=github.com/nginxinc/nginx-plus-go-client)
3-
[![Continuous Integration](https://github.com/nginxinc/nginx-plus-go-client/workflows/Continuous%20Integration/badge.svg)](https://github.com/nginxinc/nginx-plus-go-client/actions)
2+
[![OpenSSFScorecard](https://api.securityscorecards.dev/projects/github.com/nginx/nginx-plus-go-client/badge)](https://scorecard.dev/viewer/?uri=github.com/nginx/nginx-plus-go-client)
3+
[![Continuous Integration](https://github.com/nginx/nginx-plus-go-client/workflows/Continuous%20Integration/badge.svg)](https://github.com/nginx/nginx-plus-go-client/actions)
44
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
5-
[![Go Report Card](https://goreportcard.com/badge/github.com/nginxinc/nginx-plus-go-client)](https://goreportcard.com/report/github.com/nginxinc/nginx-plus-go-client)
6-
[![FOSSA Status](https://app.fossa.com/api/projects/custom%2B5618%2Fgithub.com%2Fnginxinc%2Fnginx-plus-go-client.svg?type=shield)](https://app.fossa.com/projects/custom%2B5618%2Fgithub.com%2Fnginxinc%2Fnginx-plus-go-client?ref=badge_shield)
7-
[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/nginxinc/nginx-plus-go-client?logo=github&sort=semver)](https://github.com/nginxinc/nginx-plus-go-client/releases/latest)
8-
![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/nginxinc/nginx-plus-go-client?logo=go)
5+
[![Go Report Card](https://goreportcard.com/badge/github.com/nginx/nginx-plus-go-client)](https://goreportcard.com/report/github.com/nginx/nginx-plus-go-client)
6+
[![FOSSA Status](https://app.fossa.com/api/projects/custom%2B5618%2Fgithub.com%2Fnginx%2Fnginx-plus-go-client.svg?type=shield)](https://app.fossa.com/projects/custom%2B5618%2Fgithub.com%2Fnginx%2Fnginx-plus-go-client?ref=badge_shield)
7+
[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/nginx/nginx-plus-go-client?logo=github&sort=semver)](https://github.com/nginx/nginx-plus-go-client/releases/latest)
8+
![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/nginx/nginx-plus-go-client?logo=go)
99
[![Slack](https://img.shields.io/badge/slack-nginxcommunity-green?logo=slack)](https://nginxcommunity.slack.com)
1010
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
11-
[![Community Support](https://badgen.net/badge/support/community/cyan?icon=awesome)](https://github.com/nginxinc/nginx-plus-go-client/blob/main/SECURITY.md)
11+
[![Community Support](https://badgen.net/badge/support/community/cyan?icon=awesome)](https://github.com/nginx/nginx-plus-go-client/blob/main/SECURITY.md)
1212

1313
# NGINX Plus Go Client
1414

@@ -51,7 +51,7 @@ the API was first introduced.
5151

5252
## Using the Client
5353

54-
1. Import `github.com/nginxinc/nginx-plus-go-client/client` into your go project.
54+
1. Import `github.com/nginx/nginx-plus-go-client/client` into your go project.
5555
2. Use your favorite vendor tool to add this to your `/vendor` directory in your project.
5656

5757
## Testing

compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ services:
3333
volumes:
3434
- type: bind
3535
source: ./
36-
target: /go/src/github.com/nginxinc/nginx-plus-go-client
37-
working_dir: /go/src/github.com/nginxinc/nginx-plus-go-client
36+
target: /go/src/github.com/nginx/nginx-plus-go-client
37+
working_dir: /go/src/github.com/nginx/nginx-plus-go-client
3838
command: go test -v -shuffle=on -race tests/client_test.go
3939
depends_on:
4040
- nginx

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/nginxinc/nginx-plus-go-client/v2
1+
module github.com/nginx/nginx-plus-go-client/v2
22

33
go 1.22.6
44

release-process.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ The project follows [Semantic Versioning](https://semver.org/) for versioning.
1919
## Release Planning and Development
2020

2121
The features that will go into the next release are reflected in the
22-
corresponding [milestone](https://github.com/nginxinc/nginx-plus-go-client/milestones). Refer to
22+
corresponding [milestone](https://github.com/nginx/nginx-plus-go-client/milestones). Refer to
2323
the [Issue Lifecycle](/ISSUE_LIFECYCLE.md) document for information on issue creation and assignment to releases.
2424

2525
## Releasing a New Version
2626

2727
1. Create an issue to define and track release-related activities. Choose a title that follows the
2828
format `Release X.Y.Z`.
2929
2. Stop merging any new work into the main branch.
30-
3. Check the release draft under the [GitHub releases](https://github.com/nginxinc/nginx-plus-go-client/releases) page
30+
3. Check the release draft under the [GitHub releases](https://github.com/nginx/nginx-plus-go-client/releases) page
3131
to ensure that everything is in order.
3232
4. Create and push the release tag in the format `vX.Y.Z`:
3333

tests/client_no_stream_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"context"
55
"testing"
66

7-
"github.com/nginxinc/nginx-plus-go-client/v2/client"
8-
"github.com/nginxinc/nginx-plus-go-client/v2/tests/helpers"
7+
"github.com/nginx/nginx-plus-go-client/v2/client"
8+
"github.com/nginx/nginx-plus-go-client/v2/tests/helpers"
99
)
1010

1111
// TestStatsNoStream tests the peculiar behavior of getting Stream-related

tests/client_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"testing"
88
"time"
99

10-
"github.com/nginxinc/nginx-plus-go-client/v2/client"
11-
"github.com/nginxinc/nginx-plus-go-client/v2/tests/helpers"
10+
"github.com/nginx/nginx-plus-go-client/v2/client"
11+
"github.com/nginx/nginx-plus-go-client/v2/tests/helpers"
1212
)
1313

1414
const (

0 commit comments

Comments
 (0)