Skip to content

Commit 267117b

Browse files
Bump axios from 1.11.0 to 1.12.2 (#111)
* Bump axios from 1.11.0 to 1.12.2 Bumps [axios](https://github.com/axios/axios) from 1.11.0 to 1.12.2. - [Release notes](https://github.com/axios/axios/releases) - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md) - [Commits](axios/axios@v1.11.0...v1.12.2) --- updated-dependencies: - dependency-name: axios dependency-version: 1.12.2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * improve error handling --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Botond Gal <[email protected]>
1 parent 7aa4a9a commit 267117b

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

bun.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@scalar/api-reference-react": "^0.7.45",
1414
"@tailwindcss/postcss": "^4.1.13",
1515
"@types/semver": "^7.7.1",
16-
"axios": "^1.9.0",
16+
"axios": "^1.12.2",
1717
"clsx": "^2.0.0",
1818
"docusaurus-lunr-search": "^3.6.0",
1919
"postcss": "^8.5.3",
@@ -941,7 +941,7 @@
941941

942942
"autoprefixer": ["[email protected]", "", { "dependencies": { "browserslist": "^4.24.4", "caniuse-lite": "^1.0.30001702", "fraction.js": "^4.3.7", "normalize-range": "^0.1.2", "picocolors": "^1.1.1", "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.1.0" }, "bin": { "autoprefixer": "bin/autoprefixer" } }, "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ=="],
943943

944-
"axios": ["axios@1.11.0", "", { "dependencies": { "follow-redirects": "^1.15.6", "form-data": "^4.0.4", "proxy-from-env": "^1.1.0" } }, "sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA=="],
944+
"axios": ["axios@1.12.2", "", { "dependencies": { "follow-redirects": "^1.15.6", "form-data": "^4.0.4", "proxy-from-env": "^1.1.0" } }, "sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw=="],
945945

946946
"babel-loader": ["[email protected]", "", { "dependencies": { "find-cache-dir": "^4.0.0", "schema-utils": "^4.0.0" }, "peerDependencies": { "@babel/core": "^7.12.0", "webpack": ">=5" } }, "sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA=="],
947947

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"@scalar/api-reference-react": "^0.7.45",
2929
"@tailwindcss/postcss": "^4.1.13",
3030
"@types/semver": "^7.7.1",
31-
"axios": "^1.9.0",
31+
"axios": "^1.12.2",
3232
"clsx": "^2.0.0",
3333
"docusaurus-lunr-search": "^3.6.0",
3434
"postcss": "^8.5.3",

scripts/create-release-notes.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function increaseHeadlineLevel(body) {
1919

2020
gitHubClient.get('/repos/metal-stack/releases/releases')
2121
.then(function(response) {
22-
const releases= response.data
22+
const releases = response.data
2323

2424
for(let i= 0; i< releases.length; i++ ) {
2525

@@ -37,5 +37,8 @@ gitHubClient.get('/repos/metal-stack/releases/releases')
3737
fs.writeFileSync(filePath, frontmatter + "\n# " + releases[i].name + "\n" + ghLink + "\n" + increaseHeadlineLevel(releases[i].body))
3838
}
3939
}
40-
}
41-
)
40+
})
41+
.catch(function (error) {
42+
console.log(error.response.data)
43+
})
44+

0 commit comments

Comments
 (0)