Skip to content
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

fix locator resource pool #717

Closed
wants to merge 42 commits into from
Closed

fix locator resource pool #717

wants to merge 42 commits into from

Commits on Nov 24, 2021

  1. Configuration menu
    Copy the full SHA
    80f963d View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2021

  1. Configuration menu
    Copy the full SHA
    7207bab View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2021

  1. [FIX] Bundler: Sort raw modules by default

    Unlike the documentation states, topological sorting of modules within
    'raw' sections was not enabled by default.
    
    Sorting is based on dependencies only, so enabling it by default should
    only solve issues in case dependencies are declared but sort was not
    enabled.
    If no dependencies are defined, the order will not change.
    
    This could only break use cases where dependencies have been wrongly
    declared and a user relies on the current unsorted order.
    matz3 committed Dec 9, 2021
    Configuration menu
    Copy the full SHA
    0e11b69 View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2021

  1. [INTERNAL] Enhance replaceVersion task to handle ${project.version} p…

    …attern
    
    Ensures that the build task "replaceVersion" replaces
    the pattern ${project.version} equally to ${version}.
    
    JIRA: CPOUI5FOUNDATION-423
    larskissel committed Dec 10, 2021
    Configuration menu
    Copy the full SHA
    ea1b022 View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2021

  1. [INTERNAL] Enable buildThemes for libraries without .library

    Fixes that libraries using a "library.js" file but no ".library"
    file can also build theming files.
    larskissel committed Dec 14, 2021
    Configuration menu
    Copy the full SHA
    34f3c2e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b84d263 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a9992d0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b0bce28 View commit details
    Browse the repository at this point in the history
  5. Release 3.0.0-alpha.0

    RandomByte committed Dec 14, 2021
    Configuration menu
    Copy the full SHA
    995587e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9a76541 View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2022

  1. Configuration menu
    Copy the full SHA
    c110dbc View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2022

  1. [FEATURE] Add minify task and processor (#666)

    Combines debug-file creation, source-map generation and minification.
    Replaces existing tasks/processors 'uglify' and 'createDebugFiles'.
    
    Also introduce new global tags `IsDebugVariant` and `HasDebugVariant`.
    
    BREAKING CHANGE:
    The following tasks have been removed:
    - createDebugFiles
    - uglify
    
    The following processors have been removed:
    - debugFileCreator
    - resourceCopier
    - uglifier
    
    As a replacement, the new 'minify' task and 'minifier' processor can be
    used.
    
    Note: The minify task is executed earlier, before the bundling
    process takes place. Existing 'beforeTask' and 'afterTask' configuration of
    custom tasks might need to be adapted to cater for this change.
    RandomByte committed Jan 17, 2022
    Configuration menu
    Copy the full SHA
    a3af604 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    04072a2 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2022

  1. Configuration menu
    Copy the full SHA
    9744c15 View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2022

  1. Configuration menu
    Copy the full SHA
    02f9160 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f27513a View commit details
    Browse the repository at this point in the history
  3. [BREAKING] moduleBundler: Always default to optimize: true (#685)

    bundleOptions are often omitted. So document them as optional and always
    default 'optimize' to true, even if bundleOptions are specified.
    matz3 committed Jan 20, 2022
    Configuration menu
    Copy the full SHA
    de5837c View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2022

  1. Configuration menu
    Copy the full SHA
    f84bcf2 View commit details
    Browse the repository at this point in the history
  2. [INTERNAL] minify: Omit .js.map from build results

    Source maps are currently only required during the build process
    (e.g. for creating source maps of bundles) but not as build output.
    Therefore they will be omitted from the build result.
    matz3 committed Jan 21, 2022
    Configuration menu
    Copy the full SHA
    1689f13 View commit details
    Browse the repository at this point in the history
  3. [FIX] generateResourcesJson: Don't list resources omitted from build …

    …result
    
    Resources that are tagged to be omitted from the build result should not
    be listed in the resources.json as it should represent a listing of
    files that are part of the build output.
    Resources of dependencies should also not be used for dependency lookups
    if they are omitted from the results as they also won't be listed in the
    resources.json of that dependency.
    matz3 committed Jan 21, 2022
    Configuration menu
    Copy the full SHA
    9608c51 View commit details
    Browse the repository at this point in the history
  4. [INTERNAL] Update tests

    matz3 committed Jan 21, 2022
    Configuration menu
    Copy the full SHA
    23fa5a7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    268dd16 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    26084d1 View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2022

  1. [BREAKING] Require Node.js >= 16.13.2 / npm >= 8

    BREAKING CHANGE:
    Support for older Node.js and npm releases has been dropped.
    Only Node.js v16.13.2 and npm v8 or higher are supported.
    matz3 committed Jan 24, 2022
    Configuration menu
    Copy the full SHA
    dbf6c06 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    50e2c7c View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2022

  1. [FEATURE] Support ES2021 language features

    By upgrading espree to the latest version, ES2021 language features
    are now supported.
    matz3 committed Jan 25, 2022
    Configuration menu
    Copy the full SHA
    e749b6a View commit details
    Browse the repository at this point in the history
  2. [FIX] Bundler: Ensure reproducibility for bundles with multiple parts (

    …#689)
    
    Sort modules in preload sections alphabetically.
    This caused different bundle contents based on the order of modules that
    the resolver provides, which is not deterministic.
    
    Remove terser from size estimation as modules are now already optimized
    if the 'optimize' bundle option is enabled.
    This caused incorrect estimations about the bundle size which resulted
    into size differences of the individual parts.
    matz3 committed Jan 25, 2022
    Configuration menu
    Copy the full SHA
    6f4588b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4427686 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d25290c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0188af5 View commit details
    Browse the repository at this point in the history
  6. Release 3.0.0-alpha.1

    matz3 committed Jan 25, 2022
    Configuration menu
    Copy the full SHA
    fa628b5 View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2022

  1. [INTERNAL] npm release: Add missing CHANGELOG file

    The CLI needs the changelog files of all modules to create a
    consolidated changelog.
    
    Since npm v7 the CHANGELOG file is not always published anymore.
    See: npm/npm-packlist#61
    matz3 committed Jan 31, 2022
    Configuration menu
    Copy the full SHA
    034dd43 View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2022

  1. [FEATURE] replaceVersion/Copyright: Also process test-resources (#693)

    JIRA: CPOUI5FOUNDATION-424
    matz3 committed Feb 14, 2022
    Configuration menu
    Copy the full SHA
    a0d4bc2 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2022

  1. Configuration menu
    Copy the full SHA
    3b51c1b View commit details
    Browse the repository at this point in the history
  2. [FEATURE] Generate source maps for bundles (#695)

    Resolves SAP/ui5-tooling#472
    Supersedes #282
    Based on SAP/ui5-tooling#583
    JIRA: CPOUI5FOUNDATION-434
    
    Co-authored-by: Matthias Osswald <mat.osswald@sap.com>
    RandomByte and matz3 committed Feb 23, 2022
    3 Configuration menu
    Copy the full SHA
    8a20c42 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    37e1e3c View commit details
    Browse the repository at this point in the history
  4. [FIX] XMLTemplateAnalyzer: Analyze core:require of FragmentDefinition

    The FragmentDefinition node should be skipped, but it may still contain
    a core:require definition.
    This is in line with the current runtime which also reads the require
    and loads the module.
    matz3 committed Feb 23, 2022
    Configuration menu
    Copy the full SHA
    af075ed View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2022

  1. [INTERNAL] Remove unused expected build results

    Folders have been added by mistake and are not used by any test.
    matz3 committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    0c9fec6 View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2022

  1. [INTERNAL] git-chglog: Fix mutli-release-branch setup

    * Always sort by semver instead of date to fix changelog generation when different branches are tagged at intersecting times
    * For release notes on the current next branch, ignore any tags <=v2 to ensure that we always compare to a v3 tag
      (sorting by semver doesn't seem to work here)
    RandomByte committed Feb 25, 2022
    Configuration menu
    Copy the full SHA
    6b84314 View commit details
    Browse the repository at this point in the history
  2. [INTERNAL] generateFlexChangesBundle: Fix minUI5Version check for UI5…

    … v1.100.0+
    
    Up-port of #706
    (cherry picked from commit fb1217a)
    thuyboehm authored and RandomByte committed Feb 25, 2022
    Configuration menu
    Copy the full SHA
    e599806 View commit details
    Browse the repository at this point in the history
  3. Release 3.0.0-alpha.2

    RandomByte committed Feb 25, 2022
    Configuration menu
    Copy the full SHA
    9955a0c View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2022

  1. Configuration menu
    Copy the full SHA
    acabe7a View commit details
    Browse the repository at this point in the history