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

chore(version): Bump version 1.6.0 #4015

Merged
merged 36 commits into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
ad625be
fix(smithy_aws)!: do not sign optional requests
Jordan-Nelson Aug 31, 2023
54d2ba6
chore: remove mock state machine from test
Jordan-Nelson Aug 31, 2023
0811f4b
fix(auth): use loadCredentials to check login state
Jordan-Nelson Aug 31, 2023
4e3eda4
fix(authenticator): use getCurrentUser to check sign in state
Jordan-Nelson Jun 10, 2023
7b42b3f
chore: update comment
Jordan-Nelson Sep 20, 2023
ca185de
chore: update test
Jordan-Nelson Sep 21, 2023
55e4481
refactor(ci): Allow region split (#3708)
dnys1 Sep 25, 2023
53e33bc
fix(aft): removed 'has-goldens' check from dart_vm.yaml workflows (#3…
Equartey Sep 25, 2023
1210409
chore(repo): Fix line endings (#3825)
dnys1 Sep 26, 2023
3eab90a
chore(repo): Merge missing version updates (#3839)
dnys1 Sep 26, 2023
776bf57
fix(authenticator): Beta channel fixes (#3835)
Equartey Sep 27, 2023
411e633
fix(aft): Small fixes (#3838)
dnys1 Sep 28, 2023
b99f590
chore(repo): Pin `drift_dev` (#3855)
dnys1 Sep 28, 2023
9550ef3
chore(docs): Pin `code_excerpter` (#3808)
dnys1 Sep 29, 2023
40dacd2
feat: rename sendUserAttributeVerificationCode (#3759)
Jordan-Nelson Oct 2, 2023
1887a7a
fix(analytics): allow nullable userProfile
Aug 29, 2023
63b5e1f
chore(repo): Update actions codegen for dart ^3.2.0-150.0.dev
Sep 26, 2023
b7a6976
chore(repo): Dials scheduled GH Actions to 1x/day (#3891)
haverchuck Oct 4, 2023
3b0505d
chore(repo): third party notice (#3904)
haverchuck Oct 5, 2023
ff5dcb8
chore(repo): dependency reviewer github action
Oct 6, 2023
37acdbb
chore(repo): review CW metric logging
Oct 6, 2023
149ad68
chore(repo): Expand CW Metric logging to all tests (#3912)
fjnoyp Oct 10, 2023
1eb2382
chore(repo): excludes flutter/dart sdk beta testing on PRs (#3928)
haverchuck Oct 10, 2023
47cae6d
chore: increase upper bound for connectivity_plus (#3930)
Jordan-Nelson Oct 11, 2023
3d2e10a
fix(repo): empty matrix job id and secrets typo
fjnoyp Oct 11, 2023
10f9298
fix(authenticator): fix validate before trim bug (#3809)
khatruong2009 Oct 17, 2023
d8f473c
fix(repo): Schedule workflows at 6 am PST (#3946)
fjnoyp Oct 17, 2023
91ab21f
fix(smithy): defines Output type to fix beta tests (#3963)
haverchuck Oct 18, 2023
f2563bd
chore(repo): simplify cw reporting (#3964)
fjnoyp Oct 18, 2023
c984e3c
chore(deps-dev): Bump @babel/traverse from 7.22.15 to 7.23.2 in /infr…
dependabot[bot] Oct 20, 2023
7c641bf
fix: remove exception during token timeout (#3939)
Jordan-Nelson Oct 20, 2023
922e0d9
fix(pub): ignore templates folder during analysis (#4009)
Equartey Oct 26, 2023
36fd2e2
fix(aft): Don't write changelog updates if version was not bumped.
Aug 17, 2023
d3fbeee
chore(version): Bump version
Equartey Oct 26, 2023
3d49b48
fix: slide smithy_codegen window
Equartey Oct 30, 2023
79a2a19
chore: fix flaky api e2e test (#4017)
Jordan-Nelson Oct 27, 2023
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
11,000 changes: 8,963 additions & 2,037 deletions .github/composite_actions/launch_android_emulator/dist/index.mjs

Large diffs are not rendered by default.

863 changes: 439 additions & 424 deletions .github/composite_actions/launch_android_emulator/dist/main.cjs

Large diffs are not rendered by default.

Large diffs are not rendered by default.

11,000 changes: 8,963 additions & 2,037 deletions .github/composite_actions/launch_ios_simulator/dist/index.mjs

Large diffs are not rendered by default.

1,531 changes: 773 additions & 758 deletions .github/composite_actions/launch_ios_simulator/dist/main.cjs

Large diffs are not rendered by default.

Large diffs are not rendered by default.

52 changes: 52 additions & 0 deletions .github/composite_actions/log_cw_metric/action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Log CW Metric
description: Logs a metric to Cloudwatch.
inputs:
# For getting failing step
job-status:
description: Used to determine if we track success or failure.
required: true
# Temporarily ignored - see comments for failingStep in log_cw_metric.dart
github-token:
required: true
description: Github token for requesting failing steps.
working-directory:
description: The working directory relative to the repo root.
required: true
matrix:
description: The matrix of the workflow

# Global Metric Dimensions
metric-name:
description: Name of the metric to track in Cloudwatch.
required: true
test-type:
description: canary, integration, unit testType.
required: true

# FlutterDart Workflows Metric Dimensions
framework:
description: flutter, dart.
required: false
flutter-dart-channel:
description: beta, stable.
required: false
dart-version:
description: 3, 2.19, 2.18, etc.
required: false
flutter-version:
description: 3.10.6, 3.10.5, etc.
required: false
dart-compiler:
description: dart2js, ddc, dart, dart2wasm.
required: false

# Platform Workflows Metric Dimensions
platform:
description: android, ios, web, linux, windows.
required: false
platform-version:
description: ios-14.5, ios-16, android-25-x86, etc.
required: false
runs:
using: "node16"
main: "dist/index.mjs"
Loading