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: valor-software/ngx-bootstrap
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v19.0.2
Choose a base ref
...
head repository: valor-software/ngx-bootstrap
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: development
Choose a head ref
  • 3 commits
  • 36 files changed
  • 2 contributors

Commits on Jan 29, 2025

  1. chore(docs): replaced logo with a new one and added link to main site…

    … to it for interlinking (#6727)
    lexasq authored Jan 29, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    9ab37f7 View commit details

Commits on Feb 3, 2025

  1. chore: bump version (#6729)

    * chore(docs): replaced logo with a new one and added link to main site to it for interlinking
    
    * 19.0.3
    
    * chore(version): bumped version, updated artifact-upload for github
    
    * chore(version): bumped version, updated artifact-upload for github
    lexasq authored Feb 3, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    0821e87 View commit details

Commits on Feb 5, 2025

  1. fix(positioning): prevent memory leak in positioning service (#6724)

    PositioningService is listening to events in the constructor but it
    never got cleaned up on destroy. Since we can have many instances of
    that service, it could pile up and use more and more memory.
    
    Co-authored-by: Alexey Umanskiy <[email protected]>
    AurelienRichez and lexasq authored Feb 5, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    7d87cb4 View commit details
4 changes: 2 additions & 2 deletions .github/workflows/on-push-or-pull.yml
Original file line number Diff line number Diff line change
@@ -157,7 +157,7 @@ jobs:
if: ${{ !needs.firebase_preview.outputs.output_url }}
run: npx nx run ngx-bootstrap-docs-e2e:e2e --pwProject=chromium-integration --shard=${{ matrix.shard }}/${{ strategy.job-total }}

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report-smoke-${{ matrix.shard }}_${{ strategy.job-total }}
@@ -199,7 +199,7 @@ jobs:
continue-on-error: true
run: npx nx run ngx-bootstrap-docs-e2e:e2e --pwProject=chromium-full --shard=${{ matrix.shard }}/${{ strategy.job-total }}

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report-full-${{ matrix.shard }}_${{ strategy.job-total }}
1 change: 1 addition & 0 deletions apps/ngx-bootstrap-docs/src/assets/css/style.scss
Original file line number Diff line number Diff line change
@@ -346,6 +346,7 @@ header {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);// TRY TO CHANGE IT
height: 100px;
}
}
}
Loading