Skip to content

Commit

Permalink
Merge pull request #84 from miggi92/release/v.1.1.0
Browse files Browse the repository at this point in the history
v1.1.0
  • Loading branch information
miggi92 authored Apr 24, 2024
2 parents 2f7fcef + 99e04fd commit 940d5ce
Show file tree
Hide file tree
Showing 132 changed files with 4,459 additions and 36,665 deletions.
2 changes: 1 addition & 1 deletion .abapgit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<item>/overrides</item>
<item>/.github</item>
<item>/.vscode</item>
<item>/requirements.txt</item>
<item>/requirements.txt</item>
</IGNORE>
<VERSION_CONSTANT>zif_odata_constants=&gt;gc_version</VERSION_CONSTANT>
</DATA>
Expand Down
8 changes: 0 additions & 8 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,3 @@ updates:
labels:
- "npm"
- "dependencies"
# Maintain dependencies for pip
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
labels:
- "pip"
- "dependencies"
12 changes: 0 additions & 12 deletions .github/labeler.yml

This file was deleted.

71 changes: 54 additions & 17 deletions .github/workflows/deploy_doc.yml
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
22 changes: 0 additions & 22 deletions .github/workflows/label.yml

This file was deleted.

12 changes: 0 additions & 12 deletions .github/workflows/update_doc_template.yml

This file was deleted.

12 changes: 2 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
# Node artifact files
node_modules/
dist/
package-lock.json

# Compiled Java class files
*.class
Expand Down Expand Up @@ -49,12 +48,5 @@ Thumbs.db
*.mov
*.wmv

# exclude workspace cache
docs/.obsidian/workspace*

# Add below lines to exclude OS settings and caches
docs/.trash/
docs/.DS_Store

# exclude generated files by mkdoc
# docs/assets/graph.html
# vitepress
docs/.vitepress/cache
66 changes: 66 additions & 0 deletions CHANGELOG.md
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))

9 changes: 3 additions & 6 deletions abaplint.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"if_in_if": true,
"inline_data_old_versions": true,
"line_length": {
"length": 120
"length": 150
},
"max_one_statement": true,
"message_exists": true,
Expand Down Expand Up @@ -126,10 +126,7 @@
},
"abapdoc": true,
"prefer_returning_to_exporting": true,
"keep_single_parameter_on_one_line": {
"length": 120,
"severity": "Warning"
},
"keep_single_parameter_on_one_line": false,
"allowed_object_naming": true,
"fully_type_constants": true,
"check_comments": {
Expand All @@ -154,7 +151,7 @@
"try_without_catch": true,
"names_no_dash": true,
"unknown_types": false,
"unused_variables": true,
"unused_variables": false,
"unused_types": true,
"use_bool_expression": true,
"use_line_exists": true,
Expand Down
56 changes: 56 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,62 @@ Legend
+ : added
- : removed

2024-04-25 v1.1.0
🚀 Enhancements

- Add method for orderby clause
- Updated search helps
- 🎉 init vitepress
- 📝 updated documentation to fit vitepress
- ✨ addede favicon
- 🔍️ added seo head
- ✨ added edit button for docs

🩹 Fixes

- Fixed autofixable lint errors
- 🐛 fixed collapsing not working
- 🚨 fixed existing abaplint errors

💅 Refactors

- 🔥 removed mkdocs assets
- ♻️ changed title to frontmatter
- ♻️ moved customizing to own section
- ♻️ refactor customizing documentation
- 🔥 removed labeler

📖 Documentation

- 📝 added fixed domain values documentation
- 📝 updated value help documentation

🏡 Chore

- Autopublish 2023-09-06T12:37:27Z
- Autopublish 2023-09-09T00:17:54Z
- 🙈 removed unused entries in ignore file
- 🔧 moved to pnpm
- ➕ added vitepress dep
- 🔥 removed mkdocs files
- 🙈 ignoring vitepress cache
- 🔧 updated vitepress config
- 🍱 moved assets
- 📝 updated documentation
- 🔥 removed example link
- ♻️ updated assets
- ⬆️ updated deps
- 🔖 updated version in constant interface for abapgit

🤖 CI

- 👷 updated to vitepress

❤️ Contributors

- Miguel
- Jan

2023-05-31 v1.0.1
-------------------
+ create deep entity customizing (#9)
Expand Down
6 changes: 0 additions & 6 deletions docs/.obsidian/app.json

This file was deleted.

4 changes: 0 additions & 4 deletions docs/.obsidian/appearance.json

This file was deleted.

4 changes: 0 additions & 4 deletions docs/.obsidian/community-plugins.json

This file was deleted.

30 changes: 0 additions & 30 deletions docs/.obsidian/core-plugins-migration.json

This file was deleted.

Loading

0 comments on commit 940d5ce

Please sign in to comment.