@socialgouv/cdtn-elasticsearch 2.25.0 → 2.26.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [2.26.0](https://github.com/SocialGouv/cdtn-admin/compare/v2.25.1...v2.26.0) (2023-12-04)
7
+
8
+ ### Features
9
+
10
+ - **contributions:** ajout des contributions à l'api publish ([#1110](https://github.com/SocialGouv/cdtn-admin/issues/1110)) ([2ed595c](https://github.com/SocialGouv/cdtn-admin/commit/2ed595cf98720e960dc7d74f28da1a8c3a1b3bd4)), closes [#1113](https://github.com/SocialGouv/cdtn-admin/issues/1113)
11
+
12
+ ## [2.25.1](https://github.com/SocialGouv/cdtn-admin/compare/v2.25.0...v2.25.1) (2023-11-29)
13
+
14
+ **Note:** Version bump only for package @socialgouv/cdtn-elasticsearch
15
+
6
16
  # [2.25.0](https://github.com/SocialGouv/cdtn-admin/compare/v2.24.2...v2.25.0) (2023-11-24)
7
17
 
8
18
  **Note:** Version bump only for package @socialgouv/cdtn-elasticsearch
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@socialgouv/cdtn-elasticsearch",
3
3
  "description": "SocialGouv - Code du travail numerique - Infrastructure - Elasticsearch",
4
- "version": "2.25.0",
4
+ "version": "2.26.0",
5
5
  "babel": {
6
6
  "plugins": [
7
7
  "@babel/plugin-transform-modules-commonjs"
@@ -44,5 +44,5 @@
44
44
  },
45
45
  "sideEffects": false,
46
46
  "typings": "src/index.d.ts",
47
- "gitHead": "ed6e8f5d1a2dbbd27b6c1a1a9665174d76d46f13"
47
+ "gitHead": "c0f6f86bbb27c806d11916c92c7fa6776a887955"
48
48
  }
@@ -97,7 +97,11 @@ async function deleteOldIndex({ client, patterns, timestamp }) {
97
97
  );
98
98
 
99
99
  return Promise.all(pIndicesToDelete).then(() => {
100
- logger.info(`Remove ${pIndicesToDelete.length} old indices`);
100
+ logger.info(
101
+ `Remove ${pIndicesToDelete.length} old indices (${JSON.stringify(
102
+ IndicesToDelete
103
+ )})`
104
+ );
101
105
  });
102
106
  }
103
107