All Versions
186
Latest Version
Avg Release Cycle
11 days
Latest Release
515 days ago

Changelog History
Page 9

  • v6.4.5 Changes

    December 18, 2020
    • ๐Ÿ›  Fixed issue with postinstall script
  • v6.4.4 Changes

    December 18, 2020
  • v6.4.1 Changes

    December 09, 2020
    • ๐Ÿ›  Fixed types errors introduced in 6.4.0
  • v6.4.0 Changes

    December 08, 2020
    • All new Swiper Angular components (kudos to @vltansky) ๐ŸŽ‰
    • React
      • Now Swiper won't cleanup styles on destroy
    • Svelte
      • Now svelte package contains source .svelte components
      • Now Swiper won't cleanup styles on destroy
    • Vue
      • Now Swiper won't cleanup styles on destroy
    • Lazy
      • Now it has options to check is Swiper also is in view before loading the images (thanks to @ygj6)
    • ๐Ÿ— Build
      • Fixed sourcemap missing original sources
    • ๐Ÿ›  Lots of minor fixes
  • v6.3.5 Changes

    October 30, 2020
    • ๐Ÿ— Build
      • Fixed builds on Windows
    • Core
      • Fixed no swiping class in shadow component (#3868)
      • Typecheck for slideTo's index parameter
  • v6.3.4 Changes

    October 20, 2020
    • Vue
      • Fixed issue with Maximum recursive updates
  • v6.3.3 Changes

    October 09, 2020
    • Core
      • Fixed issue with wrong slides calculation when slides have inner scrollbars
    • Autoplay
      • Now it will continue autoplay if it reaches the end and new slides will be added later
    • React
      • Fixed issue when slide render function data was set only after interaction
    • ๐Ÿ›  Minor fixes
  • v6.3.2 Changes

    September 28, 2020
    • Svelte
      • Fixed issue with throwing error when using breakpoints
  • v6.3.1 Changes

    September 25, 2020
    • Core

      • A11y
      • Init module after all other modules initialized
  • v6.3.0 Changes

    September 25, 2020
    • Core

      • A11y
      • Added new parameters containerMessage, containerRoleDescriptionMessage and itemRoleDescriptionMessage (#3834 thanks to @jenemde)
    • React

      • Now SwiperSlide component requires unique virtualIndex to be set so Swiper can know which slide is rendered exactly
    • Vue

      • Fixed issue when SwiperSlide was not rendered if used with v-for
      • Now SwiperSlide component requires unique virtualIndex to be set so Swiper can know which slide is rendered exactly
    • All new Swiper Svelte components:

      <Swiper spaceBetween="{50}" slidesPerView="{3}">
        <SwiperSlide>Slide 1</SwiperSlide>
        <SwiperSlide>Slide 2</SwiperSlide>
        ...
      </Swiper>
      <script>
        import { Swiper, SwiperSlide } from 'swiper/svelte';
      </script>