Inedo Community Forums Forums
    • Recent
    • Tags
    • Popular
    • Login
    1. Home
    2. ben
    3. Posts

    Welcome to the Inedo Forums! Check out the Forums Guide for help getting started.

    If you are experiencing any issues with the forum software, please visit the Contact Form on our website and let us know!

    benB Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 197
    • Groups 2

    Posts

    Recent Best Controversial
    • RE: Connector unable to GET SemVer 2.0.0 package

      Hello Hamza,

      I am able to reproduce this and I've filed PG-1317 to fix it.

      posted in Support
      benB
      ben
    • RE: Connector SemVer Issue package not found

      Hello Steven,

      Try visiting this page in a browser: http://<ProGet hostname>/feeds/<feed name>/NuGet.Frameworks/4.7.0-rtm.5148

      There should be an error message like this:

      The version number provided is invalid, but would be valid if this NuGet feed were migrated to SemVer2.

      You can migrate a legacy NuGet feed to SemVer2 by clicking the button at the top of the feed management page.

      posted in Support
      benB
      ben
    • RE: Clear Cache / delete old packages

      Hello Frank,

      Are the remaining packages marked as Package Source: Remote Connector (cached) in the left sidebar?

      posted in Support
      benB
      ben
    • RE: Can't get license key

      Hello J,

      ProGet assumes it's in a schema named dbo. By default, that's what SQL Server uses. To change the default schema back to dbo, run this command:

      ALTER USER [proget] WITH DEFAULT_SCHEMA [dbo]
      
      posted in Support
      benB
      ben
    • RE: Docker login with api key

      Hello Pedro,

      Docker feeds appear to have been missed when the api user was added for feed authentication. I've filed PG-1295 to fix that.

      ProGet 5.1.0 is not released on Docker Hub, but you can build the image locally with this command:

      docker build -t inedo/proget:5.1.0 --build-arg PROGET_VERSION=5.1.0 github.com/Inedo/proget-docker
      
      posted in Support
      benB
      ben
    • RE: SemVer2.0 packages from nuget.org are not visible

      Hello Tony,

      I've filed PG-1294 to fix this. As a workaround, you can access the package directly by version number even without this fix.

      posted in Support
      benB
      ben
    • RE: Find-Package with -StartWith gives 404 (OData method is not implemented.)

      Hello Tom and Brett,

      The endpoint being requested seems simple enough. For example, here's what it requests for -StartWith Inedo..

      I've filed PG-1281 to add an implementation of this endpoint.

      posted in Support
      benB
      ben
    • RE: Package name included semver 2.0 metadata in title

      Hello Timofey,

      I've filed PG-1280 to hide the build metadata from NuGet version numbers when they are displayed in titles.

      posted in Support
      benB
      ben
    • RE: Issue with NPM package delete

      Hello Ludovic,

      This appears to happen when there is no version of your package tagged as latest. To fix it, click the Edit Details button on the latest version of your package and add a tag named latest (all lower-case).

      I've filed PG-1279 to fix this happening in the first place.

      posted in Support
      benB
      ben
    • RE: Pushing to a Docker Registry on ProGet

      Hello Jasper,

      I don't have a Linux installation of ProGet in front of me, but it's possible that this would work if you renamed the feed to dspdocker (with no capital letters).

      posted in Support
      benB
      ben
    • RE: SemVer 2.0 download URL

      Hello Attila,

      This is indeed a bug. I've filed PG-1272 to fix this.

      posted in Support
      benB
      ben
    • RE: Local npm package not listed

      Hello Tobias,

      PG-1270 will make local packages appear before remote packages in the list, as well as making connector packages appear in the same order that they would appear in the connector.

      posted in Support
      benB
      ben
    • RE: Could not add record on deployments table for npm feed

      Hello Fabrice,

      I looked at the code and it seems that only NuGet and UPack feeds look at those headers. I've filed PG-1271 to make npm feeds also record deployments.

      posted in Support
      benB
      ben
    • RE: VSIX Feed problem

      Hello Yutaccho,

      To help me track down the exact cause of this issue, does using a forward slash instead of a backslash in the vsix manifest's <Icon> element cause ProGet to display the correct icon?

      posted in Support
      benB
      ben
    • RE: Docker push fails

      Hello Lev,

      A possible reason this might be happening is if Apache is caching the 404 error returned by Docker when the client checks for an existing layer and then returning the cached error after the layer is uploaded and the blob URL becomes valid.

      posted in Support
      benB
      ben
    • RE: S3 bucket support for Maven

      Hello Chris,

      I don't think Bower feeds store anything on the filesystem (it's all in the database). I've filed PG-1256 to add support for Maven feeds being stored in package stores.

      posted in Support
      benB
      ben
    • RE: Teamcity artifact import error issue

      Hello Rob,

      I've released version 1.0.1 of the TeamCity extension, which should fix this (or at least give a more sensible error message). It should be available in /administration/extensions.

      posted in Support
      benB
      ben
    • RE: API commands to access the health of connectors

      Hello Subash,

      To check whether any connectors are unhealthy, you could use a PowerShell script like this:

      $someConnectorsUnhealthy = (
          Invoke-RestMethod 'https://devget.syhapp.com:8798/api/json/Connectors_GetConnectors?API_Key=*******&Feed_Id=***' |
          Where-Object { $_.Status_Code -ne 'H' }).Count -gt 0
      

      After this, $someConnectorsUnhealthy is $True if any connectors for that feed are not in a healthy state, and $False if all connectors are healthy.

      If your API key contains = or +, it needs to be URL-encoded, with = replaced by %3D and + replaced by %2B. Alternatively, you can change the API key to be URL-safe.

      posted in Support
      benB
      ben
    • RE: Problem adding a connector to a feed - Mirrored JFrog Artifactory

      Hello Dmytro,

      I've filed PG-1252 to address this.

      posted in Support
      benB
      ben
    • RE: Listener for Approval Needed not sending emails

      Hello Jon,

      Is the Approval Required event listener filtered by pipeline stage?

      Approval Required listens for Build Promotion Completed events, so the pipeline stage filter should have the name of the stage of the pipeline immediately before the approval gate, not the stage that is blocked by the approval gate.

      posted in Support
      benB
      ben
    • 1 / 1