-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #84 from miggi92/release/v.1.1.0
v1.1.0
- Loading branch information
Showing
132 changed files
with
4,459 additions
and
36,665 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,64 @@ | ||
name: Publish | ||
# Sample workflow for building and deploying a VitePress site to GitHub Pages | ||
# | ||
name: Deploy VitePress site to Pages | ||
|
||
on: | ||
workflow_dispatch: | ||
# Runs on pushes targeting the `main` branch. Change this to `master` if you're | ||
# using the `master` branch as the default branch. | ||
push: | ||
branches: | ||
- main | ||
- master | ||
paths: | ||
- 'README.md' | ||
- 'overrides/**' | ||
- 'docs/**' | ||
- 'mkdocs.yml' | ||
- 'requirements.txt' | ||
branches: [master] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | ||
permissions: | ||
contents: write | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | ||
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | ||
concurrency: | ||
group: pages | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
# Build job | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 # Not needed if lastUpdated is not enabled | ||
- uses: pnpm/action-setup@v3 # Uncomment this if you're using pnpm | ||
# - uses: oven-sh/setup-bun@v1 # Uncomment this if you're using Bun | ||
- name: Setup Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: pnpm # or pnpm / yarn | ||
- name: Setup Pages | ||
uses: actions/configure-pages@v4 | ||
- name: Install dependencies | ||
run: pnpm install # or pnpm install / yarn install / bun install | ||
- name: Build with VitePress | ||
run: pnpm docs:build # or pnpm docs:build / yarn docs:build / bun run docs:build | ||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
path: docs/.vitepress/dist | ||
|
||
# Deployment job | ||
deploy: | ||
uses: ObsidianPublisher/actions/.github/workflows/deploy.yml@main | ||
with: | ||
GENERATE_GRAPH: true | ||
secrets: | ||
GH_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
needs: build | ||
runs-on: ubuntu-latest | ||
name: Deploy | ||
steps: | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v4 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# Changelog | ||
|
||
|
||
## v1.1.0...v1.1.0 | ||
|
||
[compare changes](https://github.com/miggi92/odata-fw/compare/v1.1.0...v1.1.0) | ||
|
||
## v1.1.0 | ||
|
||
[compare changes](https://github.com/miggi92/odata-fw/compare/v1.0.1...v1.1.0) | ||
|
||
### 🚀 Enhancements | ||
|
||
- Add method for orderby clause ([0709857](https://github.com/miggi92/odata-fw/commit/0709857)) | ||
- Updated search helps ([543a4e2](https://github.com/miggi92/odata-fw/commit/543a4e2)) | ||
- 🎉 init vitepress ([b7ad8eb](https://github.com/miggi92/odata-fw/commit/b7ad8eb)) | ||
- 📝 updated documentation to fit vitepress ([9d4c481](https://github.com/miggi92/odata-fw/commit/9d4c481)) | ||
- ✨ addede favicon ([1fed57b](https://github.com/miggi92/odata-fw/commit/1fed57b)) | ||
- 🔍️ added seo head ([13f198c](https://github.com/miggi92/odata-fw/commit/13f198c)) | ||
- ✨ added edit button for docs ([fc27580](https://github.com/miggi92/odata-fw/commit/fc27580)) | ||
|
||
### 🩹 Fixes | ||
|
||
- Fixed autofixable lint errors ([f3fe7c8](https://github.com/miggi92/odata-fw/commit/f3fe7c8)) | ||
- 🐛 fixed collapsing not working ([f30f343](https://github.com/miggi92/odata-fw/commit/f30f343)) | ||
- 🚨 fixed existing abaplint errors ([65c9b1e](https://github.com/miggi92/odata-fw/commit/65c9b1e)) | ||
|
||
### 💅 Refactors | ||
|
||
- 🔥 removed mkdocs assets ([3dca5b8](https://github.com/miggi92/odata-fw/commit/3dca5b8)) | ||
- ♻️ changed title to frontmatter ([406819f](https://github.com/miggi92/odata-fw/commit/406819f)) | ||
- ♻️ moved customizing to own section ([c9d6d7f](https://github.com/miggi92/odata-fw/commit/c9d6d7f)) | ||
- ♻️ refactor customizing documentation ([e32410d](https://github.com/miggi92/odata-fw/commit/e32410d)) | ||
- 🔥 removed labeler ([c7d779d](https://github.com/miggi92/odata-fw/commit/c7d779d)) | ||
|
||
### 📖 Documentation | ||
|
||
- 📝 added fixed domain values documentation ([fe21880](https://github.com/miggi92/odata-fw/commit/fe21880)) | ||
- 📝 updated value help documentation ([e0655fa](https://github.com/miggi92/odata-fw/commit/e0655fa)) | ||
|
||
### 🏡 Chore | ||
|
||
- Autopublish 2023-09-06T12:37:27Z ([4d4b8e1](https://github.com/miggi92/odata-fw/commit/4d4b8e1)) | ||
- Autopublish 2023-09-09T00:17:54Z ([f79d6ed](https://github.com/miggi92/odata-fw/commit/f79d6ed)) | ||
- 🙈 removed unused entries in ignore file ([4e6b949](https://github.com/miggi92/odata-fw/commit/4e6b949)) | ||
- 🔧 moved to pnpm ([1831de6](https://github.com/miggi92/odata-fw/commit/1831de6)) | ||
- ➕ added vitepress dep ([5b4a763](https://github.com/miggi92/odata-fw/commit/5b4a763)) | ||
- 🔥 removed mkdocs files ([ea7351f](https://github.com/miggi92/odata-fw/commit/ea7351f)) | ||
- 🙈 ignoring vitepress cache ([51d2d37](https://github.com/miggi92/odata-fw/commit/51d2d37)) | ||
- 🔧 updated vitepress config ([8f89cc9](https://github.com/miggi92/odata-fw/commit/8f89cc9)) | ||
- 🍱 moved assets ([928776c](https://github.com/miggi92/odata-fw/commit/928776c)) | ||
- 📝 updated documentation ([a287bde](https://github.com/miggi92/odata-fw/commit/a287bde)) | ||
- 🔥 removed example link ([f124bc9](https://github.com/miggi92/odata-fw/commit/f124bc9)) | ||
- ♻️ updated assets ([1b3c13e](https://github.com/miggi92/odata-fw/commit/1b3c13e)) | ||
- ⬆️ updated deps ([cf938da](https://github.com/miggi92/odata-fw/commit/cf938da)) | ||
- 🔖 updated version in constant interface for abapgit ([45f0eab](https://github.com/miggi92/odata-fw/commit/45f0eab)) | ||
|
||
### 🤖 CI | ||
|
||
- 👷 updated to vitepress ([008975f](https://github.com/miggi92/odata-fw/commit/008975f)) | ||
|
||
### ❤️ Contributors | ||
|
||
- Miguel ([@mGebAtBechtle](http://github.com/mGebAtBechtle)) | ||
- Jan Fröhlich ([@zanfee](http://github.com/zanfee)) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.