Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(synthetics): graduate to stable 🚀 #27305

Merged
merged 8 commits into from
Sep 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions packages/@aws-cdk-testing/framework-integ/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ junit.xml
coverage
nyc.config.js

!test/aws-synthetics/test/canaries/**/*


!**/*.snapshot/**/asset.*/*.js
!**/*.snapshot/**/asset.*/*.d.ts

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { App, Stack, StackProps } from 'aws-cdk-lib';
import { App, Stack, StackProps } from 'aws-cdk-lib/core';
import { IntegTest } from '@aws-cdk/integ-tests-alpha';
import { Construct } from 'constructs';
import * as synthetics from '../lib';
import * as synthetics from 'aws-cdk-lib/aws-synthetics';
import { AwsCustomResource, AwsCustomResourcePolicy, PhysicalResourceId } from 'aws-cdk-lib/custom-resources';

class TestStack extends Stack {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import * as path from 'path';
import * as apigateway from 'aws-cdk-lib/aws-apigateway';
import * as s3 from 'aws-cdk-lib/aws-s3';
import * as cdk from 'aws-cdk-lib';
import { Canary, Cleanup, Code, Runtime, Schedule, Test } from '../lib';
import * as cdk from 'aws-cdk-lib/core';
import { Canary, Cleanup, Code, Runtime, Schedule, Test } from 'aws-cdk-lib/aws-synthetics';
import { ExpectedResult, IntegTest } from '@aws-cdk/integ-tests-alpha';
import { RemovalPolicy } from 'aws-cdk-lib';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import * as path from 'path';
import * as ec2 from 'aws-cdk-lib/aws-ec2';
import * as cdk from 'aws-cdk-lib';
import * as synthetics from '../lib';
import * as cdk from 'aws-cdk-lib/core';
import * as synthetics from 'aws-cdk-lib/aws-synthetics';

/*
* Stack verification steps:
Expand Down
8 changes: 0 additions & 8 deletions packages/@aws-cdk/aws-synthetics-alpha/.eslintrc.js

This file was deleted.

28 changes: 0 additions & 28 deletions packages/@aws-cdk/aws-synthetics-alpha/.gitignore

This file was deleted.

33 changes: 0 additions & 33 deletions packages/@aws-cdk/aws-synthetics-alpha/.npmignore

This file was deleted.

201 changes: 0 additions & 201 deletions packages/@aws-cdk/aws-synthetics-alpha/LICENSE

This file was deleted.

2 changes: 0 additions & 2 deletions packages/@aws-cdk/aws-synthetics-alpha/NOTICE

This file was deleted.

Loading