Tags

Tags give the ability to mark specific points in history as being important
  • debian/0.24.1-2

    golang-code-gitea-sdk Debian release 0.24.1-2
    
  • debian/0.24.1-1

    golang-code-gitea-sdk release 0.24.1-1 for unstable
    
    [dgit distro=debian split --quilt=unapplied]
    [dgit please-upload source=golang-code-gitea-sdk version=0.24.1-1 upstream-tag=gitea/v0.24.1 upstream=0722d05e9348f49adac0b2a9e975cb91d9c0da35]
    
  • upstream/0.24.1

    Upstream version 0.24.1
    
  • gitea/v0.24.1

    v0.24.1
    
    Fix URL type in create org
    * Align DELETEs to use doRequestWithStatusHandle
    * Fix copy/paste error with queryEncode for issues list option struct
  • gitea/v0.24.0

    v0.24.0
    
    - Action variable/secret option types consolidated (OrgActionVariable -> ActionVariable, CreateSecretOption -> CreateOrUpdateSecretOption)
    - CreateRepoActionSecret/CreateOrgActionSecret signatures changed (secret name is now a separate parameter)
    - CreateOrgActionVariable/UpdateOrgActionVariable use shared option types
    - MergePullRequestOption.DeleteBranchAfterMerge changed from bool to *bool (nil omits the field)
    - Package.Owner and Package.Creator changed from User to *User
    - ContentsResponse.LastCommitSha changed from string to *string
    - UpdateRepoBranch deprecated in favor of RenameRepoBranch
    
    - RerunRepoActionRun - Rerun an entire workflow run
    - RerunRepoActionRunFailedJobs - Rerun only failed jobs in a workflow run
    - RerunRepoActionJob - Rerun a specific job in a workflow run
    
    - ListRepoActionWorkflows - List repository workflow definitions
    - GetRepoActionWorkflow - Get a workflow definition
    - DisableRepoActionWorkflow - Disable a workflow
    - EnableRepoActionWorkflow - Enable a workflow
    - DispatchRepoActionWorkflow - Trigger a workflow_dispatch event
    
    - ListRepoActionRunArtifacts - List artifacts for a workflow run
    - ListRepoActionArtifacts - List all repository artifacts
    - GetRepoActionArtifact - Get a specific artifact
    - DeleteRepoActionArtifact - Delete an artifact
    - GetRepoActionArtifactArchive - Download artifact zip
    - GetRepoActionArtifactArchiveReader - Stream artifact zip
    
    - ListAdminActionRunners - List admin-scope runners
    - GetAdminActionRunner - Get one admin-scope runner
    - DeleteAdminActionRunner - Delete one admin-scope runner
    - UpdateAdminActionRunner - Update one admin-scope runner
    - CreateAdminActionRunnerRegistrationToken - Create admin runner registration token
    - ListAdminActionRuns - List admin-scope workflow runs
    - ListAdminActionJobs - List admin-scope jobs
    
    - ListOrgActionRunners - List org-scope runners
    - GetOrgActionRunner - Get one org-scope runner
    - DeleteOrgActionRunner - Delete one org-scope runner
    - UpdateOrgActionRunner - Update one org-scope runner
    - CreateOrgActionRunnerRegistrationToken - Create org runner registration token
    - ListOrgActionRuns - List org-scope workflow runs
    - ListOrgActionJobs - List org-scope jobs
    
    - ListRepoActionRunners - List repo-scope runners
    - GetRepoActionRunner - Get one repo-scope runner
    - DeleteRepoActionRunner - Delete one repo-scope runner
    - UpdateRepoActionRunner - Update one repo-scope runner
    - CreateRepoActionRunnerRegistrationToken - Create repo runner registration token
    
    - ListUserActionRunners - List user-scope runners
    - GetUserActionRunner - Get one user-scope runner
    - DeleteUserActionRunner - Delete one user-scope runner
    - UpdateUserActionRunner - Update one user-scope runner
    - CreateUserActionRunnerRegistrationToken - Create user runner registration token
    - ListUserActionRuns - List user-scope workflow runs
    - ListUserActionJobs - List user-scope jobs
    
    - CreateUserActionSecret - Create or update a user-scope secret
    - DeleteUserActionSecret - Delete a user-scope secret
    - ListUserActionVariable - List user-scope variables
    - GetUserActionVariable - Get one user-scope variable
    - CreateUserActionVariable - Create a user-scope variable
    - UpdateUserActionVariable - Update a user-scope variable
    - DeleteUserActionVariable - Delete a user-scope variable
    
    - DeleteOrgActionSecret - Delete an org-scope secret
    - DeleteOrgActionVariable - Delete an org-scope variable
    
    - GetPullRequestByBaseHead - Get a PR by base and head branch names
    - CancelScheduledAutoMerge - Cancel a scheduled auto-merge
    - ResolvePullReviewComment - Resolve a review comment conversation
    - UnresolvePullReviewComment - Unresolve a review comment conversation
    
    - ListIssueAttachments - List attachments for an issue
    - GetIssueAttachment - Get one issue attachment
    - CreateIssueAttachment - Upload an attachment to an issue
    - EditIssueAttachment - Update issue attachment metadata
    - DeleteIssueAttachment - Delete an issue attachment
    - CreateIssueCommentAttachment - Upload an attachment to a comment
    
    - RenameRepoBranch - Rename a branch
    - UpdateRepoBranchRef - Update the commit a branch points to
    - GetRepoFileContents - Batch fetch file metadata/contents (GET)
    - PostRepoFileContents - Batch fetch file metadata/contents (POST)
    - GetIssueConfig - Get parsed issue config for a repository
    - GetRepoLicenses - Get detected licenses for a repository
    - GetRepoSigningKeyGPG - Get repository GPG signing key
    - GetRepoSigningKeySSH - Get repository SSH signing key
    - ListRepoSubscribers - List repository watchers
    - ApplyRepoDiffPatch - Apply a diff/patch to repository contents
    - TriggerPushMirrorsSync - Trigger push-mirror sync
    - ChangeFiles - Batch create/update/delete files
    - CheckPinAllowed - Check if new issue/PR pins are allowed
    - ListRepoPinnedPullRequests - List pinned pull requests
    - TestWebhook - Test a push webhook
    - MergeUpstream - Merge upstream into a fork
    - UpdateBranchProtectionPriorities - Update branch protection rule priorities
    
    - GetTeamRepository - Check if a repository belongs to a team
    
    - ListPackageVersions - List all versions of a package
    
    - MergePullRequest now treats HTTP 201 as success
    - Branch names with slashes are now correctly escaped in GetRepoBranch/DeleteRepoBranch
    - SetGiteaVersion/loadServerVersion now correctly return parse errors
    
    **Full Changelog**: [gitea/v0.23.2...gitea/v0.24.0](https://gitea.com/gitea/go-sdk/compare/gitea/v0.23.2...gitea/v0.24.0)
  • gitea/v0.23.2

    v0.23.2
    
    Minor pagination updates
  • gitea/v0.23.1

    v0.23.1
    
    Fix up pagination and add some missing fields to structs.
  • gitea/v0.23.0

    v0.23.0
    
    - CreateWikiPage - Create a new wiki page
    - GetWikiPage - Get a wiki page by name
    - EditWikiPage - Edit an existing wiki page
    - DeleteWikiPage - Delete a wiki page
    - ListWikiPages - List all wiki pages in a repository
    - GetWikiPageRevisions - Get revision history for a wiki page
    
    - GetContentsExt - Get extended file/directory contents with optional metadata (last commit info)
    - GetEditorConfig - Get `.editorconfig` definitions for a file path
    - GetRawFile - Get raw file content by path
    - GetRawFileOrLFS - Get raw file content, resolving LFS pointers
    - GetRepoNote - Get git note for a commit
    
    - ListRepoActionRuns - List workflow runs for a repository
    - GetRepoActionRun - Get a specific workflow run
    - DeleteRepoActionRun - Delete a workflow run
    - ListRepoActionRunJobs - List jobs for a specific workflow run
    - ListRepoActionJobs - List all jobs for a repository
    - GetRepoActionJob - Get a specific job
    - GetRepoActionJobLogs - Get logs for a job
    - ListRepoActionTasks - List action tasks for a repository
    - ListRepoActionVariable - List repository action variables
    
    - UpdateRepoAvatar - Update repository avatar
    - DeleteRepoAvatar - Delete repository avatar
    
    - ListAllGitRefs - List all git refs (branches, tags, etc.)
    
    - ListRepoPinnedIssues - List pinned issues
    - PinIssue - Pin an issue
    - UnpinIssue - Unpin an issue
    - MoveIssuePin - Change pin position
    - ListIssueBlocks - List issues blocked by an issue
    - CreateIssueBlocking - Add an issue as blocking another
    - RemoveIssueBlocking - Remove blocking relationship
    - GetIssueDependencies - List issue dependencies
    - CreateIssueDependency - Create issue dependency
    - RemoveIssueDependency - Remove issue dependency
    - LockIssue - Lock an issue (with optional reason)
    - UnlockIssue - Unlock an issue
    - UpdateIssueDeadline - Update issue deadline
    
    - GetIssueCommentAttachment - Get an attachment from a comment
    - EditIssueCommentAttachment - Edit attachment metadata
    - DeleteIssueCommentAttachment - Delete a comment attachment
    
    - GetUserHeatmap - Get contribution heatmap data
    - ListUserActivityFeeds - List user activity feeds
    - UpdateUserAvatar - Update authenticated user's avatar
    - DeleteUserAvatar - Delete authenticated user's avatar
    - ListMyBlocks - List users blocked by authenticated user
    - CheckUserBlock - Check if a user is blocked
    - BlockUser - Block a user
    - UnblockUser - Unblock a user
    
    - UpdateOrgAvatar - Update organization avatar
    - DeleteOrgAvatar - Delete organization avatar
    - RenameOrg - Rename an organization
    - ListOrgActivityFeeds - List organization activity feeds
    - ListTeamActivityFeeds - List team activity feeds
    - ListOrgBlocks - List users blocked by organization
    - CheckOrgBlock - Check if user is blocked by organization
    - BlockOrgUser - Block a user from organization
    - UnblockOrgUser - Unblock a user from organization
    - ListOrgLabels - List organization labels
    - CreateOrgLabel - Create organization label
    - GetOrgLabel - Get organization label
    - EditOrgLabel - Edit organization label
    - DeleteOrgLabel - Delete organization label
    
    - AdminRenameUser - Rename a user
    - ListAdminEmails - List all emails (admin)
    - SearchAdminEmails - Search emails (admin)
    - ListAdminHooks - List system webhooks
    - CreateAdminHook - Create system webhook
    - GetAdminHook - Get system webhook
    - EditAdminHook - Edit system webhook
    - DeleteAdminHook - Delete system webhook
    - ListUnadoptedRepos - List unadopted repositories
    - AdoptUnadoptedRepo - Adopt a repository
    - DeleteUnadoptedRepo - Delete unadopted repository
    - ListUserBadges - List user badges
    - AddUserBadges - Add badges to user
    - DeleteUserBadge - Remove badge from user
    
    - GetGPGKeyVerificationToken - Get token for GPG key verification
    - VerifyGPGKey - Verify a GPG key
    
    - GetLatestPackage - Get latest version of a package
    - LinkPackage - Link package to a repository
    - UnlinkPackage - Unlink package from repository
    
    - ListGitignoresTemplates - List available gitignore templates
    - GetGitignoreTemplateInfo - Get gitignore template content
    - ListLabelTemplates - List available label templates
    - GetLabelTemplate - Get label template content
    - ListLicenseTemplates - List available license templates
    - GetLicenseTemplateInfo - Get license template content
    - RenderMarkdown - Render markdown to HTML
    - RenderMarkdownRaw - Render raw markdown to HTML
    - RenderMarkup - Render markup to HTML
    - GetNodeInfo - Get NodeInfo for the instance
    - GetSigningKeyGPG - Get instance GPG signing key
    - GetSigningKeySSH - Get instance SSH signing key
    
    - GetActivityPubPerson - Get ActivityPub person object
    - GetActivityPubPersonResponse - Get raw ActivityPub person response
    - SendActivityPubInbox - Send to ActivityPub inbox
    
    * @techknowlogick
    * @PazerOP
    * @appleboy
    * @lunny
    * @magicv
    * @localleon
    * @krancour
    
    * @PazerOP made their first contribution in [#736](https://gitea.com/gitea/go-sdk/pulls/736)
    * @magicv made their first contribution in [#721](https://gitea.com/gitea/go-sdk/pulls/721)
    * @localleon made their first contribution in [#730](https://gitea.com/gitea/go-sdk/pulls/730)
    * @krancour made their first contribution in [#731](https://gitea.com/gitea/go-sdk/pulls/731)
    
    **Full Changelog**: [gitea/v0.22.0...gitea/v0.23.0](https://gitea.com/gitea/go-sdk/compare/gitea/v0.22.0...gitea/v0.23.0)
  • debian/0.22.0-1

    3312d977 · Upload to unstable ·
    golang-code-gitea-sdk Debian release 0.22.0-1
    
  • upstream/0.22.0

    Upstream version 0.22.0
  • debian/0.17.0-2

    97ddf950 · Source-only upload ·
    golang-code-gitea-sdk Debian release 0.17.0-2
    
  • debian/0.17.0-1

    5922cc16 · Upload to NEW ·
    golang-code-gitea-sdk Debian release 0.17.0-1
    
  • upstream/0.17.0

    New upstream version 0.17.0