Mark

Results 35 comments of Mark

Here is a workaround: ``` publishing { publications { pluginMaven(MavenPublication) { // Workaround for https://github.com/gradle-plugins/toolbox/issues/89 pom.withXml { def parent = asElement().getElementsByTagName("dependencies").item(0) def deps = parent.getElementsByTagName("dependency") def gradleApi = deps.find {...

Any updates on this? It should be easy enough to add a "parameters" field to each report_dashboardcard. Users can either filter on the dashboard level or used the filters on...

I need place to get contextual traceability information about the request without having to pass it around everywhere that also works for the CLI. If I don't put it in...

Updated with a different approach. Metadata is a dictionary to allow for different metadata per command. Metadata won't be passed to LiteLLM unless a callback is defined.

Looks like I can workaround this by setting `AZURE_DEVOPS_CACHE_DIR` to a bogus volume that the execution user has write access to. [code](https://github.com/microsoft/azure-devops-python-api/blob/dev/azure-devops/azure/devops/_file_cache.py#L118)

It's useful to allow tuning the log levels on different loggers / packages. Additionally, in an enterprise environment it's not uncommon to be able to customize logging formats and log...

@basil @jtnord @rsandell someone please review and merge thanks

@jtnord tested works thanks! http://localhost:8080/jenkins/job/folder1/job/pipeline1/api/json?tree=buildable Enabled: ``` { _class: "org.jenkinsci.plugins.workflow.multibranch.WorkflowMultiBranchProject", buildable: true } ``` Disabled: ``` { _class: "org.jenkinsci.plugins.workflow.multibranch.WorkflowMultiBranchProject", buildable: false } ``` Note child jobs will have buildable=true even...

The workaround is to manually declare the library in the *consuming* project: `implementation 'org.jfrog.filespecs:file-specs-java:1.1.2'`