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
    9 Views
    gdivisG
    Hi @e-rotteveel_1850 Thanks for the bug report! We will have this fixed in v2023.14 to be released on Friday. It's logged as PG-2446, and looks like a regression from some of the internal consolidation we did for ProGet 2023. -Greg
  • Using IIS::Ensure-Site without removing bindings?

    4
    0 Votes
    4 Posts
    11 Views
    atrippA
    Hi @Justinvolved , Ah yes, getting all this modeling done sensibly is a challenge, and documenting it is a whole new pain The main issue we're facing is that you can't create a Site in IIS without a binding; the API will simply reject it and error. This means that if you use IIS::Ensure-Site to create a site, but don't specify a binding, it will error. However IIS::Ensure-Site can update a site no problem. This is why we originally created the Bindings property. However, it's a but challenging to use, and exhibits the behavior you describe: it "ensures" that list matches whatever is in the Site. Our current way of thinking is this: IIS::Ensure-Site MySite ( AppPool: MyPool, Path: C:\Websites\MySite, BindingProtocol: http, BindingHostName: app.local, BindingPort: 80 ); IIS::Ensure-SiteBinding ( Site: MySite, Protocol: https, ... ssl properties ... ); Our "new" way of thinking is that it might make sense to allow IIS::Ensure-Site to have two sets of binding properties. IIS::Ensure-Site MySite ( AppPool: MyPool, Path: C:\Websites\MySite, HttpHostName: app.local, HttpBindingPort: 80, HttpsBindingPort: 443, HttpsCertificateOrWhatever... ); This seems to align with how most people want to set up a site in IIS (i.e. two bindings). Definitely open to your feedback Cheers, Alana
  • PGVC: Blocked packages cannot be unblocked

    pgvc proget
    8
    2
    0 Votes
    8 Posts
    30 Views
    atrippA
    @sebastian thanks for confirming! I've added this as something to fix via PG-2441 and targeted it as 2013.14 (next Friday), but it's a lower-priority issue so it will may get "bumped" to the next or following depending on other issues
  • Could not create nuget feed using API

    5
    1
    0 Votes
    5 Posts
    12 Views
    S
    @atripp Thanks. We'll update our ProGet server
  • ProGet: Handling of deprecated NuGet packages

    proget
    8
    5
    0 Votes
    8 Posts
    47 Views
    atrippA
    Hi @sebastian There is no plan to add user-configurable scheduled job capabilities to ProGet, and it's unlikely we would consider that since they are really hard to support. We do have our Otter product that's designed for that However, in ProGet 2022, we considered a periodic "check" for packages in a feed against the source; the use case was "is a newer patch version available" - and if so, then an issue would be raised about using an out-of-date package. We obviously didn't implement that. But it seems we could take a similar approach and then also check for unlisting/deprecation as well. This might be something that comes up in our ProGet 2024 planning. But in either case, it still involves lots and lots of web calls to check each package against the source - so I would start with a a script and see what you find out. Thanks, Alana
  • Link between SCA Project and Package

    6
    0 Votes
    6 Posts
    30 Views
    rhessingerR
    Hi @dan-brown_0128, The only linkage between the SCA project and the NuGet package/feed (and other feed types when associated) is that the SCA project will look at all the associated NuGet packages' feeds to pull their relevant license and vulnerability data for each associated package. The then displays that information in the SCA project and creates issues if it finds problems (blocked license, blocked due to vulnerability, missing package, etc...). Thank, Rich
  • Workstation/Server with Dual Choco Feeds

    2
    0 Votes
    2 Posts
    6 Views
    atrippA
    Hi @rmusick_7875 , Unless you build your own GUI client, I don't think what you're doing is going to be possible or feasible to implement; dependencies need to be be in the same feed. I suppose you could try "Unlisting" the packages, but I don't know if the Chocolatey GUI client uses the Listed indicated to determine if a package should be listed. Cheers, Alana
  • NuGet Feed API Endpoint URL Returns 404

    network nuget api
    3
    0 Votes
    3 Posts
    9 Views
    C
    Hi @stevedennis, Thanks for the reply. It turns out my default nginx server was intercepting all http traffic and not allowing requests to get to the Proget server. I solved the issue by disabling the default server (removing it from sites-enabled) and making some config changes to the Proget nginx config file to stop the server from redirecting http traffic to https.
  • OT - Minor Bug In Job Template

    2
    1
    0 Votes
    2 Posts
    4 Views
    rhessingerR
    Hi @philippe-camelio_3885, Good catch! I created a ticket, OT-494, to track the fix. We should have this released in the next two versions of Otter (2022.12 or 2022.13). Thanks, Rich
  • NuGet Upload Difference between Enterprise and Basic Edition

    3
    2
    0 Votes
    3 Posts
    12 Views
    R
    Hi Alana, Thanks for confirming the consistent behavior between the two versions, and pointing us in the right direction. As you pointed out, the issue did stem from our CI/CD API key being overprivileged in our Enterprise edition instance. I reduced the privileges for the key, and duplicate packages are being skipped. Thanks for your assistance. Rich
  • 0 Votes
    3 Posts
    11 Views
    P
    Hi @atripp Thanks for the tips. Best regards Philippe
  • BM - Editing OSCall Operation using Visual Editor not working anymore

    2
    0 Votes
    2 Posts
    7 Views
    atrippA
    Hi @philippe-camelio_3885 , thanks for reproting this; definitely looks like a regression of some kind. We'll get it fixed ASAP via BM-3860 -- but sounds like you found a temporary work-around for now :)
  • BuildMaster Service logon account

    2
    0 Votes
    2 Posts
    10 Views
    atrippA
    Hi @Justinvolved , You should be able to see some kind of error message on Windows Event Logs, but my guess is that the account doesn't have access to the BuildMaster SQL Server database .. you'll need to grant that. Cheers, Alana
  • 0 Votes
    5 Posts
    12 Views
    V
    Hi @rhessinger , Verbose doesn't have much details, all "Capturing files..." messages. I changed buildmasteragent root directory and its working now, so as you said it might be something at OS level. Thanks.
  • ProGet NuGet upload user tracking

    16
    0 Votes
    16 Posts
    54 Views
    stevedennisS
    Hi @jw , Ah, I can see how that would happen; I logged this as PG-2425 and we'll try to get it fixed in the upcoming maintenance release. Steve
  • ProGet: Vulnerability assessment types - missing vulnerabilities

    2
    1
    0 Votes
    2 Posts
    14 Views
    rhessingerR
    Hello, This is most likely related to PG-2395 (ProGet 2022.30 fix) and PG-2390 (ProGet 2023.9 fix). We added support to handle when OSS Index removes vulnerabilities from their list. Unfortunately, this has brought to light the unreliability of the data returned from OSS Index. It looks like vulnerabilities are constantly removed and re-added, which caused assessments to be cleared out on vulnerabilities. In PG-2395 and PG-2390, we have updated ProGet to only add a comment if we see that OSS Index deleted it. This way the assessment is not lost when OSS Index removes the vulnerability. Thanks, Rich
  • Wrong version shown in Usage&Statistics

    2
    0 Votes
    2 Posts
    13 Views
    stevedennisS
    Hi @caterina , This behavior is intentional, but not ideal. It should only navigation - such as the "Usage & Statics" page on a package, or the "List Projects" page which has a "Latest Release" column. As long as the Release is active, you'll still see new issues come up. That's really what determines if a release is scanned or not - Active or not. The reason for this... an SCA Release's "Release Number" is a free-form field, which means there are no sorting rules. So we can't practically/easily determine what the "highest" number. Instead, we just use the order in which it was created for display purposes. Thanks, Steve
  • Proget not listing npm tags

    5
    0 Votes
    5 Posts
    11 Views
    rhessingerR
    Hi @falam_3608, That's great to hear. The will also be released in ProGet 2023.11. You will not need to roll anything back upon the next upgrade, InedoHub handles these automatically. Thanks, Rich
  • Build error - "Package source __ahempty not found."

    2
    0 Votes
    2 Posts
    5 Views
    atrippA
    Hi @bardmorgan_7142 , That error seems to be a UI-related error with the Build Script Template editor. Basically that __ahempty value is meant to trigger a validation warning to force you to pick a package source. When you edit the build script, what do you have set for the package source drop-downs? It should be a ProGet feed, at least for publishing. But it's not required. Also, if you "Edit As OtterScript", you should be able to see where the __ahempty is being added to the script, and hopefully fix. Seeing taht would help us debug it :) Cheers, Alana
  • How to download private GPG key of an APT repository

    11
    0 Votes
    11 Posts
    28 Views
    hwittenbornH
    I'm pretty sure it's just due to Microsoft SQL's CLI cutting off the XML output @atripp, as the XML object would just be unfinished when viewing in my terminal. I'm gonna whip together a quick CLI to try to pull it out programmatically later today, and then I can let you know if it all works. I'm quite confident that's what's been causing my issue though.
Inedo Website HomeSupport HomeCode of ConductForums GuideDocumentation