Skip to content

Commit

Permalink
Merge branch 'main' into renovate/ktlint-plugin.version
Browse files Browse the repository at this point in the history
  • Loading branch information
anssari1 authored Dec 1, 2024
2 parents 09b6801 + 7579f5b commit 2d17d5c
Show file tree
Hide file tree
Showing 9 changed files with 669 additions and 700 deletions.
17 changes: 17 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Situation
<!-- Describe the background or context leading to this change. Include why this work is needed (e.g., a specific problem, user need, or opportunity). What is the current state or issue that prompted this PR? -->

# Task
<!-- Explain the goal or objective of this change. What specifically needs to be achieved to resolve the situation? Clearly define the scope of the task at hand. -->

# Action
<!-- Summarize the key steps or decisions taken to accomplish the task. Include what changes were made in the codebase, architecture, or process. What actions were implemented to address the task? -->

# Testing
<!-- Describe the testing strategy or approach used to validate the changes. Include any relevant test cases, scenarios, or data used to verify the work. How was the work tested? -->

# Results
<!-- Detail the outcomes of the actions. What improvements or changes have been achieved? Include performance gains, bug fixes, or other tangible outcomes. How will you measure or verify success? -->

# Notes
<!-- Add any additional context or information. This could include things like links to documentation, related issues, related PRs, follow-up tasks, edge cases considered, or potential risks. Any relevant thoughts or clarifications can go here. -->
16 changes: 16 additions & 0 deletions .github/workflows/pr-auto-approve.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Auto First Approval for Bot PRs
on: pull_request

jobs:
auto-first-approve:
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: read
if: github.actor == 'dependabot[bot]' || github.actor == 'renovate[bot]'
steps:
- name: Provide first approval
uses: hmarr/auto-approve-action@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
review-message: "Renovate and Dependabot PRs are automatically approved. Still requires human review."
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.17.0
22.11.0
1,160 changes: 548 additions & 612 deletions core/package-lock.json

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@
"test": "jest"
},
"dependencies": {
"axios": "1.7.7",
"winston": "3.14.2",
"axios": "1.7.8",
"winston": "3.17.0",
"lodash": "4.17.21",
"@types/lodash": "4.17.10",
"@types/lodash": "4.17.13",
"typescript-json-serializer": "6.0.1"
},
"devDependencies": {
"@babel/preset-env": "7.25.7",
"@babel/preset-typescript": "7.25.7",
"@types/jest": "29.5.13",
"axios-mock-adapter": "2.0.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@types/jest": "29.5.14",
"axios-mock-adapter": "2.1.0",
"jest": "29.7.0",
"ts-jest": "29.2.5",
"ts-standard": "12.0.2",
"typescript": "5.6.2"
"typescript": "5.6.3"
}
}
6 changes: 3 additions & 3 deletions generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@
<sdkVersion>0.0.1-SNAPSHOT</sdkVersion>

<!-- Versions -->
<kotlin.version>2.0.20</kotlin.version>
<openapi-generator.version>7.8.0</openapi-generator.version>
<kotlin.version>2.1.0</kotlin.version>
<openapi-generator.version>7.10.0</openapi-generator.version>

<!-- Plugin Versions -->
<exec-maven-plugin.version>3.4.1</exec-maven-plugin.version>
<exec-maven-plugin.version>3.5.0</exec-maven-plugin.version>
<ktlint-plugin.version>3.3.0</ktlint-plugin.version>
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
<maven-jar-plugin.version>3.4.2</maven-jar-plugin.version>
Expand Down
12 changes: 6 additions & 6 deletions generator/src/main/resources/dependencies/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
"access": "public"
},
"dependencies": {
"@types/node": "22.7.4",
"@types/node": "22.10.1",
"@types/uuid": "10.0.0",
"uuid": "10.0.0",
"uuid": "11.0.3",
"typescript-json-serializer": "6.0.1"
},
"devDependencies": {
"prettier": "3.3.3",
"prettier": "3.4.1",
"prettier-plugin-organize-imports": "4.1.0",
"typedoc": "0.26.7",
"typedoc-plugin-markdown": "4.2.9",
"typedoc-plugin-missing-exports": "3.0.0"
"typedoc": "0.26.11",
"typedoc-plugin-markdown": "4.2.10",
"typedoc-plugin-missing-exports": "3.1.0"
}
}
132 changes: 66 additions & 66 deletions package-lock.json

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

Loading

0 comments on commit 2d17d5c

Please sign in to comment.