Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# This should make it easy to add new rules without breaking existing ones.

# Global
* @pelican-dev/wings
* @pelican/wings
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@

## v1.11.5
### Added
* Added a config option to disable Wings config.yml updates from the Panel (https://github.com/pelican-dev/wings/commit/ec6d6d83ea3eb14995c24f001233e85b37ffb87b)
* Added a config option to disable Wings config.yml updates from the Panel (https://github.com/pelican/wings/commit/ec6d6d83ea3eb14995c24f001233e85b37ffb87b)

### Changed
* Wings is now built with Go 1.19.7

### Fixed
* Fixed archives containing partially matched file names (https://github.com/pelican-dev/wings/commit/43b3496f0001cec231c80af1f9a9b3417d04e8d4)
* Fixed archives containing partially matched file names (https://github.com/pelican/wings/commit/43b3496f0001cec231c80af1f9a9b3417d04e8d4)

## v1.11.4
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ dependencies, and allowing users to authenticate with the same credentials they

## Reporting Issues

Feel free to report any wings specific issues or feature requests in [GitHub Issues](https://github.com/pelican-dev/wings/issues/new).
Feel free to report any wings specific issues or feature requests in [GitHub Issues](https://github.com/pelican/wings/issues/new).
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
## Supported Versions

While Pelican is in beta, we only provide security fixes for the most recent beta release. Older beta releases are unsupported.
![](https://img.shields.io/github/v/release/pelican-dev/wings?label=latest-release)
![](https://img.shields.io/github/v/release/pelican/wings?label=latest-release)

## Reporting a Vulnerability

Please report any vulnerabilities via _one_ of the following methods:

- [Create a security advisory on GitHub](https://github.com/pelican-dev/wings/security/advisories/new)
- [Create a security advisory on GitHub](https://github.com/pelican/wings/security/advisories/new)
- Send an e-mail to <team@pelican.dev>

Include steps to reproduce, affected versions, impact, and a proof of concept if available.
Expand Down
2 changes: 1 addition & 1 deletion cmd/selfupdate.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func newSelfupdateCommand() *cobra.Command {
Run: selfupdateCmdRun,
}

command.Flags().StringVar(&updateArgs.repoOwner, "repo-owner", "pelican-dev", "GitHub repository owner")
command.Flags().StringVar(&updateArgs.repoOwner, "repo-owner", "pelican", "GitHub repository owner")
command.Flags().StringVar(&updateArgs.repoName, "repo-name", "wings", "GitHub repository name")
command.Flags().BoolVar(&updateArgs.force, "force", false, "Force update even if on latest version")

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.example.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
wings:
image: ghcr.io/pelican-dev/wings:latest
image: ghcr.io/pelican/wings:latest
restart: always
networks:
- wings0
Expand Down
Loading