Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • semantic-release/uv
1 result
Show changes
Commits on Source (3)
## [1.0.1](https://git.gitlab.arm.com/semantic-release/uv/compare/v1.0.0...v1.0.1) (2025-01-28)
### Bug Fixes
- avoid running the real `uv` test in CI
([4b4b6c9](https://git.gitlab.arm.com/semantic-release/uv/commit/4b4b6c9aad327e612953ee38d6ad61055f6e6e44))
# 1.0.0 (2025-01-24)
### Bug Fixes
......
* @alexander.khabarov @matthew.clarkson
* @alexander.khabarov
......@@ -48,9 +48,9 @@ or, a username and password:
#### GitLab
Creating a [Deploy Token][deploy-token] with `write_repository` permission is the preferred method to restrict the access.
Creating a [Deploy Token][deploy-token] with `write_package_registry` permission is the preferred method to restrict the access.
The deploy token can be use with the `uv` username/password authentication to publish packages.
The deploy token can be used with the `uv` username/password authentication to publish packages.
### `uv`
......
{
"name": "@semantic-release/uv",
"version": "1.0.0",
"version": "1.0.1",
"description": "A `semantic release` plugin for `uv`",
"config": {
"version": "0.5.10",
......
......@@ -180,7 +180,7 @@ test('username/password', success, async t => {
test('no `uv` path - token', success, async t => {
t.context.m = {...t.context.m, verifyConditions: async (..._) => null};
t.context.ctx.env.UV_PUBLISH_TOKEN_LOCALHOST = '201';
t.context.cfg.uv = undefined;
delete t.context.cfg.uv;
});
test('no `uv` path - username/password', success, async t => {
......@@ -188,7 +188,12 @@ test('no `uv` path - username/password', success, async t => {
delete t.context.ctx.env.UV_PUBLISH_TOKEN_LOCALHOST;
t.context.ctx.env.UV_PUBLISH_USERNAME_LOCALHOST = 'placeholder';
t.context.ctx.env.UV_PUBLISH_PASSWORD_LOCALHOST = '201';
t.context.cfg.uv = undefined;
delete t.context.cfg.uv;
});
test('no `uv` path - no repositories', success, async t => {
delete t.context.cfg.repositories;
delete t.context.cfg.uv;
});
test('PyPI repository', success, async t => {
......