Rebrand to Grace Solutions; add README, about_ help, Gitea CI/CD, track Module bin #1
Reference in New Issue
Block a user
Delete Branch "dev"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Scripts: - Add scripts/Install-GiteaRunner.ps1: cross-platform installer for the Gitea act_runner daemon (systemd / launchd / Windows Service). - PowerShell 7+ runtime guard (works under irm | iex). - Explicit env var resolution (Process -> User -> Machine) for InstanceUrl and RegistrationToken with named candidates. - UTF-8 (no BOM) for every file write via [System.IO.File] APIs. - System proxy + DefaultNetworkCredentials on all web calls. - Optional -Labels; ServiceName/ServiceDisplayName split prevents systemd 'Invalid unit name' errors caused by whitespace. - config.yaml is always generated before the registration skip-check so upgrades produce a config the daemon can load. Module: - InfisicalHttpClient: enable UseDefaultCredentials and attach the system proxy with DefaultNetworkCredentials so requests work behind authenticated corporate proxies / SSO. - ExportInfisicalSecretsCmdlet: make the UTF-8 (no BOM) case explicit in the encoding resolver. CI/CD (.gitea/workflows/publish-psgallery.yml): - Split into build -> release -> publish with hard `needs:` ordering so publish never runs unless build and release both succeed. - Build job uploads Module/PSInfisicalAPI as an artifact. - Release job downloads the artifact, reads the version from the manifest, zips the module, and creates a Gitea release tagged with the bare version. Release notes include version, full + short commit SHA, build timestamp, merged PR info, workflow run link, and any matching CHANGELOG.md section. Skips cleanly when the tag already exists. - Publish job re-validates the downloaded manifest and runs Publish-Module against PSGallery using PSGALLERY_API_KEY.- Endpoint registry now stores ordered candidate lists per logical operation; Get/TryGet preserve prior behavior, new GetCandidates(name) exposes the ladder. Added v3 fallbacks (/api/v3/secrets/raw and /api/v3/secrets/raw/{secretName}) after v4. - InfisicalConnection gains PinnedApiVersion and a ResolvedEndpointVersions cache so the chosen version sticks for the session. - InfisicalSecretsClient.SendWithVersionFallback walks candidates in pin -> cached -> registry order, falls back on routing-style failures (404 without an Infisical JSON envelope, 405, or 400 mentioning workspaceId/projectSlug) when no version is pinned, and surfaces real application errors immediately. - Get-InfisicalSecret(s) expose -ApiVersion; Connect-Infisical sets PinnedApiVersion only when -ApiVersion is explicitly bound on the command line (env-var/default values do not pin). - Logger.Error routes via WriteWarning to avoid premature terminating errors that masked InfisicalApiException details; EnsureSuccess no longer redacts non-2xx bodies so server error envelopes are visible. - InfisicalSecretsClient sends both projectId and workspaceId so it works against both new and legacy server-side validators.