Skip to content

Commit 9f2b78c

Browse files
authored
chore(release): 2.121.0 (#28693)
See CHANGELOG. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
2 parents 58b90c4 + 1ae033e commit 9f2b78c

File tree

33 files changed

+40822
-39
lines changed

33 files changed

+40822
-39
lines changed

CHANGELOG.v2.alpha.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [2.121.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.120.0-alpha.0...v2.121.0-alpha.0) (2024-01-12)
6+
57
## [2.120.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.119.0-alpha.0...v2.120.0-alpha.0) (2024-01-12)
68

79
## [2.119.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.118.0-alpha.0...v2.119.0-alpha.0) (2024-01-11)

CHANGELOG.v2.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [2.121.0](https://github.com/aws/aws-cdk/compare/v2.120.0...v2.121.0) (2024-01-12)
6+
7+
8+
### Features
9+
10+
* **ec2:** add dual stack vpc support ([#28480](https://github.com/aws/aws-cdk/issues/28480)) ([754fd99](https://github.com/aws/aws-cdk/commit/754fd99e1963db9ec883c50784d3094cc463b70b)), closes [#894](https://github.com/aws/aws-cdk/issues/894)
11+
512
## [2.120.0](https://github.com/aws/aws-cdk/compare/v2.119.0...v2.120.0) (2024-01-12)
613

714

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
from http.server import SimpleHTTPRequestHandler
2+
import urllib.request
3+
import json
4+
5+
class MyRequestHandler(SimpleHTTPRequestHandler):
6+
def do_GET(self):
7+
if self.path == '/':
8+
self.send_response(200)
9+
self.send_header('Content-type', 'application/json')
10+
self.end_headers()
11+
12+
try:
13+
# IPv4 request
14+
response = urllib.request.urlopen('http://ipv4.google.com')
15+
status_code = response.getcode()
16+
if (status_code != 200):
17+
raise Exception(f"Received a non-successful status code: {status_code}")
18+
19+
# IPv6 request
20+
response = urllib.request.urlopen('http://ipv6.google.com')
21+
status_code = response.getcode()
22+
if (status_code != 200):
23+
raise Exception(f"Received a non-successful status code: {status_code}")
24+
25+
json_response = {
26+
"status": status_code
27+
}
28+
29+
self.wfile.write(json.dumps(json_response).encode('utf-8'))
30+
except Exception as e:
31+
self.wfile.write(bytes(f"Error: {str(e)}", 'utf-8'))
32+
return
33+
else:
34+
super().do_GET()
35+
36+
if __name__ == '__main__':
37+
from http.server import HTTPServer
38+
server = HTTPServer(('0.0.0.0', 8000), MyRequestHandler)
39+
print('Server started on http://0.0.0.0:8000')
40+
server.serve_forever()

packages/@aws-cdk-testing/framework-integ/test/aws-ec2/test/integ.vpc-dual-stack-ec2.js.snapshot/asset.4554b47be6f57b68c6c7a7391dcc73894866d2377fe174883351e7639097f292/__entrypoint__.js

+147
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk-testing/framework-integ/test/aws-ec2/test/integ.vpc-dual-stack-ec2.js.snapshot/asset.4554b47be6f57b68c6c7a7391dcc73894866d2377fe174883351e7639097f292/index.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)