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: Multiple features and fixes for version 2.0.0 #56

Merged
merged 46 commits into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
4577b01
Updated documentation for using the library.
nathanagood Feb 28, 2024
f1b47d3
Merge pull request #39 from cloud-native-toolkit/feature/improve-docu…
nathanagood Feb 28, 2024
9432ed3
Added documentation for testing pipelines created from library.
nathanagood Feb 28, 2024
317865e
Updated API.md documentation from build
nathanagood Feb 28, 2024
5b7e626
Merge pull request #40 from cloud-native-toolkit/feature/add-testing-…
nathanagood Feb 28, 2024
a323644
WIP: adding parameters at the pipeline level and references
nathanagood Jun 5, 2024
b1dc25e
deprecated withName and made name property reference logical ids. WIP…
snehajais22 Jun 6, 2024
a20fb1b
Pipeline-level parameters and references from tasks. deprecate withNa…
snehajais22 Jun 6, 2024
5cb9677
Updated unit tests to reflect new feature
snehajais22 Jun 6, 2024
f3b1f9a
Bumped version of jsii to current supported version as other was EOL
nathanagood Jun 7, 2024
767b4d3
Fix build errors and modularizing
snehajais22 Jun 7, 2024
1100e37
Update builder tests and snapshots
snehajais22 Jun 7, 2024
9e342be
Merge with remote
snehajais22 Jun 7, 2024
59f5cc4
API markdown updates
snehajais22 Jun 7, 2024
bdcc9dc
Merge pull request #46 from cloud-native-toolkit/feature/42-pipeline-…
nathanagood Jun 11, 2024
7af13a2
Clarify id and name properties of builders
snehajais22 Jun 12, 2024
2fa7d06
Merge new feature from develop
snehajais22 Jun 12, 2024
e215411
Update builder unit tests
snehajais22 Jun 12, 2024
e1e133d
Check task names are unique in pipeline, with updated tests
snehajais22 Jun 14, 2024
46b22ff
Merge pull request #47 from cloud-native-toolkit/fix/id-name-redundancy
nathanagood Jun 17, 2024
362ff21
Include specifyRunAfter functionality for tasks in pipeline
snehajais22 Jun 19, 2024
aa78047
Simplify implementation of Task name default behavior
snehajais22 Jun 19, 2024
96f71fc
Unit tests for specifyRunAfter
snehajais22 Jun 19, 2024
862bce4
Merge pull request #48 from cloud-native-toolkit/feature/44-specify-r…
snehajais22 Jul 10, 2024
5cc33a9
Merge pull request #48 from cloud-native-toolkit/feature/44-specify-r…
snehajais22 Jul 10, 2024
ed3c7b5
Add referencingTask method to TaskBuilder
snehajais22 Jul 10, 2024
32c8ec8
Merge pull request #49 from cloud-native-toolkit/fix/id-name-redundancy
snehajais22 Jul 16, 2024
dbdb089
feature: using resolvers to specify remote tasks in taskRef field
snehajais22 Jul 18, 2024
0f960e0
Update documentation for new feature
snehajais22 Jul 19, 2024
a4646b3
Added unit tests for src code coverage
snehajais22 Jul 22, 2024
94dd5cb
Merge pull request #51 from cloud-native-toolkit/feature/50-remote-re…
snehajais22 Jul 29, 2024
9ca77d5
Merge branch 'develop' into fix/coverage-tests
snehajais22 Jul 29, 2024
62e77f4
Merge pull request #52 from cloud-native-toolkit/fix/coverage-tests
snehajais22 Jul 29, 2024
93c40f3
Update Remote Resolver structure and add to PipelineRunBuilder
snehajais22 Jul 31, 2024
3f7079d
Unit tests and updated docs
snehajais22 Jul 31, 2024
dfe3f2d
Basic TaskRunBuilder class
snehajais22 Aug 6, 2024
2aadcb1
Merge pull request #53 from cloud-native-toolkit/feature/50-remote-re…
snehajais22 Aug 7, 2024
0af675f
Merging remote resolvers from develop branch
snehajais22 Aug 7, 2024
3bdd366
Remote Resolvers in TaskRuns
snehajais22 Aug 7, 2024
6c59e63
TaskRun unit tests & documentation
snehajais22 Aug 7, 2024
1fc54a3
Update default TaskRun serviceAccountName
snehajais22 Aug 7, 2024
a82a4b2
Updated code examples in docs and method specs
snehajais22 Aug 9, 2024
900432e
Minor fixes to example code
snehajais22 Aug 9, 2024
8dcb096
Merge pull request #54 from cloud-native-toolkit/feature/taskrun-builder
snehajais22 Aug 12, 2024
9108791
Merge pull request #55 from cloud-native-toolkit/feature/update-docs
snehajais22 Aug 12, 2024
cc28540
Bump to Major version release
snehajais22 Aug 13, 2024
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
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.

3 changes: 2 additions & 1 deletion .projen/tasks.json

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

3 changes: 2 additions & 1 deletion .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const project = new cdk8s.ConstructLibraryCdk8s({
author: 'Nathan Good',
authorAddress: '[email protected]',
cdk8sVersion: '2.68.30',
jsiiVersion: '~5.2.0',
jsiiVersion: '~5.4.0',
workflowNodeVersion: '18.x',
projenrcTs: true,
peerDeps: [
Expand All @@ -26,6 +26,7 @@ const project = new cdk8s.ConstructLibraryCdk8s({
gitignore: [
'.idea/',
],
minMajorVersion: 2,
// deps: [], /* Runtime dependencies of this module. */
// description: undefined, /* The description is just a string that helps people understand the purpose of the package. */
// devDeps: [], /* Build dependencies for this module. */
Expand Down
Loading
Loading