Skip to content

Commit 10c4860

Browse files
committed
Merge branch 'release/1.10.11'
2 parents dcf3cef + bd393a9 commit 10c4860

36 files changed

+3580
-16515
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
**1.10.11 (2023-11-28)**
2+
3+
- Nieuwe versies van ondersteunende software bibliotheken in gebruik genomen.
4+
- Fix voor jQuery deprecation van `ready()` in de backend.
5+
- Als Gutenberg gebruikt werd als editor voor locaties dan werd de kaart om een locatie te selecteren niet weergegeven. Dit is nu opgelost door pas te renderen wanneer Gutenberg klaar is.
6+
- Action `gh_dim_shortcode` toegevoegd die wordt aangeroepen bij uitvoeren shortcode.
7+
18
**1.10.10 (2023-09-05)**
29

310
- PDOK Locatieserver is verhuisd naar een nieuw adres. Nieuwe URL's overgenomen voor de zoekdienst.

package-lock.json

Lines changed: 3517 additions & 16455 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gh-datainmap",
3-
"version": "1.10.10",
3+
"version": "1.10.11",
44
"description": "",
55
"main": "index.js",
66
"scripts": {
@@ -19,36 +19,34 @@
1919
"dependencies": {
2020
"@babel/polyfill": "^7.12.1",
2121
"classnames": "^2.3.1",
22-
"core-js": "~3.15.2",
22+
"core-js": "~3.33.3",
2323
"lodash": "^4.17.21",
24-
"ol": "~6.5.0",
25-
"proj4": "^2.7.5",
24+
"ol": "~8.2.0",
25+
"proj4": "^2.9.2",
2626
"react": "^17.0.1",
2727
"react-dom": "^17.0.1",
2828
"react-redux": "^7.2.2",
2929
"react-transition-group": "^4.4.2",
30-
"redux": "^4.1.1",
30+
"redux": "^4.2.1",
3131
"redux-debounced": "^0.5.0",
3232
"redux-devtools-extension": "^2.13.9",
3333
"redux-thunk": "^2.3.0",
34-
"whatwg-fetch": "^3.6.1"
34+
"whatwg-fetch": "^3.6.19"
3535
},
3636
"devDependencies": {
37-
"@babel/core": "^7.15.0",
38-
"@babel/preset-env": "^7.15.0",
39-
"@babel/preset-react": "^7.14.5",
40-
"archiver": "^4.0.2",
41-
"babel-loader": "^8.2.2",
37+
"@babel/core": "^7.23.3",
38+
"@babel/preset-env": "^7.23.3",
39+
"@babel/preset-react": "^7.23.3",
40+
"babel-loader": "^9.1.3",
4241
"babel-preset-react": "^6.24.1",
43-
"css-loader": "^3.6.0",
44-
"html-loader": "^0.5.5",
45-
"markdown-it": "^12.0.4",
42+
"css-loader": "^6.8.1",
43+
"html-loader": "^4.2.0",
4644
"node-sass": "^7.0.3",
4745
"remote-redux-devtools": "^0.5.16",
4846
"sass": "^1.35.1",
49-
"sass-loader": "^10.0.0",
50-
"style-loader": "^1.3.0",
51-
"webpack": "^4.46.0",
52-
"webpack-cli": "^3.3.12"
47+
"sass-loader": "^13.3.2",
48+
"style-loader": "^3.3.3",
49+
"webpack": "^5.75.0",
50+
"webpack-cli": "^5.1.4"
5351
}
5452
}

plugins/gh-datainmap/DESCRIPTION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Met de zoekfunctie, welke gebruik maakt van de API van PDOK, is het mogelijk om
1616

1717
# Licentie
1818

19-
Copyright 2020-2022 Gemeente Heerenveen
19+
Copyright 2020-2023 Gemeente Heerenveen
2020

2121
Licensed under the EUPL, Version 1.2 or – as soon they will be approved by the European Commission - subsequent versions of the EUPL (the "Licence");
2222
You may not use this work except in compliance with the Licence.

plugins/gh-datainmap/gh-datainmap.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: Data In Map
44
Plugin URI: https://github.com/OpenWebconcept/plugin-datainmap
55
Description: Data In Map is a plugin for displaying maps.
6-
Version: 1.10.10
6+
Version: 1.10.11
77
Requires at least: 5.0
88
Requires PHP: 7.2
99
Author: Gemeente Heerenveen
@@ -12,7 +12,7 @@
1212
License URI: https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
1313
License: EUPL v1.2
1414
15-
Copyright 2020-2022 Gemeente Heerenveen
15+
Copyright 2020-2023 Gemeente Heerenveen
1616
1717
Licensed under the EUPL, Version 1.2 or – as soon they will be approved by the European Commission - subsequent versions of the EUPL (the "Licence");
1818
You may not use this work except in compliance with the Licence.
@@ -26,7 +26,7 @@
2626
*/
2727

2828
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
29-
if ( ! defined('GH_DIM_VERSION')) define('GH_DIM_VERSION', '1.10.10');
29+
if ( ! defined('GH_DIM_VERSION')) define('GH_DIM_VERSION', '1.10.11');
3030
if ( ! defined('GH_DIM_FILE')) define('GH_DIM_FILE', __FILE__);
3131
if ( ! defined('GH_DIM_DIR')) define('GH_DIM_DIR', dirname(__FILE__));
3232
if ( ! defined('GH_DIM_DEBUG')) define('GH_DIM_DEBUG', false);

plugins/gh-datainmap/includes/ajax.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/*
3-
* Copyright 2020-2022 Gemeente Heerenveen
3+
* Copyright 2020-2023 Gemeente Heerenveen
44
*
55
* Licensed under the EUPL, Version 1.2 or – as soon they will be approved by the European Commission - subsequent versions of the EUPL (the "Licence");
66
* You may not use this work except in compliance with the Licence.

plugins/gh-datainmap/includes/menus.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/*
3-
* Copyright 2020-2022 Gemeente Heerenveen
3+
* Copyright 2020-2023 Gemeente Heerenveen
44
*
55
* Licensed under the EUPL, Version 1.2 or – as soon they will be approved by the European Commission - subsequent versions of the EUPL (the "Licence");
66
* You may not use this work except in compliance with the Licence.

plugins/gh-datainmap/includes/metaboxes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/*
3-
* Copyright 2020-2022 Gemeente Heerenveen
3+
* Copyright 2020-2023 Gemeente Heerenveen
44
*
55
* Licensed under the EUPL, Version 1.2 or – as soon they will be approved by the European Commission - subsequent versions of the EUPL (the "Licence");
66
* You may not use this work except in compliance with the Licence.

plugins/gh-datainmap/includes/post-type.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/*
3-
* Copyright 2020-2022 Gemeente Heerenveen
3+
* Copyright 2020-2023 Gemeente Heerenveen
44
*
55
* Licensed under the EUPL, Version 1.2 or – as soon they will be approved by the European Commission - subsequent versions of the EUPL (the "Licence");
66
* You may not use this work except in compliance with the Licence.

plugins/gh-datainmap/includes/settings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/*
3-
* Copyright 2020-2022 Gemeente Heerenveen
3+
* Copyright 2020-2023 Gemeente Heerenveen
44
*
55
* Licensed under the EUPL, Version 1.2 or – as soon they will be approved by the European Commission - subsequent versions of the EUPL (the "Licence");
66
* You may not use this work except in compliance with the Licence.

0 commit comments

Comments
 (0)