Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@aws-cdk/aws-codecommit
Advanced tools
To add a CodeCommit Repository to your stack:
import codecommit = require('@aws-cdk/aws-codecommit');
const repository = new codecommit.Repository(stack, 'Repository' ,{
repositoryName: 'MyRepositoryName'
});
To add an SNS trigger to your repository:
import codecommit = require('@aws-cdk/aws-codecommit');
const repository = new codecommit.Repository(stack, 'Repository', {
repositoryName: 'MyRepositoryName'
});
// trigger is established for all repository actions on all branches by default.
repository.notify('arn:aws:sns:*:123456789012:my_topic');
CodeCommit repositories emit CloudWatch events for certain activity. Use the
repo.onXxx
methods to define rules that trigger on these events and invoke
targets as a result:
// starts a CodeBuild project when a commit is pushed to the "master" branch of the repo
repo.onCommit('CommitToMaster', project, 'master');
// publishes a message to an SNS topic when a comment is made on a pull request
const rule = repo.onCommentOnPullRequest('CommentOnPullRequest');
rule.addTarget(myTopic);
0.8.1 - 2018-08-08
--profile
in command-line toolkit ([@rix0rrr] in #517)Default
construct id ([@rix0rrr] in #496)LambdaRuntime.DotNetCore21
([@Mortifera] in #507)Connections
and DefaultConnections
classes ([@rix0rrr] in #453)buildSpec
parameter to take a filename ([@rix0rrr] in #470)jsii-pacmak
to 0.6.4
, which includes "language-native" type names and package coordinates ([@RomainMuller] in awslabs/jsii#130)cdk init
template ([@RomainMuller] in #490)FnJoin
signature to CloudFormation ([@RomainMuller] in #516)FAQs
The CDK Construct Library for AWS::CodeCommit
The npm package @aws-cdk/aws-codecommit receives a total of 40,560 weekly downloads. As such, @aws-cdk/aws-codecommit popularity was classified as popular.
We found that @aws-cdk/aws-codecommit 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.