Skip to content

Commit 46b79fc

Browse files
author
aws-toolkit-automation
committed
Updating version to 1.28
1 parent 092dc15 commit 46b79fc

17 files changed

+64
-57
lines changed

.changes/1.28.json

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"date" : "2021-07-12",
3+
"version" : "1.28",
4+
"entries" : [ {
5+
"type" : "breaking",
6+
"description" : "Python 2.7 Lambda template removed from New Project Wizard"
7+
}, {
8+
"type" : "feature",
9+
"description" : "Adding the ability to inject credentials/region into existing IntelliJ IDEA and PyCharm Run Configurations (e.g Application, JUnit, Python, PyTest). This requires experiments `aws.feature.javaRunConfigurationExtension` / `aws.feature.pythonRunConfigurationExtension`, see [Enabling Experiments](https://github.com/aws/aws-toolkit-jetbrains/blob/master/README.md#experimental-features)"
10+
}, {
11+
"type" : "feature",
12+
"description" : "Add support for updating tags during SAM deployment"
13+
}, {
14+
"type" : "feature",
15+
"description" : "(Experimental) Adding ability to create a local terminal using the currently selected AWS connection (experiment ID `aws.feature.connectedLocalTerminal`, see [Enabling Experiments](https://github.com/aws/aws-toolkit-jetbrains/blob/master/README.md#experimental-features)) #2151"
16+
}, {
17+
"type" : "feature",
18+
"description" : "Add support for pulling images from ECR"
19+
}, {
20+
"type" : "bugfix",
21+
"description" : "Fix missing text in the View S3 bucket with prefix dialog"
22+
}, {
23+
"type" : "bugfix",
24+
"description" : "Improved performance of listing S3 buckets in certain situations"
25+
}, {
26+
"type" : "bugfix",
27+
"description" : "Fix copying action in CloudWatch Logs Stream and Event Time providing epoch time instead of displayed value"
28+
}, {
29+
"type" : "bugfix",
30+
"description" : "Fix using message bus after project has been closed (Fixes #2615)"
31+
}, {
32+
"type" : "bugfix",
33+
"description" : "Fix S3 bucket viewer actions being triggered by short cuts even if it is not focused"
34+
}, {
35+
"type" : "bugfix",
36+
"description" : "Don't show Lambda run configuration suggestions on Go test code"
37+
}, {
38+
"type" : "bugfix",
39+
"description" : "Fix being unable to create Python 3.8 Image-based Lambdas in New Project wizard"
40+
}, {
41+
"type" : "bugfix",
42+
"description" : "Fixed showing templates that were not for Image-based Lambdas when Image is selected in New Project wizard"
43+
}, {
44+
"type" : "deprecation",
45+
"description" : "An upcoming release will remove support for IDEs based on the 2020.2 platform"
46+
} ]
47+
}

.changes/next-release/breaking-5f9208ca-e491-42cb-92c8-613eb716b71d.json

-4
This file was deleted.

.changes/next-release/bugfix-54fae39a-e341-40dd-8e8a-adeb48d683a1.json

-4
This file was deleted.

.changes/next-release/bugfix-7f89fafe-40ed-49d1-8080-3fcbf9af2cf2.json

-4
This file was deleted.

.changes/next-release/bugfix-88ba95cf-352b-4b28-b63b-2e6ebe5a1f74.json

-4
This file was deleted.

.changes/next-release/bugfix-967da0c8-b378-43be-8a38-d7728963e781.json

-4
This file was deleted.

.changes/next-release/bugfix-96ba8fb4-5088-4bbe-9339-9fc3173670fd.json

-4
This file was deleted.

.changes/next-release/bugfix-aa7fdea0-8806-41d3-91f5-633c94850371.json

-4
This file was deleted.

.changes/next-release/bugfix-c62302d6-f1a4-45d9-bafa-2b74c5c5a3e1.json

-4
This file was deleted.

.changes/next-release/bugfix-e5ff8fce-320b-457a-8691-d2741233a658.json

-4
This file was deleted.

.changes/next-release/deprecation-8a9cd1d2-9051-4e01-b94d-c0f52687f411.json

-4
This file was deleted.

.changes/next-release/feature-1f2fc41f-2800-417f-bdf8-e6e43a4fd746.json

-4
This file was deleted.

.changes/next-release/feature-3e486d53-7d87-48ae-9d0a-7b4f791d8690.json

-4
This file was deleted.

.changes/next-release/feature-87aa9237-d630-4af5-85b2-cad72cda61c4.json

-4
This file was deleted.

.changes/next-release/feature-ff5913c0-d68c-4a0e-9bb0-ce112ef6e5b0.json

-4
This file was deleted.

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# _1.28_ (2021-07-12)
2+
- **(Breaking Change)** Python 2.7 Lambda template removed from New Project Wizard
3+
- **(Feature)** Adding the ability to inject credentials/region into existing IntelliJ IDEA and PyCharm Run Configurations (e.g Application, JUnit, Python, PyTest). This requires experiments `aws.feature.javaRunConfigurationExtension` / `aws.feature.pythonRunConfigurationExtension`, see [Enabling Experiments](https://github.com/aws/aws-toolkit-jetbrains/blob/master/README.md#experimental-features)
4+
- **(Feature)** Add support for updating tags during SAM deployment
5+
- **(Feature)** (Experimental) Adding ability to create a local terminal using the currently selected AWS connection (experiment ID `aws.feature.connectedLocalTerminal`, see [Enabling Experiments](https://github.com/aws/aws-toolkit-jetbrains/blob/master/README.md#experimental-features)) [#2151](https://github.com/aws/aws-toolkit-jetbrains/issues/2151)
6+
- **(Feature)** Add support for pulling images from ECR
7+
- **(Bug Fix)** Fix missing text in the View S3 bucket with prefix dialog
8+
- **(Bug Fix)** Improved performance of listing S3 buckets in certain situations
9+
- **(Bug Fix)** Fix copying action in CloudWatch Logs Stream and Event Time providing epoch time instead of displayed value
10+
- **(Bug Fix)** Fix using message bus after project has been closed (Fixes [#2615](https://github.com/aws/aws-toolkit-jetbrains/issues/2615))
11+
- **(Bug Fix)** Fix S3 bucket viewer actions being triggered by short cuts even if it is not focused
12+
- **(Bug Fix)** Don't show Lambda run configuration suggestions on Go test code
13+
- **(Bug Fix)** Fix being unable to create Python 3.8 Image-based Lambdas in New Project wizard
14+
- **(Bug Fix)** Fixed showing templates that were not for Image-based Lambdas when Image is selected in New Project wizard
15+
- **(Deprecation)** An upcoming release will remove support for IDEs based on the 2020.2 platform
16+
117
# _1.27_ (2021-05-24)
218
- **(Feature)** Add support for AppRunner. Create/delete/pause/resume/deploy and view logs for your AppRunner services.
319
- **(Feature)** Add support for building and pushing local images to ECR

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
# Toolkit Version
5-
toolkitVersion=1.28-SNAPSHOT
5+
toolkitVersion=1.28
66

77
# Publish Settings
88
publishToken=

0 commit comments

Comments
 (0)