feat: switch lib & cli to v1 api
Some checks failed
Debug / Get build version (push) Has been cancelled
Test & Lint / lint (push) Has been cancelled
Debug / Build for linux-x86_64 (push) Has been cancelled
Debug / Build for macos-aarch64 (push) Has been cancelled
Debug / Build for macos-x86_64 (push) Has been cancelled
Debug / Build for windows-x86_64 (push) Has been cancelled

This commit is contained in:
daimond113 2025-01-13 13:21:22 +01:00
parent 1eef6078bf
commit d4979bbdb2
No known key found for this signature in database
GPG key ID: 3A8ECE51328B513C
7 changed files with 8 additions and 8 deletions

View file

@ -1,2 +1,2 @@
PUBLIC_REGISTRY_URL= # url of the registry API, this must have a trailing slash and include the version
# example: https://registry.pesde.daimond113.com/v0/
# example: https://registry.pesde.daimond113.com/v1/

View file

@ -23,7 +23,7 @@ the following content:
api = "https://registry.acme.local/"
# package download URL (optional)
download = "{API_URL}/v0/packages/{PACKAGE}/{PACKAGE_VERSION}/{PACKAGE_TARGET}/archive"
download = "{API_URL}/v1/packages/{PACKAGE}/{PACKAGE_VERSION}/{PACKAGE_TARGET}/archive"
# the client ID of the GitHub OAuth app (optional)
github_oauth_client_id = "a1d648966fdfbdcd9295"
@ -58,7 +58,7 @@ scripts_packages = ["pesde/scripts_rojo"]
- `{PACKAGE_VERSION}`: The package version.
- `{PACKAGE_TARGET}`: The package target.
Defaults to `{API_URL}/v0/packages/{PACKAGE}/{PACKAGE_VERSION}/{PACKAGE_TARGET}/archive`.
Defaults to `{API_URL}/v1/packages/{PACKAGE}/{PACKAGE_VERSION}/{PACKAGE_TARGET}/archive`.
- **github_oauth_client_id**: This is required if you use GitHub OAuth for
authentication. See below for more information.

View file

@ -53,7 +53,7 @@ impl DeprecateCommand {
Method::PUT
},
format!(
"{}/v0/packages/{}/deprecate",
"{}/v1/packages/{}/deprecate",
config.api(),
urlencoding::encode(&self.package.to_string()),
),

View file

@ -677,7 +677,7 @@ info: otherwise, the file was deemed unnecessary, if you don't understand why, p
}
let mut request = reqwest
.post(format!("{}/v0/packages", config.api()))
.post(format!("{}/v1/packages", config.api()))
.body(archive);
if let Some(token) = project.auth_config().tokens().get(index_url) {

View file

@ -108,7 +108,7 @@ impl YankCommand {
Method::PUT
},
format!(
"{}/v0/packages/{}/{}/{}/yank",
"{}/v1/packages/{}/{}/{}/yank",
config.api(),
urlencoding::encode(&package.to_string()),
urlencoding::encode(&version.to_string()),

View file

@ -412,7 +412,7 @@ impl IndexConfig {
pub fn download(&self) -> String {
self.download
.as_deref()
.unwrap_or("{API_URL}/v0/packages/{PACKAGE}/{PACKAGE_VERSION}/{PACKAGE_TARGET}/archive")
.unwrap_or("{API_URL}/v1/packages/{PACKAGE}/{PACKAGE_VERSION}/{PACKAGE_TARGET}/archive")
.replace("{API_URL}", self.api())
}
}

View file

@ -3,7 +3,7 @@ compatibility_date = "2024-11-30"
pages_build_output_dir = ".svelte-kit/cloudflare"
[vars]
PUBLIC_REGISTRY_URL = "https://registry.pesde.daimond113.com/v0/"
PUBLIC_REGISTRY_URL = "https://registry.pesde.daimond113.com/v1/"
[observability]
enabled = true