Skip to content

Commit

Permalink
Merge branch 'main' into apply-pre-commit-all-files
Browse files Browse the repository at this point in the history
  • Loading branch information
wslulciuc authored Aug 10, 2023
2 parents 44c2989 + 55b55bf commit a518419
Show file tree
Hide file tree
Showing 15 changed files with 42 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .circleci/api-load-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
set -e

# Build version of Marquez
readonly MARQUEZ_VERSION=0.39.0-SNAPSHOT
readonly MARQUEZ_VERSION=0.40.0-SNAPSHOT
# Fully qualified path to marquez.jar
readonly MARQUEZ_JAR="api/build/libs/marquez-api-${MARQUEZ_VERSION}.jar"

Expand Down
2 changes: 1 addition & 1 deletion .circleci/db-migration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# Version of PostgreSQL
readonly POSTGRES_VERSION="12.1"
# Version of Marquez
readonly MARQUEZ_VERSION=0.38.0
readonly MARQUEZ_VERSION=0.39.0
# Build version of Marquez
readonly MARQUEZ_BUILD_VERSION="$(git log --pretty=format:'%h' -n 1)" # SHA1

Expand Down
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
API_PORT=5000
API_ADMIN_PORT=5001
WEB_PORT=3000
TAG=0.38.0
TAG=0.39.0
21 changes: 20 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
# Changelog

## [Unreleased](https://github.com/MarquezProject/marquez/compare/0.38.0...HEAD)
## [Unreleased](https://github.com/MarquezProject/marquez/compare/0.39.0...HEAD)

## [0.39.0](https://github.com/MarquezProject/marquez/compare/0.38.0...0.39.0) - 2023-08-08
### Added
* Web: add full graph toggle [`#2569`](https://github.com/MarquezProject/marquez/pull/2569) [@jlukenoff](https://github.com/jlukenoff)
*Adds a toggle to the Lineage UI to let users switch between viewing the full graph and only the selected paths.*
* Web: add ARIA labels to input fields [`#2562`](https://github.com/MarquezProject/marquez/pull/2562) [@merobi-hub](https://github.com/merobi-hub)
*Adds i18next-compliant ARIA labels to input fields for improved accessibility.*

### Changed
* Web: upgrade React to version 18 [`#2563`](https://github.com/MarquezProject/marquez/pull/2563) [@Xavier-Cliquennois](https://github.com/Xavier-Cliquennois)
*Upgrades the Web client in order to utilize the latest version of Node.js and update all dependencies to their respective latest versions.*

### Fixed
* Web: fix the stylesheet for the date selector [`#2573`](https://github.com/MarquezProject/marquez/pull/2573) [@phixme](https://github.com/phixMe)
*Fixes margins and moves the label to be more inline with what the defaults are to fix issues caused by the recent Material-UI upgrade.*
* Web: update i18n for general search filter and `runInfo` facets search [`#2557`](https://github.com/MarquezProject/marquez/pull/2557) [@merobi-hub](https://github.com/merobi-hub)
*Adds missing i18n support for `runInfo` and search.*
* Docker: update web proxy import [`#2571`](https://github.com/MarquezProject/marquez/pull/2571) [@phixme](https://github.com/phixMe)
*Updates the import style for the `http-proxy-middleware`.*

## [0.38.0](https://github.com/MarquezProject/marquez/compare/0.37.0...0.38.0) - 2023-08-02
### Added
Expand Down
2 changes: 1 addition & 1 deletion chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ name: marquez
sources:
- https://github.com/MarquezProject/marquez
- https://marquezproject.github.io/marquez/
version: 0.38.0
version: 0.39.0
4 changes: 2 additions & 2 deletions chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ marquez:
image:
registry: docker.io
repository: marquezproject/marquez
tag: 0.38.0
tag: 0.39.0
pullPolicy: IfNotPresent
## Name of the existing secret containing credentials for the Marquez installation.
## When this is specified, it will take precedence over the values configured in the 'db' section.
Expand Down Expand Up @@ -75,7 +75,7 @@ web:
image:
registry: docker.io
repository: marquezproject/marquez-web
tag: 0.38.0
tag: 0.39.0
pullPolicy: IfNotPresent
## Marquez website will run on this port
##
Expand Down
6 changes: 3 additions & 3 deletions clients/java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@ Maven:
<dependency>
<groupId>io.github.marquezproject</groupId>
<artifactId>marquez-java</artifactId>
<version>0.38.0</version>
<version>0.39.0</version>
</dependency>
```

or Gradle:

```groovy
implementation 'io.github.marquezproject:marquez-java:0.38.0
implementation 'io.github.marquezproject:marquez-java:0.39.0
```

## Usage

### Reading Metadata
```java
// Connect to http://localhost:5000
MarquezClient client = MarquezClient().builder()
MarquezClient client = MarquezClient.builder()
.baseUrl("http://localhost:5000")
.build()

Expand Down
2 changes: 1 addition & 1 deletion clients/python/marquez_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# -*- coding: utf-8 -*-

__author__ = """Marquez Project"""
__version__ = "0.39.0"
__version__ = "0.40.0"

from marquez_client.client import MarquezClient # noqa: F401
from marquez_client.clients import Clients # noqa: F401
2 changes: 1 addition & 1 deletion clients/python/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.39.0
current_version = 0.40.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<rc>.*)
Expand Down
2 changes: 1 addition & 1 deletion clients/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

setup(
name="marquez-python",
version="0.39.0",
version="0.40.0",
description="Marquez Python Client",
long_description=readme,
long_description_content_type="text/markdown",
Expand Down
4 changes: 2 additions & 2 deletions docker/up.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
set -e

# Version of Marquez
readonly VERSION=0.38.0
readonly VERSION=0.39.0
# Build version of Marquez
readonly BUILD_VERSION=0.38.0
readonly BUILD_VERSION=0.39.0

title() {
echo -e "\033[1m${1}\033[0m"
Expand Down
4 changes: 2 additions & 2 deletions docs/openapi.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ org.gradle.jvmargs=--add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAME
--add-exports jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED \
--add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED

version=0.39.0-SNAPSHOT
version=0.40.0-SNAPSHOT
2 changes: 1 addition & 1 deletion spec/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
openapi: 3.0.2
info:
title: Marquez
version: 0.39.0-SNAPSHOT
version: 0.40.0-SNAPSHOT
description: Marquez is an open source **metadata service** for the **collection**, **aggregation**,
and **visualization** of a data ecosystem's metadata.
license:
Expand Down
10 changes: 4 additions & 6 deletions web/src/components/core/date-picker/MqDatePicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,8 @@ const MqDatePicker: React.FC<DatePickerProps> = ({
<DateTimePicker
label={label}
sx={{
minWidth: '200px',
'.MuiFormLabel-root': {
transform: 'translate(14px, 0px) scale(0.75)',
label: {
left: theme.spacing(2),
},
'&:hover': {
'.MuiOutlinedInput-notchedOutline': {
Expand All @@ -42,10 +41,9 @@ const MqDatePicker: React.FC<DatePickerProps> = ({
'.MuiOutlinedInput-notchedOutline': {
border: `2px solid ${theme.palette.common.white}`,
borderRadius: theme.spacing(4),
top: '-16px',
left: '-6px',
'> legend': {
display: 'none',
marginLeft: theme.spacing(2),
left: theme.spacing(2),
},
},
}}
Expand Down

0 comments on commit a518419

Please sign in to comment.