Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
40be365
Change so that parameter-overrides is allow to use native yaml for gi…
egut Feb 27, 2025
75f1a51
Allow tags to be yaml-object both key: value pair and {key: name, val…
egut Feb 27, 2025
65d3429
fix some types
egut Feb 27, 2025
74ca08c
Ensure that all tests and test coverage pass
egut Feb 27, 2025
ca078ce
Updated the doc to reflect the changes
egut Feb 27, 2025
110271b
Removed uneeded code
egut Feb 27, 2025
42bae4f
Updated dist package too
egut Feb 28, 2025
05d4523
Updated actions to allow the new format
egut Feb 28, 2025
6b384b9
Realize that GitHub Action requires string values for there parameter…
egut Feb 28, 2025
41545b7
Added change-set-description parameter
Apr 17, 2025
333104c
Added support for output format yaml
Apr 17, 2025
13f303f
Added exponetial backoff when we get an Rate exceeded exception
Apr 17, 2025
09c3cf7
minor update to trigger actions
Apr 17, 2025
2fcf4b8
(chore) updating dist
Apr 17, 2025
94fa58a
Updated change log
Apr 17, 2025
0d0d830
code improvments
Apr 22, 2025
b8075e9
Change so that parameter-overrides is allow to use native yaml for gi…
egut Feb 27, 2025
fba5cb1
Allow tags to be yaml-object both key: value pair and {key: name, val…
egut Feb 27, 2025
6c7a5e2
fix some types
egut Feb 27, 2025
933c93b
Ensure that all tests and test coverage pass
egut Feb 27, 2025
06fb490
Updated the doc to reflect the changes
egut Feb 27, 2025
2dfd682
Removed uneeded code
egut Feb 27, 2025
af86688
Updated dist package too
egut Feb 28, 2025
10def31
Updated actions to allow the new format
egut Feb 28, 2025
65ed2a5
Realize that GitHub Action requires string values for there parameter…
egut Feb 28, 2025
689fcf7
Added change-set-description parameter
Apr 17, 2025
c63eb7a
Added support for output format yaml
Apr 17, 2025
704f851
Added exponetial backoff when we get an Rate exceeded exception
Apr 17, 2025
d60f92b
minor update to trigger actions
Apr 17, 2025
a44463f
(chore) updating dist
Apr 17, 2025
fe91a9f
Updated change log
Apr 17, 2025
3a2a2a5
code improvments
Apr 22, 2025
56c3200
Merge branch 'aws-actions-master'
Jan 8, 2026
5051df3
(chore) updating dist
Jan 8, 2026
d446ec6
Added trunk and kiro stearing docs
Jan 7, 2026
735fdd2
Update trunk
Jan 7, 2026
dc6f473
Added event streaming to cloudformatiion deployment
Jan 7, 2026
4dbb428
Added steam events when cloudformaitons are deployed
Jan 7, 2026
c5b3312
Fix lint and coding style issues
Jan 7, 2026
86619cf
Added more tests
Jan 8, 2026
82fd006
Added more test
Jan 8, 2026
3560c80
docs: add comprehensive documentation for event streaming feature
Jan 8, 2026
e2478dc
Rebuild
Jan 8, 2026
e735e39
Removed trunk dirs
Jan 8, 2026
780c054
Removed trunk dirs
Jan 8, 2026
0467e1f
New pack file
Jan 8, 2026
7cbdb4b
Some fixes and improved testing
Jan 8, 2026
0fbf42a
Update tests
Jan 8, 2026
21d2547
feat: enhance empty changeset notifications with clear user feedback
Jan 8, 2026
757d8bd
fix: improve event streaming UX by removing misleading warnings and a…
Jan 8, 2026
e950a14
Fix event streaming UX issues and improve test coverage
Jan 8, 2026
638678b
Achieve exceptional test coverage with comprehensive edge case testing
Jan 8, 2026
fb1d77a
Merge pull request #2 from egut/feature/cloudformation_events
egut Jan 9, 2026
06c4907
Correcet permissions in github actions
Jan 9, 2026
f855fc3
Merge pull request #3 from egut/feature/cloudformation_events
egut Jan 9, 2026
af03bc0
(chore) updating dist
Jan 9, 2026
d199c38
Update changelog
Jan 9, 2026
96fcba5
Merge pull request #4 from egut/feature/cloudformation_events
egut Jan 9, 2026
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
Binary file added .coverage
Binary file not shown.
10 changes: 5 additions & 5 deletions .dependabot/config.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
version: 1
update_configs:
- package_manager: "javascript"
directory: "/"
update_schedule: "monthly"
- package_manager: 'javascript'
directory: '/'
update_schedule: 'monthly'
automerged_updates:
- match:
dependency_type: "all"
update_type: "semver:minor"
dependency_type: 'all'
update_type: 'semver:minor'
5 changes: 2 additions & 3 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
*Issue #, if available:*

*Description of changes:*
_Issue #, if available:_

_Description of changes:_

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
11 changes: 7 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ master ]
branches: [master]

name: Check

permissions:
contents: read

jobs:
check:
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@master
- name: Use Node.js 20.x
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Run tests
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@ on:

name: Package

permissions:
contents: write

jobs:
check:
name: Package distribution file
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@master
with:
ref: master
- name: Package
Expand Down
14 changes: 10 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
---
on:
push:
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
# Push events to matching v*, i.e. v1.0, v20.15.10
- v*

name: Create Release

permissions:
contents: write

jobs:
build:
name: Create Release
Expand All @@ -16,11 +21,12 @@ jobs:
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
# This token is provided by Actions, you do not need to create your own token
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
See the CHANGELOG for more details on the release.
draft: false
prerelease: false
prerelease: false
Loading