-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merges tag v0.14.8 into v1 #1565
Merged
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
ec512d2
qualified identifier (#1411)
yliuuuu 0f6e751
Add warning to not implement sprout-generated visitor interfaces (#1413)
alancai98 140b1f0
Prepares 0.14.5 release (#1419)
RCHowell e366fdc
Prepares v0.14.6 snapshot (#1421)
RCHowell f76705e
Add custom ktlint rules to prevent Java interop issues (#1414)
alancai98 04cbdae
Remove unnecessary conversion steps in PartiQLValueIonReaderBuilder (…
popematt 0972fbe
Shade antlr dependency for partiql-parser and partiql-lang (#1439)
alancai98 2f2ab74
Upgrade JMH plugin dependency to 0.7.2 (#1462)
alancai98 2e22c43
delete staticTypeMeta (#1465)
yliuuuu 005dbce
Fixes ANTLR parser grammar and renames parser g4 file (#1474)
RCHowell d04d3dc
Changes INT/INTEGER to be an alias for INT4 (#1473)
RCHowell 6d98c8c
Fix Functions.md heading for text functions (#1479)
alancai98 1c3f1b9
Adds support for parameterized decimal cast (#1483)
RCHowell 0b2cd46
Update conformance GH action gradle version (#1485)
alancai98 416527c
Add implementation of date, time, and timestamp values for `PartiQLVa…
alancai98 52d978f
Add some tests missing from #1492 (#1493)
alancai98 be6d8e4
Updates decimal PR with null/missing
RCHowell 68ce31d
Merge remote-tracking branch 'origin/v0.14.6' into temp-v0.14.6
RCHowell f8da40b
Update CHANGELOG
RCHowell 0066d2a
Merge pull request #1495 from partiql/temp-v0.14.6
RCHowell 55a27e6
Fix published jars for non-shadowed packages (#1504)
alancai98 54c6c47
Add set op typing; fixes set op parsing and modeling (#1506)
alancai98 6c314d2
Update Maven publishing to use nexus publish plugin (#1517)
alancai98 f1d785f
Fix antlr dep partiql-lang (#1534)
alancai98 945558c
[v0.14.8-SNAPSHOT] Preserve constraint for decimal, string in dynamic…
yliuuuu 546a126
Prepare 0.14.8 release (#1554)
alancai98 351b9b8
Merge tag 'v0.14.8' into v1-merge-v0_14_8
johnedquinn 6877905
Fixes merge issues
johnedquinn 83916ca
Removes unused nodes
johnedquinn 1c2220b
Addresses PR comments
johnedquinn 2aec078
Adds tag links
johnedquinn File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import io.github.gradlenexus.publishplugin.NexusPublishExtension | ||
import java.time.Duration | ||
|
||
plugins { | ||
id("io.github.gradle-nexus.publish-plugin") | ||
} | ||
|
||
// We use gradle-nexus's publish-plugin to publish all of our published artifacts to Maven using OSSRH. | ||
// Documentation for this plugin, see https://github.com/gradle-nexus/publish-plugin/blob/v2.0.0/README.md | ||
// This plugin must be applied at the root project, so we include the following block around the nexus publish | ||
// extension. | ||
rootProject.run { | ||
plugins.apply("io.github.gradle-nexus.publish-plugin") | ||
extensions.getByType(NexusPublishExtension::class.java).run { | ||
this.repositories { | ||
sonatype { | ||
nexusUrl.set(uri("https://aws.oss.sonatype.org/service/local/")) | ||
username.set(properties["ossrhUsername"].toString()) | ||
password.set(properties["ossrhPassword"].toString()) | ||
} | ||
} | ||
|
||
// these are not strictly required. The default timeouts are set to 1 minute. But Sonatype can be really slow. | ||
// If you get the error "java.net.SocketTimeoutException: timeout", these lines will help. | ||
connectTimeout.set(Duration.ofMinutes(3)) | ||
clientTimeout.set(Duration.ofMinutes(3)) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The v0.14.8 CHANGELOG entry does not match w/ the v0.14.8 branch's CHANGELOG -- https://github.com/partiql/partiql-lang-kotlin/blob/v0.14.8/CHANGELOG.md. Perhaps it's because of a prior merge of
main
tov1
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch. Somehow that merged cleanly.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like we're also missing some of the CHANGELOG release links for v0.14.6-v0.14.8 -- https://github.com/johnedquinn/partiql-lang-jvm/blob/v1-merge-v0_14_8/CHANGELOG.md?plain=1#L1124-L1125.