Skip to content
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

Bump to update3 dependencies #429

Merged
merged 6 commits into from
Oct 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -624,5 +624,5 @@ All contributors are encouraged to read the [Ballerina code of conduct](https://
## Useful links

* For more information go to the [`oracledb` library](https://lib.ballerina.io/ballerinax/oracledb/latest).
* Chat live with us via our [Slack channel](https://ballerina.io/community/slack/).
* Chat live with us via our [Discord server](https://discord.gg/ballerinalang).
* Post all technical questions on Stack Overflow with the [#ballerina](https://stackoverflow.com/questions/tagged/ballerina) tag.
12 changes: 6 additions & 6 deletions ballerina/Ballerina.toml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
[package]
org = "ballerinax"
name = "oracledb"
version = "1.5.0"
version = "1.6.0"
authors = ["Ballerina"]
keywords = ["database", "client", "network", "SQL", "RDBMS", "OracleDB", "Oracle"]
repository = "https://github.com/ballerina-platform/module-ballerinax-oracledb"
icon = "icon.png"
license = ["Apache-2.0"]
distribution = "2201.2.0"
distribution = "2201.3.0"

[[platform.java11.dependency]]
groupId = "io.ballerina.stdlib"
artifactId = "oracledb-native"
version = "1.5.0"
path = "../native/build/libs/oracledb-native-1.5.0.jar"
version = "1.6.0"
path = "../native/build/libs/oracledb-native-1.6.0-SNAPSHOT.jar"

[[platform.java11.dependency]]
groupId = "io.ballerina.stdlib"
artifactId = "sql-native"
version = "1.5.0"
path = "./lib/sql-native-1.5.0.jar"
version = "1.6.0"
path = "./lib/sql-native-1.6.0-20221014-221200-0061889.jar"

[[platform.java11.dependency]]
path = "./lib/ojdbc8-12.2.0.1.jar"
Expand Down
2 changes: 1 addition & 1 deletion ballerina/CompilerPlugin.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ id = "oracledb-compiler-plugin"
class = "io.ballerina.stdlib.oracledb.compiler.OracleDBCompilerPlugin"

[[dependency]]
path = "../compiler-plugin/build/libs/oracledb-compiler-plugin-1.5.0.jar"
path = "../compiler-plugin/build/libs/oracledb-compiler-plugin-1.6.0-SNAPSHOT.jar"
51 changes: 31 additions & 20 deletions ballerina/Dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies-toml-version = "2"
[[package]]
org = "ballerina"
name = "auth"
version = "2.4.0"
version = "2.5.0"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "crypto"},
Expand All @@ -23,9 +23,10 @@ dependencies = [
[[package]]
org = "ballerina"
name = "cache"
version = "3.2.2"
version = "3.4.0"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "constraint"},
{org = "ballerina", name = "jballerina.java"},
{org = "ballerina", name = "task"},
{org = "ballerina", name = "time"}
Expand All @@ -34,7 +35,7 @@ dependencies = [
[[package]]
org = "ballerina"
name = "constraint"
version = "1.0.0"
version = "1.0.1"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "jballerina.java"}
Expand All @@ -43,7 +44,7 @@ dependencies = [
[[package]]
org = "ballerina"
name = "crypto"
version = "2.2.2"
version = "2.3.0"
dependencies = [
{org = "ballerina", name = "jballerina.java"},
{org = "ballerina", name = "time"}
Expand All @@ -55,7 +56,7 @@ modules = [
[[package]]
org = "ballerina"
name = "file"
version = "1.4.0"
version = "1.5.0"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "io"},
Expand All @@ -72,7 +73,7 @@ modules = [
[[package]]
org = "ballerina"
name = "http"
version = "2.4.0"
version = "2.5.0"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "auth"},
Expand Down Expand Up @@ -101,7 +102,7 @@ dependencies = [
[[package]]
org = "ballerina"
name = "io"
version = "1.3.0"
version = "1.3.1"
dependencies = [
{org = "ballerina", name = "jballerina.java"},
{org = "ballerina", name = "lang.value"}
Expand All @@ -121,7 +122,7 @@ modules = [
[[package]]
org = "ballerina"
name = "jwt"
version = "2.4.0"
version = "2.5.0"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "cache"},
Expand Down Expand Up @@ -177,6 +178,15 @@ org = "ballerina"
name = "lang.object"
version = "0.0.0"

[[package]]
org = "ballerina"
name = "lang.regexp"
version = "0.0.0"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "jballerina.java"}
]

[[package]]
org = "ballerina"
name = "lang.runtime"
Expand All @@ -195,7 +205,8 @@ name = "lang.string"
version = "0.0.0"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "jballerina.java"}
{org = "ballerina", name = "jballerina.java"},
{org = "ballerina", name = "lang.regexp"}
]
modules = [
{org = "ballerina", packageName = "lang.string", moduleName = "lang.string"}
Expand Down Expand Up @@ -224,7 +235,7 @@ dependencies = [
[[package]]
org = "ballerina"
name = "log"
version = "2.4.0"
version = "2.5.0"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "io"},
Expand All @@ -236,7 +247,7 @@ dependencies = [
[[package]]
org = "ballerina"
name = "mime"
version = "2.4.0"
version = "2.5.0"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "io"},
Expand All @@ -247,7 +258,7 @@ dependencies = [
[[package]]
org = "ballerina"
name = "oauth2"
version = "2.4.0"
version = "2.5.0"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "cache"},
Expand All @@ -269,7 +280,7 @@ dependencies = [
[[package]]
org = "ballerina"
name = "os"
version = "1.4.0"
version = "1.5.0"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "io"},
Expand All @@ -279,7 +290,7 @@ dependencies = [
[[package]]
org = "ballerina"
name = "regex"
version = "1.3.0"
version = "1.3.1"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "jballerina.java"},
Expand All @@ -289,7 +300,7 @@ dependencies = [
[[package]]
org = "ballerina"
name = "sql"
version = "1.5.0"
version = "1.6.0"
dependencies = [
{org = "ballerina", name = "io"},
{org = "ballerina", name = "jballerina.java"},
Expand All @@ -303,7 +314,7 @@ modules = [
[[package]]
org = "ballerina"
name = "task"
version = "2.2.2"
version = "2.3.0"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "jballerina.java"},
Expand All @@ -325,7 +336,7 @@ modules = [
[[package]]
org = "ballerina"
name = "time"
version = "2.2.2"
version = "2.2.3"
dependencies = [
{org = "ballerina", name = "jballerina.java"}
]
Expand All @@ -336,7 +347,7 @@ modules = [
[[package]]
org = "ballerina"
name = "url"
version = "2.2.2"
version = "2.2.3"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "jballerina.java"}
Expand All @@ -345,7 +356,7 @@ dependencies = [
[[package]]
org = "ballerina"
name = "uuid"
version = "1.3.0"
version = "1.4.0"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "crypto"},
Expand Down Expand Up @@ -380,7 +391,7 @@ modules = [
[[package]]
org = "ballerinax"
name = "oracledb"
version = "1.5.0"
version = "1.6.0"
dependencies = [
{org = "ballerina", name = "crypto"},
{org = "ballerina", name = "file"},
Expand Down
2 changes: 1 addition & 1 deletion ballerina/Package.md
Original file line number Diff line number Diff line change
Expand Up @@ -527,5 +527,5 @@ Varray charVarray = { name:"CharArrayType", elements: charArray };
To report bugs, request new features, start new discussions, view project boards, etc., go to the [Ballerina standard library parent repository](https://github.com/ballerina-platform/ballerina-standard-library)

## Useful links
- Chat live with us via our [Slack channel](https://ballerina.io/community/slack/).
- Chat live with us via our [Discord server](https://discord.gg/ballerinalang).
- Post all technical questions on Stack Overflow with the [#ballerina](https://stackoverflow.com/questions/tagged/ballerina) tag.
2 changes: 1 addition & 1 deletion build-config/resources/Ballerina.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["database", "client", "network", "SQL", "RDBMS", "OracleDB", "Oracle
repository = "https://github.com/ballerina-platform/module-ballerinax-oracledb"
icon = "icon.png"
license = ["Apache-2.0"]
distribution = "2201.2.0"
distribution = "2201.3.0"

[[platform.java11.dependency]]
groupId = "io.ballerina.stdlib"
Expand Down
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added

### Changed
- [Updated API Docs](https://github.com/ballerina-platform/ballerina-standard-library/issues/3463)

## [1.5.0] - 2022-09-08

Expand Down
2 changes: 1 addition & 1 deletion docs/spec/spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This is the specification for the OracleDB standard library of [Ballerina langua

The OracleDB library specification has evolved and may continue to evolve in the future. The released versions of the specification can be found under the relevant GitHub tag.

If you have any feedback or suggestions about the library, start a discussion via a [GitHub issue](https://github.com/ballerina-platform/ballerina-standard-library/issues) or in the [Slack channel](https://ballerina.io/community/). Based on the outcome of the discussion, the specification and implementation can be updated. Community feedback is always welcome. Any accepted proposal, which affects the specification is stored under `/docs/proposals`. Proposals under discussion can be found with the label `type/proposal` in GitHub.
If you have any feedback or suggestions about the library, start a discussion via a [GitHub issue](https://github.com/ballerina-platform/ballerina-standard-library/issues) or in the [Discord server](https://discord.gg/ballerinalang). Based on the outcome of the discussion, the specification and implementation can be updated. Community feedback is always welcome. Any accepted proposal, which affects the specification is stored under `/docs/proposals`. Proposals under discussion can be found with the label `type/proposal` in GitHub.

The conforming implementation of the specification is released to Ballerina Central. Any deviation from the specification is considered a bug.

Expand Down
42 changes: 21 additions & 21 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=io.ballerina.stdlib
version=1.5.1-SNAPSHOT
version=1.6.0-SNAPSHOT

puppycrawlCheckstyleVersion=8.18
oracleDBDriverVersion=12.2.0.1
Expand All @@ -13,48 +13,48 @@ researchgateReleaseVersion=2.8.0
testngVersion=7.4.0
ballerinaGradlePluginVersion=0.15.0

ballerinaLangVersion=2201.2.0
ballerinaLangVersion=2201.3.0-20221014-074800-bbf5f7a2

stdlibSqlVersion=1.5.0
stdlibSqlVersion=1.6.0-20221014-221200-0061889

# Direct Dependencies
# Level 01
stdlibIoVersion=1.3.0
stdlibRegexVersion=1.3.0
stdlibTimeVersion=2.2.2
stdlibIoVersion=1.3.1-20221013-104400-2228262
stdlibRegexVersion=1.3.1-20221012-141600-b6ec370
stdlibTimeVersion=2.2.3-20221013-110700-b1911b4

# Level 02
stdlibLogVersion=2.4.0
stdlibOsVersion=1.4.0
stdlibLogVersion=2.5.0-20221014-133600-ea6f498
stdlibOsVersion=1.5.0-20221014-133500-f99ac89

# Level 03
stdlibFileVersion=1.4.0
stdlibFileVersion=1.5.0-20221014-140400-9a53e89

# Ballerinax Observer
observeVersion=1.0.5
observeInternalVersion=1.0.4

# Transitive Dependencies
# Level 01
stdlibConstraintVersion=1.0.0
stdlibUrlVersion=2.2.2
stdlibConstraintVersion=1.0.1-20221012-153500-b7200cb
stdlibUrlVersion=2.2.3-20221012-145800-3753746

# Level 02
stdlibCryptoVersion=2.2.2
stdlibTaskVersion=2.2.2
stdlibCryptoVersion=2.3.0-20221014-133300-0f584b5
stdlibTaskVersion=2.3.0-20221014-133500-afca7e3

# Level 03
stdlibCacheVersion=3.2.2
stdlibMimeVersion=2.4.0
stdlibUuidVersion=1.3.0
stdlibCacheVersion=3.4.0-20221014-150800-44fc45d
stdlibMimeVersion=2.5.0-20221014-140900-ff6b57f
stdlibUuidVersion=1.4.0-20221014-140700-0f68043

# Level 04
stdlibAuthVersion=2.4.0
stdlibJwtVersion=2.4.0
stdlibOAuth2Version=2.4.0
stdlibAuthVersion=2.5.0-20221014-153100-e83e5f7
stdlibJwtVersion=2.5.0-20221014-153300-36ee0f4
stdlibOAuth2Version=2.5.0-20221014-153400-ea71746

# Level 05
stdlibHttpVersion=2.4.0
stdlibHttpVersion=2.5.0-20221014-181800-cf6925c

# Level 06
stdlibTransactionVersion=1.2.0
stdlibTransactionVersion=1.3.0-20221014-205200-de7e421