Skip to content

Commit dbaa2dc

Browse files
authored
add agent file for the bulk CDK (#64903)
1 parent 54978dd commit dbaa2dc

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

airbyte-cdk/bulk/AGENT.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
When root is mentioned, it refers to this [folder](../..)
2+
</br>
3+
When module is mentioned, it refers to this [folder](.)
4+
5+
- The preferred language is kotlin
6+
- kotlin is the only language that we need to use
7+
- we are using gradle to build the module
8+
- we are using git for version control
9+
- The module is using the following frameworks
10+
- micronaut for dependency ingestion
11+
- mockk for mocking
12+
- we use the coroutine and the coroutine's flow for task execution
13+
- the way to test if the module compiles is by running the gradle command `assemble`
14+
- the way to run the test is by running the gradle command `test`
15+
- the file [README.md](README.md) contains additional information
16+
- When doing a modification to the module we need to:
17+
- update the file [build.gradle](build.gradle) where we need to bump the version. The version has a SemVer format and we need to increase the patch version
18+
- update the [changelog.md](changelog.md) where we need to add a description for the new version
19+
- If the version has already been bumped on the local branch, we shouldn't bump it again
20+
- We format our code by running the command `pre-commit run --all-files` from the root of the project
21+
22+
When you are done with a change always run the format and update the changelog if needed.

airbyte-cdk/bulk/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import javax.xml.xpath.XPathFactory
66
import org.w3c.dom.Document
77

88
allprojects {
9-
version = "0.1.13"
9+
version = "0.1.14"
1010
apply plugin: 'java-library'
1111
apply plugin: 'maven-publish'
1212

airbyte-cdk/bulk/changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Version 0.1.14
2+
3+
* **Changed:** Add agent.
4+
15
## Version 0.1.13
26

37
**Load CDK**

0 commit comments

Comments
 (0)