Skip to content

Commit 32e8b11

Browse files
authored
Merge pull request #2129 from griidc/release/6.80.0
Release/6.80.0
2 parents c411ea3 + 964e704 commit 32e8b11

38 files changed

+4719
-1794
lines changed

.editorconfig

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,12 @@ indent_style = space
1010
insert_final_newline = true
1111
trim_trailing_whitespace = true
1212

13+
[*.js]
14+
indent_size = 2
15+
1316
[{compose.yaml,compose.*.yaml}]
1417
indent_size = 2
1518

1619
[*.md]
1720
trim_trailing_whitespace = false
21+

.env

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
###> symfony/framework-bundle ###
1818
APP_ENV=dev
1919
APP_SECRET=
20+
APP_SHARE_DIR=var/share
2021
###< symfony/framework-bundle ###
2122

2223
###> doctrine/doctrine-bundle ###
@@ -120,3 +121,9 @@ ESRI_API_KEY='yourkeyhere'
120121

121122
### Minimum reasonable number of datasets ###
122123
EXPECTED_DATASET_COUNT_MIN=0
124+
125+
###> symfony/routing ###
126+
# Configure how to generate URLs in non-HTTP contexts, such as CLI commands.
127+
# See https://symfony.com/doc/current/routing.html#generating-urls-in-commands
128+
DEFAULT_URI=http://localhost
129+
###< symfony/routing ###

.github/workflows/eslint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616

1717
- name: Setup PHP with PECL extension
1818
uses: shivammathur/setup-php@v2

.github/workflows/phpcs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616

1717
- name: Setup PHP with PECL extension
1818
uses: shivammathur/setup-php@v2

.github/workflows/phpunit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616

1717
- name: Setup PHP with PECL extension
1818
uses: shivammathur/setup-php@v2

assets/js/entry/map-search.js

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ $(() => {
136136
}).dxTreeList('instance');
137137

138138
const kwTreeList = $('#kw-tree').dxTreeList({
139-
dataSource: `${Routing.generate('api_keywords_level2')}/all`,
139+
dataSource: `${Routing.generate('api_keywords_level2')}/anzsrc`,
140140
keyExpr: 'id',
141141
parentIdExpr: 'parent',
142142
filterRow: {
@@ -154,6 +154,7 @@ $(() => {
154154
{
155155
widget: 'dxSelectBox',
156156
options: {
157+
visible: false,
157158
items: keywordFilters,
158159
valueExpr: 'id',
159160
displayExpr: 'text',
@@ -166,19 +167,20 @@ $(() => {
166167
'searchPanel',
167168
],
168169
},
169-
columns: [{
170-
dataField: 'label',
171-
caption: 'Keyword',
172-
dataType: 'string',
173-
allowSearch: true,
174-
},
175-
{
176-
dataType: 'string',
177-
dataField: 'type',
178-
caption: 'Type',
179-
visible: true,
180-
allowSearch: false,
181-
},
170+
columns: [
171+
{
172+
dataField: 'label',
173+
caption: 'Keyword',
174+
dataType: 'string',
175+
allowSearch: true,
176+
},
177+
{
178+
dataType: 'integer',
179+
dataField: 'count',
180+
caption: 'Count',
181+
visible: true,
182+
allowSearch: false,
183+
},
182184
],
183185
disabled: false,
184186
showRowLines: false,

composer.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -40,25 +40,25 @@
4040
"opensoft/doctrine-postgres-types": "^1.2",
4141
"phayes/geophp": "^1.2",
4242
"ramsey/uuid": "^4.1",
43-
"symfony/asset": "7.3.*",
44-
"symfony/console": "7.3.*",
45-
"symfony/doctrine-messenger": "7.3.*",
46-
"symfony/dotenv": "7.3.*",
43+
"symfony/asset": "7.4.*",
44+
"symfony/console": "7.4.*",
45+
"symfony/doctrine-messenger": "7.4.*",
46+
"symfony/dotenv": "7.4.*",
4747
"symfony/flex": "^2.4",
48-
"symfony/form": "7.3.*",
49-
"symfony/framework-bundle": "7.3.*",
50-
"symfony/ldap": "7.3.*",
51-
"symfony/mailer": "7.3.*",
48+
"symfony/form": "7.4.*",
49+
"symfony/framework-bundle": "7.4.*",
50+
"symfony/ldap": "7.4.*",
51+
"symfony/mailer": "7.4.*",
5252
"symfony/maker-bundle": "^1.13",
53-
"symfony/messenger": "7.3.*",
53+
"symfony/messenger": "7.4.*",
5454
"symfony/monolog-bundle": "^3.0",
55-
"symfony/runtime": "7.3.*",
56-
"symfony/security-bundle": "7.3.*",
57-
"symfony/translation": "7.3.*",
58-
"symfony/twig-bundle": "7.3.*",
59-
"symfony/validator": "7.3.*",
55+
"symfony/runtime": "7.4.*",
56+
"symfony/security-bundle": "7.4.*",
57+
"symfony/translation": "7.4.*",
58+
"symfony/twig-bundle": "7.4.*",
59+
"symfony/validator": "7.4.*",
6060
"symfony/webpack-encore-bundle": "^2.0",
61-
"symfony/yaml": "7.3.*",
61+
"symfony/yaml": "7.4.*",
6262
"twig/extra-bundle": "^3.0",
6363
"twig/twig": "^3.0"
6464
},
@@ -72,12 +72,12 @@
7272
"psalm/plugin-symfony": "^5.0",
7373
"rector/rector": "^1.2",
7474
"squizlabs/php_codesniffer": "^3.4",
75-
"symfony/browser-kit": "7.3.*",
76-
"symfony/css-selector": "7.3.*",
77-
"symfony/debug-bundle": "7.3.*",
78-
"symfony/phpunit-bridge": "7.3.*",
79-
"symfony/stopwatch": "7.3.*",
80-
"symfony/web-profiler-bundle": "7.3.*",
75+
"symfony/browser-kit": "7.4.*",
76+
"symfony/css-selector": "7.4.*",
77+
"symfony/debug-bundle": "7.4.*",
78+
"symfony/phpunit-bridge": "7.4.*",
79+
"symfony/stopwatch": "7.4.*",
80+
"symfony/web-profiler-bundle": "7.4.*",
8181
"vimeo/psalm": "^6.0"
8282
},
8383
"config": {
@@ -129,7 +129,7 @@
129129
"extra": {
130130
"symfony": {
131131
"allow-contrib": true,
132-
"require": "7.3.*"
132+
"require": "7.4.*"
133133
}
134134
}
135135
}

0 commit comments

Comments
 (0)