File timescaledb.changes of Package timescaledb

-------------------------------------------------------------------
Wed Dec  3 11:19:23 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.24.0
  This release contains performance improvements and bug fixes
  since the 2.23.1 release. We recommend that you upgrade at the
  next available opportunity.

  Highlighted features in TimescaleDB v2.24.0
  - Direct Compress just got smarter and faster: it now works
    seamlessly with hypertables generating continuous aggregates.
    Invalidation ranges are computed directly in-memory based on
    the ingested batches and written efficiently at transaction
    commit. This change reduces the IO footprint drastically by
    removing the write amplification of the invalidation logs.
  - Continuous aggregates now speak UUIDv7: hypertables partitioned
    by UUIDv7 are fully supported through an enhanced time_bucket
    that accepts UUIDv7 values and returns precise, timezone-aware
    timestamps — unlocking powerful time-series analytics on modern
    UUID-driven table schemas.
  - Lightning-fast recompression: the new recompress := true option
    on the compress_chunk API enables pure in-memory recompression,
    delivering a 4–5× speed boost over the previous disk-based
    process.

  ARM support for bloom filters
  The sparse bloom filter indexes will stop working after upgrade
  to 2.24. If you are affected by this problem, the warning "bloom
  filter sparse indexes require action to re-enable" will appear in
  the Postgres log during upgrade.

  In versions before 2.24, the hashing scheme of the bloom filter
  sparse indexes used to depend on the build options of the
  TimescaleDB executables. These options are set by the package
  publishers and might differ between different package sources or
  even versions. After upgrading to a version with different
  options, the queries that use the bloom filter lookups could
  erroneously stop returning the rows that should in fact match the
  query conditions. The 2.24 release fixes this by using distinct
  column names for each hashing scheme.

  The bloom filter sparse indexes will be disabled on the
  compressed chunks created before upgrading to 2.24. To re-enable
  them, you have to decompress and then compress the affected
  chunks.

  If you were running the official APT package on AMD64
  architecture, the hashing scheme did not change, and it is safe
  to use the existing bloom filter sparse indexes. To enable this,
  set the GUC timescaledb.read_legacy_bloom1_v1 = on in the server
  configuration.

  The chunks compressed after upgrade to 2.24 will use the new
  index format, and the bloom filter sparse indexes will continue
  working as usual for these chunks without any intervention.

  For more details, refer to the pull request #8761.

  - Deprecations
    - The next release of TimescaleDB will remove the deprecated
      partial continuous aggregates format. The new format was
      introduced in 2.7.0 and provides significant improvements in
      terms of performance and storage efficiency. Please use
      cagg_migrate(<CONTINUOUS_AGGREGATE_NAME>) to migrate to the
      new format. Tiger Cloud users are migrated automatically.
    - In future releases the deprecated view
      timescaledb_information.compression_settings will be removed.
      Please use
      timescaledb_information.hypertable_columnstore_settings as a
      replacement.
    - The experimental view timescaledb_experimental.policies and
      the adjacent experimental functions add_policies,
      alter_policies, show_policies, remove_policies, and
      remove_all_policies to manage continuous aggregates will be
      removed in an upcoming release. For replacements, please use
      the Jobs API.
  - Backward-Incompatible Changes
    - #8761 Fix matching rows in queries using the bloom filter
      sparse indexes potentially not returned after extension
      upgrade. The version of the bloom filter sparse indexes is
      changed. The existing indexes will stop working and will
      require action to re-enable. See the section above for
      details.
  - Features
    - #8465 Speed up the filters like x = any(array[...]) using
      bloom filter sparse indexes.
    - #8569 In-memory recompression
    - #8754 Add concurrent mode for merging chunks
    - #8786 Display chunks view range as timestamps for UUIDv7
    - #8819 Refactor chunk compression logic
    - #8840 Allow ALTER COLUMN TYPE when compression is enabled but
      no compressed chunks exist
    - #8908 Add time bucketing support for UUIDv7
    - #8909 Support direct compress on hypertables with continuous
      aggregates
    - #8939 Support continuous aggregates on UUIDv7-partitioned
      hypertables
    - #8959 Cap continuous aggregate invalidation interval range at
      chunk boundary
    - #8975 Exclude date/time columns from default segmentby
    - #8993 Add GUC for in-memory recompression
  - Bugfixes
    - #8839 Improve _timescaledb_functions.cagg_watermark error
      handling
    - #8853 Change log level of continuous aggregate refresh
      messages to DEBUG1
    - #8933 Potential crash or seemingly random errors when
      querying the compressed chunks created on releases before
      2.15 and using the minmax sparse indexes.
    - #8942 Fix lateral join handling for compressed chunks
    - #8958 Fix if_not_exists behaviour when adding refresh policy
    - #8969 Gracefully handle missing job stat in background worker
    - #8988 Don't ignore additional filters on same column when
      building scankeys
  - GUCs
    - direct_compress_copy_tuple_sort_limit: Number of tuples that
      can be sorted at once in a COPY operation.
    - direct_compress_insert_tuple_sort_limit: Number of tuples
      that can be sorted at once in an INSERT operation.
    - read_legacy_bloom1_v1: Enable reading the legacy bloom1
      version 1 sparse indexes for SELECT queries.
    - enable_in_memory_recompression: Enable in-memory
      recompression functionality.

-------------------------------------------------------------------
Thu Nov 13 19:53:12 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.23.1
  - #8873 Don't error on failure to update job stats
  - #8875 Fix decoding of UUID v7 timestamp microseconds
  - #8879 Fix blocker for multiple hierarchical continuous
    aggregate policies
  - #8882 Fix crash in policy creation

-------------------------------------------------------------------
Wed Oct 29 10:03:59 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.23.0
  This release contains performance improvements and bug fixes
  since the 2.22.1 release. We recommend that you upgrade at the
  next available opportunity.

  Highlighted features in TimescaleDB v2.23.0

  - This release introduces full PostgreSQL 18 support for all
    existing features. TimescaleDB v2.23 is available for
    PostgreSQL 15, 16, 17, and 18.
  - UUIDv7 compression is now enabled by default on the
    columnstore. This feature was shipped in v2.22.0. It saves you
    at least 30% of storage and delivers ~2× faster query
    performance with UUIDv7 columns in the filter conditions.
  - Added the ability to set hypertables to unlogged, addressing an
    open community request #836. This allows the tradeoff between
    durability and performance, with the latter being favourable
    for larger imports.
  - By allowing set-returning functions in continuous aggregates,
    this releases addresses a long standing blocker, raised by the
    community #1717.

  PostgreSQL 15 deprecation announcement

  - We will continue supporting PostgreSQL 15 until June 2026.
    Closer to that time, we will announce the specific TimescaleDB
    version in which PostgreSQL 15 support will not be included
    going forward.

  https://github.com/timescale/timescaledb/releases/tag/2.23.0
- enable building for pg18

-------------------------------------------------------------------
Tue Sep 30 10:34:59 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.22.1
  https://github.com/timescale/timescaledb/releases/tag/2.22.1

-------------------------------------------------------------------
Tue Sep  2 12:29:50 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.22.0
  https://github.com/timescale/timescaledb/releases/tag/2.22.0

-------------------------------------------------------------------
Tue Aug 12 09:36:54 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.21.3
  https://github.com/timescale/timescaledb/releases/tag/2.21.3

-------------------------------------------------------------------
Tue Aug  5 12:50:27 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.21.2
  https://github.com/timescale/timescaledb/releases/tag/2.21.2

-------------------------------------------------------------------
Tue Jul 22 12:55:08 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.21.1
  https://github.com/timescale/timescaledb/releases/tag/2.21.1

-------------------------------------------------------------------
Tue Jul  8 12:50:41 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.21.0
  https://github.com/timescale/timescaledb/releases/tag/2.21.0

  This release contains performance improvements and bug fixes
  since the 2.20.3 release. We recommend that you upgrade at the
  next available opportunity.

  Highlighted features in TimescaleDB v2.21.0

  - The attach & detach chunks feature allows manually adding or
    removing chunks from a hypertable with uncompressed chunks,
    similar to PostgreSQL’s partition management.
  - Continued improvement of backfilling into the columnstore,
    achieving up to 2.5x speedup for constrained tables, by
    introducing caching logic that boosts throughput for writes to
    compressed chunks, bringing INSERT performance close to that of
    uncompressed chunks.
  - Optimized DELETE operations on the columstore through
    batch-level deletions of non-segmentby keys in the filter
    condition, greatly improving performance to up to 42x faster in
    some cases, as well as reducing bloat, and lowering resource
    usage.
  - The heavy lock taken in Continuous Aggregate refresh was
    relaxed, enabling concurrent refreshes for non-overlapping
    ranges and eliminating the need for complex customer
    workarounds.
  - [tech preview] Direct Compress is an innovative TimescaleDB
    feature that improves high-volume data ingestion by compressing
    data in memory and writing it directly to disk, reducing I/O
    overhead, eliminating dependency on background compression
    jobs, and significantly boosting insert performance.

  Sunsetting of the hypercore access method

  We made the decision to deprecate hypercore access method (TAM)
  with the 2.21.0 release. It was an experiment, which did not show
  the signals we hoped for and will be sunsetted in TimescaleDB
  2.22.0, scheduled for September 2025. Upgrading to 2.22.0 and
  higher will be blocked if TAM is still in use. Since TAM’s
  inception in 2.18.0, we learned that btrees were not the right
  architecture. The recent advancements in the columnstore—such as
  more performant backfilling, SkipScan, adding check constraints,
  and faster point queries—put the columnstore close to or on par
  with TAM without the storage from the additional index. We
  apologize for the inconvenience this action potentially causes
  and are here to assist you during the migration process.

-------------------------------------------------------------------
Wed Jun 11 10:36:39 UTC 2025 - Bernhard Wiedemann <bwiedemann@suse.com>

- Stop storing build machine kernel version (boo#1101107)

-------------------------------------------------------------------
Wed Jun 11 10:25:50 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.20.3
  https://github.com/timescale/timescaledb/releases/tag/2.20.3

-------------------------------------------------------------------
Mon Jun  2 14:00:15 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.20.2
  https://github.com/timescale/timescaledb/releases/tag/2.20.2

-------------------------------------------------------------------
Tue May 27 14:56:48 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>

- drop pg 14

-------------------------------------------------------------------
Tue May 27 14:54:58 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.20.1
  https://github.com/timescale/timescaledb/releases/tag/2.20.1

-------------------------------------------------------------------
Thu May 15 13:11:06 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.20.0
  https://github.com/timescale/timescaledb/releases/tag/2.20.0

-------------------------------------------------------------------
Tue Apr 15 19:35:16 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.19.3
  https://github.com/timescale/timescaledb/releases/tag/2.19.3

-------------------------------------------------------------------
Mon Apr  7 17:40:18 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.19.2
  https://github.com/timescale/timescaledb/releases/tag/2.19.2

-------------------------------------------------------------------
Tue Apr  1 09:51:42 UTC 2025 - Emiliano Langella <emiliano.langella@suse.com>

- Update to version 2.19.1
  https://github.com/timescale/timescaledb/releases/tag/2.19.1

-------------------------------------------------------------------
Tue Mar 18 13:49:07 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.19.0
  https://github.com/timescale/timescaledb/releases/tag/2.19.0

-------------------------------------------------------------------
Wed Feb 19 11:35:05 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.18.2
  https://github.com/timescale/timescaledb/releases/tag/2.18.2

-------------------------------------------------------------------
Mon Feb 10 18:39:45 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.18.1
  https://github.com/timescale/timescaledb/releases/tag/2.18.1

-------------------------------------------------------------------
Thu Jan 23 10:04:57 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.18.0
  https://github.com/timescale/timescaledb/releases/tag/2.18.0

-------------------------------------------------------------------
Thu Nov  7 13:28:50 UTC 2024 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.17.2
  https://github.com/timescale/timescaledb/releases/tag/2.17.2

-------------------------------------------------------------------
Mon Oct 21 19:16:07 UTC 2024 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.17.1
  https://github.com/timescale/timescaledb/releases/tag/2.17.1

-------------------------------------------------------------------
Tue Oct  8 13:54:42 UTC 2024 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.17.0
  https://github.com/timescale/timescaledb/releases/tag/2.17.0
- drop series file
- enable pg17

-------------------------------------------------------------------
Tue Aug  6 23:24:37 UTC 2024 - Marcus Rueckert <mrueckert@suse.de>

- drop pg 13 as flavor as it is unsupported now

-------------------------------------------------------------------
Tue Aug  6 23:22:36 UTC 2024 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.16.1
  https://github.com/timescale/timescaledb/releases/tag/2.16.1

-------------------------------------------------------------------
Wed Jul 31 21:02:51 UTC 2024 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.16.0
  https://github.com/timescale/timescaledb/releases/tag/2.16.0

-------------------------------------------------------------------
Tue Jul  2 15:35:03 UTC 2024 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.15.3
  https://github.com/timescale/timescaledb/releases/tag/2.15.3

-------------------------------------------------------------------
Fri Jun  7 15:11:20 UTC 2024 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.15.2
  https://github.com/timescale/timescaledb/releases/tag/2.15.2

-------------------------------------------------------------------
Tue May 28 21:23:47 UTC 2024 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.15.1
  https://github.com/timescale/timescaledb/releases/tag/2.15.1

-------------------------------------------------------------------
Wed May  8 15:39:26 UTC 2024 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.15.0
  https://github.com/timescale/timescaledb/releases/tag/2.15.0

-------------------------------------------------------------------
Tue Feb 20 10:34:47 UTC 2024 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.14.2
  https://github.com/timescale/timescaledb/releases/tag/2.14.2

-------------------------------------------------------------------
Fri Feb 16 03:43:36 UTC 2024 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.14.1
  https://github.com/timescale/timescaledb/releases/tag/2.14.1

-------------------------------------------------------------------
Fri Feb  9 08:27:43 UTC 2024 - Emiliano Langella <emiliano.langella@suse.com>

- Update to version 2.14.0
  https://github.com/timescale/timescaledb/releases/tag/2.14.0

-------------------------------------------------------------------
Tue Jan  9 12:52:34 UTC 2024 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.13.1
  https://github.com/timescale/timescaledb/releases/tag/2.13.1

-------------------------------------------------------------------
Tue Nov 28 15:10:39 UTC 2023 - Marcus Rueckert <mrueckert@suse.de>

- enable pg 16

-------------------------------------------------------------------
Tue Nov 28 15:10:05 UTC 2023 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.13.0
  https://github.com/timescale/timescaledb/releases/tag/2.13.0

-------------------------------------------------------------------
Fri Oct 20 09:39:13 UTC 2023 - Emiliano Langella <emiliano.langella@suse.com>

- Update to version 2.12.2
  https://github.com/timescale/timescaledb/releases/tag/2.12.2

-------------------------------------------------------------------
Thu Oct 12 10:18:10 UTC 2023 - Marcus 'darix' Rückert <mrueckert@suse.de>

- Update to version 2.12.1
  https://github.com/timescale/timescaledb/releases/tag/2.12.1

-------------------------------------------------------------------
Tue Sep 26 17:43:42 UTC 2023 - Marcus Rueckert <mrueckert@suse.de>

- drop pg 12. not supported. no pg 16 support yet either.

-------------------------------------------------------------------
Tue Sep 26 17:42:44 UTC 2023 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.12.0
  https://github.com/timescale/timescaledb/releases/tag/2.12.0

-------------------------------------------------------------------
Thu Aug 17 20:01:36 UTC 2023 - Emiliano Langella <emiliano.langella@suse.com>

- Update to version 2.11.2
  https://github.com/timescale/timescaledb/releases/tag/2.11.2

-------------------------------------------------------------------
Thu Jun 29 13:33:44 UTC 2023 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.11.1
  https://github.com/timescale/timescaledb/releases/tag/2.11.1

-------------------------------------------------------------------
Mon May 22 11:35:01 UTC 2023 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.11.0
  https://github.com/timescale/timescaledb/releases/tag/2.11.0

-------------------------------------------------------------------
Thu Apr 27 18:02:56 UTC 2023 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.10.3
  https://github.com/timescale/timescaledb/releases/tag/2.10.3

-------------------------------------------------------------------
Thu Apr 20 20:38:22 UTC 2023 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.10.2
  https://github.com/timescale/timescaledb/releases/tag/2.10.2

-------------------------------------------------------------------
Mon Mar 13 22:10:59 UTC 2023 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.10.1
  https://github.com/timescale/timescaledb/releases/tag/2.10.1

-------------------------------------------------------------------
Tue Feb 21 17:10:23 UTC 2023 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.10.0
  https://github.com/timescale/timescaledb/releases/tag/2.10.0

-------------------------------------------------------------------
Mon Feb  6 19:40:18 UTC 2023 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.9.3
  https://github.com/timescale/timescaledb/releases/tag/2.9.3

-------------------------------------------------------------------
Tue Jan 31 14:34:33 UTC 2023 - Marcus Rueckert <mrueckert@suse.de>

- enable pg 15 build

-------------------------------------------------------------------
Tue Jan 24 11:50:59 UTC 2023 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.9.2
  https://github.com/timescale/timescaledb/releases/tag/2.9.2

-------------------------------------------------------------------
Sat Dec 24 03:59:55 UTC 2022 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.9.1
  https://github.com/timescale/timescaledb/releases/tag/2.9.1

-------------------------------------------------------------------
Tue Dec 20 01:44:38 UTC 2022 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.9.0
  https://github.com/timescale/timescaledb/releases/tag/2.9.0
- dropped clang-format9_support.diff:
  minimum required version is now 14

-------------------------------------------------------------------
Mon Oct 10 18:12:36 UTC 2022 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.8.1
  https://github.com/timescale/timescaledb/releases/tag/2.8.1

-------------------------------------------------------------------
Wed Aug 31 22:12:56 UTC 2022 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.8.0
  https://github.com/timescale/timescaledb/releases/tag/2.8.0
- refreshed clang-format9_support.diff

-------------------------------------------------------------------
Sun Jul 31 08:29:03 UTC 2022 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.7.2
  https://github.com/timescale/timescaledb/releases/tag/2.7.1
  https://github.com/timescale/timescaledb/releases/tag/2.7.2

-------------------------------------------------------------------
Tue May 24 20:40:08 UTC 2022 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.7.0
  https://github.com/timescale/timescaledb/releases/tag/2.7.0
- drop ab6b90caf.patch: included upstream

-------------------------------------------------------------------
Tue Apr 12 13:41:32 UTC 2022 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.6.1
  https://github.com/timescale/timescaledb/releases/tag/2.6.1
- refreshed patches:
  clang-format9_support.diff
  ab6b90caf.patch

-------------------------------------------------------------------
Tue Mar 15 18:05:26 UTC 2022 - Bruno Friedmann <bruno@ioda-net.ch>

- Added patch ab6b90caf.patch containing explicit mention of
  CVE-2022-24128 closing boo#1197063

-------------------------------------------------------------------
Wed Feb 23 15:04:28 UTC 2022 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.6.0
  https://github.com/timescale/timescaledb/releases/tag/2.6.0

-------------------------------------------------------------------
Thu Feb 10 11:02:56 UTC 2022 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.5.2
  https://github.com/timescale/timescaledb/releases/tag/2.5.2

-------------------------------------------------------------------
Fri Jan 28 11:03:26 UTC 2022 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.5.1
  https://github.com/timescale/timescaledb/releases/tag/2.5.1

-------------------------------------------------------------------
Tue Nov 30 17:24:04 UTC 2021 - Marcus Rueckert <mrueckert@suse.de>

- switch to %{pg_name}-server-devel

-------------------------------------------------------------------
Tue Nov 30 15:13:07 UTC 2021 - Marcus Rueckert <mrueckert@suse.de>

- Update to version 2.5.0
  https://github.com/timescale/timescaledb/releases/tag/1.7.5
  https://github.com/timescale/timescaledb/releases/tag/2.0.0
  https://github.com/timescale/timescaledb/releases/tag/2.0.1
  https://github.com/timescale/timescaledb/releases/tag/2.0.2
  https://github.com/timescale/timescaledb/releases/tag/2.1.0
  https://github.com/timescale/timescaledb/releases/tag/2.1.1
  https://github.com/timescale/timescaledb/releases/tag/2.2.0
  https://github.com/timescale/timescaledb/releases/tag/2.2.1
  https://github.com/timescale/timescaledb/releases/tag/2.3.0
  https://github.com/timescale/timescaledb/releases/tag/2.3.1
  https://github.com/timescale/timescaledb/releases/tag/2.4.0
  https://github.com/timescale/timescaledb/releases/tag/2.4.1
  https://github.com/timescale/timescaledb/releases/tag/2.4.2
  https://github.com/timescale/timescaledb/releases/tag/2.5.0
- enable postgresql14
- port to postgresql macros
- refresh clang-format9_support.diff

-------------------------------------------------------------------
Wed Jun 30 14:25:57 UTC 2021 - Dominique Leuenberger <dimstar@opensuse.org>

- Do not build postgresql96 flavor on Tumbleweed.

-------------------------------------------------------------------
Fri Sep 25 15:57:38 UTC 2020 - Marcus Rueckert <mrueckert@suse.de>

- update to version 1.7.4
  https://github.com/timescale/timescaledb/releases/tag/1.7.2
  https://github.com/timescale/timescaledb/releases/tag/1.7.3
  https://github.com/timescale/timescaledb/releases/tag/1.7.4

-------------------------------------------------------------------
Wed Jun 17 17:07:03 UTC 2020 - Bruno Friedmann <bruno@ioda-net.ch>

- update to version 1.7.1 bugfix
  https://github.com/timescale/timescaledb/releases/tag/1.7.1
  Please note that with the release of 1.7, support for PostgreSQL
  9.6.x and 10.x are deprecated. version 2 will only support 11,12
- Packaging :
  + Activate postgresql12 supported now
  + Modifiy download url to grab a nice named tar.gz

-------------------------------------------------------------------
Tue May  5 00:40:49 UTC 2020 - Marcus Rueckert <mrueckert@suse.de>

- update to 1.7.0
  https://github.com/timescale/timescaledb/releases/tag/1.7.0

-------------------------------------------------------------------
Tue Mar 31 20:07:40 UTC 2020 - Bruno Friedmann <bruno@ioda-net.ch>

  https://github.com/timescale/timescaledb/releases/tag/1.6.1
  https://github.com/timescale/timescaledb/releases/tag/1.6.0
  https://github.com/timescale/timescaledb/releases/tag/1.5.1
  https://github.com/timescale/timescaledb/releases/tag/1.5.0
  timescaledb doesn't offer support for postgresql 12 yet
- Packaging
  + spec-cleaner minimal
  + add patch to support clang version 9 clang-format9_support.diff

-------------------------------------------------------------------
Tue Oct 22 17:05:22 UTC 2019 - Marcus Rueckert <mrueckert@suse.de>

- update to 1.4.2
  https://github.com/timescale/timescaledb/releases/tag/1.2.1
  https://github.com/timescale/timescaledb/releases/tag/1.2.2
  https://github.com/timescale/timescaledb/releases/tag/1.3.0
  https://github.com/timescale/timescaledb/releases/tag/1.3.1
  https://github.com/timescale/timescaledb/releases/tag/1.3.2
  https://github.com/timescale/timescaledb/releases/tag/1.4.0
  https://github.com/timescale/timescaledb/releases/tag/1.4.1
  https://github.com/timescale/timescaledb/releases/tag/1.4.2

-------------------------------------------------------------------
Tue Oct 22 15:34:17 UTC 2019 - Marcus Rueckert <mrueckert@suse.de>

- adding postgresql12 to _multibuild

-------------------------------------------------------------------
Tue Feb  5 13:48:51 UTC 2019 - Jan Engelhardt <jengelh@inai.de>

- Fix grammar. Trim duplicate metadata.

-------------------------------------------------------------------
Wed Jan 30 17:02:26 UTC 2019 - Bruno Friedmann <bruno@ioda-net.ch>

- Update to release 1.2.0 (2019-01-29)
  + Postgres 11 fully supported.
  + Deprecation of adaptive chunking
  + Advanced data lifecycle management : scheduled policies
    support scheduled drop_chunks and reorder.
  + Improved performance: support for ordered appends,
    Note that ordered appends do not support ordering by time_bucket
    at this time.
  + first release to include Timescale-Licensed features.
    LICENSE_TIMESCALE. This code can be found in tsl.
    (tsl is not build on openSUSE)
  + 1.1.1
    - Fix issue when upgrading with pg_upgrade
    - Fix a segfault that sometimes appeared in long COPYs
    - Other bug and stability fixes
- Packaging :
  + Add -DAPACHE_ONLY=1 to avoid tsl code and submodules
  + Multibuild : add postgresql11 now supported
  + Deps : revisit BuildRequires

-------------------------------------------------------------------
Wed Jan 30 17:02:26 UTC 2019 - Bruno Friedmann <bruno@ioda-net.ch>

- Update to release 1.2.0 (2019-01-29)
  + Postgres 11 fully supported.
  + Deprecation of adaptive chunking
  + Advanced data lifecycle management : scheduled policies
    support scheduled drop_chunks and reorder.
  + Improved performance: support for ordered appends,
    Note that ordered appends do not support ordering by time_bucket
    at this time.
  + first release to include Timescale-Licensed features.
    LICENSE_TIMESCALE. This code can be found in tsl.
    (tsl is not build on openSUSE)
  + 1.1.1
    - Fix issue when upgrading with pg_upgrade
    - Fix a segfault that sometimes appeared in long COPYs
    - Other bug and stability fixes
- Packaging :
  + Add -DAPACHE_ONLY=1 to avoid tsl code and submodules
  + Multibuild : add postgresql11 now supported
  + Deps : revisit BuildRequires

-------------------------------------------------------------------
Wed Nov 28 17:55:39 UTC 2018 - Bruno Friedmann <bruno@ioda-net.ch>

- Update to final release version 1.0.0 (2018-10-31)
  For complete changelog see
  https://github.com/timescale/timescaledb/releases
  or CHANGELOG file packaged
- LICENSE file was renammed to LICENSE-APACHE
- Packaging renew spec with spec-cleaner -m

-------------------------------------------------------------------
Fri May 18 19:47:42 UTC 2018 - jengelh@inai.de

- Trim redundancies from the description.

-------------------------------------------------------------------
Sat May  5 11:02:20 UTC 2018 - bruno@ioda-net.ch

- Update to release 0.9.2 (2018-05-04)
  + High-level changes
    Fixed handling of DISCARD ALL command when parallel workers are
     involved, which sometimes caused the extension to complain it
     was not preloaded
    User permission bug fix where users locating TRIGGER permissions
    in a database could not insert data into a hypertable
   + Fixes for some issues with 32-bit architectures
- Changes for 0.9.1
  + High-level changes
    For this release only, you will need to restart the database
    before running ALTER EXTENSION
    Several edge cases regarding CTEs addressed
    Updated preloader with better error messaging and fixed edge case
    ABI compatibility with latest PostgreSQL to help catch any
    breaking changes
- Changes for 0.9.0
  + When updating your database, you should connect using
    psql with the -X flag to prevent any .psqlrc commands from
    accidentally triggering the load of a previous DB version.
  + High-level changes
    Support for multiple extension versions on different databases
    in the same PostgreSQL instance.
    This allows different databases to be updated independently
    and provides for smoother updates between versions. No
    more spurious errors in the log as the extension is being
    updated, and new versions no longer require a restart of
    the database.
  + Streamlined update process for smaller binary/package sizes
  + Significant refactoring to simplify and improve codebase,
    including improvements to error handling, security/permissions
  + Corrections to edge-case scenarios involving dropping schemas,
    hypertables, dimensions, and more
  + Correctness improvements through propagating reloptions from main
    table to chunk tables and blocking ONLY commands that try to alter
    hypertables (i.e., changes should be applied to chunks as well)
  + Addition of a migrate_data option to create_hypertable to allow
    non-empty tables to be turned into hypertables without separate
    creation & insertion steps. Note, this option may take a while
    if the original table has lots of data
  + Support for ALTER TABLE RENAME CONSTRAINT
  + Support for adjusting the number of partitions for a space dimension
  + Improvements to tablespace handling

-------------------------------------------------------------------
Tue Feb  6 15:23:42 UTC 2018 - bruno@ioda-net.ch

- Adapt cmake ld flags (no-as-needed) for build on Leap 42x/SLE12

-------------------------------------------------------------------
Sun Feb  4 19:42:02 UTC 2018 - bruno@ioda-net.ch

- initial package
openSUSE Build Service is sponsored by