Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: UI5/linter
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.1.3
Choose a base ref
...
head repository: UI5/linter
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.2.0
Choose a head ref
  • 13 commits
  • 30 files changed
  • 7 contributors

Commits on Mar 20, 2024

  1. Configuration menu
    Copy the full SHA
    4c4130b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d313912 View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2024

  1. fix: Update list of deprecated libs (#42)

    - Sort entries
    - Remove non-existent sap.dragonfly
    - Fix typo for sap.landvisz
    - Add missing sap.sac.grid
    - Add removed internal sap.fe libs
    
    Co-authored-by: Max Reichmann <[email protected]>
    matz3 and maxreichmann authored Mar 22, 2024
    Configuration menu
    Copy the full SHA
    d38e356 View commit details
    Browse the repository at this point in the history
  2. feat(cli)!: In case of errors, exit with code 1

    This change alignes UI5 linter with ESLint (see [1]):
    * No errors, maybe warnings: Use exit code 0
    * At least one error: Use exit code 1
    * Unexpected error (typically caused by an exception): Use exit code 2
    
    BREAKING CHANGE: Depending on how UI5 linter is being used, this change
    might change the behavior of that particular scenario. For example a
    build script might abort further processing, if any linting errors
    are detected.
    
    To ignore exit code 1, for example in a bash script, you may use a
    construct like this:
    ```sh
    ui5lint && RC=$? || RC=$?
    if [[ "$RC" = 2 ]]; then
        exit 1
    fi
    ```
    
    JIRA: CPOUI5FOUNDATION-823
    
    [1]: https://eslint.org/docs/latest/use/command-line-interface#exit-codes
    RandomByte committed Mar 22, 2024
    Configuration menu
    Copy the full SHA
    96331fc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3c2d0a2 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2024

  1. feat: Analyze sap.ui.core.Lib.init() call (#33)

    JIRA: CPOUI5FOUNDATION-793
    
    Adds checks whether `Lib.init()` has been called with `apiVersion: 2`
    property.
    
    ---------
    
    Co-authored-by: Matthias Oßwald <[email protected]>
    Co-authored-by: Merlin Beutlberger <[email protected]>
    3 people authored Mar 25, 2024
    Configuration menu
    Copy the full SHA
    6d5bcdb View commit details
    Browse the repository at this point in the history
  2. test: Fix lintFiles on Windows

    matz3 committed Mar 25, 2024
    Configuration menu
    Copy the full SHA
    af0d253 View commit details
    Browse the repository at this point in the history
  3. ci(github-actions): Bump dependabot/fetch-metadata from 1 to 2

    Bumps [dependabot/fetch-metadata](https://github.com/dependabot/fetch-metadata) from 1 to 2.
    - [Release notes](https://github.com/dependabot/fetch-metadata/releases)
    - [Commits](dependabot/fetch-metadata@v1...v2)
    
    ---
    updated-dependencies:
    - dependency-name: dependabot/fetch-metadata
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and RandomByte committed Mar 25, 2024
    Configuration menu
    Copy the full SHA
    f7ad7bf View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2024

  1. Configuration menu
    Copy the full SHA
    929a9b8 View commit details
    Browse the repository at this point in the history
  2. ci: Update dependabot.yml

    This is an attempt to trigger Dependabot enablement for this repository
    RandomByte committed Mar 26, 2024
    Configuration menu
    Copy the full SHA
    57cf281 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b7e9a2b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9cbdf1d View commit details
    Browse the repository at this point in the history
  5. release: v0.2.0

    openui5bot authored and matz3 committed Mar 26, 2024
    Configuration menu
    Copy the full SHA
    f1309e3 View commit details
    Browse the repository at this point in the history
Loading