Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
ember-cli-deploy-display-revisions
Advanced tools
Display a list of deployed revisions using ember-cli-deploy.
Display a list of deployed revisions using ember-cli-deploy. This plugin is for ember-cli-deploy
>= 0.5.0.
ember install ember-cli-deploy-display-revisions
ENV['display-revisions'] = {
amount: 10,
revisions: function(context) {
return context.revisions;
}
}
Number of revisions displayed in the results table
Default: 10
The data to be displayed
Default: context.revisions
, usually received from fetchRevisions
ember deploy:list <environment>
to list the latest 10 revisionsember deploy:list --amount <N> <environment>
to list the latest revisionsember-cli-deploy-display-revisions
expects the fetchRevisions
to be implemented by your index plugin, filling the revisions
variable in context in the following format:
[
{
revision: 'abc123', // mandatory
version: 'v1',
timestamp: 1438232435000, // milliseconds since epoch
deployer: 'cats'
},
{
revision: 'def456',
version: 'v2',
timestamp: 1032123128000,
deployer: 'dogs',
active: true // indicate whether this revision is activated
}
]
Omitted keys are not displayed in listing the results.
FAQs
Display a list of deployed revisions using ember-cli-deploy.
We found that ember-cli-deploy-display-revisions demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.