Skip to content

Commit e5a6433

Browse files
committed
Merge branch 'master' into feature/cognito-test
2 parents 3da10a1 + f7175ee commit e5a6433

35 files changed

+1638
-701
lines changed

.github/workflows/build.yml

+16-4
Original file line numberDiff line numberDiff line change
@@ -27,28 +27,40 @@ jobs:
2727
- name: Install nodejs
2828
uses: actions/setup-node@v3
2929
with:
30-
node-version: 16
30+
node-version: '16.x'
31+
registry-url: 'https://npm.pkg.github.com'
32+
scope: 'AtlasOfLivingAustralia'
3133

3234
- run: npm install
3335
- run: npm run package-turf
36+
37+
38+
- name: Update your package.json with an npm pre-release version
39+
id: pre-release-version
40+
uses: adobe/update-prerelease-npm-version@v1.0.0
41+
42+
- run: npm publish
43+
env:
44+
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45+
3446
- name: Validate Gradle wrapper
3547
uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b
3648

3749
- name: Run tests and jacoco coverage report with Gradle
38-
uses: gradle/gradle-build-action@0d13054264b0bb894ded474f08ebb30921341cee
50+
uses: gradle/gradle-build-action@v2.4.2
3951
with:
4052
arguments: -PenableJacoco=true test
4153

4254
- name: Run javascript unit tests
4355
run: node_modules/karma/bin/karma start karma.conf.js --single-run --browsers ChromeHeadless
4456

4557
- name: Clean to remove clover instrumentation
46-
uses: gradle/gradle-build-action@0d13054264b0bb894ded474f08ebb30921341cee
58+
uses: gradle/gradle-build-action@v2.4.2
4759
with:
4860
arguments: clean
4961

5062
- name: Publish the JAR to the repository
51-
uses: gradle/gradle-build-action@0d13054264b0bb894ded474f08ebb30921341cee
63+
uses: gradle/gradle-build-action@v2.4.2
5264
with:
5365
arguments: publish
5466
env:

.travis.yml

-51
This file was deleted.

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ plugins {
1818
}
1919

2020

21-
version "6.1-PWA-SNAPSHOT"
21+
version "6.3-PWA-SNAPSHOT"
2222
group "org.grails.plugins"
2323

2424
apply plugin:"eclipse"

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
groovyVersion=3.0.11
2-
grailsVersion=5.3.2
2+
grailsVersion=5.3.5
33
gorm.version=7.1.2
44
grailsGradlePluginVersion=5.3.0
55
org.gradle.daemon=true
@@ -14,4 +14,4 @@ org.gradle.jvmargs=-Dfile.encoding=UTF-8 -Xss2048k -Xmx1024M
1414
exploded=true
1515
enableClover=false
1616
enableJacoco=true
17-
alaSecurityLibsVersion=6.0.0
17+
alaSecurityLibsVersion=6.2.0

grails-app/assets/javascripts/feature.js

+2
Original file line numberDiff line numberDiff line change
@@ -614,6 +614,8 @@ ecodata.forms.maps.showMapInModal = function(options) {
614614

615615
})
616616
.one('hidden.bs.modal', function (e) {
617+
$ok.unbind('click', okPressed); // This is done because otherwise when cancel is pressed the listener isn't removed.
618+
617619
// This check is necessary because the accordion also fires these events which bubble to the modal.
618620
if (e.target == this) {
619621
self.featureMapInstance.clearDrawnItems();

0 commit comments

Comments
 (0)