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(lambda,event-bridge): lambda event sources #179

Merged
merged 58 commits into from
Jun 11, 2022
Merged
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
e99cca9
chore: update rule name
thantos May 26, 2022
22e4057
feat(EventBus): schedule, whenAny, rename, when without scope
thantos May 27, 2022
242f086
chore: update repo reference
thantos May 28, 2022
49a0eb1
Merge branch 'main' into event_bus_v2_2
thantos May 29, 2022
240d94e
fix: change whenAny to all
thantos May 29, 2022
0b9bd85
feat: event bridge docs
thantos May 29, 2022
811d000
Merge branch 'main' into event_bus_v2_2
thantos May 29, 2022
81a6edc
Merge branch 'main' into event_bus_v2_2
thantos May 30, 2022
062ba3e
fix: feedback
thantos May 30, 2022
50f0c3d
feat: breaking change: update bus invocation to putEvents method
thantos May 31, 2022
0e187f5
feat: rename EventBusEvent interface to Event
thantos May 31, 2022
2e73a83
feat: more docs
thantos May 31, 2022
bd92146
feat: pipe escape hatch and escape hatch docs
thantos May 31, 2022
f3c4c12
feat(lambda,step-functions,event-bridge): event sources
thantos May 31, 2022
b40fe5e
fix: sussman is bad at spelling
thantos May 31, 2022
b644d08
feat: lambda event sources
thantos May 31, 2022
bb88954
Merge branch 'event_bus_v2_2' into event_source_2
thantos May 31, 2022
be9f3fa
fix: add missing ids to when statements
thantos Jun 1, 2022
b5b449f
Merge branch 'event_bus_v2_2' into event_source_2
thantos Jun 1, 2022
d8223ae
fix: failing test-app
thantos Jun 1, 2022
63550ff
feat: tests
thantos Jun 1, 2022
84f8889
feat: configure async
thantos Jun 1, 2022
96d3998
feat: comments
thantos Jun 1, 2022
fcb8edb
chore: docs
thantos Jun 1, 2022
415b37b
fix: feedback
thantos Jun 1, 2022
e814f3f
Merge branch 'event_bus_v2_2' into event_source_2
thantos Jun 1, 2022
0168cee
fix: explicitly make EventBus event parameter as contra-variant (#185)
Jun 1, 2022
64dc91b
fix: feedback
thantos Jun 2, 2022
2c404f7
chore: eslint explitit accessibility
thantos Jun 2, 2022
40e3ad1
fix: eslint
thantos Jun 2, 2022
414b83d
Merge branch 'main' into event_source_2
thantos Jun 2, 2022
83fc9d5
adding lint-staged back
thantos Jun 2, 2022
259c0ab
fix: upgrade typescript for website
thantos Jun 2, 2022
bebeeb6
fix: function links in docs
thantos Jun 2, 2022
cc1c31f
fix: feedback
thantos Jun 2, 2022
6dd4fb1
Merge branch 'main' into event_source_2
thantos Jun 2, 2022
64d8944
Merge branch 'main' into event_source_2
thantos Jun 5, 2022
1bc5e88
fix: restore lint-staged
thantos Jun 5, 2022
7b0f680
fix: feedback
thantos Jun 5, 2022
fdcc5ff
fix: reduce use of in
thantos Jun 5, 2022
462c40c
chore: self mutation
invalid-email-address Jun 5, 2022
7892478
Merge branch 'main' into event_source_2
thantos Jun 7, 2022
bd37996
Merge branch 'event_source_2' of https://github.com/functionless/func…
thantos Jun 7, 2022
f0ac49c
Merge branch 'main' into event_source_2
thantos Jun 7, 2022
53016f8
Merge branch 'main' into event_source_2
thantos Jun 8, 2022
5a7c076
fix: renaming type params and fixing variance
thantos Jun 8, 2022
4e1fc75
fix: event bus variant coverage
thantos Jun 8, 2022
68be9d4
chore: document event bus types
thantos Jun 8, 2022
f85a60e
chore: function type docs, naming, and variance
thantos Jun 8, 2022
4d59856
Merge branch 'main' into event_source_2
thantos Jun 8, 2022
32c7def
chore: skip lib check test app
thantos Jun 8, 2022
5eb61a8
fix: rename configureAsyncInvoke to enableAsyncInvoke
thantos Jun 8, 2022
406ae98
chore: self mutation
invalid-email-address Jun 8, 2022
761cf5a
formatting
thantos Jun 8, 2022
a19df01
Merge branch 'event_source_2' of https://github.com/functionless/func…
thantos Jun 8, 2022
4bb3260
Merge branch 'main' into event_source_2
thantos Jun 11, 2022
7bf95e0
fix: remove extra type parameters in rules, fix variant labeling
thantos Jun 11, 2022
471e64f
fix: reduce use of covariant types
thantos Jun 11, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 19 additions & 1 deletion .eslintrc.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .projen/deps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 18 additions & 5 deletions .projenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const project = new CustomTypescriptProject({
"constructs@^10.0.0",
"esbuild",
"typesafe-dynamodb@^0.1.5",
"typescript@^4.6.2",
"typescript@^4.7.2",
],
eslintOptions: {
lintProjenRc: true,
Expand Down Expand Up @@ -178,20 +178,33 @@ project.eslint.addRules({
"@typescript-eslint/no-shadow": "off",
"@typescript-eslint/member-ordering": "off",
"brace-style": "off",
"@typescript-eslint/explicit-member-accessibility": "off",
});

/**
* ES Lint parser needs to know about all of the tsconfig files to use.
*/
project.eslint.addOverride({
files: ["*.ts", "*.tsx"],
files: ["*.ts", "*.mts", "*.cts", "*.tsx"],
parserOptions: {
project: [
"./tsconfig.dev.json",
"./test-app/tsconfig.json",
"./website/tsconfig.json",
],
},
rules: {
"@typescript-eslint/explicit-member-accessibility": [
"error",
{
accessibility: "explicit",
overrides: {
accessors: "explicit",
constructors: "no-public",
methods: "explicit",
properties: "off",
parameterProperties: "off",
},
},
],
},
});

project.synth();
4 changes: 2 additions & 2 deletions package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.