Revisions of clojure

Michael Vetter's avatar Michael Vetter (jubalh) committed (revision 36)
- Update to 1.11.1.1323:
  * CI related changes
buildservice-autocommit accepted request 1087337 from Michael Vetter's avatar Michael Vetter (jubalh) (revision 35)
baserev update by copy to link target
Michael Vetter's avatar Michael Vetter (jubalh) committed (revision 34)
- Update to 1.11.1.1290:
  * add release and promote actions
  * set aws region in workflows
buildservice-autocommit accepted request 1077100 from Michael Vetter's avatar Michael Vetter (jubalh) (revision 33)
baserev update by copy to link target
Michael Vetter's avatar Michael Vetter (jubalh) committed (revision 32)
- Update to 1.11.1.1273:
  * Change help text to point to -X:deps mvn-pom instead of -Spom
  * Switch to tools.deps 0.18.1335
buildservice-autocommit accepted request 1076593 from Michael Vetter's avatar Michael Vetter (jubalh) (revision 31)
baserev update by copy to link target
Michael Vetter's avatar Michael Vetter (jubalh) committed (revision 30)
- Update to 1.11.1.1267:
  * Switch to tools.deps 0.18.1331
buildservice-autocommit accepted request 1074880 from Michael Vetter's avatar Michael Vetter (jubalh) (revision 29)
baserev update by copy to link target
Michael Vetter's avatar Michael Vetter (jubalh) committed (revision 28)
- Update to 1.11.1.1262:
  * Switch to tools.deps 0.18.1317
buildservice-autocommit accepted request 1073539 from Michael Vetter's avatar Michael Vetter (jubalh) (revision 27)
baserev update by copy to link target
Michael Vetter's avatar Michael Vetter (jubalh) committed (revision 26)
- Update to 1.11.1.1257:
  * Use tools.deps 0.18.1308

- Update to 1.11.1.1252:
  * Switch to passing exec args via the basis :argmap
  * Function execution protocol support for -X/-T
  * Use tools.deps 0.17.1297

- Update to 1.11.1.1237:
  * Added env var that can be set to temporarily allow support for
    http repos: CLOJURE_CLI_ALLOW_HTTP_REPO
  * Remove deprecated support for -R and -C
  * Clean up help text around repl supporting init-opts
  * Use tools.deps 0.16.1285

- Update to 1.11.1.1224:
  * Fix issue with git tag verification for repos with a large number of tags
  * TDEPS-235 - Disallow http :mvn/repos
  * TDEPS-236 - Add rlwrap -m to clj for multiline editing

- Update to 1.11.1.1208:
  * TDEPS-234 - Always include -XX:-OmitStackTraceInFastThrow by default
  * Use tools.deps 0.16.1264

- Update to 1.11.1.1200:
  * Added support in :mvn/repos map to set release and snapshot policies
  * TDEPS-101 Output repo policies in -Spom and -X:deps mvn-pom
  * Use tools.deps.alpha 0.15.1254

- Update to 1.11.1.1189:
buildservice-autocommit accepted request 1000695 from Michael Vetter's avatar Michael Vetter (jubalh) (revision 25)
baserev update by copy to link target
Michael Vetter's avatar Michael Vetter (jubalh) accepted request 1000632 from Chris Coutinho's avatar Chris Coutinho (cbcoutinho) (revision 24)
Update to 1.11.1.1155
buildservice-autocommit accepted request 895664 from Michael Vetter's avatar Michael Vetter (jubalh) (revision 23)
baserev update by copy to link target
Michael Vetter's avatar Michael Vetter (jubalh) accepted request 895653 from Petr Cervinka's avatar Petr Cervinka (czerw) (revision 22)
- Update to 1.10.3.855:
  * Fix in applying :jvm-opts with -X execution on Windows
- Changes in 1.10.3.849:
  * Adds support for a trailing map of kvs in -X calls (similar to Clojure 1.11 trailing map to vararg calls)
  * Updates all Maven deps to latest (maven-resolver 1.7.0, maven core 1.8.3) to address these security concerns
    - CVE-2020-13956 - bumps deps on Apache HttpClient used by Maven
    - CVE-2021-26291 - potential security problems regarding Maven repositories:
      - Due to the possibility of MITM (man in the middle) attacks, http repo access is now blocked by default.
        tools.deps/Clojure CLI has always used https repos in the default repository list (central and clojars),
        so this mostly impacts any explicit http repositories defined in deps.edn
      - Concerns over the "hijacking" of repository urls by transitive pom deps (or their super poms) to download
        artifacts from malicious repos. Maven made no changes here, but did clarify how repos are resolved on this page.
        From a deps perspective, we only use repositories declared in the top-level deps.edn (if transitive deps need a custom repo,
        you will need to add it at top-level too). For tools.deps use of pom dependencies, we are providing the repos of
        the top deps.edn file (which should always put Maven Central and Clojars first), then deferring to Maven for the rest.
   * Use tools.deps.alpha 0.11.922
- Changes in 1.10.3.839:
  * Fix Linux installer breakage in 1.10.3.833
- Changes in 1.10.3.833:
  * TDEPS-177 - Fix Maven mirrors to look up by id, not name
  * Remove flag when fetching git deps so that older git versions work
  * Tweak some warning messages
  * Clean up scripts to simplify variable replacement
  * Use tools.deps.alpha 0.11.918
- Changes in 1.10.3.822:
  * Fix issue with git deps where new commits on branches were not fetched
- Changes in 1.10.3.814:
  * git deps: switch from using jgit to shelling out to git (must be git >= 2.5)
  * New env vars for control:
    - GITLIBS_COMMAND - command to invoke when shelling out to git, default = git
buildservice-autocommit accepted request 867076 from Michael Vetter's avatar Michael Vetter (jubalh) (revision 21)
baserev update by copy to link target
Michael Vetter's avatar Michael Vetter (jubalh) committed (revision 20)
- Update to 0.10.2:
  * Interop / JVM:
    - CLJ-1472 Ensure monitor object is on stack, for verifiers
    - CLJ-2517 More fixes for invocation of static interface methods with primitive args
    - CLJ-2492 Remove uses of deprecated Class.newInstance()
    - CLJ-2534 Fix javadoc urls for JDK 11+
    - CLJ-2571 Add Throwable return type hint to ex-cause
    - CLJ-2572 Avoid reflection in clojure.data
    - CLJ-2502 Fix reflection warnings in clojure.stacktrace/print-stack-trace
    - CLJ-2597 proxy should emit Java 1.8 bytecode
  * Core:
    - CLJ-2580 Fix case expression branch analysis that resulted in compilation error
    - CLJ-2564 Improve error message for case
    - CLJ-2585 nth with not-found on regex matcher returns not-found on last group index
    - CLJ-1364 vector-of does not implement equals or hashing methods
    - CLJ-2549 vector-of does not implement IObj for metadata
    - CLJ-1187 quoted metadata on empty literal colls is lost
    - CLJ-2459 ExceptionInInitializerError if jars executed with java -jar
  * Printing:
    - CLJ-2469 Fix errors in printing some maps with namespace syntax
    - CLJ-1445 pprint doesn't print collection metadata when *print-meta* is true
  * Docstrings:
    - CLJ-2295 Eliminate duplicate doc string printing for special forms
    - CLJ-2495 prepl docstring is incorrect
    - CLJ-2169 conj has out-of-date :arglists
  * Performance:
    - CLJ-1005 Use transient map in zipmap
buildservice-autocommit accepted request 860607 from Michael Vetter's avatar Michael Vetter (jubalh) (revision 19)
baserev update by copy to link target
Michael Vetter's avatar Michael Vetter (jubalh) accepted request 860532 from Aaron Burnett's avatar Aaron Burnett (Golanv) (revision 18)
Adds rlwrap package dependency for clj
buildservice-autocommit accepted request 845888 from Michael Vetter's avatar Michael Vetter (jubalh) (revision 17)
baserev update by copy to link target
Displaying revisions 21 - 40 of 56
openSUSE Build Service is sponsored by