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!

  • 0 Votes
    2 Posts
    10 Views
    ?
    I'm not sure why, but looking at .11 and .12, they would only impact Windows installations, so you can just use .10 or upgrade to v5.
  • Where has the feed APIKey gone

    Support nuget proget
    2
    0 Votes
    2 Posts
    30 Views
    T
    It was generalized to use ProGet's API keys which have more granular security options: https://inedo.com/support/documentation/proget/feeds/nuget#nuget-api-key
  • 0 Votes
    4 Posts
    95 Views
    atrippA
    I'm not too familiar with how OneGet fits into all this; you'd really be better asking this question at the Chocolatey or OneGet forum. You'll still use ProGet to host the packages, but I'm really not sure which client tool (choco, etc) will do the download and install on a desktop.
  • The parameter "MatchText" is missing.

    Support proget
    3
    0 Votes
    3 Posts
    6 Views
    ?
    Hi Ben, Yeah adding a licence fixed this problem. Thanks for the hint. Have a nice day.
  • API commands to access the health of connectors

    Support proget
    2
    0 Votes
    2 Posts
    12 Views
    benB
    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.
  • Proget 5.0 upgrade - paket no longer works

    Support net nuget proget
    2
    0 Votes
    2 Posts
    24 Views
    atrippA
    The error is "failed with: 401 Unauthorized", so it probably means you need to specify an authentication source? We didn't change the way authentication is handled in v5, so it's likely unrelated to the upgrade.
  • 0 Votes
    3 Posts
    52 Views
    T
    Hi Ben. Thank you for the clarification of the problem scope. Look forward to the fix. Thank you for the quick response, much appreciated +1 Inedo has excellent support and reacts promptly.
  • Feed Browsing in the Web UI

    Support proget
    2
    0 Votes
    2 Posts
    2 Views
    atrippA
    This is by design; accurately paging in the UI is basically impossible due to limited connector aggregation, package filtering policies, etc. Especially after you do a search. Instead, you can display "up to 1000" packages in the UI, which is probably more than you would ever need to scroll through, and search as needed.
  • 0 Votes
    3 Posts
    18 Views
    C
    I second this. Need to learn Markdown, though
  • 0 Votes
    5 Posts
    109 Views
    ?
    Thank you with version 4.8.12, it's working.
  • Error publishing package with yarn

    Support npm publishing feeds proget
    2
    0 Votes
    2 Posts
    93 Views
    atrippA
    It's a "401" error, which means "not authorized" In this case, you could have the wrong credentials in Yarn (or no credentials). Note that "Windows Integrated Auth" is not supported by npm or yarn.
  • Proget vulnarability scanning

    Support npm proget nuget
    2
    0 Votes
    2 Posts
    37 Views
    apxltdA
    Good question. Regarding Vor Security, that was a recent acquisition by Sonatype, and it's being transitioned into a new service called OssIndex. Sonatype plans to keep this going for the foreseeable future, and we have verified this with Ken Duck (formerly of Vor Security, now Sonatype employee). ProGet will continue to support it (we are renaming it as well). Moreover, we are planning to work with Sonatype to better integrate their broader services (vulnerability scanning) with ProGet. We are also investigating Blackduck integration, though we're not entirely sure how it would work with ProGet. Regarding "developing our own"... broadly speaking, there are two types of vulnerabilities scanning: static analysis - analyzing actual code or binaries to look for patterns (buffer overflow, etc); this is done "on your own software" repository/database - looking at public databases like NVD, CVE, etc. for vendor- or third-party documented vulnerabilities reported for a known, published piece of software We don't believe that static analysis has a place in a package manger; there are a handful of tools that can scan your codebase directly for this. As for repository/databases, it's not really bout "finding" vulnerabilities in software, it's more about "aggregating databases" and then translating those into machine-readable formats. This is what Sonatype, Whitesource, etc., do, and we think more vendors will continue to innovate in this space. But the "repository" and "scanning" are two different problems, and you should pick the best of both problems; it would almost be like saying "Microsoft makes Office, may as well use Visual Studio and .NET". ProGet has the extensibility support for this already, so we should be able to integrate with new providers as they come up,
  • When do we get Server too busy

    Support proget
    4
    0 Votes
    4 Posts
    21 Views
    T
    Thank you for the followup, that is good information. For future reference, the docs for switching from the built-in webserver to IIS can be found here: https://inedo.com/support/kb/1013/hosting-through-iis-instead-of-the-integrated-web-server The only thing I notice from the article is the mention of Classic mode for the application pool - at some point each product was updated to support Integrated mode.
  • 0 Votes
    4 Posts
    15 Views
    atrippA
    The Integrated Web Server doesn't have many features, including request logging and tracking. So in this case, you'll want to upgrade to IIS: Please refer to KB#1013: Hosting Through IIS Instead of the Integrated Web Server
  • 0 Votes
    2 Posts
    17 Views
    ?
    Noticed this is already reported https://inedo.com/support/questions/8463
  • NuGet v3 api support for connectors

    Support proget nuget
    2
    0 Votes
    2 Posts
    49 Views
    atrippA
    Actually, the API isn't really any faster or slower. If you find it faster to query NuGet.org's "v3" API endpoint, the reason is that it's a static index hosted on a massive Azure server farm. Your ProGet server is considerably less powerful. In addition, ProGet has connectors, authentication, package filtering, etc., and it would never be feasible or useful to generate a static index like NuGet.org does. However, it is on our 2019 roadmap to implement this API, possibly as a new feed type or as an alternate API endpoint for an existing feed. But even so, if you need performance, you may still need likely need to stand up several ProGet servers in a load-balanced manner. See How to Prevent Server Overload in ProGet to learn more.
  • 0 Votes
    8 Posts
    47 Views
    atrippA
    Try stopping the service before running the installer, then it should work.
  • Bug in 5.0.10

    Support proget bug
    2
    0 Votes
    2 Posts
    16 Views
    atrippA
    Hello; thanks for the report, this has been filed as PG-1229
  • Deleting cached remote connector items

    Support feeds connectors proget
    2
    0 Votes
    2 Posts
    22 Views
    atrippA
    The "remote icon" means that there is a package entry in a remote server. If you're continuing to see it, then it may take a little bit for the connector metadata (in memory)cache to be cleared. You could always stop/start the webservice, and then this will go away.
  • Source Binding Issue

    Support symbols proget
    2
    0 Votes
    2 Posts
    8 Views
    atrippA
    Please have your colleague follow the instructions in Source and Symbol Serving; it's easy to miss one small detail, and then in this case, it won't work.