Skip to content

Commit

Permalink
Merge branch 'master' into feature-user-settings
Browse files Browse the repository at this point in the history
* master:
  release-v1.7.0 (#1759)
  CM fixes (#1755)
  changes for night build (#1757)
  Feature angular supporting library (#1756)
  Website security (#1742)
  fixed case sensitivity issue in luigi element
  Feature wc support (#1751)
  • Loading branch information
JohannesDoberer committed Dec 8, 2020
2 parents b2f4026 + d5eeb8a commit fb7d89f
Show file tree
Hide file tree
Showing 87 changed files with 18,143 additions and 955 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ cache:
- $TRAVIS_BUILD_DIR/test/e2e-test-application/externalMf
- $TRAVIS_BUILD_DIR/website/fiddle/public
- $TRAVIS_BUILD_DIR/cypress-binary-cache
- $TRAVIS_BUILD_DIR/client-frameworks-support/client-support-angular
- $HOME/.cache/Cypress
notifications:
slack:
Expand Down Expand Up @@ -70,6 +71,9 @@ jobs:
- rm -rf $TRAVIS_BUILD_DIR/test/e2e-test-application/node_modules/@luigi-project/*
- ln -s $TRAVIS_BUILD_DIR/core/public $TRAVIS_BUILD_DIR/test/e2e-test-application/node_modules/@luigi-project/core
- ln -s $TRAVIS_BUILD_DIR/client/public $TRAVIS_BUILD_DIR/test/e2e-test-application/node_modules/@luigi-project/client
- mkdir -p $TRAVIS_BUILD_DIR/client-frameworks-support/client-support-angular/node_modules/@luigi-project/
- rm -rf $TRAVIS_BUILD_DIR/client-frameworks-support/client-support-angular/node_modules/@luigi-project/*
- ln -s $TRAVIS_BUILD_DIR/client/public $TRAVIS_BUILD_DIR/client-frameworks-support/client-support-angular/node_modules/@luigi-project/client
- ln -s $TRAVIS_BUILD_DIR/plugins/auth/public/auth-oauth2 $TRAVIS_BUILD_DIR/test/e2e-test-application/node_modules/@luigi-project/plugin-auth-oauth2
- ln -s $TRAVIS_BUILD_DIR/plugins/auth/public/auth-oidc $TRAVIS_BUILD_DIR/test/e2e-test-application/node_modules/@luigi-project/plugin-auth-oidc
# Link fiddle manually:
Expand Down
31 changes: 31 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "test core",
"request": "launch",
"runtimeArgs": [
"run-script",
"test"
],
"cwd": "${workspaceFolder}/core",
"runtimeExecutable": "npm",
"skipFiles": [
"<node_internals>/**"
],
"type": "node"
},{
"name": "test core -watch",
"request": "launch",
"runtimeArgs": [
"run-script",
"test:watch"
],
"cwd": "${workspaceFolder}/core",
"runtimeExecutable": "npm",
"skipFiles": [
"<node_internals>/**"
],
"type": "node"
}]
}
21 changes: 20 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,24 @@ The lerna-changelog tool detects changes based on PR labels and maps them to sec
-->


## v1.7.0 (2020-12-04)

#### :rocket: Added
* [#1756](https://github.com/SAP/luigi/pull/1756) Feature - Angular supporting library ([@legteodav](https://github.com/legteodav))
* [#1751](https://github.com/SAP/luigi/pull/1751) Feature - WebComponents support ([@hardl](https://github.com/hardl))

#### :bug: Fixed
* [#1720](https://github.com/SAP/luigi/pull/1720) Fix `withoutSync()` history behaviour ([@andrei-scripcaru](https://github.com/andrei-scripcaru))

#### :house: Internal
* [#1734](https://github.com/SAP/luigi/pull/1734) Documentation website using Luigi.globalSearch() API (#1690) ([@legteodav](https://github.com/legteodav))







## [v1.6.0] (2020-11-25)

#### :rocket: Added
Expand Down Expand Up @@ -891,4 +909,5 @@ The lerna-changelog tool detects changes based on PR labels and maps them to sec
[v1.3.1]: https://github.com/SAP/luigi/compare/v1.3.0...v1.3.1
[v1.4.0]: https://github.com/SAP/luigi/compare/v1.3.1...v1.4.0
[v1.5.0]: https://github.com/SAP/luigi/compare/v1.4.0...v1.5.0
[v1.6.0]: https://github.com/SAP/luigi/compare/v1.5.0...v1.6.0
[v1.6.0]: https://github.com/SAP/luigi/compare/v1.5.0...v1.6.0
[v1.7.0]: https://github.com/SAP/luigi/compare/v1.6.0...v1.7.0
16 changes: 16 additions & 0 deletions client-frameworks-support/client-support-angular/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Editor configuration, see https://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.ts]
quote_type = single

[*.md]
max_line_length = off
trim_trailing_whitespace = false
46 changes: 46 additions & 0 deletions client-frameworks-support/client-support-angular/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

# compiled output
/dist
/tmp
/out-tsc
# Only exists if Bazel was run
/bazel-out

# dependencies
/node_modules

# profiling files
chrome-profiler-events*.json
speed-measure-plugin*.json

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*

# misc
/.sass-cache
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings

# System Files
.DS_Store
Thumbs.db
27 changes: 27 additions & 0 deletions client-frameworks-support/client-support-angular/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# ClientSupportAngular

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 11.0.1.

## Development server

Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.

## Code scaffolding

Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.

## Build

Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build.

## Running unit tests

Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).

## Running end-to-end tests

Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/).

## Further help

To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
49 changes: 49 additions & 0 deletions client-frameworks-support/client-support-angular/angular.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"client-support-angular": {
"projectType": "library",
"root": "projects/client-support-angular",
"sourceRoot": "projects/client-support-angular/src",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "projects/client-support-angular/tsconfig.lib.json",
"project": "projects/client-support-angular/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/client-support-angular/tsconfig.lib.prod.json"
}
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/client-support-angular/src/test.ts",
"tsConfig": "projects/client-support-angular/tsconfig.spec.json",
"karmaConfig": "projects/client-support-angular/karma.conf.js"
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"projects/client-support-angular/tsconfig.lib.json",
"projects/client-support-angular/tsconfig.spec.json"
],
"exclude": ["**/node_modules/**"]
}
}
}
}
},
"defaultProject": "client-support-angular",
"cli": {
"analytics": false
}
}
Loading

0 comments on commit fb7d89f

Please sign in to comment.