Skip to content

Commit 39624b7

Browse files
committed
fix #443
1 parent e09b49c commit 39624b7

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: geoflow
2-
Version: 1.2.1
3-
Date: 2026-03-17
2+
Version: 1.2.1.9000
3+
Date: 2026-03-22
44
Title: Orchestrate Geospatial (Meta)Data Management Workflows and Manage FAIR Services
55
Description: An engine to facilitate the orchestration and execution of metadata-driven data management workflows, in compliance with 'FAIR'
66
(Findable, Accessible, Interoperable and Reusable) data management principles. By means of a pivot metadata model, relying on the 'DublinCore' standard (<https://dublincore.org/>),

NEWS.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [geoflow 1.2.1.9000](https://github.com/r-geoflow/geoflow) | [![CRAN_Status_Badge](https://img.shields.io/badge/CRAN-unavailable-orange.svg)](https://github.com/r-geoflow/geoflow)
2+
3+
4+
**Bug fixes**
5+
6+
* #443(https://github.com/r-geoflow/geoflow/issues/443) Missing sourceSql export in entity$asDataFrame
7+
18

29
## [geoflow 1.2.1](https://github.com/r-geoflow/geoflow) | [![CRAN_Status_Badge](https://img.shields.io/badge/CRAN-published-blue.svg)](https://github.com/r-geoflow/geoflow)
310

R/geoflow_entity.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2496,6 +2496,7 @@ geoflow_entity <- R6Class("geoflow_entity",
24962496
outdata <- paste0(outdata, "sourceFid:", paste0(self$data$sourceFid, collapse = ","), line_separator)
24972497
}
24982498
if(!is.null(self$data$sourceType)) outdata <- paste0(outdata, "sourceType:", self$data$sourceType, line_separator)
2499+
if(!is.null(self$data$sourceSql)) outdata <- paste0(outdata, "sourceSql:", self$data$sourceSql, line_separator)
24992500
#deprecate sourceZip/sourceZipOnly with #344
25002501
#if(!is.null(self$data$sourceZip)) outdata <- paste0(outdata, "sourceZip:", tolower(as.character(self$data$sourceZip)), line_separator)
25012502
#if(!is.null(self$data$sourceZipOnly)) outdata <- paste0(outdata, "sourceZipOnly:", tolower(as.character(self$data$sourceZipOnly)), line_separator)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
44
[![Build Status](https://github.com/r-geoflow/geoflow/actions/workflows/r-cmd-check.yml/badge.svg?branch=master)](https://github.com/r-geoflow/geoflow/actions/workflows/r-cmd-check.yml)
55
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/geoflow)](https://cran.r-project.org/package=geoflow)
6-
[![Github_Status_Badge](https://img.shields.io/badge/Github-1.2.1-blue.svg)](https://github.com/r-geoflow/geoflow)
6+
[![Github_Status_Badge](https://img.shields.io/badge/Github-1.2.1.9000-blue.svg)](https://github.com/r-geoflow/geoflow)
77
[![DOI](https://zenodo.org/badge/DOI//10.5281/zenodo.3138920.svg)](https://doi.org//10.5281/zenodo.3138920)
88

99
**Orchestrate Geospatial (Meta)Data Management Workflows and Manage FAIR Services**

0 commit comments

Comments
 (0)