
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Internal support gem for Hanami::Action
params validation.
Hanami::Validations supports Ruby (MRI) 3.1+
Add this line to your application's Gemfile:
gem "hanami-validations"
And then execute:
$ bundle
Or install it yourself as:
$ gem install hanami-validations
Installing hanami-validations enables support for params
validation in
hanami-controller’s Hanami::Action
classes.
class Signup < Hanami::Action
params do
required(:first_name)
required(:last_name)
required(:email)
end
def handle(req, *)
puts req.params.class # => Signup::Params
puts req.params.class.superclass # => Hanami::Action::Params
puts req.params[:first_name] # => "Luca"
puts req.params[:admin] # => nil
end
end
See hanami-controller for more detail on params validation.
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)Copyright © 2014–2024 Hanami Team – Released under MIT License
FAQs
Unknown package
We found that hanami-validations demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.