
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
An unofficial Microsoft Visual Studio Team Services (VSTS) API client in Ruby
This will be a Ruby gem to connect to the Microsoft Visual Studio online (VSTS) Rest API. It may also work with recent versions of TFS too. Work is heavily in progress!
gem install ruby_vsts
Add the public signing key to verify signature:
gem cert --add <(curl -Ls https://raw.github.com/prodexity/ruby_vsts/master/certs/ruby_vsts-gem-public_cert.pem)
Install with checking signatures:
gem install ruby_vsts -P HighSecurity
require 'ruby_vsts'
VSTS.configure do |config|
config.personal_access_token = "YOUR_PERSONAL_ACCESS_TOKEN"
config.base_url = "https://YOUR_INSTANCE.visualstudio.com/"
end
VSTS::Changeset.find(72300) # find changeset by id
VSTS::Changeset.find_all(author: "fabrikam13@hotmail.com") # find by author
VSTS::Changeset.find_all(fromId: 1000, toId: 1200) # find by id range
VSTS::Changeset.find_all(fromDate: "03-01-2017", toDate: "03-18-2017-2:00PM") # find by date range
VSTS::Changeset.find_all(itemPath: "$/Fabrikam-Fiber-TFVC/Program.cs") # find by item path
VSTS::Changeset.find_all(top: 20, skip: 100) # paging
# ...
changeset = VSTS::Changeset.find(72300)
changes = changeset.changes
item = changes[0]
file_contents = item.get # current version
Please see specs and the source code for further examples.
FAQs
Unknown package
We found that ruby_vsts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.