-
Notifications
You must be signed in to change notification settings - Fork 10
chore: prep next release #196
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,10 +19,10 @@ jobs: | |
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
node-version: 20 | ||
registry-url: https://registry.npmjs.org/ | ||
- run: npm i | ||
- run: npm test | ||
# - run: npm i | ||
# - run: npm test | ||
- name: get-version | ||
id: package-version | ||
uses: martinbeentjes/[email protected] | ||
|
@@ -36,6 +36,6 @@ jobs: | |
with: | ||
tag: 'v${{ steps.package-version.outputs.current-version }}' | ||
body: '${{ steps.parse-changelog.outputs.body }}' | ||
- run: npm publish --access public | ||
- run: npm publish --access public --tag next | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.npm_token}} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@cap-js/graphql", | ||
"version": "0.12.0", | ||
"version": "0.13.0", | ||
"description": "CDS protocol adapter for GraphQL", | ||
"keywords": [ | ||
"CAP", | ||
|
@@ -9,7 +9,10 @@ | |
], | ||
"author": "SAP SE (https://www.sap.com)", | ||
"license": "Apache-2.0", | ||
"repository": "cap-js/graphql", | ||
"repository": { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. FYI, the (see here for more details: https://docs.npmjs.com/cli/v11/configuring-npm/package-json#repository) |
||
"type": "git", | ||
"url": "git+https://github.com/cap-js/graphql.git" | ||
}, | ||
"homepage": "https://cap.cloud.sap/", | ||
"main": "index.js", | ||
"files": [ | ||
|
@@ -22,7 +25,7 @@ | |
"LICENSE" | ||
], | ||
"engines": { | ||
"node": ">=16" | ||
"node": ">=20" | ||
}, | ||
"scripts": { | ||
"prettier": "npm_config_yes=true npx prettier@latest --write app lib test", | ||
|
@@ -36,11 +39,11 @@ | |
"graphql-http": "^1.18.0" | ||
}, | ||
"peerDependencies": { | ||
"@sap/cds": ">=7.8" | ||
"@sap/cds": ">=9" | ||
}, | ||
"devDependencies": { | ||
"@cap-js/graphql": "file:.", | ||
"@cap-js/sqlite": "^1", | ||
"@cap-js/sqlite": ">=1", | ||
"axios": "^1", | ||
"express": "^4.17.1", | ||
"jest": "^29.3.1", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Version 0.12.0 has not been released yet